*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-weight: 400; color: #1a2030; line-height: 1.6; }

/* ── TOKENS ── */
:root {
    --volt: #2563eb;
    --volt-hover: #1d4ed8;
    --volt-glow: rgba(37, 99, 235, 0.28);
    --volt-dim: rgba(37, 99, 235, 0.1);
    --volt-mid: #3b82f6;
    --deep: #060c16;
    --tier: #0c1424;
    --tier-hi: #121e34;
    --cool: #f2f6fb;
    --cool-mid: #e4ecf5;
    --white: #ffffff;
    --ink: #0b1218;
    --ink-mid: #4a5568;
    --text-on-dark: rgba(220, 235, 255, 0.62);
    --radius: 10px;
    --shadow: 0 4px 28px rgba(0,0,0,0.22);
}

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

/* ── BUTTONS ── */
.btn-volt {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    background: var(--volt);
    color: var(--white);
    border: 2px solid var(--volt);
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 18px var(--volt-glow);
}
.btn-volt:hover {
    background: var(--volt-hover);
    border-color: var(--volt-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.42);
    color: var(--white);
}
.btn-outline {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
    letter-spacing: 0.01em;
    transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-volt-sm {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 7px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    background: var(--volt);
    color: var(--white);
    border: 2px solid var(--volt);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 3px 12px var(--volt-glow);
}
.btn-volt-sm:hover {
    background: var(--volt-hover);
    border-color: var(--volt-hover);
    transform: translateY(-2px);
    color: var(--white);
}

/* ── LOGO ── */
.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-mark {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.55));
}
.logo-text {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.logo-text span { color: #93c5fd; }

/* ── NAV ── */
#prime-nav {
    background: rgba(6, 12, 22, 0.97);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    transition: box-shadow 0.3s;
}
#prime-nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.55); }
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 62px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}
.nav-links li a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    padding: 9px 14px;
    display: block;
    font-weight: 500;
    font-size: 0.88rem;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-phone {
    color: var(--white);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    padding: 8px 16px;
    background: var(--volt-dim);
    border: 1px solid rgba(37,99,235,0.35);
    border-radius: 7px;
    transition: background 0.2s, border-color 0.2s;
}
.nav-phone:hover { background: rgba(37,99,235,0.22); border-color: rgba(37,99,235,0.6); }
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    flex-shrink: 0;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.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-menu {
    display: none;
    background: var(--tier);
    border-top: 1px solid rgba(255,255,255,0.07);
}
#mob-menu.open { display: block; }
#mob-menu .mob-inner { padding: 12px 24px 20px; }
#mob-menu ul { list-style: none; }
#mob-menu ul li a {
    display: block;
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.2s;
}
#mob-menu ul li a:hover { color: #93c5fd; }
#mob-menu .mob-phone { display: block; margin-top: 14px; text-align: center; }

/* ── HERO ── */
#launch {
    background: linear-gradient(140deg, var(--deep) 0%, #0a1428 50%, #091630 100%);
    padding: 88px 0 72px;
    position: relative;
    overflow: hidden;
}
#launch::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -60px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 65%);
    pointer-events: none;
}
#launch::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 65%);
    pointer-events: none;
}
.launch-inner {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.launch-copy { color: var(--white); }
.launch-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #93c5fd;
    background: rgba(37,99,235,0.16);
    border: 1px solid rgba(147,197,253,0.22);
    border-radius: 50px;
    padding: 5px 14px;
    margin-bottom: 22px;
    font-family: 'Chakra Petch', sans-serif;
}
.launch-eyebrow svg { width: 13px; height: 13px; }
.launch-h {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.launch-h em { font-style: normal; color: #93c5fd; }
.launch-sub {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: var(--text-on-dark);
    margin-bottom: 30px;
    line-height: 1.75;
    max-width: 480px;
}
.launch-checks { list-style: none; margin-bottom: 36px; }
.launch-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 9px;
}
.launch-checks li svg { width: 16px; height: 16px; flex-shrink: 0; color: #4ade80; }
.launch-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SIGNAL BARS WIDGET ── */
.sig-widget {
    background: var(--tier);
    border: 1px solid rgba(37,99,235,0.28);
    border-radius: 14px;
    padding: 30px 28px 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.sig-widget::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--volt), var(--volt-mid), transparent);
}
.sig-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.sig-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.55);
}
.sig-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #4ade80;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.sig-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
.sig-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 130px;
    margin-bottom: 20px;
    padding: 0 4px;
}
.sig-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 8px;
}
.sig-bar-track {
    flex: 1;
    width: 100%;
    background: rgba(255,255,255,0.05);
    border-radius: 4px 4px 0 0;
    position: relative;
    overflow: hidden;
}
.sig-bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--volt-mid) 0%, var(--volt) 100%);
    box-shadow: 0 0 12px rgba(37,99,235,0.5);
    transition: height 0.9s cubic-bezier(0.34, 1.3, 0.64, 1);
}
.sig-bar-fill.animated { height: var(--bar-h); }
.sig-bar-pct {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    transition: color 0.5s;
}
.sig-bar.active .sig-bar-pct { color: #93c5fd; }
.sig-bar-label {
    font-size: 0.62rem;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.sig-footer {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sig-stat {
    text-align: center;
}
.sig-stat-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    line-height: 1;
}
.sig-stat-lbl {
    font-size: 0.64rem;
    color: rgba(255,255,255,0.42);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 3px;
}
.sig-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.1); }

/* ── PROOF STRIP ── */
#proof {
    background: var(--cool);
    padding: 44px 0;
    border-bottom: 1px solid var(--cool-mid);
}
.proof-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.proof-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    border: 1.5px solid var(--cool-mid);
    border-left: 4px solid var(--volt);
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.88rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.proof-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,99,235,0.12); }
.proof-pill svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--volt); }

/* ── SERVICE STRIPS ── */
#offer { background: var(--deep); }
.svc-strip {
    padding: 70px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}
.svc-strip:last-child { border-bottom: none; }
.svc-strip.strip-alt { background: var(--tier); }
.svc-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.svc-strip-inner.flip { direction: rtl; }
.svc-strip-inner.flip > * { direction: ltr; }
.svc-copy { color: var(--white); }
.svc-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--volt-mid);
    margin-bottom: 10px;
    display: block;
}
.svc-strip h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.svc-strip p {
    color: var(--text-on-dark);
    line-height: 1.78;
    margin-bottom: 14px;
    font-size: 0.97rem;
}
.svc-list {
    list-style: none;
    margin: 18px 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.svc-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.86rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
}
.svc-list li svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--volt-mid); }
.svc-panel {
    background: var(--tier-hi);
    border: 1px solid rgba(37,99,235,0.22);
    border-radius: 14px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
}
.svc-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--volt), var(--volt-mid));
}
.svc-panel-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--volt-dim);
    border: 1px solid rgba(37,99,235,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    margin-bottom: 18px;
}
.svc-panel-icon svg { width: 26px; height: 26px; }
.svc-panel h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}
.svc-panel p { color: var(--text-on-dark); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.svc-panel-stat {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.svc-panel-stat-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #93c5fd;
    line-height: 1;
}
.svc-panel-stat-text { font-size: 0.8rem; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* ── PROCESS TABS ── */
#method {
    background: var(--cool);
    padding: 88px 0;
}
.method-hd { text-align: center; margin-bottom: 48px; }
.method-hd h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.method-hd h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--volt);
    border-radius: 2px;
    margin: 12px auto 0;
}
.method-hd p { color: var(--ink-mid); font-size: 1rem; line-height: 1.7; max-width: 520px; margin: 16px auto 0; }
.proc-tabs {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--cool-mid);
    margin-bottom: 28px;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.proc-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 12px 16px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--ink-mid);
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    border-right: 1px solid var(--cool-mid);
    position: relative;
}
.proc-tab:last-child { border-right: none; }
.proc-tab:hover { background: var(--cool); color: var(--ink); }
.proc-tab.active {
    background: var(--volt);
    color: var(--white);
    border-right-color: transparent;
}
.proc-tab.active + .proc-tab { border-left-color: transparent; }
.proc-tab-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.proc-tab.active .proc-tab-num { background: rgba(255,255,255,0.2); }
.proc-panels { }
.proc-panel {
    display: none;
    background: var(--white);
    border: 1px solid var(--cool-mid);
    border-radius: 0 0 10px 10px;
    border-top: none;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.proc-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.proc-panel-copy h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}
.proc-panel-copy p { color: var(--ink-mid); line-height: 1.78; margin-bottom: 12px; font-size: 0.97rem; }
.proc-panel-copy p:last-child { margin-bottom: 0; }
.proc-panel-points { list-style: none; }
.proc-panel-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-mid);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}
.proc-panel-points li svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--volt); margin-top: 2px; }
.proc-panel-visual {
    background: linear-gradient(135deg, var(--volt-dim) 0%, rgba(59,130,246,0.06) 100%);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}
.proc-panel-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--volt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}
.proc-panel-icon svg { width: 30px; height: 30px; }
.proc-panel-visual h4 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
}
.proc-panel-visual p { font-size: 0.84rem; color: var(--ink-mid); line-height: 1.65; }

/* ── MIDPOINT CTA ── */
#midpoint {
    background: linear-gradient(135deg, var(--tier) 0%, #0d1c38 50%, #0a1428 100%);
    padding: 72px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#midpoint::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 65%);
    pointer-events: none;
}
.midpoint-inner { position: relative; z-index: 1; }
.midpoint-inner h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.midpoint-inner > p { color: var(--text-on-dark); margin-bottom: 40px; font-size: 1rem; }
.mid-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}
.mid-stat {
    padding: 0 40px;
    text-align: center;
}
.mid-stat-num {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: block;
}
.mid-stat-num span { color: #93c5fd; }
.mid-stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 6px; letter-spacing: 0.04em; }
.mid-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); flex-shrink: 0; }
.mid-btns { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ── WHY US — 2×2 COUNTER CARDS ── */
#reasons {
    background: var(--deep);
    padding: 88px 0;
}
.reasons-hd { text-align: center; margin-bottom: 48px; }
.reasons-hd h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.reasons-hd h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--volt);
    border-radius: 2px;
    margin: 12px auto 0;
}
.reasons-hd p { color: var(--text-on-dark); font-size: 1rem; line-height: 1.7; max-width: 520px; margin: 16px auto 0; }
.reason-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 860px;
    margin: 0 auto;
}
.reason-card {
    background: var(--tier);
    border: 1px solid rgba(37,99,235,0.18);
    border-left: 4px solid var(--volt);
    border-radius: var(--radius);
    padding: 36px 32px 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.22s, box-shadow 0.22s;
}
.reason-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 120px; height: 120px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.reason-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(37,99,235,0.18); }
.reason-counter {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--volt-mid);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.reason-counter sup { font-size: 1.4rem; vertical-align: top; margin-top: 4px; display: inline-block; }
.reason-card h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}
.reason-card p { color: var(--text-on-dark); font-size: 0.9rem; line-height: 1.72; }

/* ── TESTIMONIALS (light zone) ── */
#voices {
    background: var(--cool);
    padding: 88px 0;
}
.voices-hd { text-align: center; margin-bottom: 48px; }
.voices-hd h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.voices-hd h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--volt);
    border-radius: 2px;
    margin: 12px auto 0;
}
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.voice-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 26px 26px;
    border-left: 4px solid var(--volt);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.voice-card::before {
    content: '\201C';
    position: absolute;
    top: -8px; right: 18px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: rgba(37,99,235,0.07);
    line-height: 1;
    pointer-events: none;
}
.voice-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(37,99,235,0.12); }
.voice-stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 14px; letter-spacing: 2px; }
.voice-text { font-size: 0.94rem; color: var(--ink-mid); font-style: italic; line-height: 1.78; margin-bottom: 18px; }
.voice-author { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.voice-biz { font-size: 0.8rem; color: #8a9ab5; margin-top: 3px; }

/* ── SEO CONTENT SECTION ── */
#deep {
    background: var(--deep);
    padding: 88px 0;
}
.deep-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}
.deep-nav { position: sticky; top: 80px; }
.deep-nav-title {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.38);
    margin-bottom: 14px;
    padding-left: 12px;
}
.deep-nav-links { list-style: none; }
.deep-nav-links li a {
    display: block;
    padding: 8px 12px;
    font-size: 0.81rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    border-left: 2px solid rgba(255,255,255,0.08);
    border-radius: 0 4px 4px 0;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    line-height: 1.4;
    margin-bottom: 3px;
}
.deep-nav-links li a:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.04); }
.deep-nav-links li a.active { color: #93c5fd; border-left-color: var(--volt); background: rgba(37,99,235,0.08); }
.deep-nav-cta { margin-top: 28px; padding: 18px; background: rgba(37,99,235,0.1); border: 1px solid rgba(37,99,235,0.25); border-radius: var(--radius); }
.deep-nav-cta p { font-size: 0.82rem; color: var(--text-on-dark); margin-bottom: 12px; }
.deep-nav-cta .btn-volt { display: block; text-align: center; padding: 10px 16px; font-size: 0.88rem; }
.deep-content { }
.deep-intro { margin-bottom: 36px; }
.deep-intro h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}
.deep-intro h2 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-on-dark);
    line-height: 1.65;
    font-family: 'Inter', sans-serif;
    margin-bottom: 16px;
}
.deep-intro p {
    font-size: 0.95rem;
    color: var(--text-on-dark);
    line-height: 1.7;
}
.deep-intro a { color: #93c5fd; text-decoration: underline; }

/* ── ACCORDION ── */
.acc-item {
    border: 1px solid rgba(37,99,235,0.15);
    border-radius: 8px;
    margin-bottom: 8px;
    background: var(--tier);
    overflow: hidden;
    transition: border-color 0.2s;
}
.acc-item.open { border-color: rgba(37,99,235,0.38); }
.acc-btn {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.acc-btn h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    line-height: 1.4;
    transition: color 0.2s;
    text-align: left;
}
.acc-item.open .acc-btn h2 { color: var(--white); }
.acc-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(37,99,235,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    transition: background 0.2s, transform 0.3s;
}
.acc-item.open .acc-icon { background: var(--volt); transform: rotate(45deg); }
.acc-icon svg { width: 12px; height: 12px; }
.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s ease;
}
.acc-body-inner {
    padding: 0 20px 22px;
    color: var(--text-on-dark);
    font-size: 0.92rem;
    line-height: 1.8;
}
.acc-body-inner h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #93c5fd;
    margin: 20px 0 8px;
}
.acc-body-inner p { margin-bottom: 14px; }
.acc-body-inner p:last-child { margin-bottom: 0; }
.acc-body-inner ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 14px;
}
.acc-body-inner ul li { margin-bottom: 6px; }
.acc-body-inner strong { color: rgba(255,255,255,0.88); font-weight: 600; }
.acc-body-inner a { color: #93c5fd; text-decoration: underline; }

/* ── CLOSE / CONTACT FORM ── */
#close {
    background: var(--tier);
    padding: 88px 0;
    position: relative;
    overflow: hidden;
}
#close::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(ellipse, rgba(37,99,235,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.close-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.close-copy h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.25;
}
.close-copy > p { color: var(--text-on-dark); line-height: 1.78; margin-bottom: 28px; font-size: 0.97rem; }
.close-trust { list-style: none; margin-bottom: 28px; }
.close-trust li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.close-trust li svg { width: 16px; height: 16px; flex-shrink: 0; color: #4ade80; }
.close-contact {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 22px;
}
.close-contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.close-contact-line svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--volt-mid); }
.close-contact-line a { color: var(--white); text-decoration: none; font-weight: 600; font-size: 0.95rem; }
.close-contact-line a:hover { color: #93c5fd; }
.close-form-wrap {
    background: var(--tier-hi);
    border: 1px solid rgba(37,99,235,0.2);
    border-radius: 14px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}
.close-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--volt), var(--volt-mid));
}
.close-form-wrap h3 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    margin-top: 6px;
}
.close-form-wrap > p { font-size: 0.84rem; color: rgba(255,255,255,0.48); margin-bottom: 22px; }

/* ── FORM FIELDS ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-full { grid-column: 1 / -1; }
.form-label { display: block; font-weight: 600; font-size: 0.82rem; margin-bottom: 5px; color: rgba(255,255,255,0.65); }
.form-field {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 7px;
    font-size: 0.93rem;
    font-family: 'Inter', sans-serif;
    color: var(--white);
    background: rgba(255,255,255,0.06);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-field::placeholder { color: rgba(255,255,255,0.28); }
.form-field:focus {
    outline: none;
    border-color: var(--volt-mid);
    background: rgba(37,99,235,0.08);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.14);
}
textarea.form-field { resize: vertical; min-height: 96px; }
select.form-field { appearance: none; cursor: pointer; }
.honeypot-field { display: none !important; visibility: hidden; }
.form-submit { grid-column: 1 / -1; margin-top: 4px; }
.form-submit .btn-volt { width: 100%; text-align: center; padding: 14px; justify-content: center; }
#form-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 7px;
    font-weight: 600;
    font-size: 0.9rem;
    display: none;
}
#form-message.success { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.3); display: block; }
#form-message.error { background: rgba(248,113,113,0.12); color: #f87171; border: 1px solid rgba(248,113,113,0.3); display: block; }

/* ── FOOTER ── */
#site-footer {
    background: #030710;
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col h4 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
    margin-bottom: 18px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--volt);
    display: inline-block;
}
.footer-col p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 8px; }
.footer-col-links { list-style: none; }
.footer-col-links li a {
    display: block;
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 3px 0;
    transition: color 0.2s, padding-left 0.2s;
}
.footer-col-links li a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--volt-mid); }
.footer-contact-item a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; }
.footer-contact-item a:hover { color: #93c5fd; }
.footer-socials { display: flex; gap: 8px; margin-top: 16px; }
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}
.social-btn svg { width: 15px; height: 15px; display: block; }
.sb-facebook:hover { background: #1877F2; border-color: #1877F2; color: #fff; transform: translateY(-2px); }
.sb-x:hover        { background: #000; border-color: #333; color: #fff; transform: translateY(-2px); }
.sb-linkedin:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; transform: translateY(-2px); }
.footer-base {
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

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

/* ── BACK TO TOP ── */
#back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--volt);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px var(--volt-glow);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s;
    transform: translateY(10px);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,99,235,0.55); }
#back-to-top svg { width: 18px; height: 18px; }

/* ── LEGAL PAGES ── */
.legal-wrap {
    background: var(--cool);
    padding: 110px 24px 80px;
    min-height: 70vh;
}
.legal-body {
    max-width: 760px;
    margin: 0 auto;
}
.legal-body h1 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--ink);
    margin-bottom: 6px;
}
.legal-body .legal-date { font-size: 0.8rem; color: var(--ink-mid); margin-bottom: 44px; display: block; }
.legal-sections { display: flex; flex-direction: column; gap: 36px; color: var(--ink-mid); line-height: 1.75; }
.legal-sections h2 {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 10px;
}
.legal-sections p { font-size: 0.95rem; margin-bottom: 10px; }
.legal-sections ul { list-style: disc; padding-left: 22px; margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.legal-sections li { font-size: 0.95rem; }
.legal-sections a { color: var(--volt); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .deep-grid { grid-template-columns: 200px 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
    .launch-inner { grid-template-columns: 1fr; gap: 44px; }
    .launch-copy { text-align: center; }
    .launch-sub { margin-left: auto; margin-right: auto; }
    .launch-btns { justify-content: center; }
    .sig-widget { max-width: 520px; margin: 0 auto; }
    .svc-strip-inner { grid-template-columns: 1fr; gap: 36px; }
    .svc-strip-inner.flip { direction: ltr; }
    .close-inner { grid-template-columns: 1fr; gap: 40px; }
    .deep-grid { grid-template-columns: 1fr; }
    .deep-nav { display: none; }
    .mid-stats { flex-wrap: wrap; gap: 24px; }
    .mid-divider { display: none; }
    .mid-stat { padding: 0 20px; }
}
@media (max-width: 860px) {
    .nav-links, .nav-phone { display: none; }
    .nav-burger { display: flex; }
    .voice-grid { grid-template-columns: 1fr 1fr; }
    .proc-panel.active { grid-template-columns: 1fr; }
    .reason-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 640px) {
    .proof-row { flex-direction: column; align-items: stretch; }
    .proof-pill { justify-content: flex-start; }
    .svc-list { grid-template-columns: 1fr; }
    .proc-tab { font-size: 0.74rem; padding: 14px 8px 12px; }
    .proc-panel { padding: 24px 20px; }
    .voice-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .form-full { grid-column: 1; }
    .form-submit { grid-column: 1; }
    #form-message { grid-column: 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .close-form-wrap { padding: 26px 20px; }
    .mid-stat-num { font-size: 1.7rem; }
    .launch-btns { flex-direction: column; align-items: stretch; }
    .launch-btns .btn-volt,
    .launch-btns .btn-outline { text-align: center; }
    #launch, #reasons, #voices, #deep, #close, #midpoint { padding: 60px 0; }
    #offer .svc-strip { padding: 52px 0; }
    #method { padding: 60px 0; }
}
@media (max-width: 440px) {
    .sig-bars { gap: 7px; height: 110px; }
    .proc-tabs { flex-wrap: wrap; }
    .proc-tab { min-width: 50%; border-bottom: 1px solid var(--cool-mid); }
}
