/* ============================================================
   SCALEPROXY DESIGN SYSTEM
   Brand: Technical confidence. Sharp. Direct. Trustworthy.
   Audience: BHW-savvy proxy buyers who've been burned before.
   ============================================================ */

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text-secondary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ===== DESIGN TOKENS ===== */
:root {
    /* Brand Colors */
    --brand: #00D68F;
    --brand-hover: #00C07F;
    --brand-dark: #0A9B6E;
    --brand-glow: rgba(0, 214, 143, 0.15);
    --brand-glow-strong: rgba(0, 214, 143, 0.25);
    --brand-subtle: rgba(0, 214, 143, 0.08);

    /* Neutrals - Slate scale */
    --slate-950: #0B0F1A;
    --slate-900: #0F172A;
    --slate-800: #1E293B;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748B;
    --slate-400: #94A3B8;
    --slate-300: #CBD5E1;
    --slate-200: #E2E8F0;
    --slate-100: #F1F5F9;
    --slate-50: #F8FAFC;
    --white: #FFFFFF;

    /* Semantic */
    --text: var(--slate-900);
    --text-secondary: var(--slate-600);
    --text-muted: var(--slate-400);
    --bg: var(--white);
    --bg-subtle: var(--slate-50);
    --bg-muted: var(--slate-100);
    --border: var(--slate-200);
    --border-light: var(--slate-100);

    /* Accent palette */
    --amber: #F59E0B;
    --red: #EF4444;
    --blue: #3B82F6;

    /* Typography Scale */
    --font-display: 'Cabinet Grotesk', 'General Sans', system-ui, sans-serif;
    --font-body: 'General Sans', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.25rem;
    --text-6xl: 4rem;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    /* Radii */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.1);
    --shadow-brand: 0 4px 20px rgba(0, 214, 143, 0.2);
    --shadow-brand-lg: 0 8px 40px rgba(0, 214, 143, 0.25);

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--text);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, var(--text-6xl)); font-weight: 800; }
h2 { font-size: clamp(1.875rem, 4vw, var(--text-4xl)); }
h3 { font-size: clamp(1.25rem, 2.5vw, var(--text-xl)); }
p { margin-bottom: 1rem; }
.mono { font-family: var(--font-mono); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6); }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 var(--space-6); }
.container--mid { max-width: 960px; margin: 0 auto; padding: 0 var(--space-6); }
.text-center { text-align: center; }

/* ===== NAV ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    padding: 16px 0;
    transition: all var(--duration-normal) var(--ease-out);
}
.nav--scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
    padding: 12px 0;
}
.nav__inner {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1200px; margin: 0 auto; padding: 0 var(--space-6);
}
.nav__logo {
    display: flex; align-items: center; gap: 10px;
    font-family: var(--font-display);
    font-size: 1.35rem; font-weight: 800;
    color: var(--text); letter-spacing: -0.04em;
}
.nav__logo-mark {
    width: 32px; height: 32px;
    background: var(--slate-900);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 6px;
    flex-shrink: 0;
}
.nav__logo-mark svg { width: 100%; height: 100%; }
.nav__logo-text span { color: var(--brand); }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
    font-size: var(--text-sm); font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--duration-fast);
    position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 2px; background: var(--brand);
    transform: scaleX(0); transform-origin: right;
    transition: transform var(--duration-normal) var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
    background: var(--brand); color: var(--slate-900);
    padding: 10px 22px; border-radius: var(--radius-full);
    font-weight: 700; font-size: var(--text-sm);
    transition: all var(--duration-fast);
    border: none; cursor: pointer;
    box-shadow: var(--shadow-brand);
}
.nav__cta:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand-lg);
}

/* Nav dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
    display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.nav__dropdown-trigger svg { transition: transform var(--duration-fast); }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    min-width: 180px; padding: var(--space-2) 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all var(--duration-fast) var(--ease-out);
    margin-top: 8px; z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto; margin-top: 4px;
}
.nav__dropdown-menu a {
    display: block; padding: 8px 16px;
    font-size: var(--text-sm); color: var(--text-secondary);
    transition: all var(--duration-fast);
}
.nav__dropdown-menu a:hover {
    background: var(--bg-subtle); color: var(--text);
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown--open .nav__dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto; margin-top: 4px;
}
.nav__dropdown--open .nav__dropdown-trigger svg { transform: rotate(180deg); }

/* Mobile menu toggle */
.nav__mobile-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 40px; height: 40px;
    align-items: center; justify-content: center;
    color: var(--text);
}
.nav__mobile-toggle svg { width: 24px; height: 24px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 32px; border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-weight: 700; font-size: var(--text-base);
    transition: all var(--duration-normal) var(--ease-out);
    cursor: pointer; border: none;
    position: relative; overflow: hidden;
}
.btn--primary {
    background: var(--brand); color: var(--slate-900);
    box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand-lg);
}
.btn--primary:active { transform: translateY(0); }
.btn--secondary {
    background: var(--white); color: var(--text);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.btn--secondary:hover {
    border-color: var(--slate-300);
    background: var(--bg-subtle);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--dark {
    background: var(--slate-900); color: var(--white);
}
.btn--dark:hover {
    background: var(--slate-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn--lg { padding: 18px 40px; font-size: var(--text-lg); border-radius: var(--radius-lg); }
.btn--sm { padding: 10px 20px; font-size: var(--text-sm); }

/* ===== HERO ===== */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, var(--brand-glow) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 20%, rgba(0, 214, 143, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(circle at 1px 1px, var(--slate-200) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

/* Two-column hero: text left, mockup right */
@media (min-width: 1024px) {
    .hero__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        align-items: center;
    }
    .hero__image {
        margin-top: 0 !important;
        perspective: 1200px;
    }
    .hero__image .mock {
        transform: rotateY(-2deg) rotateX(1deg);
        transition: transform 0.4s var(--ease-out);
    }
    .hero__image:hover .mock {
        transform: rotateY(0deg) rotateX(0deg);
    }
}
@media (min-width: 1280px) {
    .hero__grid { gap: var(--space-16); }
}

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brand-subtle);
    border: 1px solid rgba(0, 214, 143, 0.2);
    border-radius: var(--radius-full);
    padding: 6px 18px 6px 12px;
    font-size: var(--text-sm); font-weight: 600; color: var(--brand-dark);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.6s var(--ease-out) both;
}
.hero__badge-dot {
    width: 8px; height: 8px; background: var(--brand);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--brand-glow-strong);
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    margin-bottom: var(--space-6);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.6s var(--ease-out) 0.1s both;
}
.hero h1 .accent { color: var(--brand-dark); }
.hero__sub {
    font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: var(--space-10);
    line-height: 1.7;
    animation: fadeInUp 0.6s var(--ease-out) 0.2s both;
}
.hero__ctas {
    display: flex; gap: var(--space-4); flex-wrap: wrap;
    animation: fadeInUp 0.6s var(--ease-out) 0.3s both;
}
.hero__stats {
    margin-top: var(--space-16);
    display: flex; gap: var(--space-12); flex-wrap: wrap;
    animation: fadeInUp 0.6s var(--ease-out) 0.4s both;
}
.hero__stat {
    position: relative;
    padding-left: var(--space-5);
}
.hero__stat::before {
    content: '';
    position: absolute; left: 0; top: 4px; bottom: 4px;
    width: 3px; background: var(--brand);
    border-radius: 2px;
}
.hero__stat-value {
    font-family: var(--font-mono);
    font-size: var(--text-2xl); font-weight: 700;
    color: var(--text);
    line-height: 1.2;
}
.hero__stat-label {
    font-size: var(--text-xs); color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.06em;
    font-weight: 600; margin-top: 2px;
}

/* ===== SECTIONS ===== */
section { padding: var(--space-24) 0; }
.section-label {
    font-family: var(--font-mono);
    font-size: var(--text-xs); font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--brand-dark);
    margin-bottom: var(--space-3);
}
.section-heading { margin-bottom: var(--space-4); }
.section-sub {
    font-size: var(--text-lg); color: var(--text-secondary);
    max-width: 600px; margin-bottom: var(--space-12);
    line-height: 1.7;
}
.section-sub.centered { margin-left: auto; margin-right: auto; }
.section--gray { background: var(--bg-subtle); }
.section--dark {
    background: var(--slate-950);
    color: var(--slate-300);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .section-label { color: var(--brand); }

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: var(--space-10) 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--white);
}
.trust-bar__grid {
    display: flex; gap: var(--space-8); justify-content: center;
    flex-wrap: wrap; align-items: center;
}
.trust-bar__item {
    display: flex; align-items: center; gap: var(--space-2);
    color: var(--text-secondary); font-size: var(--text-sm); font-weight: 500;
}
.trust-bar__check {
    width: 22px; height: 22px;
    background: var(--brand-subtle);
    border: 1.5px solid rgba(0, 214, 143, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.trust-bar__check svg { width: 12px; height: 12px; stroke: var(--brand-dark); }

/* ===== FEATURES ===== */
.features__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}
.feature-card:hover {
    border-color: rgba(0, 214, 143, 0.3);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(0, 214, 143, 0.1);
    transform: translateY(-3px);
}
.feature-card__icon {
    width: 48px; height: 48px;
    background: var(--brand-subtle);
    border: 1px solid rgba(0, 214, 143, 0.15);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-5);
}
.feature-card__icon svg { width: 24px; height: 24px; stroke: var(--brand-dark); }
.feature-card h3 {
    font-size: var(--text-base); margin-bottom: var(--space-2);
    font-weight: 700;
}
.feature-card p {
    color: var(--text-secondary); font-size: var(--text-sm);
    margin-bottom: 0; line-height: 1.65;
}

/* ===== SPEED / TRANSPARENCY ===== */
.speed-box {
    background: var(--slate-900);
    border-radius: var(--radius-2xl); padding: var(--space-12);
    text-align: center; margin-bottom: var(--space-10);
    position: relative; overflow: hidden;
}
.speed-box::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 214, 143, 0.12) 0%, transparent 60%);
    pointer-events: none;
}
.speed-box > * { position: relative; z-index: 1; }
.speed-box__label {
    color: var(--slate-300); font-size: var(--text-lg);
    font-weight: 600; margin-bottom: var(--space-2);
}
.speed-formula {
    font-family: var(--font-mono);
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700; color: var(--brand);
    margin: var(--space-4) 0;
    background: rgba(0, 214, 143, 0.1);
    display: inline-block;
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 214, 143, 0.2);
}
.speed-box__desc {
    color: var(--slate-400); margin-bottom: 0;
    max-width: 520px; margin-left: auto; margin-right: auto;
}
.speed-examples {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4); margin-top: var(--space-8);
}
.speed-example {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg); padding: var(--space-5);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}
.speed-example:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 214, 143, 0.2);
}
.speed-example__threads {
    font-family: var(--font-mono);
    font-size: var(--text-lg); font-weight: 700; color: var(--white);
}
.speed-example__speed {
    font-size: var(--text-sm); color: var(--brand);
    font-weight: 600; margin-top: 2px;
}
.speed-example__plan {
    font-size: var(--text-xs); color: var(--slate-500); margin-top: 2px;
}

/* Speed Calculator */
.calculator {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl); padding: var(--space-10);
    box-shadow: var(--shadow-md);
}
.calculator__display {
    display: grid; grid-template-columns: 1fr auto 1fr;
    gap: var(--space-6); align-items: center; margin-top: var(--space-6);
}
.calculator__box {
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg); padding: var(--space-6);
    text-align: center;
}
.calculator__value {
    font-family: var(--font-mono);
    font-size: var(--text-4xl); font-weight: 700; color: var(--brand-dark);
    line-height: 1;
}
.calculator__label {
    font-size: var(--text-xs); color: var(--text-muted);
    margin-top: var(--space-1); text-transform: uppercase;
    letter-spacing: 0.06em; font-weight: 600;
}
.calculator__equals {
    font-family: var(--font-mono);
    font-size: var(--text-xl); color: var(--text-muted);
}
.calculator__slider { margin-top: var(--space-8); }
.calculator__slider input[type="range"] {
    -webkit-appearance: none; width: 100%; height: 6px;
    background: var(--slate-200); border-radius: 3px; outline: none;
    transition: background var(--duration-fast);
}
.calculator__slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; width: 24px; height: 24px;
    background: var(--brand); border-radius: 50%; cursor: pointer;
    box-shadow: var(--shadow-brand);
    transition: all var(--duration-fast);
}
.calculator__slider input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-brand-lg);
}
.calculator__ticks {
    display: flex; justify-content: space-between;
    margin-top: var(--space-2);
    font-family: var(--font-mono);
    font-size: var(--text-xs); color: var(--text-muted);
}

/* ===== GUARANTEES ===== */
.guarantee-stack { display: grid; gap: var(--space-4); }
.guarantee {
    display: grid; grid-template-columns: 60px 1fr;
    gap: var(--space-6); align-items: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
}
.guarantee:hover {
    border-color: rgba(0, 214, 143, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}
.guarantee__number {
    width: 60px; height: 60px;
    background: var(--slate-900);
    border-radius: var(--radius-lg);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: var(--text-xl); font-weight: 800; color: var(--brand);
}
.guarantee__tag {
    display: inline-block;
    font-family: var(--font-mono);
    background: var(--brand-subtle);
    border: 1px solid rgba(0, 214, 143, 0.15);
    color: var(--brand-dark);
    font-size: var(--text-xs); font-weight: 700;
    padding: 3px 12px; border-radius: var(--radius-full);
    margin-bottom: var(--space-2);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.guarantee h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.guarantee p { color: var(--text-secondary); font-size: var(--text-sm); margin-bottom: 0; line-height: 1.65; }

/* ===== PRICING ===== */
.pricing-toggle {
    display: flex; align-items: center; justify-content: center;
    gap: var(--space-3); margin-bottom: var(--space-12);
}
.pricing-toggle__label {
    font-size: var(--text-sm); font-weight: 600; color: var(--text-muted);
    cursor: pointer; transition: color var(--duration-fast);
}
.pricing-toggle__label.active { color: var(--text); }
.pricing-toggle__switch {
    width: 52px; height: 28px;
    background: var(--slate-200); border-radius: var(--radius-full);
    position: relative; cursor: pointer;
    transition: background var(--duration-normal) var(--ease-out);
}
.pricing-toggle__switch.active { background: var(--brand); }
.pricing-toggle__switch::after {
    content: '';
    width: 22px; height: 22px;
    background: var(--white); border-radius: 50%;
    position: absolute; top: 3px; left: 3px;
    transition: transform var(--duration-normal) var(--ease-spring);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.pricing-toggle__switch.active::after { transform: translateX(24px); }
.pricing-toggle__badge {
    background: var(--brand-subtle);
    border: 1px solid rgba(0, 214, 143, 0.15);
    color: var(--brand-dark);
    font-family: var(--font-mono);
    font-size: var(--text-xs); font-weight: 700;
    padding: 4px 12px; border-radius: var(--radius-full);
    text-transform: uppercase; letter-spacing: 0.04em;
}

.pricing__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5); align-items: start;
}
.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-2xl); padding: var(--space-10) var(--space-8);
    position: relative;
    transition: all var(--duration-normal) var(--ease-out);
}
.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.price-card--featured {
    border: 2px solid var(--brand);
    box-shadow: var(--shadow-brand);
    background: var(--white);
}
.price-card--featured:hover {
    box-shadow: var(--shadow-brand-lg);
}
.price-card__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--brand); color: var(--slate-900);
    font-family: var(--font-mono);
    font-weight: 800; font-size: var(--text-xs);
    padding: 5px 18px; border-radius: var(--radius-full);
    text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap;
}
.price-card__name {
    font-family: var(--font-mono);
    font-size: var(--text-xs); font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}
.price-card__price {
    font-family: var(--font-display);
    font-size: var(--text-5xl); font-weight: 800; color: var(--text);
    line-height: 1;
}
.price-card__price span {
    font-size: var(--text-base); font-weight: 500; color: var(--text-muted);
}
.price-card__billed {
    font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--space-1);
    min-height: 20px;
}
.price-card__specs {
    margin: var(--space-6) 0; padding: var(--space-6) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}
.price-card__spec {
    display: flex; align-items: center; gap: var(--space-3);
    margin-bottom: var(--space-3); font-size: var(--text-sm); color: var(--text);
}
.price-card__spec:last-child { margin-bottom: 0; }
.price-card__spec svg { flex-shrink: 0; }
.price-card__includes { margin-bottom: var(--space-6); }
.price-card__includes-title {
    font-family: var(--font-mono);
    font-size: var(--text-xs); font-weight: 700; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
}
.price-card__include-item {
    display: flex; align-items: center; gap: var(--space-2);
    font-size: var(--text-sm); color: var(--text-secondary);
    margin-bottom: var(--space-2);
}
.price-card .btn { width: 100%; }
.price-card__trial {
    text-align: center; margin-top: var(--space-3);
    font-size: var(--text-sm); color: var(--text-muted);
}
.price-card__trial a { color: var(--brand-dark); font-weight: 600; }
.price-card__trial a:hover { text-decoration: underline; }

/* ===== OBJECTIONS ===== */
.objections__grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
}
.objection {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: var(--space-8);
    transition: all var(--duration-normal) var(--ease-out);
}
.objection:hover {
    border-color: var(--slate-300);
    box-shadow: var(--shadow-md);
}
.objection__q {
    font-family: var(--font-display);
    font-weight: 700; color: var(--text); font-size: var(--text-base);
    margin-bottom: var(--space-3);
}
.objection__a {
    color: var(--text-secondary); font-size: var(--text-sm);
    margin-bottom: 0; line-height: 1.65;
}
.objection__note {
    margin-top: var(--space-3); padding-top: var(--space-3);
    border-top: 1px solid var(--border-light);
    font-size: var(--text-xs); color: var(--text-muted); font-style: italic;
}

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border-light); padding: var(--space-5) 0; }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-q {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; gap: var(--space-4);
}
.faq-q h3 {
    font-size: var(--text-base); font-weight: 600;
    transition: color var(--duration-fast);
}
.faq-q:hover h3 { color: var(--brand-dark); }
.faq-q__icon {
    width: 32px; height: 32px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-muted);
    color: var(--text-muted); font-size: 1.2rem;
    transition: all var(--duration-normal) var(--ease-out);
    font-weight: 500;
}
.faq-item.active .faq-q__icon {
    transform: rotate(45deg);
    color: var(--brand-dark);
    background: var(--brand-subtle);
}
.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-out),
                padding var(--duration-slow) var(--ease-out);
}
.faq-item.active .faq-a { max-height: 300px; padding-top: var(--space-3); }
.faq-a p { color: var(--text-secondary); font-size: var(--text-sm); line-height: 1.65; }

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--slate-950);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 214, 143, 0.1) 0%, transparent 60%);
    pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
.final-cta .section-label { color: var(--brand); }
.final-cta h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, var(--text-4xl));
}
.final-cta__sub {
    font-size: var(--text-lg); color: var(--slate-400);
    max-width: 540px; margin: var(--space-4) auto var(--space-10);
}
.final-cta__row {
    display: flex; gap: var(--space-8); justify-content: center;
    flex-wrap: wrap; margin-top: var(--space-8);
}
.final-cta__item {
    display: flex; align-items: center; gap: var(--space-2);
    font-size: var(--text-sm); color: var(--slate-400);
}
.final-cta__item svg { color: var(--brand); }

/* ===== FOOTER ===== */
.footer {
    padding: var(--space-10) 0;
    border-top: 1px solid var(--border-light);
    text-align: center;
}
.footer__logo {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-display);
    font-size: var(--text-lg); font-weight: 800;
    color: var(--text); margin-bottom: var(--space-2);
}
.footer__logo span { color: var(--brand); }
.footer p { font-size: var(--text-sm); color: var(--text-muted); }
.footer__links { margin-top: var(--space-3); }
.footer__links a {
    color: var(--text-muted); margin: 0 var(--space-3);
    font-size: var(--text-sm);
    transition: color var(--duration-fast);
}
.footer__links a:hover { color: var(--text-secondary); }
.footer__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8); margin-top: var(--space-8);
    text-align: left; max-width: 800px; margin-left: auto; margin-right: auto;
}
.footer__col { display: flex; flex-direction: column; gap: var(--space-2); }
.footer__col-title {
    font-family: var(--font-mono); font-size: 11px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text); margin-bottom: var(--space-2);
}
.footer__col a {
    font-size: var(--text-sm); color: var(--text-muted);
    transition: color var(--duration-fast);
}
.footer__col a:hover { color: var(--text-secondary); }
@media (max-width: 640px) {
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-6); }
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
    padding: 140px 0 var(--space-12);
    background: var(--bg-subtle);
    border-bottom: 1px solid var(--border-light);
    position: relative;
}
.page-header::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 60% 40% at 50% 0%, var(--brand-glow) 0%, transparent 50%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { margin-bottom: var(--space-3); font-size: clamp(2rem, 4vw, var(--text-4xl)); }
.page-header__sub {
    font-size: var(--text-lg); color: var(--text-secondary);
    max-width: 560px;
}
.page-header__sub.centered { margin-left: auto; margin-right: auto; }

/* ===== PROSE (legal pages, long-form text) ===== */
.prose { max-width: 760px; margin: 0 auto; padding: 0 var(--space-6); }
.prose h2 {
    font-size: var(--text-2xl); margin-top: var(--space-12);
    margin-bottom: var(--space-4); padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
}
.prose h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.prose h3 {
    font-size: var(--text-xl); margin-top: var(--space-8);
    margin-bottom: var(--space-3);
}
.prose p { color: var(--text-secondary); line-height: 1.8; margin-bottom: var(--space-4); }
.prose ul, .prose ol {
    color: var(--text-secondary); margin-bottom: var(--space-4);
    padding-left: var(--space-6); line-height: 1.8;
}
.prose li { margin-bottom: var(--space-2); }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--brand-dark); font-weight: 500; text-decoration: underline; }
.prose a:hover { color: var(--brand); }
.prose .effective-date {
    font-family: var(--font-mono);
    font-size: var(--text-sm); color: var(--text-muted);
    margin-bottom: var(--space-8);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: var(--space-12) 0;
    font-size: var(--text-sm);
}
.comparison-table thead th {
    background: var(--slate-900); color: var(--white);
    padding: var(--space-4) var(--space-5);
    font-family: var(--font-mono);
    font-size: var(--text-xs); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    text-align: center;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.featured {
    background: var(--brand-dark); color: var(--white);
}
.comparison-table tbody td {
    padding: var(--space-3) var(--space-5);
    border-bottom: 1px solid var(--border-light);
    text-align: center; color: var(--text-secondary);
}
.comparison-table tbody td:first-child {
    text-align: left; font-weight: 600; color: var(--text);
}
.comparison-table tbody tr:hover { background: var(--bg-subtle); }
.comparison-table .check { color: var(--brand); font-weight: 700; }
.comparison-table .dash { color: var(--text-muted); }

/* ===== CONTACT FORM ===== */
.contact-form { max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: var(--space-5); }
.form-group label {
    display: block; font-size: var(--text-sm); font-weight: 600;
    color: var(--text); margin-bottom: var(--space-2);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base); color: var(--text);
    background: var(--white);
    transition: border-color var(--duration-fast);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-glow);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group select { cursor: pointer; }
.form-success {
    text-align: center; padding: var(--space-12) var(--space-6);
}
.form-success h3 { color: var(--brand-dark); margin-bottom: var(--space-2); }
.form-success p { color: var(--text-secondary); }

/* ===== GUARANTEES COMPACT (homepage) ===== */
.guarantees-compact {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}
.guarantee-compact {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl); padding: var(--space-6);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
}
.guarantee-compact:hover {
    border-color: rgba(0, 214, 143, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.guarantee-compact__icon {
    width: 48px; height: 48px; margin: 0 auto var(--space-4);
    background: var(--slate-900); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono); font-size: var(--text-lg);
    font-weight: 800; color: var(--brand);
}
.guarantee-compact h3 { font-size: var(--text-sm); margin-bottom: var(--space-2); }
.guarantee-compact p {
    color: var(--text-muted); font-size: var(--text-xs);
    margin-bottom: 0; line-height: 1.5;
}

/* ===== FAQ CATEGORIES ===== */
.faq-category { margin-bottom: var(--space-10); }
.faq-category__title {
    font-family: var(--font-mono);
    font-size: var(--text-xs); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--brand-dark);
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    border-bottom: 2px solid var(--brand-subtle);
}

/* ===== UTILITY ===== */
.check-icon { width: 18px; height: 18px; flex-shrink: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ===== INLINE MOCKUP COMPONENTS ===== */
/* Scoped display-only dashboard panels rendered as live HTML */
.mock {
    --m-bg: #FFFFFF;
    --m-surface: #F6F8FA;
    --m-ink: #111827;
    --m-ink2: #4B5563;
    --m-ink3: #9CA3AF;
    --m-ink4: #D1D5DB;
    --m-line: #E5E7EB;
    --m-line2: #F3F4F6;
    --m-green: #00C07F;
    --m-green-bg: #E8FAF3;
    --m-green-text: #067A54;
    --m-red: #DC2626;
    --m-amber: #D97706;
    --m-blue: #2563EB;
    --m-blue-bg: #EFF6FF;
    --m-mono: 'JetBrains Mono', monospace;
    --m-display: 'Cabinet Grotesk', system-ui, sans-serif;
    --m-body: 'General Sans', system-ui, sans-serif;

    font-family: var(--m-body);
    color: var(--m-ink2);
    font-size: 12px;
    line-height: 1.5;
    pointer-events: none;
    user-select: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--m-bg);
}
/* Window chrome */
.mock__bar {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 14px;
    background: var(--m-surface);
    border-bottom: 1px solid var(--m-line);
}
.mock__dot { width: 9px; height: 9px; border-radius: 50%; }
.mock__dot--r { background: #FF5F57; }
.mock__dot--y { background: #FEBC2E; }
.mock__dot--g { background: #28C840; }
.mock__url {
    font-family: var(--m-mono); font-size: 9.5px; font-weight: 500;
    color: var(--m-ink3); background: var(--m-bg);
    padding: 3px 14px; border-radius: 5px;
    border: 1px solid var(--m-line);
    flex: 1; text-align: center; max-width: 280px; margin: 0 auto;
}
.mock__body { padding: 16px; background: var(--m-bg); }

/* Metrics strip */
.mock__metrics {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--m-line); border-radius: 8px;
    overflow: hidden; margin-bottom: 12px;
}
.mock__metric {
    padding: 12px 14px;
    border-right: 1px solid var(--m-line);
}
.mock__metric:last-child { border-right: none; }
.mock__metric-label { font-size: 9.5px; color: var(--m-ink3); margin-bottom: 4px; }
.mock__metric-val {
    font-family: var(--m-mono); font-size: 18px; font-weight: 700;
    color: var(--m-ink); line-height: 1;
}
.mock__metric-val small { font-size: 10px; font-weight: 500; color: var(--m-ink3); }
.mock__metric-note {
    font-family: var(--m-mono); font-size: 8.5px; font-weight: 600;
    color: var(--m-green-text); margin-top: 4px;
}

/* Chart area */
.mock__chart {
    border: 1px solid var(--m-line); border-radius: 8px;
    padding: 14px; margin-bottom: 12px;
}
.mock__chart-title {
    font-family: var(--m-display); font-size: 11px; font-weight: 700;
    color: var(--m-ink); margin-bottom: 10px;
}

/* Table */
.mock__tbl {
    border: 1px solid var(--m-line); border-radius: 8px;
    overflow: hidden;
}
.mock__tbl-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px; border-bottom: 1px solid var(--m-line);
}
.mock__tbl-title { font-family: var(--m-display); font-size: 11px; font-weight: 700; color: var(--m-ink); }
.mock__tbl-live {
    font-family: var(--m-mono); font-size: 9px; font-weight: 600;
    color: var(--m-green-text); display: flex; align-items: center; gap: 4px;
}
.mock__tbl-dot {
    width: 5px; height: 5px; background: var(--m-green);
    border-radius: 50%; animation: pulse 2s infinite;
}
.mock__tbl table { width: 100%; border-collapse: collapse; }
.mock__tbl th {
    font-family: var(--m-mono); font-size: 8px; font-weight: 700;
    color: var(--m-ink3); text-transform: uppercase; letter-spacing: 0.06em;
    text-align: left; padding: 6px 14px; background: var(--m-surface);
    border-bottom: 1px solid var(--m-line);
}
.mock__tbl td {
    font-size: 10.5px; padding: 8px 14px;
    border-bottom: 1px solid var(--m-line2);
}
.mock__tbl tr:last-child td { border-bottom: none; }
.mock__tbl-mono { font-family: var(--m-mono); font-size: 10px; color: var(--m-ink); font-weight: 500; }
.mock__pill {
    display: inline-flex; align-items: center; gap: 3px;
    font-family: var(--m-mono); font-size: 8.5px; font-weight: 700;
    padding: 2px 7px; border-radius: 4px;
}
.mock__pill--green { background: var(--m-green-bg); color: var(--m-green-text); }
.mock__pill--amber { background: #FFFBEB; color: var(--m-amber); }

/* Gauge */
.mock__gauge { text-align: center; padding: 12px; }
.mock__gauge-val {
    font-family: var(--m-mono); font-size: 22px; font-weight: 800;
    color: var(--m-ink); line-height: 1;
}
.mock__gauge-unit { font-size: 9px; font-weight: 500; color: var(--m-ink3); display: block; margin-top: 2px; }
.mock__gauge-formula {
    font-family: var(--m-mono); font-size: 9px; font-weight: 600;
    color: var(--m-green-text); background: var(--m-green-bg);
    padding: 2px 8px; border-radius: 4px;
    display: inline-block; margin-top: 6px;
}

/* Config rows */
.mock__cfg { border: 1px solid var(--m-line); border-radius: 8px; padding: 14px; margin-bottom: 12px; }
.mock__cfg-heading {
    font-family: var(--m-mono); font-size: 8px; font-weight: 700;
    color: var(--m-ink3); text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--m-line2);
}
.mock__cfg-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 7px 0; border-bottom: 1px solid var(--m-line2);
    font-size: 10.5px;
}
.mock__cfg-row:last-child { border-bottom: none; }
.mock__cfg-label { font-weight: 600; color: var(--m-ink); }
.mock__cfg-val {
    font-family: var(--m-mono); font-size: 9.5px;
    background: var(--m-surface); color: var(--m-ink);
    border: 1px solid var(--m-line); border-radius: 5px;
    padding: 4px 10px;
}
.mock__cfg-val--accent { color: var(--m-green-text); }

/* Code block inside mock */
.mock__code {
    background: #1B1B1F; border-radius: 7px; padding: 12px;
    font-family: var(--m-mono); font-size: 10px; line-height: 1.8;
    color: #D4D4D8;
}
.mock__code .ck { color: #7C7CE0; }
.mock__code .cs { color: #5EEAD4; }
.mock__code .cn { color: #FBBF24; }
.mock__code .cc { color: #52525B; }

/* Sidebar (simplified) */
.mock__sidebar {
    background: var(--m-surface); border-right: 1px solid var(--m-line);
    padding: 14px 0; display: flex; flex-direction: column;
}
.mock__sidebar-brand {
    display: flex; align-items: center; gap: 6px;
    padding: 0 12px; margin-bottom: 16px;
    font-family: var(--m-display); font-size: 12px; font-weight: 800;
}
.mock__sidebar-brand em { font-style: normal; color: var(--m-green); }
.mock__sidebar-mark {
    width: 20px; height: 20px; background: var(--m-ink);
    border-radius: 5px; display: flex; align-items: center;
    justify-content: center; padding: 3px; flex-shrink: 0;
}
.mock__sidebar-group {
    font-family: var(--m-mono); font-size: 7.5px; font-weight: 700;
    color: var(--m-ink3); text-transform: uppercase; letter-spacing: 0.12em;
    padding: 0 12px; margin: 12px 0 4px;
}
.mock__sidebar-link {
    display: flex; align-items: center; gap: 6px;
    padding: 5px 12px; font-size: 10.5px; font-weight: 500;
    color: var(--m-ink2); border-left: 2px solid transparent;
}
.mock__sidebar-link--on {
    color: var(--m-green-text); background: var(--m-green-bg);
    border-left-color: var(--m-green); font-weight: 600;
}
.mock__sidebar-link svg { width: 12px; height: 12px; flex-shrink: 0; }
.mock__sidebar-pill {
    margin-left: auto; font-family: var(--m-mono); font-size: 7.5px; font-weight: 700;
    padding: 1px 5px; border-radius: 3px;
}
.mock__sidebar-pill--green { background: var(--m-green-bg); color: var(--m-green-text); }
.mock__sidebar-foot {
    margin-top: auto; padding: 10px 12px; border-top: 1px solid var(--m-line);
    display: flex; align-items: center; gap: 7px;
}
.mock__sidebar-avatar {
    width: 24px; height: 24px; border-radius: 6px;
    background: linear-gradient(135deg, var(--m-green-bg), #EFF6FF);
    border: 1px solid var(--m-line);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--m-mono); font-size: 9px; font-weight: 700;
    color: var(--m-green-text); flex-shrink: 0;
}
.mock__sidebar-name { font-size: 10px; font-weight: 600; color: var(--m-ink); line-height: 1.2; }
.mock__sidebar-plan { font-family: var(--m-mono); font-size: 8px; color: var(--m-green-text); font-weight: 600; }

/* Full dashboard layout with sidebar */
.mock__app {
    display: grid; grid-template-columns: 150px 1fr;
}
.mock__main { padding: 14px 16px; background: var(--m-bg); overflow: hidden; }

/* Speed gauge ring */
.mock__ring { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.mock__ring-val {
    font-family: var(--m-mono); font-size: 20px; font-weight: 800;
    color: var(--m-ink); line-height: 1;
}
.mock__ring-unit { font-size: 8px; font-weight: 500; color: var(--m-ink3); margin-top: 1px; }
.mock__ring-note { font-family: var(--m-mono); font-size: 8px; color: var(--m-ink3); margin-top: 4px; }

/* Plan details card */
.mock__plan-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 4px 0; font-size: 9.5px;
    border-bottom: 1px solid var(--m-line2);
}
.mock__plan-row:last-child { border-bottom: none; }
.mock__plan-label { color: var(--m-ink3); }
.mock__plan-val { font-family: var(--m-mono); font-size: 9px; font-weight: 600; color: var(--m-ink); }

/* Two-column bottom section */
.mock__cols { display: grid; gap: 12px; }
.mock__cols--wide { grid-template-columns: 1.3fr 1fr; }

/* Geo tiles */
.mock__geo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.mock__geo-tile {
    border: 1px solid var(--m-line); border-radius: 6px;
    padding: 8px; text-align: center;
}
.mock__geo-tile--on { border-color: var(--m-green); background: var(--m-green-bg); }
.mock__geo-tile-flag { font-size: 16px; line-height: 1; }
.mock__geo-tile-name { font-size: 9px; font-weight: 600; color: var(--m-ink); margin-top: 1px; }
.mock__geo-tile-ct { font-family: var(--m-mono); font-size: 8px; color: var(--m-ink3); }

/* Progress bar */
.mock__bar-track { height: 3px; background: var(--m-line2); border-radius: 2px; overflow: hidden; }
.mock__bar-fill { height: 100%; background: var(--m-green); border-radius: 2px; }

/* Chat messages */
.mock__chat { padding: 14px; background: var(--m-surface); border-radius: 0; min-height: 200px; }
.mock__chat-msg {
    max-width: 85%; padding: 8px 12px; border-radius: 8px;
    font-size: 10px; line-height: 1.5; margin-bottom: 10px;
}
.mock__chat-msg--user {
    background: var(--m-ink); color: #fff;
    margin-left: auto; border-bottom-right-radius: 2px;
}
.mock__chat-msg--agent {
    background: var(--m-bg); border: 1px solid var(--m-line);
    border-bottom-left-radius: 2px;
}
.mock__chat-time { font-family: var(--m-mono); font-size: 7.5px; color: var(--m-ink3); margin-top: 4px; }
.mock__chat-input {
    padding: 10px 14px; border-top: 1px solid var(--m-line);
    display: flex; gap: 8px; align-items: center;
}
.mock__chat-input-field {
    flex: 1; padding: 6px 10px; border: 1px solid var(--m-line);
    border-radius: 6px; font-size: 10px; background: var(--m-surface); color: var(--m-ink3);
}
.mock__chat-send {
    background: var(--m-ink); color: #fff; border: none;
    padding: 6px 12px; border-radius: 6px; font-size: 9px; font-weight: 600;
}

/* Notification items */
.mock__notif {
    border: 1px solid var(--m-line); border-radius: 8px;
    padding: 12px 14px; margin-bottom: 8px;
    display: flex; gap: 10px; align-items: flex-start;
}
.mock__notif--featured { border-color: var(--m-green); background: rgba(0,192,127,0.04); }
.mock__notif-icon {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mock__notif-icon--green { background: var(--m-green-bg); }
.mock__notif-icon--blue { background: var(--m-blue-bg); }
.mock__notif-icon--gray { background: var(--m-surface); }
.mock__notif-icon svg { width: 14px; height: 14px; }
.mock__notif-title { font-size: 10.5px; font-weight: 700; color: var(--m-ink); margin-bottom: 2px; }
.mock__notif-text { font-size: 9.5px; color: var(--m-ink2); line-height: 1.5; }
.mock__notif-time { font-family: var(--m-mono); font-size: 7.5px; color: var(--m-ink3); margin-top: 4px; }

/* Onboarding steps */
.mock__step {
    display: flex; gap: 10px; padding: 10px 12px; border-radius: 8px;
    border: 1px solid var(--m-line); margin-bottom: 4px;
}
.mock__step--done { background: rgba(0,192,127,0.04); border-color: var(--m-green); border-width: 1px; }
.mock__step--current { border-color: var(--m-green); border-width: 2px; }
.mock__step--pending { opacity: 0.5; }
.mock__step-num {
    width: 20px; height: 20px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--m-mono); font-size: 9px; font-weight: 800;
    flex-shrink: 0;
}
.mock__step-num--done { background: var(--m-green); color: #fff; }
.mock__step-num--current { background: var(--m-green); color: #fff; }
.mock__step-num--pending { background: var(--m-surface); color: var(--m-ink3); border: 1px solid var(--m-line); }
.mock__step-title { font-size: 10.5px; font-weight: 700; color: var(--m-ink); }
.mock__step-sub { font-size: 9px; color: var(--m-ink3); }
.mock__step-connector { margin-left: 22px; width: 1px; height: 8px; background: var(--m-line); }

/* Layout helpers for mocks */
.mock__cols { display: grid; gap: 10px; }
.mock__cols--2 { grid-template-columns: 1fr 1fr; }
.mock__cols--sidebar { grid-template-columns: 160px 1fr; }
.mock__title { font-family: var(--m-display); font-size: 14px; font-weight: 700; color: var(--m-ink); margin-bottom: 3px; }
.mock__subtitle { font-size: 10px; color: var(--m-ink3); margin-bottom: 14px; }

/* Responsive mock sizing */
@media (max-width: 768px) {
    .mock__metrics { grid-template-columns: repeat(2, 1fr); }
    .mock__cols--2 { grid-template-columns: 1fr; }
    .mock__cols--sidebar { grid-template-columns: 1fr; }
    .mock__sidebar { display: none; }
    .mock__geo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FEATURE ROW (text + image side by side) ===== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-16) 0;
    border-bottom: 1px solid var(--border-light);
}
.feature-row:last-child { border-bottom: none; }
.feature-row__text { order: 1; }
.feature-row__image { order: 2; }
.feature-row__label {
    font-family: var(--font-mono);
    font-size: var(--text-xs); font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--brand-dark); margin-bottom: var(--space-3);
}
.feature-row__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, var(--text-3xl));
    font-weight: 700; color: var(--text);
    letter-spacing: -0.02em; margin-bottom: var(--space-3);
    line-height: 1.2;
}
.feature-row__desc {
    font-size: var(--text-base); color: var(--text-secondary);
    line-height: 1.7; margin-bottom: var(--space-5);
    max-width: 480px;
}
.feature-row__bullets {
    list-style: none; display: grid; gap: var(--space-2);
}
.feature-row__bullets li {
    display: flex; align-items: center; gap: var(--space-2);
    font-size: var(--text-sm); color: var(--text-secondary);
}
.feature-row__bullets li svg { flex-shrink: 0; color: var(--brand-dark); }
.feature-row__img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

/* ===== HERO IMAGE ===== */
.hero__image {
    margin-top: var(--space-12);
}
.hero__img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
}

/* ===== CTA IMAGE ROW ===== */
.cta-image-row {
    display: grid; grid-template-columns: 1fr;
    gap: var(--space-8); align-items: center;
    margin-top: var(--space-12);
}

/* ===== RESPONSIVE ===== */
/* Desktop: feature rows side by side */
@media (min-width: 769px) {
    .feature-row {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-12);
        padding: var(--space-20) 0;
    }
    .feature-row--reverse .feature-row__text { order: 2; }
    .feature-row--reverse .feature-row__image { order: 1; }
    .cta-image-row { grid-template-columns: 1fr 1fr; }
}

/* ===== HOW IT WORKS PAGE ===== */

/* Section 2: Network Flow */
.hiw-network { background: var(--slate-900); }
.hiw-network h2 { color: var(--white); }
.hiw-network .section-label { color: var(--brand); }
.hiw-network .section-sub { color: var(--slate-400); }

.hiw-flow {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: var(--space-12);
}
.hiw-flow__node {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    position: relative;
}
.hiw-flow__node--active {
    border-color: var(--brand);
    box-shadow: 0 0 30px rgba(0, 214, 143, 0.15), 0 0 0 1px rgba(0, 214, 143, 0.3);
}
.hiw-flow__node-icon {
    width: 48px; height: 48px;
    margin: 0 auto var(--space-3);
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
}
.hiw-flow__node--active .hiw-flow__node-icon {
    background: rgba(0, 214, 143, 0.15);
}
.hiw-flow__node-icon svg { width: 24px; height: 24px; stroke: var(--slate-300); }
.hiw-flow__node--active .hiw-flow__node-icon svg { stroke: var(--brand); }
.hiw-flow__node h3 {
    color: var(--white); font-size: var(--text-sm); margin-bottom: var(--space-2);
}
.hiw-flow__node-tags {
    display: flex; flex-direction: column; gap: 4px;
    margin-top: var(--space-3);
}
.hiw-flow__node-tag {
    font-family: var(--font-mono);
    font-size: 11px; color: var(--slate-400);
    line-height: 1.5;
}
.hiw-flow__node-tag--green { color: var(--brand); font-weight: 600; }
.hiw-flow__node-flags {
    font-size: 18px; letter-spacing: 4px;
    margin-top: var(--space-2); margin-bottom: var(--space-1);
}
.hiw-flow__line {
    display: flex; align-items: center; width: 60px; flex-shrink: 0;
    position: relative;
}
.hiw-flow__line-dash {
    flex: 1; height: 0;
    border-top: 2px dashed var(--brand);
    opacity: 0.5;
}
.hiw-flow__line-arrow {
    color: var(--brand); font-size: 14px; font-weight: 700;
    margin-left: -2px;
}

/* Section 3: Speed */
.hiw-speed { background: var(--bg-subtle); }

.hiw-speed .speed-gauge {
    max-width: 360px; margin: var(--space-10) auto 0;
    text-align: center;
}

/* Section 4: Steps */
.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
    margin-top: var(--space-12);
}
.hiw-step { text-align: center; }
.hiw-step__num {
    width: 64px; height: 64px;
    background: var(--brand);
    color: var(--slate-900);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-mono);
    font-size: var(--text-2xl); font-weight: 800;
    margin: 0 auto var(--space-5);
    box-shadow: var(--shadow-brand);
}
.hiw-step h3 {
    font-size: var(--text-lg); margin-bottom: var(--space-3);
}
.hiw-step p {
    font-size: var(--text-sm); color: var(--text-secondary);
    line-height: 1.65; margin-bottom: var(--space-6);
    max-width: 340px; margin-left: auto; margin-right: auto;
}
.hiw-step .mock {
    font-size: 11px;
}
.hiw-step__plans {
    display: flex; flex-direction: column; gap: 6px;
    padding: 14px;
}
.hiw-step__plan {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--m-line);
    border-radius: 8px;
    font-size: 11px;
}
.hiw-step__plan--active {
    border-color: var(--m-green);
    background: var(--m-green-bg);
}
.hiw-step__plan-name {
    font-family: var(--m-display);
    font-weight: 700; color: var(--m-ink);
}
.hiw-step__plan-detail {
    font-family: var(--m-mono);
    font-size: 10px; color: var(--m-ink3);
}
.hiw-step__plan-price {
    font-family: var(--m-mono);
    font-weight: 700; color: var(--m-ink);
    font-size: 12px;
}

/* Section 6: Billing Comparison */
.hiw-billing { background: var(--slate-900); }
.hiw-billing h2 { color: var(--white); }
.hiw-billing .section-label { color: var(--brand); }
.hiw-billing .section-sub { color: var(--slate-400); }

.hiw-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-10);
}
.hiw-compare__col {
    border-radius: var(--radius-xl);
    padding: var(--space-8);
}
.hiw-compare__col--bad {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
}
.hiw-compare__col--good {
    background: rgba(0, 214, 143, 0.06);
    border: 1px solid rgba(0, 214, 143, 0.3);
    box-shadow: 0 0 30px rgba(0, 214, 143, 0.08);
}
.hiw-compare__title {
    font-family: var(--font-display);
    font-size: var(--text-lg); font-weight: 700;
    margin-bottom: var(--space-6);
}
.hiw-compare__col--bad .hiw-compare__title { color: var(--slate-300); }
.hiw-compare__col--good .hiw-compare__title { color: var(--brand); }
.hiw-compare__row {
    display: flex; align-items: flex-start; gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--slate-400);
    line-height: 1.5;
}
.hiw-compare__row:last-child { margin-bottom: 0; }
.hiw-compare__icon {
    width: 20px; height: 20px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.hiw-compare__icon--x svg { stroke: var(--red); }
.hiw-compare__icon--check svg { stroke: var(--brand); }
.hiw-compare__note {
    text-align: center;
    margin-top: var(--space-8);
    font-size: var(--text-sm);
    color: var(--slate-400);
}

/* Section 7: Guarantees */
.hiw-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-12);
}
.hiw-guarantee {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--brand);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    transition: all var(--duration-normal) var(--ease-out);
}
.hiw-guarantee:hover {
    border-color: rgba(0, 214, 143, 0.3);
    border-left-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.hiw-guarantee__header {
    display: flex; align-items: center; gap: var(--space-3);
    margin-bottom: var(--space-3);
}
.hiw-guarantee__icon {
    width: 36px; height: 36px;
    background: var(--brand-subtle);
    border: 1px solid rgba(0, 214, 143, 0.15);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.hiw-guarantee__icon svg { width: 18px; height: 18px; stroke: var(--brand-dark); }
.hiw-guarantee h3 {
    font-size: var(--text-sm); font-weight: 700;
}
.hiw-guarantee p {
    font-size: var(--text-sm); color: var(--text-secondary);
    margin-bottom: 0; line-height: 1.5;
}

/* Speed example highlighted */
.speed-example--featured {
    border-color: rgba(0, 214, 143, 0.4);
    background: rgba(0, 214, 143, 0.08);
}

@media (max-width: 1024px) {
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-guarantees { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center; justify-content: center;
        gap: var(--space-8); z-index: 200;
    }
    .nav__links--open { display: flex; }
    .nav__links--open a { font-size: var(--text-xl); }
    .nav__links--open .nav__cta {
        font-size: var(--text-base);
        padding: var(--space-4) var(--space-8);
    }
    .nav__links--open .nav__dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible;
        pointer-events: auto; margin-top: 0; box-shadow: none; border: none;
        background: transparent; padding: 0;
    }
    .nav__links--open .nav__dropdown-menu a {
        font-size: var(--text-base); padding: 4px 0; color: var(--text-muted);
    }
    .nav__links--open .nav__dropdown {
        display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
    }
    .nav__mobile-toggle { display: flex; z-index: 300; }
    body.menu-open { overflow: hidden; }
    .guarantees-compact { grid-template-columns: 1fr; }
    .hero { padding: 130px 0 64px; }
    .hero__stats { gap: var(--space-8); }
    .mock__app { grid-template-columns: 1fr; }
    .mock__sidebar { display: none; }
    .mock__cols--wide { grid-template-columns: 1fr; }
    section { padding: var(--space-16) 0; }
    .features__grid { grid-template-columns: 1fr; }
    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 420px; margin-left: auto; margin-right: auto;
    }
    .speed-examples { grid-template-columns: 1fr; }
    .objections__grid { grid-template-columns: 1fr; }
    .calculator__display { grid-template-columns: 1fr; }
    .calculator__equals { display: none; }
    .guarantee { grid-template-columns: 1fr; }
    .guarantee__number { width: 48px; height: 48px; font-size: var(--text-base); }
    .hero__stats { gap: var(--space-6); }
    .trust-bar__grid { gap: var(--space-4); }
    .final-cta__row { gap: var(--space-4); }
    /* How It Works responsive */
    .hiw-flow { flex-direction: column; gap: 0; }
    .hiw-flow__line {
        width: 2px; height: 40px;
        flex-direction: column;
    }
    .hiw-flow__line-dash {
        width: 0; height: 100%;
        border-top: none;
        border-left: 2px dashed var(--brand);
    }
    .hiw-flow__line-arrow {
        transform: rotate(90deg);
        margin-left: 0;
        margin-top: -2px;
    }
    .hiw-flow__node { width: 100%; }
    .hiw-steps { grid-template-columns: 1fr; gap: var(--space-12); }
    .hiw-compare { grid-template-columns: 1fr; }
    .hiw-guarantees { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; }
    .price-card { padding: var(--space-8) var(--space-6); }
    .guarantee { padding: var(--space-6); }
}
