/* ============================================================
   SOLARIA VOIP — styles.css
   Brand: Solar Gold #FDCB58 · Midnight Navy #0B1C2B
   Fonts: Rajdhani (headings) · DM Sans (body) · JetBrains Mono (code/eyebrow)
   ============================================================ */

/* ── Variables ── */
:root {
    --gold:        #FDCB58;
    --gold-dim:    #c99d30;
    --gold-glow:   rgba(253, 203, 88, 0.18);
    --gold-glow-lg:rgba(253, 203, 88, 0.08);
    --navy:        #0B1C2B;
    --navy-mid:    #0f2438;
    --navy-card:   #122033;
    --navy-border: #1e3349;
    --navy-light:  #1c3450;
    --white:       #FFFFFF;
    --white-dim:   rgba(255,255,255,0.75);
    --white-mute:  rgba(255,255,255,0.45);
    --white-faint: rgba(255,255,255,0.08);
    --font-head:   'Rajdhani', sans-serif;
    --font-body:   'DM Sans', sans-serif;
    --font-mono:   'JetBrains Mono', monospace;
    --radius:      10px;
    --radius-lg:   16px;
    --transition:  0.25s ease;
    --shadow:      0 4px 32px rgba(0,0,0,0.4);
    --shadow-gold: 0 0 40px rgba(253,203,88,0.25);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.65;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Particle Canvas ── */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* ── Ticker ── */
.ticker-wrap {
    position: relative;
    z-index: 10;
    background: var(--gold);
    overflow: hidden;
    height: 36px;
    display: flex;
    align-items: center;
}
.ticker-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
}
.ticker-track span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--navy);
    padding: 0 28px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.ticker-star { padding: 0 8px !important; opacity: 0.6; }
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Navigation ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 40px;
    height: 68px;
    background: rgba(11, 28, 43, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--navy-border);
    transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.5); }

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 0;
    flex-shrink: 0;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.logo-solaria { color: var(--white); }
.logo-voip    { color: var(--gold); margin-left: 4px; }

.nav-links {
    display: flex;
    gap: 6px;
    margin-left: auto;
}
.nav-links a {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--white-dim);
    padding: 6px 14px;
    border-radius: 6px;
    transition: color var(--transition), background var(--transition);
    text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); background: var(--white-faint); }

.nav-cta {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: 9px 22px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-cta:hover {
    background: #ffe08a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(253,203,88,0.4);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 104px; /* ticker + nav */
    left: 0; right: 0;
    z-index: 99;
    background: var(--navy-card);
    border-bottom: 1px solid var(--navy-border);
    padding: 24px 32px 32px;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
    display: block;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white-dim);
    padding: 12px 0;
    border-bottom: 1px solid var(--navy-border);
    transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
    margin-top: 12px;
    display: inline-block !important;
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 12px 24px !important;
    border-radius: var(--radius) !important;
    border: none !important;
    text-align: center;
}
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(11,28,43,0.6);
}
.mobile-overlay.open { display: block; }

/* ── Hero ── */
.hero {
    position: relative;
    z-index: 1;
    padding: 100px 40px 80px;
    overflow: hidden;
}
.hero-glow {
    position: absolute;
    top: -120px; left: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(253,203,88,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.hero-glow-right {
    position: absolute;
    top: 0; right: -300px;
    width: 800px; height: 600px;
    background: radial-gradient(circle, rgba(28,52,80,0.6) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: start;
}
.hero-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 18px;
}
.hero-left h1 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    color: var(--white);
}
.line-accent {
    color: var(--gold);
    display: block;
}
.hero-desc {
    font-size: 1.05rem;
    color: var(--white-dim);
    max-width: 580px;
    margin-bottom: 28px;
    line-height: 1.7;
}
.hero-checks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}
.hero-checks li {
    font-size: 0.95rem;
    color: var(--white-dim);
    padding-left: 22px;
    position: relative;
}
.hero-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.hero-microcopy {
    font-size: 0.82rem;
    color: var(--white-mute);
    font-style: italic;
}

/* Hero Panel */
.hero-panel {
    position: relative;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    overflow: hidden;
}
.panel-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(253,203,88,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.hero-panel-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: uppercase;
}
.hero-panel-sub {
    font-size: 0.85rem;
    color: var(--white-mute);
    margin-bottom: 24px;
    line-height: 1.5;
}
.quote-lines { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }
.quote-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px solid var(--navy-border);
}
.quote-line:last-child { border-bottom: none; }
.quote-label {
    font-size: 0.9rem;
    color: var(--white-dim);
}
.quote-value {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
}
.quote-value.accent { color: var(--gold); }
.quote-value .per { font-size: 0.72rem; font-weight: 500; color: var(--white-mute); margin-left: 2px; }
.quote-note {
    background: var(--white-faint);
    border: 1px solid var(--navy-border);
    border-left: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 0.83rem;
    color: var(--white-dim);
    line-height: 1.55;
}
.quote-note strong { color: var(--gold); }

/* ── Buttons ── */
.btn-primary {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--navy);
    padding: 13px 28px;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
    background: #ffe08a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(253,203,88,0.35);
}
.btn-secondary {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--navy-border);
    transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--gold-glow);
}

/* ── Stats Bar ── */
.stats-bar {
    position: relative;
    z-index: 1;
    background: var(--navy-card);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
    padding: 28px 40px;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 8px 24px;
    min-width: 140px;
}
.stat-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--white-mute);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--navy-border);
    flex-shrink: 0;
}

/* ── Sections ── */
section { position: relative; z-index: 1; padding: 80px 40px; }
.section-alt { background: var(--navy-mid); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}
.section-sub {
    font-size: 1rem;
    color: var(--white-dim);
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.7;
}

/* ── Split Band ── */
.split-band {
    position: relative;
    z-index: 1;
    padding: 70px 40px;
    background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
}
.split-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.pain-card, .mini-card {
    padding: 36px;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
}
.pain-card { border-left: 3px solid #e05c5c; }
.mini-card { border-left: 3px solid var(--gold); }
.pain-card .section-title, .mini-card h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    margin-bottom: 12px;
    color: var(--white);
}
.pain-card > p, .mini-card > p {
    color: var(--white-dim);
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.pain-list, .mini-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pain-list li, .mini-list li {
    font-size: 0.92rem;
    padding-left: 22px;
    position: relative;
    color: var(--white-dim);
}
.pain-list li::before {
    content: '✗';
    position: absolute; left: 0;
    color: #e05c5c;
    font-weight: 700;
}
.mini-list li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.product-card {
    position: relative;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dim);
    box-shadow: var(--shadow-gold);
}
.product-card.featured {
    border-color: var(--gold);
    background: linear-gradient(160deg, var(--navy-light) 0%, var(--navy-card) 100%);
}
.card-glow {
    position: absolute;
    top: -80px; right: -80px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(253,203,88,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.featured-glow {
    background: radial-gradient(circle, rgba(253,203,88,0.15) 0%, transparent 65%);
}
.product-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}
.product-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.product-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.product-desc {
    font-size: 0.88rem;
    color: var(--white-mute);
    margin-bottom: 20px;
    line-height: 1.55;
}
.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex: 1;
}
.product-features li {
    font-size: 0.88rem;
    color: var(--white-dim);
    padding-left: 18px;
    position: relative;
}
.product-features li::before {
    content: '▸';
    position: absolute; left: 0;
    color: var(--gold);
    font-size: 0.75rem;
    top: 2px;
}
.product-price {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--white);
    margin-bottom: 4px;
}
.product-price strong { color: var(--gold); }
.price-unit { font-size: 0.82rem; font-weight: 400; color: var(--white-mute); }
.product-footnote {
    font-size: 0.78rem;
    color: var(--white-mute);
    margin-bottom: 20px;
    font-style: italic;
}
.btn-card, .btn-card-filled {
    display: block;
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 11px 16px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-card {
    border: 1px solid var(--navy-border);
    color: var(--white-dim);
}
.btn-card:hover { border-color: var(--gold); color: var(--gold); }
.btn-card-filled {
    background: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
}
.btn-card-filled:hover {
    background: #ffe08a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(253,203,88,0.35);
}

.guarantee-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white-faint);
    border: 1px solid var(--navy-border);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 24px;
    font-size: 0.9rem;
    color: var(--white-dim);
}
.guarantee-strip strong { color: var(--gold); }
.guarantee-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ── Why Grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.why-card {
    display: flex;
    gap: 20px;
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.why-card:hover {
    border-color: var(--gold-dim);
    box-shadow: 0 4px 20px rgba(253,203,88,0.1);
}
.why-num {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.35;
    flex-shrink: 0;
    line-height: 1;
    padding-top: 4px;
}
.why-content h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.why-content p { font-size: 0.9rem; color: var(--white-dim); line-height: 1.65; }

/* ── Brands Bar ── */
.brands-section {
    position: relative;
    z-index: 1;
    padding: 28px 40px;
    background: var(--navy-card);
    border-top: 1px solid var(--navy-border);
    border-bottom: 1px solid var(--navy-border);
}
.brands-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.brands-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--white-mute);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.brands-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.brand-tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--white-dim);
    padding: 6px 14px;
    border: 1px solid var(--navy-border);
    border-radius: 4px;
    background: var(--white-faint);
    transition: border-color var(--transition), color var(--transition);
}
.brand-tag:hover { border-color: var(--gold-dim); color: var(--gold); }

/* ── Process Steps ── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 30px; left: 5%;
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--navy-border) 20%, var(--navy-border) 80%, transparent);
    z-index: 0;
}
.step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
}
.step-num {
    width: 60px; height: 60px;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy-card);
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: relative;
}
.step-num span {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
}
.step h3 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.step p { font-size: 0.88rem; color: var(--white-dim); line-height: 1.6; }

/* ── Testimonials ── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { border-color: var(--gold-dim); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; }
.testimonial-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: var(--white);
    text-transform: uppercase;
}
.testimonial-text { font-size: 0.88rem; color: var(--white-dim); line-height: 1.65; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 40px; height: 40px;
    background: var(--navy-light);
    border: 1px solid var(--gold-dim);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--gold);
    flex-shrink: 0;
}
.author-name {
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
}
.author-role { font-size: 0.78rem; color: var(--white-mute); }

/* ── Lead / Form Section ── */
.lead-section {
    position: relative;
    z-index: 1;
    padding: 80px 40px;
    background: linear-gradient(160deg, #0d2135 0%, var(--navy) 100%);
    border-top: 1px solid var(--navy-border);
    overflow: hidden;
}
.lead-glow {
    position: absolute;
    top: -150px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 500px;
    background: radial-gradient(ellipse, rgba(253,203,88,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.lead-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.lead-left h2 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}
.lead-left > p {
    font-size: 0.95rem;
    color: var(--white-dim);
    margin-bottom: 24px;
    line-height: 1.7;
}
.lead-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}
.lead-badge {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 5px 12px;
    border-radius: 4px;
    background: rgba(253,203,88,0.06);
}
.trust-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.trust-points li {
    font-size: 0.9rem;
    color: var(--white-dim);
    padding-left: 22px;
    position: relative;
}
.trust-points li::before {
    content: '✓';
    position: absolute; left: 0;
    color: var(--gold);
    font-weight: 700;
}
.commpath-badge {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--white-faint);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 16px 18px;
    font-size: 0.88rem;
    color: var(--white-dim);
    line-height: 1.55;
}
.commpath-badge strong { color: var(--gold); display: block; margin-bottom: 2px; }
.cb-icon { font-size: 1.5rem; flex-shrink: 0; }

/* Lead Form */
.lead-form {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.form-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 6px;
}
.form-sub { font-size: 0.85rem; color: var(--white-mute); margin-bottom: 28px; }
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; margin-bottom: 16px; }
label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white-mute);
}
input, select, textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    padding: 11px 14px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: var(--white-mute); }
input:focus, select:focus, textarea:focus {
    border-color: var(--gold-dim);
    background: rgba(253,203,88,0.04);
}
select { cursor: pointer; }
select option { background: var(--navy-card); color: var(--white); }
textarea { min-height: 100px; resize: vertical; }
.form-submit {
    width: 100%;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px;
    border-radius: var(--radius);
    cursor: pointer;
    border: none;
    margin-top: 4px;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.form-submit:hover {
    background: #ffe08a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(253,203,88,0.35);
}
.form-privacy { font-size: 0.76rem; color: var(--white-mute); margin-top: 10px; text-align: center; }
.form-success {
    display: none;
    align-items: center;
    gap: 14px;
    background: rgba(253,203,88,0.08);
    border: 1px solid var(--gold-dim);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--white-dim);
}
.form-success.visible { display: flex; }
.form-success strong { color: var(--gold); }
.success-icon {
    width: 32px; height: 32px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

/* ── FAQ ── */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.faq-item {
    background: var(--navy-card);
    border: 1px solid var(--navy-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--gold-dim); }
.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    color: var(--white);
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: color var(--transition);
}
.faq-question::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: 0.9rem;
    color: var(--white-dim);
    line-height: 1.65;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 20px;
}
.faq-answer.open { max-height: 200px; padding: 0 20px 18px; }

/* ── Footer ── */
footer {
    position: relative;
    z-index: 1;
    background: var(--navy-card);
    border-top: 1px solid var(--navy-border);
    padding: 60px 40px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--navy-border);
}
.footer-logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}
.footer-brand > p {
    font-size: 0.87rem;
    color: var(--white-dim);
    line-height: 1.65;
    max-width: 300px;
    margin-bottom: 16px;
}
.footer-legal-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-legal-badges span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-dim);
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(253,203,88,0.05);
}
.footer-col h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
    font-size: 0.88rem;
    color: var(--white-mute);
    transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 0.78rem;
    color: var(--white-mute);
}
.footer-copy a { color: var(--white-mute); transition: color var(--transition); }
.footer-copy a:hover { color: var(--gold); }

/* ── Animations ── */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.35s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-panel { max-width: 500px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-steps::before { display: none; }
}

@media (max-width: 768px) {
    nav { padding: 0 20px; gap: 0; }
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .mobile-menu { display: block; }

    .hero { padding: 60px 20px 60px; }
    section { padding: 60px 20px; }
    .split-band { padding: 50px 20px; }
    .stats-bar { padding: 20px; }
    .stats-inner { gap: 0; }
    .stat-item { min-width: 100px; padding: 8px 12px; }
    .stat-divider { height: 32px; }

    .split-inner { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .lead-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
    .form-row { grid-template-columns: 1fr; }

    .brands-section, .lead-section, footer { padding-left: 20px; padding-right: 20px; }
    .process-steps { grid-template-columns: 1fr; }

    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
