/* ── VARIABLES ── */
:root {
    --base:       #0e1117;
    --base-2:     #161c27;
    --base-3:     #1e2639;
    --canvas:     #f6f3ef;
    --canvas-2:   #ede9e3;
    --deal:       #7e22ce;
    --deal-dk:    #6b21a8;
    --deal-lt:    #a855f7;
    --deal-glow:  rgba(126,34,206,0.25);
    --text:       #e8e6e3;
    --text-muted: #8892a4;
    --text-dk:    #1a1520;
    --text-dk-m:  #5a6475;
    --border:     rgba(255,255,255,0.08);
    --border-lt:  rgba(0,0,0,0.09);
    --font-h:     'Jost', sans-serif;
    --font-b:     'Mulish', sans-serif;
    --radius:     10px;
    --shadow:     0 4px 24px rgba(0,0,0,0.18);
    --shadow-lt:  0 4px 20px rgba(0,0,0,0.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-b);
    font-size: 16px;
    line-height: 1.7;
    background: var(--base);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ── CONTAINER ── */
.bay {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.2; }
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 999px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--deal);
    color: #fff;
    box-shadow: 0 6px 20px rgba(126,34,206,0.35);
}
.btn-primary:hover { background: var(--deal-dk); box-shadow: 0 8px 24px rgba(126,34,206,0.45); }
.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-outline-dk {
    background: transparent;
    color: var(--text-dk);
    border-color: rgba(0,0,0,0.2);
}
.btn-outline-dk:hover { border-color: var(--deal); color: var(--deal); }
.btn-call {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    gap: 10px;
}
.btn-call svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-call:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ── FADE-IN ANIMATION ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* ── SECTION HELPERS ── */
.sect-dark  { background: var(--base); }
.sect-dark2 { background: var(--base-2); }
.sect-light { background: var(--canvas); color: var(--text-dk); }
.sect-light .text-muted { color: var(--text-dk-m); }

/* ── UTILITY BAR ── */
#util-bar {
    background: var(--base-3);
    border-bottom: 1px solid var(--border);
    font-family: var(--font-h);
    font-size: 13px;
    color: var(--text-muted);
}
.util-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    gap: 16px;
}
.util-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.util-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.util-item svg { width: 13px; height: 13px; opacity: 0.7; flex-shrink: 0; }
.util-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.util-phone {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
}
.util-phone:hover { color: var(--deal-lt); }
.util-phone svg { width: 12px; height: 12px; }
.util-email { font-size: 12px; color: var(--text-muted); }
.util-email:hover { color: var(--text); }
.util-cta {
    background: var(--deal);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    transition: background 0.2s;
}
.util-cta:hover { background: var(--deal-dk); }

/* ── NAVIGATION ── */
#site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(14,17,23,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.nav-rail {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 16px;
}

/* Logo */
.site-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.site-mark-icon { width: 36px; height: 36px; flex-shrink: 0; }
.site-mark-name {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 15px;
    color: var(--text);
    line-height: 1.2;
    white-space: nowrap;
}
.site-mark-name em {
    font-style: normal;
    color: var(--deal-lt);
}

/* Nav list */
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}
.nav-list a {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-list a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* Dropdown */
.nav-item-drop { position: relative; }
.nav-drop-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--base-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s, transform 0.18s;
    box-shadow: var(--shadow);
    z-index: 300;
}
.nav-drop-panel a {
    display: block;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
}
.nav-item-drop.is-open .nav-drop-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* Nav phone + hamburger */
.nav-phone {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 14px;
    color: var(--deal-lt);
    white-space: nowrap;
    transition: color 0.2s;
}
.nav-phone:hover { color: #fff; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
#mob-nav {
    display: none;
    background: var(--base-2);
    border-top: 1px solid var(--border);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
}
#mob-nav.is-open { max-height: 600px; }
.mob-panel {
    padding: 16px 24px 24px;
}
.mob-panel a, .mob-panel span {
    display: block;
    font-family: var(--font-h);
    font-size: 15px;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.mob-panel .mob-sub {
    font-size: 14px;
    color: var(--text-muted);
    padding: 8px 0 8px 16px;
}
.mob-panel .mob-phone {
    color: var(--deal-lt);
    font-weight: 700;
    font-size: 17px;
    border-bottom: none;
    padding-top: 16px;
}

/* ── HERO ── */
#launch {
    background: var(--base);
    padding: 80px 0 70px;
    position: relative;
    overflow: hidden;
}
#launch::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(126,34,206,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.launch-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: center;
}

/* Left column */
.launch-copy {}
.launch-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(126,34,206,0.15);
    border: 1px solid rgba(168,85,247,0.3);
    color: var(--deal-lt);
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 24px;
    white-space: nowrap;
}
.launch-tag svg { width: 12px; height: 12px; flex-shrink: 0; }
.launch-tag-cycle { transition: opacity 0.35s; }

.launch-hl {
    font-family: var(--font-h);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}
.launch-hl em {
    font-style: normal;
    color: var(--deal-lt);
}
.launch-sub {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

/* Stat cells */
.launch-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 36px;
}
.launch-stat {
    background: var(--base-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 14px;
    text-align: center;
}
.launch-stat-num {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 700;
    color: var(--deal-lt);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}
.launch-stat-lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    display: block;
}

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

/* Right column — form card */
.launch-form-card {
    background: var(--base-2);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: var(--shadow);
    position: relative;
}
.launch-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--deal), var(--deal-lt));
}
.form-title {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}
.form-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Form fields */
.offer-form .field { margin-bottom: 16px; }
.offer-form label {
    display: block;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}
.offer-form input,
.offer-form select,
.offer-form textarea {
    width: 100%;
    background: var(--base-3);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-b);
    font-size: 15px;
    padding: 12px 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.offer-form input:focus,
.offer-form select:focus,
.offer-form textarea:focus {
    outline: none;
    border-color: var(--deal);
    box-shadow: 0 0 0 3px rgba(126,34,206,0.15);
}
.offer-form input::placeholder,
.offer-form textarea::placeholder { color: #4a5568; }
.offer-form select option { background: var(--base-2); }
.offer-form textarea { resize: vertical; min-height: 90px; }
.offer-form .form-submit { margin-top: 6px; }
.offer-form .form-submit .btn { width: 100%; justify-content: center; padding: 15px; font-size: 16px; }
.honeypot-wrap { display: none !important; aria-hidden: true; }
#form-status {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 8px;
    display: none;
    margin-top: 12px;
}
#form-status.success { background: rgba(16,185,129,0.12); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.2); display: block; }
#form-status.error { background: rgba(239,68,68,0.1); color: #fca5a5; border: 1px solid rgba(239,68,68,0.2); display: block; }
.form-trust {
    text-align: center;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
}

/* ── PROOF STRIP ── */
#proof-strip {
    background: var(--base-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.proof-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}
.proof-item svg {
    width: 16px;
    height: 16px;
    color: var(--deal-lt);
    flex-shrink: 0;
}

/* ── HOW IT WORKS (light zone) ── */
#method {
    background: var(--canvas);
    color: var(--text-dk);
    padding: 80px 0;
}
.method-head {
    text-align: center;
    margin-bottom: 60px;
}
.method-head h2 { color: var(--text-dk); margin-bottom: 10px; }
.method-head p { color: var(--text-dk-m); max-width: 560px; margin: 0 auto; }

.method-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.method-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--deal) 0, var(--deal) 8px,
        transparent 8px, transparent 16px
    );
}

.method-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.method-badge {
    width: 56px;
    height: 56px;
    background: var(--deal);
    border-radius: 4px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(126,34,206,0.4);
    flex-shrink: 0;
}
.method-badge-num {
    transform: rotate(-45deg);
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.method-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dk);
    margin-bottom: 8px;
}
.method-step p {
    font-size: 14px;
    color: var(--text-dk-m);
    line-height: 1.6;
    margin: 0;
}

/* ── PROPERTIES WE BUY ── */
#scope {
    background: var(--base-2);
    padding: 80px 0;
}
.scope-head { text-align: center; margin-bottom: 48px; }
.scope-head h2 { margin-bottom: 10px; }
.scope-head p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.scope-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.scope-card {
    background: var(--base-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color 0.2s, transform 0.2s;
}
.scope-card:hover { border-color: rgba(168,85,247,0.4); transform: translateY(-3px); }
.scope-icon {
    width: 44px;
    height: 44px;
    background: rgba(126,34,206,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.scope-icon svg { width: 22px; height: 22px; color: var(--deal-lt); }
.scope-card h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.scope-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── WHY US ── */
#reasons {
    background: var(--base);
    padding: 80px 0;
}
.reasons-head { text-align: center; margin-bottom: 48px; }
.reasons-head h2 { margin-bottom: 10px; }
.reasons-head p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.reason-box {
    background: var(--base-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color 0.25s;
}
.reason-box:hover { border-color: rgba(168,85,247,0.35); }
.reason-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(126,34,206,0.2), rgba(168,85,247,0.08));
    border: 1px solid rgba(168,85,247,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.reason-icon svg { width: 22px; height: 22px; color: var(--deal-lt); }
.reason-box h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.reason-box p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ── MID CTA BAND ── */
#mid-cta {
    background: linear-gradient(135deg, var(--deal-dk) 0%, var(--deal) 50%, var(--deal-lt) 100%);
    padding: 60px 0;
    text-align: center;
}
.mid-cta-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 14px;
}
.mid-cta-inner p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 28px; }
.mid-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.mid-cta-btns .btn-white {
    background: #fff;
    color: var(--deal-dk);
    font-weight: 700;
}
.mid-cta-btns .btn-white:hover { background: rgba(255,255,255,0.9); }
.mid-cta-btns .btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}
.mid-cta-btns .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

/* ── SEO CONTENT (light zone) ── */
#guide {
    background: var(--canvas);
    color: var(--text-dk);
    padding: 80px 0;
}
.guide-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}
.guide-body { min-width: 0; }
.guide-body h1 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dk);
    margin-bottom: 12px;
}
.guide-intro {
    font-size: 17px;
    color: var(--text-dk-m);
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Accordion (details/summary) */
.guide-body details {
    border: 1px solid var(--border-lt);
    border-radius: var(--radius);
    margin-bottom: 14px;
    background: #fff;
    box-shadow: var(--shadow-lt);
    overflow: hidden;
}
.guide-body details[open] {
    border-left: 3px solid var(--deal);
}
.guide-body summary {
    cursor: pointer;
    padding: 18px 22px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
}
.guide-body summary::-webkit-details-marker { display: none; }
.guide-body summary h2 {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: var(--text-dk) !important;
    line-height: 1.35 !important;
    margin: 0 !important;
    flex: 1;
}
.sum-arrow {
    width: 20px;
    height: 20px;
    color: var(--deal);
    flex-shrink: 0;
    transition: transform 0.2s;
}
details[open] .sum-arrow { transform: rotate(180deg); }
.guide-acc-body {
    padding: 4px 22px 22px;
    border-top: 1px solid var(--border-lt);
}
.guide-acc-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dk);
    margin: 20px 0 8px;
}
.guide-acc-body p {
    font-size: 15px;
    color: var(--text-dk-m);
    line-height: 1.75;
    margin-bottom: 14px;
}
.guide-acc-body p:last-child { margin-bottom: 0; }
.guide-acc-body ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}
.guide-acc-body ul li {
    font-size: 15px;
    color: var(--text-dk-m);
    line-height: 1.7;
    margin-bottom: 6px;
}

/* Sticky aside */
.guide-aside {
    position: sticky;
    top: 84px;
}
.aside-offer-card {
    background: var(--base);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: var(--shadow);
}
.aside-offer-card h3 {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.aside-offer-card p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.aside-offer-card .btn { width: 100%; justify-content: center; }
.aside-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}
.aside-contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.aside-contact-line svg { width: 16px; height: 16px; color: var(--deal-lt); flex-shrink: 0; }
.aside-contact-line a { color: var(--deal-lt); font-weight: 600; }
.aside-trust { font-size: 12px; color: var(--text-muted); margin-top: 14px; }
.aside-trust span { color: var(--deal-lt); }

/* ── FAQ ── */
#faq {
    background: var(--canvas);
    color: var(--text-dk);
    padding: 64px 0 80px;
    border-top: 1px solid var(--border-lt);
}
.faq-head { margin-bottom: 36px; }
.faq-head h2 { color: var(--text-dk); margin-bottom: 8px; }
.faq-head p { color: var(--text-dk-m); }

.faq-list { max-width: 820px; }
.faq-list details {
    border-bottom: 1px solid var(--border-lt);
}
.faq-list details:first-child { border-top: 1px solid var(--border-lt); }
.faq-list summary {
    cursor: pointer;
    padding: 18px 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dk);
    user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-q-icon {
    width: 22px;
    height: 22px;
    background: var(--deal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
}
.faq-list .sum-arrow { color: var(--deal); }
.faq-ans {
    padding: 4px 38px 20px;
    font-size: 15px;
    color: var(--text-dk-m);
    line-height: 1.75;
}

/* ── TESTIMONIALS ── */
#voices {
    background: var(--base-2);
    padding: 80px 0;
}
.voices-head { text-align: center; margin-bottom: 48px; }
.voices-head h2 { margin-bottom: 10px; }
.voices-head p { color: var(--text-muted); }

.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.voice-card {
    background: var(--base-3);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.voice-quote-mark {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 80px;
    line-height: 1;
    color: var(--deal);
    opacity: 0.15;
    pointer-events: none;
    user-select: none;
}
.voice-stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.voice-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.voice-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.voice-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deal), var(--deal-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}
.voice-name { font-family: var(--font-h); font-weight: 700; font-size: 14px; color: #fff; }
.voice-loc { font-size: 13px; color: var(--text-muted); }

/* ── BOTTOM CTA (light zone) ── */
#reach {
    background: var(--canvas);
    color: var(--text-dk);
    padding: 80px 0;
}
.reach-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.reach-copy h2 { color: var(--text-dk); margin-bottom: 14px; }
.reach-copy p { color: var(--text-dk-m); font-size: 17px; margin-bottom: 20px; }
.reach-trust-list {
    list-style: none;
    margin-bottom: 28px;
}
.reach-trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dk);
    padding: 7px 0;
}
.reach-trust-list li svg { width: 18px; height: 18px; color: var(--deal); flex-shrink: 0; }

.reach-card {
    background: var(--base);
    border-radius: 14px;
    padding: 40px 36px;
    box-shadow: var(--shadow);
    text-align: center;
}
.reach-phone-icon {
    width: 56px;
    height: 56px;
    background: rgba(126,34,206,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.reach-phone-icon svg { width: 26px; height: 26px; color: var(--deal-lt); }
.reach-lbl { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.reach-num {
    font-family: var(--font-h);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--deal-lt);
    display: block;
    margin-bottom: 4px;
    transition: color 0.2s;
}
.reach-num:hover { color: #fff; }
.reach-note { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; }
.reach-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
}
.reach-divider::before, .reach-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.reach-card .btn { width: 100%; justify-content: center; }

/* ── FOOTER ── */
#site-ft {
    background: var(--base-3);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.foot-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.foot-col h4 {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.foot-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    padding: 5px 0;
    transition: color 0.2s;
}
.foot-col a:hover { color: var(--text); }
.foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.foot-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.foot-phone-link {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 16px;
    color: var(--deal-lt);
    display: block;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.foot-phone-link:hover { color: #fff; }
.foot-email-link { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.foot-email-link:hover { color: var(--text); }

/* Social icons */
.foot-social {
    display: flex;
    gap: 10px;
    margin: 16px 0;
}
.soc-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--base-2);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}
.soc-ico:hover { border-color: var(--deal); background: rgba(126,34,206,0.1); }
.soc-ico svg { width: 15px; height: 15px; }

.foot-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.foot-contact-line svg { width: 15px; height: 15px; color: var(--deal-lt); margin-top: 2px; flex-shrink: 0; }

/* Footer bottom */
.foot-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
}
.foot-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-muted);
}
.foot-legal {
    display: flex;
    gap: 20px;
}
.foot-legal a { color: var(--text-muted); transition: color 0.2s; }
.foot-legal a:hover { color: var(--text); }

/* ── STICKY CTA ── */
.cta-pill {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--deal);
    color: #fff;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 22px;
    border-radius: 999px;
    box-shadow: 0 8px 28px rgba(126,34,206,0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    text-decoration: none;
    cursor: pointer;
}
.cta-pill svg { width: 16px; height: 16px; flex-shrink: 0; }
.cta-pill.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cta-pill:hover { background: var(--deal-dk); }
@media (max-width: 560px) {
    .cta-pill span { display: none; }
    .cta-pill { padding: 14px; border-radius: 50%; }
}

/* ── BACK TO TOP ── */
#up-btn {
    position: fixed;
    bottom: 92px;
    right: 30px;
    z-index: 89;
    width: 40px;
    height: 40px;
    background: var(--base-2);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    cursor: pointer;
}
#up-btn svg { width: 16px; height: 16px; }
#up-btn.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#up-btn:hover { background: var(--base-3); color: var(--text); }

/* ── LEGAL PAGES ── */
.legal-hero {
    background: var(--base-2);
    padding: 56px 0 48px;
    border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 10px; }
.legal-hero p { color: var(--text-muted); }
.legal-body {
    background: var(--canvas);
    color: var(--text-dk);
    padding: 56px 0 80px;
}
.legal-content { max-width: 760px; }
.legal-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dk);
    margin: 36px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--text-dk-m); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}
.legal-content ul li { font-size: 15px; color: var(--text-dk-m); line-height: 1.7; margin-bottom: 6px; }
.legal-content a { color: var(--deal); text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .foot-top { grid-template-columns: 1fr 1fr; }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .launch-grid { grid-template-columns: 1fr; }
    .launch-form-card { max-width: 520px; }
    .method-track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .method-track::before { display: none; }
    .scope-grid { grid-template-columns: repeat(2, 1fr); }
    .reach-inner { grid-template-columns: 1fr; }
    .guide-inner { grid-template-columns: 1fr; }
    .guide-aside { position: static; }
}

@media (max-width: 768px) {
    .nav-list, .nav-phone { display: none; }
    .nav-toggle { display: flex; }
    #mob-nav { display: block; }
    .voice-grid { grid-template-columns: 1fr; }
    .reasons-grid { grid-template-columns: 1fr; }
    .scope-grid { grid-template-columns: 1fr; }
    .launch-stats { grid-template-columns: repeat(3, 1fr); }
    .util-left .util-item:last-child { display: none; }
    .foot-top { grid-template-columns: 1fr; gap: 32px; }
    .foot-svc { display: none; }
}

@media (max-width: 480px) {
    .launch-stats { grid-template-columns: 1fr; }
    .launch-btns { flex-direction: column; }
    .mid-cta-btns { flex-direction: column; align-items: center; }
    .util-left { display: none; }
    .proof-list { gap: 16px; }
    .method-track { grid-template-columns: 1fr; }
    .foot-bottom-inner { flex-direction: column; text-align: center; }
}
