*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: rgba(255,255,255,0.85); line-height: 1.65; background: #08030e; }

:root {
    --clean: #c026d3;
    --clean-hi: #a21caf;
    --clean-glow: rgba(192,38,211,0.28);
    --clean-dim: rgba(192,38,211,0.12);
    --base: #08030e;
    --surface: #120920;
    --surface-hi: #1c1030;
    --canvas: #f9f5ff;
    --canvas-mid: #f0e9f9;
    --ink: #1a0a24;
    --ink-mid: #3e2754;
    --muted-dark: rgba(255,255,255,0.5);
    --muted-light: #6b4d84;
    --radius: 12px;
    --shadow: 0 4px 28px rgba(0,0,0,0.32);
}

.basin { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── FADE IN ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn-fill {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    background: var(--clean);
    color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 22px var(--clean-glow);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-fill:hover { background: var(--clean-hi); transform: translateY(-2px); box-shadow: 0 8px 32px var(--clean-glow); color: #fff; }

.btn-ghost {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); color: #fff; }

.btn-fill--dark {
    background: var(--ink);
    color: #fff;
    box-shadow: none;
    border-color: var(--clean);
}
.btn-fill--dark:hover { background: var(--clean); box-shadow: 0 4px 22px var(--clean-glow); }

/* ── STICKY NAV (immersive-entry: hidden on load) ── */
#sfc-nav {
    position: fixed;
    top: -90px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8,3,14,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192,38,211,0.18);
    transition: top 0.35s cubic-bezier(0.4,0,0.2,1);
}
#sfc-nav.visible { top: 0; }

.nav-row {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.logo-mark { width: 28px; height: 28px; flex-shrink: 0; }
.logo-text { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1.05rem; color: #fff; letter-spacing: -0.01em; line-height: 1; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 6px;
    margin-left: auto;
}
.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.18s, background 0.18s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.07); }

.nav-cta { font-size: 0.88rem; padding: 9px 20px; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    margin-left: auto;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: transform 0.22s, opacity 0.22s; }
.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); }

#mob-drop {
    display: none;
    background: rgba(8,3,14,0.98);
    border-top: 1px solid rgba(255,255,255,0.06);
}
#mob-drop.open { display: block; }
.mob-inner { padding: 16px 24px 20px; display: flex; flex-direction: column; gap: 4px; }
.mob-inner a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-inner a:last-child { border-bottom: none; }
.mob-inner a:hover { color: var(--clean); }

/* ── HERO ── */
#hero {
    min-height: 100vh;
    background: var(--base);
    display: flex;
    flex-direction: column;
}

.hero-topbar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}
.hero-topbar .nav-logo .logo-mark { width: 32px; height: 32px; }
.hero-topbar .nav-logo .logo-text { font-size: 1.1rem; }
.hero-topbar .nav-links { display: flex; }
.hero-topbar .btn-fill { font-size: 0.85rem; padding: 9px 20px; }

.hero-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 24px 60px;
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--clean);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 14px;
    background: var(--clean-dim);
    border-radius: 20px;
    border: 1px solid rgba(192,38,211,0.25);
}
.hero-eyebrow svg { width: 14px; height: 14px; flex-shrink: 0; }

h1, div.h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 4.5vw, 3.2rem);
    line-height: 1.12;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
h1 em, div.h1 em { font-style: normal; color: var(--clean); }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 6px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
}
.hero-chip svg { width: 13px; height: 13px; color: var(--clean); flex-shrink: 0; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── LEAD WIDGET ── */
.lead-widget {
    background: #130825;
    border: 1px solid rgba(192,38,211,0.22);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(192,38,211,0.08);
}

.lw-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.lw-title { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; }
.lw-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
}
.lw-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: lw-pulse 1.8s ease-in-out infinite;
}
@keyframes lw-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

.lw-counter-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lw-count {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--clean);
    line-height: 1;
    min-width: 36px;
}
.lw-count-label { font-size: 0.85rem; color: rgba(255,255,255,0.55); flex: 1; }
.lw-trend { font-size: 0.75rem; font-weight: 600; color: #4ade80; white-space: nowrap; }

.lw-feed { display: flex; flex-direction: column; gap: 10px; min-height: 160px; }

.lw-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 10px 14px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.lw-row.lw-row--visible { opacity: 1; transform: none; }

.lw-src { width: 24px; height: 24px; flex-shrink: 0; }
.lw-src svg { width: 100%; height: 100%; }

.lw-info { flex: 1; min-width: 0; }
.lw-svc { display: block; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.9); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lw-loc { display: block; font-size: 0.73rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

.lw-new {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--clean);
    background: var(--clean-dim);
    border: 1px solid rgba(192,38,211,0.3);
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.lw-footer {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.73rem;
    color: rgba(255,255,255,0.35);
    text-align: center;
}

/* ── PROOF STRIP (light) ── */
#proof { background: var(--canvas); padding: 60px 0; }

.proof-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.proof-cell {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid var(--canvas-mid);
}
.proof-cell:last-child { border-right: none; }
.proof-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--clean);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}
.proof-label { font-size: 0.85rem; color: var(--ink-mid); font-weight: 500; }

/* ── SERVICES (dark) ── */
#offer { background: var(--surface); padding: 90px 0; }

.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3.2vw, 2.4rem);
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    line-height: 1.25;
}
.sec-head h2 em { font-style: normal; color: var(--clean); }
.sec-head p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 580px; margin: 0 auto; }

.sec-head--light h2 { color: var(--ink); }
.sec-head--light h2 em { color: var(--clean); }
.sec-head--light p { color: var(--ink-mid); }

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.offer-card {
    background: var(--surface-hi);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    transition: border-color 0.22s, transform 0.22s;
}
.offer-card:hover { border-color: rgba(192,38,211,0.35); transform: translateY(-3px); }

.offer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}
.offer-icon {
    width: 48px; height: 48px;
    background: var(--clean-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.offer-icon svg { width: 24px; height: 24px; color: var(--clean); }

.offer-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    letter-spacing: -0.04em;
}

.offer-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.offer-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; margin-bottom: 18px; }

.offer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.offer-tag {
    font-size: 0.73rem;
    font-weight: 500;
    color: rgba(192,38,211,0.9);
    background: var(--clean-dim);
    border: 1px solid rgba(192,38,211,0.2);
    padding: 3px 10px;
    border-radius: 10px;
}

/* ── PROCESS (light) ── */
#method { background: var(--canvas); padding: 90px 0; }

.method-timeline { display: flex; flex-direction: column; gap: 0; }

.method-step {
    display: grid;
    grid-template-columns: 1fr 80px;
    gap: 0;
    align-items: center;
    padding: 36px 0;
    border-bottom: 1px solid var(--canvas-mid);
}
.method-step:last-child { border-bottom: none; }

.step-body { padding-right: 32px; }
.step-body h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.step-body p { font-size: 0.9rem; color: var(--ink-mid); line-height: 1.65; }

.step-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 3.8rem;
    color: var(--clean);
    line-height: 1;
    text-align: right;
    opacity: 0.8;
}

/* ── MID CTA (dark) ── */
#midcta {
    background: var(--base);
    padding: 80px 0;
    text-align: center;
}

.midcta-inner { max-width: 720px; margin: 0 auto; }

.midcta-inner h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    line-height: 1.2;
}
.midcta-inner h2 em { font-style: normal; color: var(--clean); }
.midcta-inner > p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; }

.midcta-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}
.mstat { text-align: center; }
.mstat-val {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2.2rem;
    color: var(--clean);
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.mstat-cap { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ── WHY US (light) ── */
#reasons { background: var(--canvas-mid); padding: 90px 0; }

.reasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reasons-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 10px;
}
.reasons-heading em { font-style: normal; color: var(--clean); }
.reasons-sub { font-size: 0.95rem; color: var(--ink-mid); margin-bottom: 32px; line-height: 1.65; }

.reason-points { display: flex; flex-direction: column; gap: 18px; }

.reason-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.reason-check {
    width: 24px; height: 24px;
    background: var(--clean-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.reason-check svg { width: 13px; height: 13px; color: var(--clean); }

.reason-point h4 { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin-bottom: 3px; }
.reason-point p { font-size: 0.85rem; color: var(--ink-mid); line-height: 1.6; }

/* ── NICHE COVERAGE CARD ── */
.niche-card {
    background: #fff;
    border: 1px solid var(--canvas-mid);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 28px rgba(26,10,36,0.08);
}

.niche-card-head { margin-bottom: 20px; }
.niche-card-head h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 4px;
}
.niche-card-head p { font-size: 0.8rem; color: var(--muted-light); }

.niche-grid { display: flex; flex-wrap: wrap; gap: 10px; }

.niche-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--canvas);
    border: 1px solid rgba(192,38,211,0.18);
    padding: 7px 14px;
    border-radius: 20px;
    transition: background 0.18s, border-color 0.18s;
}
.niche-pill:hover { background: var(--clean-dim); border-color: rgba(192,38,211,0.4); color: var(--clean-hi); }
.niche-pill svg { width: 13px; height: 13px; color: var(--clean); }

.niche-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--canvas-mid);
    font-size: 0.78rem;
    color: var(--muted-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.niche-note svg { width: 13px; height: 13px; color: var(--clean); flex-shrink: 0; }

/* ── TESTIMONIALS (dark) ── */
#voices { background: var(--surface); padding: 90px 0; }

.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.voice-card {
    background: var(--surface-hi);
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid var(--clean);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.voice-type {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--clean);
    background: var(--clean-dim);
    padding: 3px 10px;
    border-radius: 10px;
    align-self: flex-start;
}

.voice-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    flex: 1;
}

.voice-author { display: flex; flex-direction: column; gap: 2px; }
.voice-name { font-weight: 600; font-size: 0.88rem; color: #fff; }
.voice-co { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

/* ── FAQ (light) ── */
#faq { background: var(--canvas); padding: 90px 0; }

.faq-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.faq-col-head {
    margin-bottom: 32px;
}
.faq-col-head h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--ink);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.faq-col-head h2 em { font-style: normal; color: var(--clean); }
.faq-col-head p { font-size: 0.9rem; color: var(--ink-mid); }

.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
    border-bottom: 1px solid var(--canvas-mid);
    border-left: 3px solid transparent;
    transition: border-left-color 0.2s;
}
.faq-item.open { border-left-color: var(--clean); }

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 16px;
    text-align: left;
}
.faq-btn-text { font-size: 0.95rem; font-weight: 600; color: var(--ink); flex: 1; }
.faq-icon {
    width: 22px; height: 22px;
    background: var(--canvas-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--ink-mid); }
.faq-item.open .faq-icon { background: var(--clean); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { color: #fff; }

.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-body-inner { padding: 0 16px 20px; font-size: 0.88rem; color: var(--ink-mid); line-height: 1.7; }

/* ── FAQ SIDEBAR ── */
.faq-sidebar { position: sticky; top: 90px; }

.faq-cta-card {
    background: var(--ink);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 28px rgba(26,10,36,0.14);
}
.faq-cta-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 6px;
}
.faq-cta-card > p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.5; }

.mini-form { display: flex; flex-direction: column; gap: 12px; }
.mini-form label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.6); display: block; margin-bottom: 4px; }
.mini-form input, .mini-form select {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.18s;
    -webkit-appearance: none;
}
.mini-form input:focus, .mini-form select:focus {
    outline: none;
    border-color: var(--clean);
}
.mini-form select option { background: var(--ink); color: #fff; }
.mini-form .btn-fill { width: 100%; text-align: center; justify-content: center; display: flex; }

.faq-cta-contact { margin-top: 16px; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.faq-cta-contact a { color: var(--clean); text-decoration: none; font-weight: 600; }
.faq-cta-contact a:hover { text-decoration: underline; }

/* ── CONTACT (dark) ── */
#contact { background: var(--base); padding: 90px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}
.contact-info h2 em { font-style: normal; color: var(--clean); }
.contact-info > p { font-size: 0.95rem; color: rgba(255,255,255,0.55); margin-bottom: 30px; line-height: 1.65; }

.contact-promises { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.contact-promise {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}
.contact-promise svg { width: 16px; height: 16px; color: var(--clean); flex-shrink: 0; margin-top: 2px; }

.contact-ways { display: flex; flex-direction: column; gap: 12px; }
.contact-way {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.18s, border-color 0.18s;
}
.contact-way:hover { background: rgba(192,38,211,0.08); border-color: rgba(192,38,211,0.25); }
.cw-icon {
    width: 38px; height: 38px;
    background: var(--clean-dim);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cw-icon svg { width: 18px; height: 18px; color: var(--clean); }
.cw-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); display: block; margin-bottom: 2px; }
.cw-val { font-size: 0.95rem; font-weight: 600; color: #fff; display: block; }

/* ── CONTACT FORM ── */
.contact-form-wrap {
    background: #120920;
    border: 1px solid rgba(192,38,211,0.15);
    border-radius: 16px;
    padding: 36px;
}
.contact-form-wrap h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 6px;
}
.contact-form-wrap > p { font-size: 0.83rem; color: rgba(255,255,255,0.45); margin-bottom: 24px; }

.c-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.c-form label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.55); display: block; margin-bottom: 6px; }
.c-form label span { color: var(--clean); }

.c-form input, .c-form select, .c-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9px;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
}
.c-form input:focus, .c-form select:focus, .c-form textarea:focus {
    outline: none;
    border-color: var(--clean);
    background: rgba(192,38,211,0.05);
}
.c-form input::placeholder, .c-form textarea::placeholder { color: rgba(255,255,255,0.22); }
.c-form select option { background: #120920; color: #fff; }
.c-form textarea { resize: vertical; min-height: 100px; }

.form-honey { position: absolute; left: -9999px; top: 0; }

#form-msg { font-size: 0.85rem; padding: 10px 14px; border-radius: 8px; }
#form-msg.success { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
#form-msg.error { background: rgba(239,68,68,0.1); color: #f87171; border: 1px solid rgba(239,68,68,0.25); }

.form-submit .btn-fill { width: 100%; justify-content: center; display: flex; }

/* ── FOOTER ── */
#sfc-foot { background: #060208; padding: 64px 0 0; }

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.foot-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 14px;
}
.foot-brand-logo .logo-mark { width: 26px; height: 26px; }
.foot-brand-logo .logo-text { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: -0.01em; line-height: 1; }

.foot-col p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.7;
    margin-bottom: 18px;
}

.foot-contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
    text-decoration: none;
}
.foot-contact-line:hover { color: var(--clean); }
.foot-contact-line svg { width: 14px; height: 14px; flex-shrink: 0; }

.foot-socials { display: flex; gap: 12px; margin-top: 16px; }
.foot-soc {
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.45);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 7px;
    text-decoration: none;
    transition: color 0.18s, border-color 0.18s;
}
.foot-soc:hover { color: var(--clean); border-color: rgba(192,38,211,0.45); }
.foot-soc svg { width: 16px; height: 16px; }

.foot-col h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.foot-link {
    display: block;
    font-size: 0.84rem;
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.18s;
}
.foot-link:hover { color: var(--clean); }

.foot-base {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 16px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}
.foot-legal { display: flex; gap: 20px; }
.foot-legal a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.18s; }
.foot-legal a:hover { color: var(--clean); }

/* ── STICKY CTA ── */
#sticky-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    background: var(--clean);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 6px 28px var(--clean-glow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
}
#sticky-cta.is-visible { opacity: 1; pointer-events: auto; transform: none; }
#sticky-cta:hover { background: var(--clean-hi); }
#sticky-cta svg { width: 16px; height: 16px; }

/* ── BACK TO TOP ── */
#back-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 90;
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.2s;
}
#back-top.visible { opacity: 1; pointer-events: auto; }
#back-top:hover { background: rgba(255,255,255,0.15); }
#back-top svg { width: 16px; height: 16px; color: #fff; }

/* ── SEO CONTENT ── */
#seo-content { background: var(--canvas); padding: 90px 0; }

.seo-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 56px;
    align-items: start;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.seo-sidebar { position: sticky; top: 100px; }

.seo-sidebar-card {
    background: var(--ink);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 28px rgba(26,10,36,0.14);
}
.seo-sidebar-card h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
}
.seo-sidebar-card > p { font-size: 0.83rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.55; }
.seo-sidebar-card .btn-fill { width: 100%; text-align: center; display: block; }
.seo-sidebar-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 20px 0; }
.seo-sidebar-contact { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; }
.seo-sidebar-contact a { color: var(--clean); text-decoration: none; font-weight: 600; }

.seo-article {}
.seo-article h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.18;
    margin-bottom: 10px;
}
.seo-subtitle {
    font-size: 1rem;
    color: var(--ink-mid);
    font-weight: 500;
    line-height: 1.55;
    margin-bottom: 36px;
}

/* First section visible */
.seo-first h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 14px;
    border-left: 3px solid var(--clean);
    padding-left: 12px;
}
.seo-first p { font-size: 0.95rem; color: var(--ink-mid); line-height: 1.78; margin-bottom: 14px; }

/* Accordions */
.seo-acc {
    border-bottom: 1px solid var(--canvas-mid);
    margin-top: 0;
}
.seo-acc summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0 18px 12px;
    margin-left: -12px;
    border-left: 3px solid transparent;
    transition: border-color 0.2s;
}
.seo-acc[open] > summary { border-left-color: var(--clean); }
.seo-acc summary::-webkit-details-marker { display: none; }
.seo-acc-icon {
    width: 22px; height: 22px;
    flex-shrink: 0;
    background: var(--canvas-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}
.seo-acc-icon svg { width: 11px; height: 11px; color: var(--ink-mid); }
.seo-acc[open] .seo-acc-icon { background: var(--clean); transform: rotate(45deg); }
.seo-acc[open] .seo-acc-icon svg { color: #fff; }
.seo-acc summary h2 {
    font-family: 'Bricolage Grotesque', sans-serif !important;
    font-weight: 700 !important;
    font-size: clamp(1rem, 1.8vw, 1.3rem) !important;
    color: var(--ink) !important;
    letter-spacing: -0.01em !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    flex: 1 !important;
}
.seo-acc-body { padding: 4px 0 22px; }
.seo-acc-body p { font-size: 0.93rem; color: var(--ink-mid); line-height: 1.78; margin-bottom: 13px; }
.seo-acc-body h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin-top: 20px;
    margin-bottom: 10px;
}
.seo-acc-body strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
    .seo-layout { grid-template-columns: 1fr; }
    .seo-sidebar { position: static; order: 2; }
    .seo-article { order: 1; }
}

/* ── LEGAL PAGES ── */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 80px 24px; }
.legal-wrap h1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.legal-meta { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-bottom: 48px; }
.legal-wrap h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    margin-top: 36px;
    margin-bottom: 10px;
}
.legal-wrap p, .legal-wrap li { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 12px; }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap a { color: var(--clean); text-decoration: none; }
.legal-wrap a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .lead-widget { max-width: 480px; }
    .offer-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; gap: 36px; }
    .contact-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hero-topbar .nav-links { display: none; }
    .hero-topbar .btn-fill { display: none; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: flex; }
    .proof-band { grid-template-columns: repeat(2, 1fr); }
    .proof-cell { border-right: none; border-bottom: 1px solid var(--canvas-mid); }
    .proof-cell:nth-child(2n) { }
    .method-step { grid-template-columns: 1fr 60px; }
    .step-num { font-size: 2.8rem; }
    .midcta-stats { gap: 28px; flex-wrap: wrap; justify-content: center; }
    .voices-grid { grid-template-columns: 1fr; }
    .faq-layout { grid-template-columns: 1fr; }
    .faq-sidebar { position: static; }
    .form-row { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    .foot-base { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
    #sticky-cta span { display: none; }
    #sticky-cta { border-radius: 50%; padding: 14px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn-fill, .hero-btns .btn-ghost { text-align: center; justify-content: center; display: flex; }
}
