/* NuvisoAI Theme — main.css */

:root {
    --navy: #0a1628;
    --blue: #1a56db;
    --blue-mid: #2563eb;
    --blue-light: #dbeafe;
    --blue-pale: #eff6ff;
    --gold: #f59e0b;
    --gold-light: #fef3c7;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --text: #0f172a;
    --radius: 12px;
    --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .nav-logo, .footer-brand-name,
.product-name, .dash-stat-value, .stat-number,
.step-title, .badge-title, .footer-col-title,
.dash-title, .section-title {
    font-family: 'Syne', sans-serif;
}

img { max-width: 100%; height: auto; display: block; }

/* ── NAV ───────────────────────────────────────────────────────────────────── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    height: 68px;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.nav-logo span, .footer-brand-name span { color: var(--blue-mid); }

.nav-logo img { height: 40px; width: auto; }

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li { margin: 0; }

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--blue-mid); }

.nav-cta {
    background: var(--blue-mid);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-cta:hover { background: var(--navy) !important; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
    padding-top: 68px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(219,234,254,0.6) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(239,246,255,0.8) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26,86,219,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,86,219,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-pale);
    border: 1px solid var(--blue-light);
    color: var(--blue-mid);
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--blue-mid);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--navy);
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}

.hero h1 .accent {
    color: var(--blue-mid);
    position: relative;
    display: inline-block;
}

.hero h1 .accent::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.7;
}

.hero-sub {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 36px;
    font-weight: 300;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
    background: var(--blue-mid);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
    background: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37,99,235,0.25);
    color: var(--white);
}

.btn-secondary {
    color: var(--gray-800);
    padding: 14px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--gray-200);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
}

.btn-secondary:hover {
    border-color: var(--blue-mid);
    color: var(--blue-mid);
}

.hero-trust {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: fadeUp 0.6s 0.4s ease both;
}

.hero-trust-text { font-size: 12px; color: var(--gray-400); }
.trust-flags { display: flex; gap: 8px; align-items: center; }

.trust-flag {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray-600);
    background: var(--gray-100);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid var(--gray-200);
}

/* Hero visual */
.hero-visual {
    position: relative;
    animation: fadeIn 0.8s 0.3s ease both;
}

.dashboard-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: 0 24px 80px rgba(10,22,40,0.12), 0 4px 16px rgba(10,22,40,0.06);
    overflow: hidden;
}

.dashboard-header {
    background: var(--navy);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dash-dots { display: flex; gap: 6px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-dot:nth-child(1) { background: #ff5f57; }
.dash-dot:nth-child(2) { background: #febc2e; }
.dash-dot:nth-child(3) { background: #28c840; }
.dash-title { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 4px; }

.dashboard-body { padding: 20px; }

.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }

.dash-stat {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 14px;
}

.dash-stat-label { font-size: 10px; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.dash-stat-value { font-size: 22px; font-weight: 700; color: var(--navy); }
.dash-stat-value.green { color: #059669; }
.dash-stat-value.blue { color: var(--blue-mid); }
.dash-stat-delta { font-size: 10px; color: #059669; margin-top: 2px; }

.dash-chart { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 10px; padding: 16px; margin-bottom: 12px; }
.dash-chart-label { font-size: 11px; color: var(--gray-400); font-weight: 500; margin-bottom: 12px; }

.chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; }
.chart-bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--blue-light); transition: background 0.2s; }
.chart-bar.active { background: var(--blue-mid); }
.chart-bar:hover { background: var(--blue-mid); }

.dash-alerts { display: flex; flex-direction: column; gap: 8px; }

.dash-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
}

.dash-alert.warn { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.dash-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.dash-alert-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dash-alert.warn .dash-alert-dot { background: #f59e0b; }
.dash-alert.success .dash-alert-dot { background: #10b981; }

.floating-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(10,22,40,0.1);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.floating-badge.top-right { top: -16px; right: -20px; color: #059669; animation: float 3s ease-in-out infinite; }
.floating-badge.bottom-left { bottom: -16px; left: -20px; color: var(--blue-mid); animation: float 3s 1.5s ease-in-out infinite; }

.floating-icon { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.floating-badge.top-right .floating-icon { background: #d1fae5; }
.floating-badge.bottom-left .floating-icon { background: var(--blue-pale); }

/* ── STATS BAR ─────────────────────────────────────────────────────────────── */
.stats-bar { background: var(--navy); padding: 40px; }

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 40px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 6px; }
.stat-number span { color: var(--gold); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ── SECTION COMMON ────────────────────────────────────────────────────────── */
section { padding: 96px 40px; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-mid);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--gray-600);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.7;
}

/* ── PRODUCTS ──────────────────────────────────────────────────────────────── */
.products { background: var(--gray-50); }
.products-header { text-align: center; margin-bottom: 56px; }
.products-header .section-sub { margin: 0 auto; }

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

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transition: opacity 0.3s;
    opacity: 0;
}

.product-card:hover { box-shadow: 0 16px 48px rgba(10,22,40,0.1); transform: translateY(-4px); border-color: transparent; }
.product-card:hover::before { opacity: 1; }

.card-auto::before { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.card-retail::before { background: linear-gradient(90deg, #2563eb, #7c3aed); }
.card-guard::before { background: linear-gradient(90deg, #059669, #2563eb); }
.card-super::before { background: linear-gradient(90deg, #94a3b8, #64748b); }

.product-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.icon-auto { background: #fef3c7; }
.icon-retail { background: var(--blue-pale); }
.icon-guard { background: #d1fae5; }
.icon-super { background: var(--gray-100); }

.product-market { font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; }
.product-name { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.product-desc { font-size: 14px; color: var(--gray-600); line-height: 1.65; margin-bottom: 24px; font-weight: 300; }

.product-modules { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }

.module-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

.product-link { font-size: 14px; font-weight: 500; color: var(--blue-mid); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.product-link:hover { gap: 10px; }

.coming-soon-badge { display: inline-block; font-size: 11px; font-weight: 600; background: var(--gray-100); color: var(--gray-400); padding: 4px 10px; border-radius: 100px; border: 1px solid var(--gray-200); margin-bottom: 16px; }
.coming-tag { font-size: 10px; background: var(--gray-100); color: var(--gray-400); padding: 2px 6px; border-radius: 100px; margin-left: 4px; }

/* ── HOW IT WORKS ──────────────────────────────────────────────────────────── */
.how-it-works { background: var(--white); }

.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 56px; }

.step { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--gray-100); transition: all 0.2s; }
.step:last-child { border-bottom: none; }

.step-num {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--blue-pale);
    color: var(--blue-mid);
    font-size: 14px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.step:hover .step-num { background: var(--blue-mid); color: var(--white); }
.step-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-desc { font-size: 14px; color: var(--gray-600); font-weight: 300; line-height: 1.6; }

.how-visual { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; }

.camera-feed { background: var(--navy); border-radius: 10px; padding: 20px; margin-bottom: 16px; min-height: 160px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.camera-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; }

.camera-cell {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.camera-cell.active { border-color: rgba(37,99,235,0.6); background: rgba(37,99,235,0.1); }

.scan-line { position: absolute; left: 0; right: 0; height: 1px; background: rgba(37,99,235,0.6); animation: scan 2s linear infinite; }

.ai-output { display: flex; flex-direction: column; gap: 8px; }

.ai-output-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; padding: 8px 12px; background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; }

.ai-label { color: var(--gray-600); }
.ai-value { font-weight: 500; color: var(--navy); }
.ai-value.alert { color: #dc2626; }
.ai-value.ok { color: #059669; }

/* ── COMPLIANCE ────────────────────────────────────────────────────────────── */
.compliance { background: var(--navy); color: var(--white); }

.compliance-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.compliance .section-tag { color: var(--gold); }
.compliance .section-title { color: var(--white); }
.compliance .section-sub { color: rgba(255,255,255,0.6); }

.compliance-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.compliance-badge { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 24px; transition: all 0.2s; }
.compliance-badge:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }

.badge-flag { font-size: 28px; margin-bottom: 10px; }
.badge-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.badge-desc { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 300; line-height: 1.5; }

/* ── PILOT CTA ─────────────────────────────────────────────────────────────── */
.pilot-cta { background: var(--blue-pale); border-top: 1px solid var(--blue-light); border-bottom: 1px solid var(--blue-light); text-align: center; }
.pilot-cta-inner { max-width: 700px; margin: 0 auto; }
.pilot-cta .section-sub { margin: 0 auto 36px; }

.pilot-features { display: flex; justify-content: center; gap: 32px; margin-bottom: 36px; flex-wrap: wrap; }
.pilot-feat { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-600); }
.pilot-feat-dot { width: 6px; height: 6px; background: var(--blue-mid); border-radius: 50%; flex-shrink: 0; }

/* ── GENERAL PAGE CONTENT ──────────────────────────────────────────────────── */
.page-content { padding: 120px 40px 80px; }
.page-header { margin-bottom: 40px; }
.page-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; letter-spacing: -1px; color: var(--navy); }
.page-body { font-size: 16px; color: var(--gray-600); line-height: 1.8; }
.page-body h2 { font-size: 28px; font-weight: 700; color: var(--navy); margin: 40px 0 16px; }
.page-body h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin: 28px 0 12px; }
.page-body p { margin-bottom: 16px; }
.page-body ul { padding-left: 24px; margin-bottom: 16px; }
.page-body li { margin-bottom: 8px; }

.product-hero { padding-top: 100px; padding-bottom: 60px; background: var(--gray-50); border-bottom: 1px solid var(--gray-200); }
.product-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Posts grid */
.posts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; margin-bottom: 48px; }
.post-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s; }
.post-card:hover { box-shadow: 0 12px 40px rgba(10,22,40,0.1); transform: translateY(-3px); }
.post-thumb img { width: 100%; height: 220px; object-fit: cover; }
.post-card-body { padding: 28px; }
.post-meta { font-size: 12px; color: var(--gray-400); margin-bottom: 8px; }
.post-card-title { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.post-card-title a { text-decoration: none; color: inherit; }
.post-card-title a:hover { color: var(--blue-mid); }
.post-card-excerpt { font-size: 14px; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; font-weight: 300; }
.pagination { text-align: center; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: var(--white); padding: 60px 40px 40px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 32px; }

.footer-brand-name { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }

.footer-markets { display: flex; gap: 8px; margin-bottom: 16px; }
.footer-market { font-size: 11px; font-weight: 500; padding: 4px 10px; border-radius: 100px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

.footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }

.footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 16px; letter-spacing: 0.3px; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; }
.footer-links a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; font-weight: 300; }
.footer-links a:hover { color: var(--white); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); font-weight: 300; }

.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.3); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

@keyframes scan {
    from { top: 0; }
    to   { top: 100%; }
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .stats-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
    .stat-item:last-child { border-bottom: none; }
    .how-grid { grid-template-columns: 1fr; }
    .compliance-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .product-hero-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section { padding: 64px 24px; }
    .stats-bar { padding: 40px 24px; }
    .nav-inner { padding: 0 24px; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); padding: 20px 24px; gap: 16px; }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
    .hero h1 { font-size: 36px; }
    .hero-inner { padding: 60px 24px 40px; }
    .products-grid { grid-template-columns: 1fr; }
    .compliance-badges { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .posts-grid { grid-template-columns: 1fr; }
    .how-grid { gap: 40px; }
    .pilot-features { flex-direction: column; align-items: center; gap: 12px; }
    .page-content { padding: 100px 24px 60px; }
}
