/* === PAPA BEAR HOSTING — Figma-Matched Design === */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400;1,9..40,700;1,9..40,800&family=DM+Serif+Display:ital@0;1&display=swap');

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

:root {
    --bg: #0a0e1a;
    --bg-card: #0c1528;
    --bg-card-alt: #0f1a30;
    --coral: #e85040;
    --coral-dark: #d4403a;
    --teal: #2dd4e0;
    --teal-muted: #2a4a6b;
    --teal-glow: rgba(45,212,224,0.15);
    --teal-glow-strong: rgba(45,220,240,0.25);
    --white: #ffffff;
    --text-light: #c5d0de;
    --text-muted: #7a8a9e;
    --text-dim: #6a7588;
    --border: rgba(255,255,255,0.08);
    --border-light: rgba(255,255,255,0.12);
    --star: #fbbf24;
    --radius: 18px;
    --font: 'DM Sans', -apple-system, sans-serif;
    --font-display: 'DM Serif Display', Georgia, serif;
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; transition: .2s; }
a:hover { opacity: .85; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

/* === COSMIC BG ATMOSPHERE === */
body::before {
    content: '';
    position: fixed; inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(45,212,224,0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(232,80,64,0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139,92,246,0.03) 0%, transparent 60%);
    pointer-events: none; z-index: 0;
}

/* === NAVBAR — pill-shaped glass === */
.site-header {
    position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
    z-index: 100; width: 92%; max-width: 1300px;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 0 30px;
    height: 60px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.9); font-size: 15px; font-weight: 400; transition: .2s; }
.nav-links a:hover { color: var(--white); }
.header-right { display: flex; align-items: center; gap: 16px; }
.header-cta {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white); padding: 8px 22px;
    border-radius: 25px; font-weight: 500; font-size: 14px;
    cursor: pointer; transition: .3s; text-decoration: none;
}
.header-cta:hover { background: rgba(255,255,255,0.15); }
.header-cta::before { content: '✦ '; color: #5de6c8; }

/* === HERO — 3 Bears Cosmic === */
.hero {
    position: relative; z-index: 1;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -1;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
}
.hero-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.6) 50%, rgba(10,14,26,0.3) 100%);
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 580px; padding-left: 40px;
}
.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400; /* serif display fonts look best at normal weight */
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}
.hero h1 .accent {
    color: var(--coral);
    font-style: italic;
}
.hero-desc {
    font-size: 17px; color: #b0b8c8;
    line-height: 1.7; margin-bottom: 36px;
    max-width: 500px;
}

/* Hero Buttons */
.hero-buttons { display: flex; gap: 20px; align-items: center; margin-bottom: 40px; flex-wrap: wrap; }
.btn-coral {
    display: inline-block;
    background: var(--coral); color: var(--white);
    padding: 16px 42px; border-radius: 30px;
    font-weight: 700; font-size: 15px;
    letter-spacing: 1px; text-transform: uppercase;
    border: none; cursor: pointer; transition: .3s;
    box-shadow: 0 4px 20px rgba(232,80,64,0.3);
    text-decoration: none;
}
.btn-coral:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,80,64,0.45); color: var(--white); opacity: 1; }
.btn-ghost {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    padding: 16px 42px; border-radius: 30px;
    font-weight: 500; font-size: 15px;
    cursor: pointer; transition: .3s;
    text-decoration: none;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); color: var(--white); opacity: 1; }

/* Social Proof */
.social-proof { display: flex; align-items: center; gap: 14px; }
.avatar-stack { display: flex; }
.avatar-stack img {
    width: 38px; height: 38px; border-radius: 50%;
    border: 2px solid var(--bg); object-fit: cover;
    margin-left: -10px;
}
.avatar-stack img:first-child { margin-left: 0; }
.stars { color: var(--star); font-size: 14px; letter-spacing: 2px; }
.proof-text { font-size: 13px; }
.proof-text strong { color: var(--white); font-size: 14px; }
.proof-text span { color: var(--text-muted); }

/* === GRADIENT DIVIDER === */
.gradient-divider {
    height: 3px;
    background: linear-gradient(90deg, #00d4aa, #3b82f6, #8b5cf6, #ec4899, #ef4444);
    position: relative; z-index: 1;
}

/* === DOMAIN SEARCH BAR === */
.domain-bar {
    position: relative; z-index: 1;
    background: #070b14;
    padding: 40px 0;
}
.domain-bar .container {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 30px;
}
.domain-text h3 { font-size: 30px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.domain-text p { font-size: 14px; color: var(--text-muted); }
.domain-search {
    display: flex; align-items: center;
    background: #111827; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px; height: 56px; width: 520px; max-width: 100%;
    overflow: hidden;
}
.domain-search input {
    flex: 1; background: transparent; border: none;
    color: var(--white); font-size: 15px;
    padding: 0 25px; outline: none;
}
.domain-search input::placeholder { color: #4a5568; }
.domain-tld {
    color: var(--white); font-size: 15px; font-weight: 500;
    padding: 0 15px; border-left: 1px solid rgba(255,255,255,0.12);
    cursor: pointer; white-space: nowrap;
}
.domain-search-btn {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: var(--white); border: none; border-radius: 25px;
    padding: 12px 30px; font-size: 15px; font-weight: 600;
    cursor: pointer; margin-right: 6px; white-space: nowrap;
    transition: .2s;
}
.domain-search-btn:hover { filter: brightness(1.1); }

/* === SECTIONS === */
section { position: relative; z-index: 1; padding: 90px 0; }
.section-label {
    text-transform: uppercase; font-size: 13px; letter-spacing: 3px;
    color: var(--teal); font-weight: 600; margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 400; margin-bottom: 16px; line-height: 1.15;
}
.section-title .accent { color: var(--coral); }
.section-subtitle { color: var(--text-muted); font-size: 16px; max-width: 650px; margin: 0 auto 60px; }
.text-center { text-align: center; }

/* === STATS BAR === */
.stats-bar {
    position: relative; z-index: 1;
    padding: 60px 0;
}
.stats-grid {
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 30px;
}
.stat-item {
    display: flex; align-items: center; gap: 16px;
}
.stat-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    border: 2px solid var(--teal-muted);
    background: rgba(15,25,50,0.7);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.stat-icon img { width: 36px; height: 36px; object-fit: contain; }
.stat-item h3 { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 2px; }
.stat-item p { font-size: 13px; color: var(--text-muted); }

/* === PRICING CARDS === */
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 28px; align-items: center;
}
.pricing-card {
    position: relative;
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    border: 2px solid rgba(45,212,224,0.25);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 0 15px var(--teal-glow), 0 0 30px rgba(45,212,224,0.05);
    transition: .4s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px var(--teal-glow), 0 0 50px rgba(45,212,224,0.1);
}
.pricing-card.featured {
    border-color: rgba(45,230,245,0.5);
    box-shadow: 0 0 20px var(--teal-glow-strong), 0 0 40px rgba(45,220,240,0.15), 0 0 80px rgba(45,220,240,0.08);
    transform: scale(1.04);
    z-index: 2;
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-4px); }

.plan-image {
    width: 100%; height: 260px;
    object-fit: cover;
}
.plan-body { padding: 24px 28px 28px; }
.plan-name {
    font-size: 28px; font-weight: 700; margin-bottom: 4px;
}
.plan-name .accent { color: var(--coral); }
.plan-pricing { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 4px; flex-wrap: wrap; }
.plan-dollar { font-size: 18px; font-weight: 600; }
.plan-amount { font-size: 52px; font-weight: 800; line-height: 1; }
.plan-period { font-size: 18px; color: var(--text-light); }
.plan-original { font-size: 14px; color: var(--text-dim); text-decoration: line-through; }
.plan-save { font-size: 14px; color: var(--coral); font-weight: 600; }
.plan-tagline { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

.plan-features { list-style: none; margin-bottom: 24px; }
.plan-features li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 6px 0; font-size: 14px; color: var(--text-light);
}
.plan-features li::before {
    content: '✓';
    display: flex; align-items: center; justify-content: center;
    width: 18px; height: 18px; min-width: 18px;
    border: 1.5px solid var(--teal);
    border-radius: 50%;
    color: var(--teal); font-size: 11px; font-weight: 700;
    margin-top: 2px;
}
.plan-features li.highlight { color: var(--white); font-weight: 600; }
.plan-best { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.plan-best strong { color: var(--coral); }
.plan-cta {
    display: inline-block;
    background: var(--coral); color: var(--white);
    border: none; border-radius: 10px;
    padding: 14px 45px; font-size: 16px; font-weight: 700;
    cursor: pointer; transition: .3s;
    box-shadow: 0 4px 20px rgba(232,80,64,0.3);
    text-decoration: none;
}
.plan-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,80,64,0.45); color: var(--white); opacity: 1; }

/* === FEATURES GRID === */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.feature-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
    transition: .3s;
}
.feature-card:hover { transform: translateY(-3px); border-color: rgba(45,212,224,0.2); }
.feature-icon {
    width: 52px; height: 52px; margin-bottom: 20px;
    padding: 10px;
    background: rgba(45,212,224,0.08);
    border-radius: 12px;
    object-fit: contain;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* === ADDON CARDS === */
.addon-card { text-align: left; }
.addon-price {
    font-size: 24px; font-weight: 800; color: var(--white);
    margin: 20px 0 14px;
}
.btn-addon {
    background: transparent; border: 1.5px solid var(--teal);
    color: var(--teal); padding: 10px 24px; border-radius: 8px;
    font-size: 14px; font-weight: 600; cursor: pointer; transition: .2s;
}
.btn-addon:hover { background: var(--teal); color: var(--bg); }

/* === EVERYTHING STANDARD SECTION === */
.standard-section {
    position: relative; z-index: 1;
    padding: 80px 0;
}
.standard-section h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400; margin-bottom: 20px;
}
.standard-section h2 .accent { color: var(--coral); font-style: italic; }
.standard-section p { color: var(--text-muted); font-size: 16px; margin-bottom: 36px; max-width: 600px; }

/* === GET WEBSITE LIVE SECTION === */
.get-live-section {
    position: relative; z-index: 1;
    background: linear-gradient(180deg, rgba(10,14,26,0) 0%, rgba(15,20,40,1) 20%, rgba(15,20,40,1) 80%, rgba(10,14,26,0) 100%);
    padding: 100px 0;
}
.steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; text-align: center; margin: 60px 0 40px;
}
.step-item img { width: 120px; height: 120px; margin: 0 auto 20px; object-fit: contain; }
.step-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: var(--text-muted); }
.live-meta { text-align: center; color: var(--text-muted); font-size: 16px; margin-bottom: 24px; }
.live-meta strong { color: var(--white); }

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-alt) 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 32px;
}
.testimonial-avatar {
    width: 56px; height: 56px; border-radius: 50%;
    object-fit: cover; margin-bottom: 20px;
    border: 2px solid var(--teal-muted);
}
.testimonial-text {
    color: var(--text-light); font-size: 15px;
    line-height: 1.7; margin-bottom: 20px;
    font-style: italic;
}
.testimonial-card strong { color: var(--white); font-size: 15px; }

/* === NEWSLETTER === */
.newsletter-section {
    position: relative; z-index: 1;
    padding: 80px 0;
}
.newsletter-box {
    background: linear-gradient(135deg, rgba(45,212,224,0.08), rgba(232,80,64,0.06));
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 60px 40px; text-align: center;
}
.newsletter-form {
    display: flex; gap: 12px; max-width: 500px;
    margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.newsletter-input {
    flex: 1; min-width: 250px;
    padding: 14px 24px; border-radius: 50px;
    border: 1px solid var(--border-light);
    background: rgba(255,255,255,0.05);
    color: var(--white); font-size: 15px; outline: none;
}
.newsletter-input:focus { border-color: var(--teal); }

/* === FOOTER === */
.site-footer {
    position: relative; z-index: 1;
    background: #050a14;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    color: var(--text-muted); font-size: 14px;
}
.footer-grid {
    display: grid; grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px; margin-bottom: 40px;
}
.footer-brand p { color: var(--text-muted); margin-top: 16px; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 15px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.featured { transform: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .site-header { width: 96%; top: 10px; }
    .nav-links { display: none; }
    .hero { min-height: auto; padding: 140px 0 80px; }
    .hero-content { padding-left: 0; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { flex-wrap: wrap; justify-content: center; }
    .domain-bar .container { flex-direction: column; text-align: center; }
    .domain-search { width: 100%; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: flex-start; }
}
