/* =============================================================================
   AAsset Protect & Retrieve — Design System v3
   Clean professional · modern sans-serif · navy / white / accent blue
   No serifs, no ornaments, no decoration. Built to feel like an expert
   engineering team built it, not a magazine designer.
   ============================================================================= */

/* ---- Tokens ---------------------------------------------------------------- */
:root {
    /* Brand palette — navy, white, accent blue */
    --navy-deepest:    #061327;
    --navy-deep:       #0A1F3F;
    --navy:            #0F2A52;
    --navy-soft:       #1A3868;
    --navy-line:       #2A4574;

    --white:           #FFFFFF;
    --off-white:       #F7F8FA;
    --grey-50:         #F8FAFC;
    --grey-100:        #F1F5F9;
    --grey-200:        #E2E8F0;
    --grey-300:        #CBD5E1;
    --grey-400:        #94A3B8;
    --grey-500:        #64748B;
    --grey-600:        #475569;
    --grey-700:        #334155;
    --grey-800:        #1E293B;
    --grey-900:        #0F172A;

    --blue:            #2563EB;
    --blue-bright:     #3B82F6;
    --blue-deep:       #1D4ED8;
    --blue-soft:       #DBEAFE;

    --green:           #16A34A;
    --green-soft:      #DCFCE7;
    --red:             #DC2626;
    --amber:           #D97706;

    /* Semantic */
    --bg:              var(--white);
    --bg-alt:          var(--off-white);
    --bg-dark:         var(--navy-deep);
    --bg-darkest:      var(--navy-deepest);

    --text:            var(--grey-900);
    --text-mute:       var(--grey-600);
    --text-faint:      var(--grey-400);
    --text-on-dark:    rgba(255, 255, 255, 0.95);
    --text-on-dark-mute: rgba(255, 255, 255, 0.65);

    --border:          var(--grey-200);
    --border-strong:   var(--grey-300);
    --border-on-dark:  rgba(255, 255, 255, 0.1);

    --accent:          var(--blue);
    --accent-hover:    var(--blue-deep);
    --accent-soft:     var(--blue-soft);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    --fs-xs:   12px;
    --fs-sm:   14px;
    --fs-base: 16px;
    --fs-md:   18px;
    --fs-lg:   20px;
    --fs-xl:   24px;
    --fs-2xl:  30px;
    --fs-3xl:  36px;
    --fs-4xl:  44px;
    --fs-5xl:  56px;
    --fs-6xl:  72px;

    /* Spacing — 4px grid */
    --sp-1:  4px;
    --sp-2:  8px;
    --sp-3:  12px;
    --sp-4:  16px;
    --sp-5:  20px;
    --sp-6:  24px;
    --sp-7:  32px;
    --sp-8:  40px;
    --sp-9:  56px;
    --sp-10: 72px;
    --sp-11: 96px;
    --sp-12: 128px;

    /* Radii — restrained, modern */
    --r-xs:  4px;
    --r-sm:  6px;
    --r-md:  8px;
    --r-lg:  12px;
    --r-xl:  16px;
    --r-2xl: 20px;
    --r-full: 999px;

    /* Shadows — soft, professional, no drama */
    --sh-sm:  0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --sh-md:  0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --sh-lg:  0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --sh-xl:  0 20px 25px -5px rgba(15, 23, 42, 0.10), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
    --sh-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.20);

    --dur: .2s;
    --dur-slow: .35s;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);

    --nav-h: 72px;
    --utility-h: 40px;

    --container: 1280px;
    --container-narrow: 920px;
}

/* ---- Page-wide brand watermark ------------------------------------------ */
/* Fills the whole viewport, fixed so it doesn't scroll. mix-blend-mode
   multiply makes the logo's black background visually disappear on light
   surfaces; brand colours (gold, green, silver) bleed through faintly.
   pointer-events: none means clicks pass straight through to content. */
.page-watermark {
    position: fixed;
    inset: 0;
    background-image: url('../images/logo-premium-dark.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.10;
    mix-blend-mode: multiply;
}
/* Lower opacity on small screens so it doesn't dominate the limited real estate */
@media (max-width: 768px) {
    .page-watermark {
        background-size: cover;
        opacity: 0.06;
    }
}
/* Respect transparency-reduction preference */
@media (prefers-reduced-transparency: reduce) {
    .page-watermark { display: none; }
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 4; scroll-behavior: smooth; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--white); }

/* ---- Base ----------------------------------------------------------------- */
body {
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    font-weight: 400;
    color: var(--text);
    background: var(--bg);
    font-feature-settings: 'cv11', 'ss01', 'ss03';
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text);
}
h1 { font-size: var(--fs-5xl); letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: var(--fs-4xl); letter-spacing: -0.025em; line-height: 1.1; }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p { line-height: 1.65; color: var(--text-mute); }
.lead { font-size: var(--fs-md); line-height: 1.6; color: var(--text-mute); }

strong { font-weight: 600; color: var(--text); }
small { font-size: var(--fs-sm); }

/* ---- Layout primitives ---------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: clamp(20px, 4vw, 32px);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(64px, 8vw, 96px); }
.section--tight { padding-block: clamp(40px, 5vw, 56px); }
.section--alt { background: var(--bg-alt); }
.section--dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--dark p { color: var(--text-on-dark-mute); }

.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

.cluster { display: flex; flex-wrap: wrap; gap: var(--sp-3); align-items: center; }
.text-center { text-align: center; }
.text-muted { color: var(--text-mute); }

/* ---- Utility bar (top of page) -------------------------------------------- */
.utility-bar {
    background: var(--navy-deepest);
    color: var(--text-on-dark);
    font-size: var(--fs-sm);
    height: var(--utility-h);
    display: flex;
    align-items: center;
}
.utility-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-5);
}
.utility-bar-left {
    display: flex;
    align-items: center;
    gap: var(--sp-5);
    color: var(--text-on-dark-mute);
}
.utility-bar .status-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
    display: inline-block;
    margin-right: var(--sp-2);
    animation: pulse-status 2.4s ease-in-out infinite;
}
@keyframes pulse-status { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
.utility-bar a { color: var(--text-on-dark); transition: color var(--dur) var(--ease); }
.utility-bar a:hover { color: var(--blue-bright); }
.utility-bar-right { display: flex; align-items: center; gap: var(--sp-5); }
.utility-bar-right .divider {
    width: 1px; height: 16px; background: rgba(255,255,255,0.15);
}

/* ---- Main nav ------------------------------------------------------------- */
.nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    position: sticky;
    top: 0;
    z-index: 50;
}
.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-3);
    color: var(--navy-deep);
    font-size: var(--fs-md);
    font-weight: 700;
    letter-spacing: -0.01em;
}
/* Nav logo image — wrapped in a dark chip so the dark-themed
   premium logo sits intentionally against the white nav background. */
.nav-logo-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-deepest);
    padding: 6px 14px;
    border-radius: var(--r-md);
    height: 50px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}
.nav-logo-chip img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Footer logo — sits naturally on the dark footer background, no chip needed. */
.footer-logo {
    display: inline-block;
    margin-bottom: var(--sp-5);
    max-width: 280px;
}
.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--r-md);
}

/* Legacy AA mark — kept as a fallback class in case any page still uses it.
   New code should use .nav-logo-chip with an <img>. */
.nav-logo-mark {
    width: 36px; height: 36px;
    background: var(--navy-deep);
    color: var(--white);
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.nav-link {
    padding: 10px 14px;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--grey-700);
    border-radius: var(--r-sm);
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-link:hover { background: var(--grey-100); color: var(--navy-deep); }
.nav-link.is-active { color: var(--navy-deep); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); }
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
}

/* Sticky nav state when scrolled */
.nav.is-scrolled {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

/* Mobile menu — hidden on desktop, drawer on mobile */
.mobile-menu {
    display: none;
    position: fixed;
    inset: calc(var(--nav-h) + var(--utility-h)) 0 0 0;
    background: var(--white);
    padding: var(--sp-7) var(--sp-6);
    z-index: 49;
    overflow-y: auto;
    flex-direction: column;
    gap: var(--sp-2);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu .nav-link {
    padding: 14px;
    font-size: var(--fs-md);
    border-bottom: 1px solid var(--border);
    border-radius: 0;
}
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    padding: 12px 20px;
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.btn--primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.btn--secondary {
    background: var(--white);
    color: var(--navy-deep);
    border-color: var(--border-strong);
}
.btn--secondary:hover {
    border-color: var(--navy-deep);
    background: var(--white);
}

.btn--dark {
    background: var(--navy-deep);
    color: var(--white);
}
.btn--dark:hover {
    background: var(--navy);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn--ghost:hover {
    background: var(--grey-100);
    border-color: var(--border-strong);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn--whatsapp:hover {
    background: #1FB857;
}

.btn--text {
    padding: 4px 0;
    background: transparent;
    color: var(--accent);
    border: 0;
    font-weight: 600;
}
.btn--text:hover { color: var(--accent-hover); }

.btn--lg { padding: 14px 24px; font-size: var(--fs-base); }
.btn--sm { padding: 8px 14px; font-size: 13px; }

.btn .arrow {
    width: 16px; height: 16px;
    transition: transform var(--dur) var(--ease);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ---- Eyebrow label -------------------------------------------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: var(--sp-5);
}
.section--dark .eyebrow { color: var(--blue-bright); }
.eyebrow-dot {
    width: 6px; height: 6px;
    background: currentColor;
    border-radius: 50%;
}

/* ---- HERO ----------------------------------------------------------------- */
.hero {
    background: var(--bg);
    padding-block: clamp(56px, 8vw, 88px);
    border-bottom: 1px solid var(--border);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.hero-content { max-width: 580px; }
.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--navy-deep);
    margin-bottom: var(--sp-6);
}
.hero-lead {
    font-size: var(--fs-lg);
    line-height: 1.55;
    color: var(--grey-600);
    margin-bottom: var(--sp-7);
}
.hero-benefits {
    margin-bottom: var(--sp-8);
    display: grid;
    gap: var(--sp-3);
}
.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-base);
    color: var(--grey-700);
    line-height: 1.5;
}
.hero-benefits .check {
    flex-shrink: 0;
    width: 22px; height: 22px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.hero-benefits .check svg { width: 13px; height: 13px; }
.hero-cta {
    display: flex;
    gap: var(--sp-3);
    flex-wrap: wrap;
    align-items: center;
}
.hero-tagline-bottom {
    margin-top: var(--sp-7);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--grey-500);
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* ---- Live Monitor widget (hero right side) -------------------------------- */
.live-monitor {
    background: var(--navy-deep);
    border-radius: var(--r-xl);
    padding: var(--sp-7);
    box-shadow: var(--sh-2xl);
    position: relative;
    overflow: hidden;
    color: var(--white);
}
.live-monitor::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15), transparent 60%);
    pointer-events: none;
}
.live-monitor-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-5);
    border-bottom: 1px solid var(--border-on-dark);
}
.live-monitor-title {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    letter-spacing: 0.02em;
}
.live-monitor-pulse {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.3);
    animation: pulse-status 2.4s ease-in-out infinite;
}
.live-monitor-status {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}
.live-monitor-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5) var(--sp-6);
    margin-bottom: var(--sp-6);
}
.live-monitor-item .label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-on-dark-mute);
    margin-bottom: var(--sp-2);
}
.live-monitor-item .value {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.01em;
}
.live-monitor-item .value-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-on-dark-mute);
    margin-top: 2px;
}
.live-monitor-map {
    position: relative;
    height: 140px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(15, 42, 82, 0.4));
    border: 1px solid var(--border-on-dark);
    border-radius: var(--r-md);
    overflow: hidden;
    margin-bottom: var(--sp-5);
}
.live-monitor-map svg { width: 100%; height: 100%; }
.live-monitor-foot {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border-on-dark);
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-on-dark-mute);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Continuously rotating refresh arrow in the live monitor foot */
.lm-refresh-icon {
    display: inline-block;
    margin-right: 2px;
    animation: lm-spin 3.6s linear infinite;
    transform-origin: 50% 55%;
}
@keyframes lm-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Brief green flash when the ping resets (new ping received) */
.lm-ping-flash {
    animation: lm-ping-flash 0.7s ease-out;
}
@keyframes lm-ping-flash {
    0%   { color: var(--green); text-shadow: 0 0 10px rgba(34,197,94,0.6); }
    100% { color: inherit; text-shadow: none; }
}
@media (prefers-reduced-motion: reduce) {
    .lm-refresh-icon { animation: none; }
    .lm-ping-flash   { animation: none; }
}

/* ---- Trust stats row ------------------------------------------------------ */
.stats-section {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding-block: var(--sp-9);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
}
.stat-block { text-align: left; }
.stat-block .value {
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--navy-deep);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-2);
    font-variant-numeric: tabular-nums;
    font-feature-settings: 'tnum' 1;
}
.stat-block .label {
    font-size: var(--fs-sm);
    color: var(--grey-600);
    line-height: 1.4;
}
.stat-block .source {
    font-size: 11px;
    color: var(--grey-400);
    margin-top: var(--sp-3);
    line-height: 1.3;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ---- Trust strip (logos / partners) -------------------------------------- */
.trust-strip {
    padding-block: var(--sp-8);
    border-bottom: 1px solid var(--border);
}
.trust-strip-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-500);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--sp-6);
}
.trust-strip-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-9);
    flex-wrap: wrap;
}
.trust-strip-item {
    color: var(--grey-500);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}
.trust-strip-item svg {
    width: 16px; height: 16px;
    color: var(--accent);
}

/* ---- Section heading block ----------------------------------------------- */
.section-head {
    max-width: 720px;
    margin-bottom: var(--sp-10);
}
.section-head--center {
    margin-inline: auto;
    text-align: center;
}
.section-head h2 {
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: var(--sp-5);
    letter-spacing: -0.025em;
}
.section-head .lead {
    font-size: var(--fs-md);
    line-height: 1.65;
    color: var(--grey-600);
}

/* ---- Feature grid (6 cards) ---------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-7);
}
.feature-card {
    padding: var(--sp-7) var(--sp-6);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.feature-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}
.feature-card-icon {
    width: 44px; height: 44px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: var(--r-md);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-6);
}
.feature-card-icon svg { width: 22px; height: 22px; }
.feature-card h3 {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: var(--sp-3);
    letter-spacing: -0.015em;
}
.feature-card p {
    font-size: var(--fs-sm);
    color: var(--grey-600);
    line-height: 1.65;
}

/* ---- 4-Step Process (Detect / Alert / Track / Recover) ------------------- */
.process-section { background: var(--bg-alt); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
    position: relative;
}
.process-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--grey-300), var(--grey-300) 6px, transparent 6px, transparent 12px);
    z-index: 0;
}
.process-step {
    position: relative;
    text-align: left;
    padding: 0 var(--sp-3);
    z-index: 1;
}
.process-step-num {
    width: 56px; height: 56px;
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-lg);
    letter-spacing: -0.02em;
    margin-bottom: var(--sp-5);
}
.process-step h3 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: var(--sp-3);
    letter-spacing: -0.015em;
}
.process-step p {
    font-size: var(--fs-sm);
    color: var(--grey-600);
    line-height: 1.6;
}

/* ---- Comparison table ---------------------------------------------------- */
.comparison-section { padding-block: clamp(72px, 9vw, 112px); }
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    max-width: 980px;
    margin-inline: auto;
}
.comparison-col {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
}
.comparison-col--ours {
    border: 2px solid var(--accent);
    background: var(--white);
    box-shadow: var(--sh-lg);
    position: relative;
}
.comparison-col--ours::before {
    content: "RECOMMENDED";
    position: absolute;
    top: 12px; right: 12px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--r-xs);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.comparison-head {
    padding: var(--sp-6);
    border-bottom: 1px solid var(--border);
}
.comparison-col--ours .comparison-head { border-bottom-color: var(--accent-soft); }
.comparison-head .label {
    font-size: 12px;
    font-weight: 700;
    color: var(--grey-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
}
.comparison-col--ours .comparison-head .label { color: var(--accent); }
.comparison-head h3 {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.015em;
}
.comparison-list {
    padding: var(--sp-6);
    display: grid;
    gap: var(--sp-4);
}
.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--grey-700);
    line-height: 1.55;
}
.comparison-list .icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.comparison-list .icon--cross {
    background: #FEF2F2;
    color: var(--red);
}
.comparison-list .icon--check {
    background: var(--green-soft);
    color: var(--green);
}
.comparison-list .icon svg { width: 12px; height: 12px; }

/* ---- Pricing 3-up -------------------------------------------------------- */
.pricing-section { background: var(--bg-alt); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    align-items: stretch;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: var(--sp-8) var(--sp-7);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.pricing-card--featured {
    border: 2px solid var(--accent);
    box-shadow: var(--sh-lg);
}
.pricing-card .badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}
.pricing-tagline {
    font-size: 12px;
    font-weight: 600;
    color: var(--grey-500);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--sp-3);
}
.pricing-name {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: var(--sp-5);
    letter-spacing: -0.025em;
}
.pricing-amount {
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--border);
}
.pricing-strike {
    font-size: var(--fs-sm);
    color: var(--grey-400);
    text-decoration: line-through;
    margin-bottom: var(--sp-2);
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: var(--sp-2);
    margin-bottom: var(--sp-2);
}
.pricing-price .currency {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--navy-deep);
}
.pricing-price .number {
    font-size: var(--fs-5xl);
    font-weight: 800;
    line-height: 1;
    color: var(--navy-deep);
    letter-spacing: -0.04em;
}
.pricing-price .period {
    font-size: var(--fs-sm);
    color: var(--grey-500);
    margin-left: 2px;
}
.pricing-recurring {
    font-size: var(--fs-sm);
    color: var(--grey-600);
    line-height: 1.55;
}
.pricing-recurring strong { color: var(--navy-deep); font-weight: 700; }
.pricing-features {
    flex: 1;
    display: grid;
    gap: var(--sp-3);
    margin-bottom: var(--sp-7);
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    color: var(--grey-700);
    line-height: 1.5;
}
.pricing-features .check {
    flex-shrink: 0;
    width: 18px; height: 18px;
    background: var(--green-soft);
    color: var(--green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.pricing-features .check svg { width: 11px; height: 11px; }
.pricing-cta { width: 100%; }

/* ---- Reviews ------------------------------------------------------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: var(--sp-7);
    display: flex;
    flex-direction: column;
    transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.review-card:hover { border-color: var(--border-strong); box-shadow: var(--sh-md); }
.review-stars {
    display: flex;
    gap: 1px;
    margin-bottom: var(--sp-4);
    color: #F59E0B;
    font-size: 16px;
    line-height: 1;
}
.review-star { color: var(--grey-300); }
.review-star.is-on { color: #F59E0B; }
.review-title {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: var(--sp-3);
    letter-spacing: -0.015em;
    line-height: 1.4;
}
.review-body {
    flex: 1;
    font-size: var(--fs-sm);
    color: var(--grey-700);
    line-height: 1.7;
    margin-bottom: var(--sp-6);
}
.review-author {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-5);
    border-top: 1px solid var(--border);
}
.review-avatar {
    width: 40px; height: 40px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--navy-deep); font-size: var(--fs-sm); }
.review-meta {
    font-size: 12px;
    color: var(--grey-500);
    margin-top: 2px;
}

/* ---- Final CTA ----------------------------------------------------------- */
.final-cta-section {
    background: var(--bg-darkest);
    color: var(--text-on-dark);
    padding-block: clamp(72px, 10vw, 120px);
    position: relative;
    overflow: hidden;
}
.final-cta-section::before {
    content: "";
    position: absolute;
    top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 120%; height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.10), transparent 50%);
    pointer-events: none;
}
.final-cta {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}
.final-cta h2 {
    color: var(--white);
    margin-bottom: var(--sp-5);
}
.final-cta .lead {
    color: var(--text-on-dark-mute);
    margin-bottom: var(--sp-8);
}
.final-cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-bottom: var(--sp-8);
}
.final-cta-contact {
    display: flex;
    justify-content: center;
    gap: var(--sp-9);
    padding-top: var(--sp-7);
    border-top: 1px solid var(--border-on-dark);
    flex-wrap: wrap;
}
.final-cta-contact-item .label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-dark-mute);
    margin-bottom: var(--sp-2);
}
.final-cta-contact-item a {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}
.final-cta-contact-item a:hover { color: var(--blue-bright); }

/* ---- Footer -------------------------------------------------------------- */
.footer {
    background: var(--navy-deepest);
    color: var(--text-on-dark-mute);
    padding: var(--sp-11) 0 var(--sp-6);
    font-size: var(--fs-sm);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-8);
    margin-bottom: var(--sp-9);
    padding-bottom: var(--sp-8);
    border-bottom: 1px solid var(--border-on-dark);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: var(--sp-5); }
.footer-brand p {
    color: var(--text-on-dark-mute);
    line-height: 1.65;
    max-width: 320px;
    margin-bottom: var(--sp-5);
}
.footer-brand .contact-line {
    color: var(--text-on-dark);
    font-weight: 600;
    margin-bottom: var(--sp-2);
}
.footer-col h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--sp-5);
    letter-spacing: 0;
}
.footer-col ul li { margin-bottom: var(--sp-3); }
.footer-col a {
    color: var(--text-on-dark-mute);
    transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-4);
    color: var(--text-on-dark-mute);
    font-size: 13px;
}
.footer-bottom-links {
    display: flex;
    gap: var(--sp-5);
}

/* ---- Reveal animations --------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .05s; }
.reveal[data-delay="2"] { transition-delay: .12s; }
.reveal[data-delay="3"] { transition-delay: .19s; }
.reveal[data-delay="4"] { transition-delay: .26s; }
.reveal[data-delay="5"] { transition-delay: .33s; }
.reveal[data-delay="6"] { transition-delay: .40s; }

/* Safety net — if JS fails to load entirely, never hide content forever. */
@media (prefers-reduced-motion: no-preference) {
    .reveal { animation: reveal-fallback 0s 1.5s forwards; }
}
.no-js .reveal { opacity: 1; transform: none; }
@keyframes reveal-fallback {
    to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .live-monitor { max-width: 520px; margin-inline: auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) var(--sp-5); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8) var(--sp-5); }
    .process-grid::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
    .reviews-grid { grid-template-columns: 1fr; max-width: 600px; margin-inline: auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .utility-bar { display: none; }
    .nav-links { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-cta .btn--ghost { display: none; }
    .features-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
    .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
    .trust-strip-items { gap: var(--sp-6); }
    .final-cta-contact { gap: var(--sp-6); }
    .hero-cta .btn { flex: 1; min-width: 140px; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
    .nav-logo { font-size: var(--fs-sm); }
    .nav-logo-mark { width: 32px; height: 32px; font-size: 12px; }
}


/* =============================================================================
   STAGE 2 — HOW IT WORKS PAGE
   ============================================================================= */

/* Hero variant — inner pages (slightly less screen-dominant than landing) */
.hero--inner { padding-block: clamp(64px, 9vw, 110px) clamp(48px, 7vw, 80px); }
.hero--inner .hero-title { font-size: clamp(32px, 4.5vw, 52px); }

/* ---- At-a-glance (3-up cards on light alt background) -------------------- */
.glance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--sp-5);
}
.glance-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-6) var(--sp-6) var(--sp-5);
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.glance-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(10, 31, 63, 0.15);
    border-color: var(--accent);
}
.glance-icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: var(--sp-4);
}
.glance-icon svg { width: 28px; height: 28px; }
.glance-card h3 { margin: 0 0 var(--sp-2); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.glance-card p { margin: 0; font-size: var(--fs-sm); line-height: 1.55; color: var(--text-mute); }

/* ---- Setup section ------------------------------------------------------- */
.setup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-8);
}
.setup-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-7) var(--sp-6);
    position: relative;
}
.setup-number {
    font: 800 13px/1 'JetBrains Mono', monospace;
    letter-spacing: 0.1em;
    color: var(--accent);
    background: var(--accent-soft);
    display: inline-block;
    padding: 6px 10px;
    border-radius: 4px;
    margin-bottom: var(--sp-4);
}
.setup-card h3 { margin: 0 0 var(--sp-3); font-size: var(--fs-lg); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.setup-card > p { margin: 0 0 var(--sp-4); color: var(--text-mute); line-height: 1.6; }
.setup-bullets { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--navy-line); padding-top: var(--sp-4); }
.setup-bullets li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: var(--fs-sm);
    color: var(--text);
}
.setup-bullets li::before {
    content: '';
    position: absolute;
    left: 0; top: 12px;
    width: 12px; height: 2px;
    background: var(--accent);
    border-radius: 1px;
}
.setup-foot {
    margin-top: var(--sp-7);
    padding: var(--sp-5);
    background: var(--bg-alt);
    border: 1px solid var(--navy-line);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    text-align: center;
}
.setup-foot p { margin: 0; font-size: var(--fs-sm); color: var(--text); }

/* ---- Split (text + visual) layout --------------------------------------- */
.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--sp-8);
    align-items: center;
}
.split-content > .eyebrow { margin-bottom: var(--sp-3); }
.split-content > .h2 { margin: 0 0 var(--sp-3); }
.split-content > .lead { margin-bottom: var(--sp-6); }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    display: grid;
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--sp-3);
    row-gap: 4px;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--navy-line);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li .check {
    grid-row: span 2;
    width: 22px; height: 22px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.check-list li .check svg { width: 12px; height: 12px; }
.check-list li strong { font-weight: 700; color: var(--navy-deep); font-size: var(--fs-base); }
.check-list li span:last-child { font-size: var(--fs-sm); color: var(--text-mute); line-height: 1.55; }

/* ---- Flow stages (dark section) ----------------------------------------- */
.flow-stages {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    margin-top: var(--sp-8);
}
.flow-stage {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--sp-7);
    padding: var(--sp-7);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: background .2s, border-color .2s;
}
.flow-stage:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(59,130,246,0.3);
}
.flow-stage-num {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: var(--sp-6);
}
.flow-stage-numdigit {
    font: 800 56px/1 'Inter', sans-serif;
    color: var(--blue-bright);
    letter-spacing: -0.04em;
}
.flow-stage-numlabel {
    font: 600 10px/1 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.5);
    margin-top: var(--sp-2);
}
.flow-stage-title { margin: 0 0 var(--sp-2); font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.flow-stage-lead { margin: 0 0 var(--sp-3); font-size: var(--fs-md); color: rgba(255,255,255,0.85); line-height: 1.55; }
.flow-stage-extra { margin: 0 0 var(--sp-4); font-size: var(--fs-sm); color: rgba(255,255,255,0.65); line-height: 1.6; }
.flow-stage-bullets {
    list-style: none; padding: 0; margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--sp-2);
}
.flow-stage-bullets li {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    padding: 6px 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
}

/* ---- Timeline ----------------------------------------------------------- */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: var(--sp-8) 0 0;
    position: relative;
}
.timeline-list::before {
    content: '';
    position: absolute;
    top: 20px; bottom: 20px;
    left: 96px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent) 0%, var(--accent-soft) 100%);
}
.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: var(--sp-6);
    align-items: flex-start;
    padding: var(--sp-4) 0;
    position: relative;
}
.timeline-time {
    font: 700 14px/1 'JetBrains Mono', monospace;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 8px 10px;
    border-radius: 6px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.timeline-body { padding-left: var(--sp-3); position: relative; }
.timeline-body::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 14px;
    width: 12px; height: 12px;
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 50%;
}
.timeline-body h4 { margin: 0 0 var(--sp-2); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.timeline-body p { margin: 0; font-size: var(--fs-sm); color: var(--text-mute); line-height: 1.6; }

/* ---- Coverage grid ------------------------------------------------------ */
.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-5);
    margin-top: var(--sp-8);
}
.coverage-card {
    background: var(--white);
    border-radius: 12px;
    padding: var(--sp-6);
    border: 1px solid var(--navy-line);
}
.coverage-card--yes { border-color: rgba(22, 163, 74, 0.25); }
.coverage-card--no { border-color: rgba(220, 38, 38, 0.25); }
.coverage-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: var(--sp-4);
}
.coverage-icon--yes { background: rgba(22, 163, 74, 0.1); color: #16A34A; }
.coverage-icon--no { background: rgba(220, 38, 38, 0.1); color: #DC2626; }
.coverage-icon svg { width: 24px; height: 24px; }
.coverage-card h3 { margin: 0 0 var(--sp-4); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.coverage-card ul { list-style: none; padding: 0; margin: 0; }
.coverage-card li {
    padding: var(--sp-2) 0;
    font-size: var(--fs-sm);
    color: var(--text);
    border-top: 1px solid var(--navy-line);
}
.coverage-card li:first-child { border-top: 0; }
.coverage-foot {
    margin-top: var(--sp-6);
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--text-mute);
    font-style: italic;
}

/* ---- FAQ accordion ------------------------------------------------------ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-top: var(--sp-8);
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 8px 24px -10px rgba(37, 99, 235, 0.2);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
    cursor: pointer;
    font-weight: 600;
    color: var(--navy-deep);
    list-style: none;
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-toggle {
    flex-shrink: 0;
    width: 28px; height: 28px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-mute);
    transition: transform .2s, background .2s, color .2s;
}
.faq-item[open] .faq-toggle {
    transform: rotate(180deg);
    background: var(--accent-soft);
    color: var(--accent);
}
.faq-toggle svg { width: 14px; height: 14px; }
.faq-a {
    padding: 0 var(--sp-5) var(--sp-5);
}
.faq-a p { margin: 0; color: var(--text-mute); line-height: 1.65; font-size: var(--fs-sm); }

/* ---- Final CTA on this page --------------------------------------------- */
.cta-final .h2 { font-size: clamp(28px, 3.5vw, 40px); }
.cta-final .cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--sp-4);
    margin-top: var(--sp-6);
    flex-wrap: wrap;
}
.cta-final .cta-contact-strip {
    margin-top: var(--sp-6);
    padding-top: var(--sp-5);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-4);
    flex-wrap: wrap;
    font-size: var(--fs-sm);
}
.cta-final .cta-contact-strip a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-weight: 500;
}
.cta-final .cta-contact-strip a:hover { color: var(--white); }
.cta-final .cta-contact-strip span { color: rgba(255,255,255,0.3); }
.cta-final .cta-contact-strip small { color: rgba(255,255,255,0.55); font-weight: 400; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
    .split-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
    .flow-stage { grid-template-columns: 1fr; gap: var(--sp-5); }
    .flow-stage-num {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        flex-direction: row;
        align-items: baseline;
        padding-right: 0;
        padding-bottom: var(--sp-4);
        gap: var(--sp-3);
    }
    .flow-stage-numdigit { font-size: 40px; }
    .coverage-grid { grid-template-columns: 1fr; }
    .timeline-list::before { left: 70px; }
    .timeline-item { grid-template-columns: 64px 1fr; gap: var(--sp-4); }
    .timeline-time { font-size: 12px; padding: 6px 8px; }
}
@media (max-width: 540px) {
    .glance-grid { grid-template-columns: 1fr; }
    .setup-grid { grid-template-columns: 1fr; }
}


/* =============================================================================
   STAGES 3–7 — PAGE-SPECIFIC STYLES
   ============================================================================= */

/* ---- Centred hero variant (Features, Pricing, Reviews, ThStats, Contact) -- */
.hero-content--center .eyebrow {
    display: inline-flex;
}

/* =============================================================================
   STAGE 3 — FEATURES PAGE
   ============================================================================= */
.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-7);
}
.spotlight-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-7) var(--sp-6);
    text-align: left;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.spotlight-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(10, 31, 63, 0.15);
    border-color: var(--accent);
}
.spotlight-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: var(--sp-5);
}
.spotlight-icon svg { width: 32px; height: 32px; }
.spotlight-card h3 { margin: 0 0 var(--sp-3); font-size: 20px; font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.spotlight-card p { margin: 0; color: var(--text-mute); line-height: 1.6; }

.feature-category { margin-top: var(--sp-9); }
.feature-category:first-of-type { margin-top: var(--sp-7); }
.feature-category-head { margin-bottom: var(--sp-5); }
.feature-category-head .eyebrow { margin-bottom: var(--sp-2); }
.feature-category-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--sp-4);
}
.feature-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 10px;
    padding: var(--sp-5);
    transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.feature-card-icon {
    width: 40px; height: 40px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: var(--sp-4);
}
.feature-card-icon svg { width: 22px; height: 22px; }
.feature-card-title { margin: 0 0 var(--sp-2); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.feature-card-desc { margin: 0; color: var(--text-mute); font-size: var(--fs-sm); line-height: 1.6; }

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    gap: var(--sp-5);
    align-items: stretch;
    margin-top: var(--sp-7);
}
.vs-col {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-6);
}
.vs-col-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.vs-col-icon {
    width: 44px; height: 44px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
}
.vs-col-icon svg { width: 24px; height: 24px; }
.vs-col-head h3 { margin: 0; font-size: var(--fs-lg); font-weight: 700; color: var(--navy-deep); }
.vs-col ul { list-style: none; padding: 0; margin: 0; }
.vs-col li {
    padding: var(--sp-3) 0;
    border-top: 1px solid var(--navy-line);
    font-size: var(--fs-sm);
    color: var(--text);
}
.vs-col li:first-child { border-top: 0; }
.vs-plus {
    align-self: center;
    text-align: center;
    font: 800 32px/1 'Inter', sans-serif;
    color: var(--accent);
    line-height: 40px;
}

/* =============================================================================
   STAGE 4 — PRICING PAGE
   ============================================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-5);
    align-items: stretch;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 14px;
    padding: var(--sp-7) var(--sp-6) var(--sp-6);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pricing-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -16px rgba(10,31,63,0.18); }
.pricing-card--featured {
    border: 2px solid var(--accent);
    box-shadow: 0 18px 36px -16px rgba(37,99,235,0.25);
    transform: scale(1.02);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
    white-space: nowrap;
}
.pricing-head { margin-bottom: var(--sp-5); }
.pricing-name { margin: 0 0 4px; font-size: 22px; font-weight: 700; color: var(--navy-deep); letter-spacing: -0.02em; }
.pricing-tagline { margin: 0; font-size: var(--fs-sm); color: var(--text-mute); }
.pricing-price { padding-bottom: var(--sp-5); margin-bottom: var(--sp-5); border-bottom: 1px solid var(--navy-line); }
.pricing-price-strike {
    font-size: var(--fs-sm); color: var(--text-mute);
    text-decoration: line-through;
    margin-bottom: 4px;
    font-family: 'JetBrains Mono', monospace;
}
.pricing-price-main {
    font-size: 36px; font-weight: 800;
    color: var(--navy-deep);
    letter-spacing: -0.03em;
    line-height: 1;
}
.pricing-price-period {
    font-size: var(--fs-sm);
    color: var(--text-mute);
    font-weight: 500;
    letter-spacing: 0;
    margin-left: 4px;
}
.pricing-price-sub {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-mute);
}
.pricing-price-custom {
    font-size: 32px; font-weight: 800;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}
.pricing-desc { font-size: var(--fs-sm); color: var(--text-mute); line-height: 1.55; margin: 0 0 var(--sp-5); }
.pricing-features { list-style: none; padding: 0; margin: 0 0 var(--sp-6); flex: 1; }
.pricing-features li {
    display: flex; gap: var(--sp-3); align-items: flex-start;
    padding: 8px 0;
    font-size: var(--fs-sm);
    color: var(--text);
    line-height: 1.5;
}
.pricing-check {
    width: 18px; height: 18px; flex-shrink: 0;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 2px;
}
.pricing-check svg { width: 10px; height: 10px; }
.pricing-cta { width: 100%; justify-content: center; }
.pricing-foot {
    margin-top: var(--sp-7);
    text-align: center;
    color: var(--text-mute);
    font-size: var(--fs-sm);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-7);
}
.included-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 10px;
    padding: var(--sp-5);
}
.included-icon {
    width: 40px; height: 40px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: var(--sp-4);
}
.included-icon svg { width: 22px; height: 22px; }
.included-card h4 { margin: 0 0 var(--sp-2); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.included-card p { margin: 0; font-size: var(--fs-sm); color: var(--text-mute); line-height: 1.55; }

/* =============================================================================
   STAGE 5 — REVIEWS PAGE
   ============================================================================= */
.rating-summary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.rating-summary-value {
    font: 800 56px/1 'Inter', sans-serif;
    color: var(--navy-deep);
    letter-spacing: -0.04em;
}
.rating-summary-stars { display: inline-flex; gap: 2px; }
.rating-summary-stars .star { width: 22px; height: 22px; }
.rating-summary-count {
    font-size: 13px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.star { display: inline-flex; align-items: center; justify-content: center; }
.star svg { width: 16px; height: 16px; }
.star--filled { color: #F59E0B; }
.star--empty  { color: var(--navy-line); }

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 480px;
    margin: 0 auto;
}
.rating-bar {
    display: grid;
    grid-template-columns: 32px 1fr 30px;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text);
}
.rating-bar-label { display: flex; align-items: center; gap: 4px; color: #F59E0B; }
.rating-bar-label svg { width: 12px; height: 12px; }
.rating-bar-track {
    height: 8px;
    background: var(--navy-line);
    border-radius: 4px;
    overflow: hidden;
}
.rating-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #F59E0B, #FBBF24);
    border-radius: 4px;
    transition: width .6s ease-out;
}
.rating-bar-count { color: var(--text-mute); text-align: right; }

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--sp-5);
}
.review-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-6);
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    transition: border-color .2s, transform .2s;
}
.review-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.review-card--featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, rgba(37,99,235,0.02) 0%, var(--white) 100%);
}
.review-stars { display: flex; gap: 2px; }
.review-title {
    margin: 0;
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.review-body {
    margin: 0;
    color: var(--text);
    line-height: 1.6;
    flex: 1;
    font-size: var(--fs-sm);
}
.review-meta {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: var(--sp-3);
    padding-top: var(--sp-4);
    border-top: 1px solid var(--navy-line);
}
.review-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 13px;
}
.review-author-name { font-weight: 700; color: var(--navy-deep); font-size: 14px; }
.review-author-context { font-size: 12px; color: var(--text-mute); }
.review-date {
    font-size: 11px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.trust-panel {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--sp-5);
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: var(--sp-6);
}
.trust-panel-icon {
    width: 56px; height: 56px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
}
.trust-panel-icon svg { width: 32px; height: 32px; }
.trust-panel-body h3 { margin: 0 0 var(--sp-3); font-size: var(--fs-lg); color: var(--navy-deep); letter-spacing: -0.01em; }
.trust-panel-body p { margin: 0 0 var(--sp-3); color: var(--text-mute); line-height: 1.6; }
.trust-panel-body p:last-child { margin-bottom: 0; }

/* =============================================================================
   STAGE 6 — THEFT STATS PAGE
   ============================================================================= */
.stats-big-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-7);
}
.stats-big-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-6);
}
.stats-big-value {
    font: 800 48px/1 'Inter', sans-serif;
    color: var(--accent);
    letter-spacing: -0.03em;
    margin-bottom: var(--sp-3);
    font-variant-numeric: tabular-nums;
}
.stats-big-label {
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--navy-deep);
    margin-bottom: var(--sp-3);
    letter-spacing: -0.01em;
    line-height: 1.35;
}
.stats-big-context {
    font-size: var(--fs-sm);
    color: var(--text-mute);
    line-height: 1.55;
    margin-bottom: var(--sp-4);
}
.stats-big-source {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mute);
    font-weight: 600;
    padding-top: var(--sp-3);
    border-top: 1px solid var(--navy-line);
}

.when-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-7);
}
.when-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-6);
    text-align: center;
}
.when-percent {
    font: 800 56px/1 'Inter', sans-serif;
    color: var(--navy-deep);
    letter-spacing: -0.03em;
    margin-bottom: var(--sp-4);
}
.when-card h4 { margin: 0 0 var(--sp-3); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.when-card p { margin: 0; font-size: var(--fs-sm); color: var(--text-mute); line-height: 1.55; }

.recovery-rows {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-top: var(--sp-7);
}
.recovery-row {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 10px;
    padding: var(--sp-5) var(--sp-6);
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: var(--sp-6);
    align-items: center;
}
.recovery-row-value {
    font: 800 40px/1 'Inter', sans-serif;
    color: var(--accent);
    letter-spacing: -0.03em;
}
.recovery-row-body h4 { margin: 0 0 var(--sp-2); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.recovery-row-body p { margin: 0; color: var(--text-mute); line-height: 1.6; font-size: var(--fs-sm); }

.targets-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: var(--sp-7);
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 10px;
    overflow: hidden;
}
.target-row {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: var(--sp-4);
    align-items: center;
    padding: var(--sp-4) var(--sp-5);
    border-top: 1px solid var(--navy-line);
}
.target-row:first-child { border-top: 0; }
.target-rank {
    font: 700 13px/1 'JetBrains Mono', monospace;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 6px 8px;
    border-radius: 4px;
    text-align: center;
}
.target-model { font-weight: 700; color: var(--navy-deep); font-size: var(--fs-md); }
.target-meta { font-size: 13px; color: var(--text-mute); }

.sources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--sp-4);
    margin-top: var(--sp-7);
}
.source-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 10px;
    padding: var(--sp-5);
}
.source-card h4 { margin: 0 0 var(--sp-3); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.source-card p { margin: 0 0 var(--sp-3); font-size: 13px; color: var(--text-mute); line-height: 1.55; }
.source-card a { font-size: 13px; font-weight: 600; color: var(--accent); }
.source-card a:hover { color: var(--accent-hover); }

.prevention-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--sp-5);
    margin-top: var(--sp-7);
}
.prevention-card {
    background: var(--bg-alt);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-6);
}
.prevention-num {
    font: 700 12px/1 'JetBrains Mono', monospace;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 5px 9px;
    border-radius: 4px;
    display: inline-block;
    letter-spacing: 0.1em;
    margin-bottom: var(--sp-4);
}
.prevention-card h4 { margin: 0 0 var(--sp-3); font-size: var(--fs-md); font-weight: 700; color: var(--navy-deep); letter-spacing: -0.01em; }
.prevention-card p { margin: 0; color: var(--text-mute); line-height: 1.6; font-size: var(--fs-sm); }

/* =============================================================================
   STAGE 7 — CONTACT PAGE
   ============================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--sp-8);
    align-items: flex-start;
}

.contact-method {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--sp-3);
    padding: var(--sp-4) 0;
    border-top: 1px solid var(--navy-line);
}
.contact-method:first-of-type { border-top: 0; }
.contact-method-icon {
    width: 40px; height: 40px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
}
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mute);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-method-value {
    display: block;
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    text-decoration: none;
}
a.contact-method-value:hover { color: var(--accent); }
.contact-method-meta { font-size: 12px; color: var(--text-mute); margin-top: 2px; }

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 14px;
    padding: var(--sp-7) var(--sp-6);
}
.contact-form-field { margin-bottom: var(--sp-4); }
.contact-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy-deep);
    margin-bottom: 6px;
}
.contact-form-field .input,
.contact-form-field .textarea,
.contact-form-field .select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-strong, #CBD5E1);
    border-radius: 6px;
    background: var(--white);
    font: inherit;
    color: var(--text);
    line-height: 1.45;
    transition: border-color .15s, box-shadow .15s;
}
.contact-form-field .input:focus,
.contact-form-field .textarea:focus,
.contact-form-field .select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.contact-form-field .textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
}
.contact-form-row .contact-form-field { margin-bottom: 0; }
.contact-form-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
    padding: 12px 14px;
    border-radius: 6px;
    margin-bottom: var(--sp-4);
    font-size: var(--fs-sm);
}
.contact-form-privacy {
    margin: var(--sp-4) 0 0;
    font-size: 12px;
    color: var(--text-mute);
    line-height: 1.5;
    text-align: center;
}

.response-strip {
    background: var(--bg-alt);
    border: 1px solid var(--navy-line);
    border-radius: 12px;
    padding: var(--sp-6);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}
.response-strip-item { text-align: center; }
.response-strip-value {
    font: 800 28px/1 'Inter', sans-serif;
    color: var(--accent);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    font-variant-numeric: tabular-nums;
}
.response-strip-label {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* ---- Setup card numbered variant override ------------------------------- */

/* ---- Responsive overrides for stages 3–7 -------------------------------- */
@media (max-width: 900px) {
    .vs-grid { grid-template-columns: 1fr; }
    .vs-plus { transform: rotate(0deg); padding: 0; }
    .pricing-card--featured { transform: none; }
    .recovery-row { grid-template-columns: 1fr; gap: var(--sp-3); }
    .recovery-row-value { font-size: 36px; }
    .target-row { grid-template-columns: 50px 1fr; }
    .target-meta { grid-column: 1 / -1; padding-left: 62px; padding-top: 2px; }
    .contact-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
    .contact-form-row { grid-template-columns: 1fr; }
    .response-strip { grid-template-columns: 1fr; gap: var(--sp-4); }
}
@media (max-width: 540px) {
    .stats-big-value { font-size: 40px; }
    .when-percent { font-size: 44px; }
    .rating-summary-value { font-size: 44px; }
}


/* =============================================================================
   FOOTER TRUST STRIP — Stage 1 SEO trust signals
   ============================================================================= */
.footer-trust {
    margin-top: var(--sp-6);
    padding: var(--sp-5) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-3) var(--sp-6);
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}
.footer-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}
.footer-trust-item--address {
    white-space: normal;
    max-width: 380px;
}
.footer-trust-item--rating {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
}
.footer-trust-stars {
    color: #F59E0B;
    font-size: 13px;
    letter-spacing: 1px;
}
.footer-trust-label strong {
    color: var(--white);
    font-weight: 700;
}
.footer-trust-key {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
}
@media (max-width: 720px) {
    .footer-trust { gap: var(--sp-3); justify-content: flex-start; }
    .footer-trust-item { flex-basis: 100%; white-space: normal; }
}


/* =============================================================================
   STAGE 3 ADDITIONS — FAQ page jump grid + Recovery Stories
   ============================================================================= */

/* FAQ jump links (top of /faq) */
.faq-jump-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    justify-content: center;
}
.faq-jump {
    background: var(--white);
    border: 1px solid var(--navy-line);
    color: var(--navy-deep);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    transition: border-color .15s, background .15s, color .15s;
}
.faq-jump:hover {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent);
}

/* Recovery story cards */
.story-card {
    background: var(--white);
    border: 1px solid var(--navy-line);
    border-radius: 14px;
    padding: var(--sp-6) var(--sp-6) var(--sp-7);
    margin-bottom: var(--sp-5);
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.story-card:last-child { margin-bottom: 0; }
.story-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -14px rgba(10, 31, 63, 0.18);
}
.story-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
    margin-bottom: var(--sp-4);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--navy-line);
}
.story-badge {
    font: 700 12px/1 'JetBrains Mono', monospace;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 6px 10px;
    border-radius: 4px;
    letter-spacing: 0.04em;
}
.story-outcome {
    font-size: 12px;
    font-weight: 700;
    color: #16A34A;
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.25);
    padding: 5px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.story-vehicle {
    margin: 0 0 var(--sp-3);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
}
.story-meta {
    display: inline-flex;
    align-items: baseline;
    gap: var(--sp-2);
    margin-bottom: var(--sp-4);
    padding: 8px 14px;
    background: var(--bg-alt);
    border-radius: 6px;
}
.story-meta-key {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-mute);
    font-weight: 600;
}
.story-meta-value {
    font: 700 18px/1 'JetBrains Mono', monospace;
    color: var(--navy-deep);
    font-variant-numeric: tabular-nums;
}
.story-narrative {
    margin: 0;
    color: var(--text);
    line-height: 1.7;
    font-size: var(--fs-base);
}

@media (max-width: 540px) {
    .story-head { flex-direction: column; align-items: flex-start; }
    .story-vehicle { font-size: 18px; }
}
