/* ============================================
   DEALJUDGE - PROTOTYPE 10
   Automotive. Professional. Sales-focused.
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; width: 100%; }
body { overflow-x: hidden; width: 100%; position: relative; }

:root {
    --bg: #0a0a0a;
    --bg-card: #111111;
    --bg-elevated: #161616;
    --text: #ffffff;
    --text-muted: #999999;
    --text-dim: #666666;
    --accent: #ff6b00;
    --accent-dim: #cc5500;
    --border: #222222;
    --success: #22c55e;
    --warning: #eab308;
    --danger: #ef4444;
    --font-display: 'Oxanium', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ==================== LIGHT THEME ==================== */
[data-theme="light"] {
    --bg: #f8f9fa;
    --bg-card: #ffffff;
    --bg-elevated: #f1f3f5;
    --text: #2d3038;
    --text-muted: #5a5f6b;
    --text-dim: #8a8f99;
    --border: #dfe2e6;
}

/* body::before orange hex handled below in light texture overrides */

/* --- HEADER: dark header stays dark for contrast and brand identity --- */
[data-theme="light"] .header {
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}
[data-theme="light"] .header .nav-link { color: rgba(255,255,255,0.7) !important; }
[data-theme="light"] .header .nav-link:hover { color: var(--accent) !important; }
[data-theme="light"] .header .logo-full { content: url('images/forDark.png'); }
[data-theme="light"] .header-cta { color: #ffffff; }
[data-theme="light"] .theme-toggle { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.15); }
[data-theme="light"] .theme-toggle:hover { color: var(--accent); border-color: var(--accent); }

/* --- HERO: light theme — video visible, warm white overlay fade --- */
[data-theme="light"] .hero { background: #f8f9fa; }
[data-theme="light"] .hero-car-bg { z-index: 0; }
[data-theme="light"] .hero-car-image,
[data-theme="light"] .hero-car-video { opacity: 0.35; mix-blend-mode: normal; filter: saturate(1.3) contrast(1.1); }
[data-theme="light"] .hero-overlay {
    background:
        linear-gradient(135deg, rgba(255,107,0,0.06) 0%, transparent 40%),
        linear-gradient(to bottom,
            rgba(248,249,250,0.4) 0%,
            rgba(248,249,250,0.6) 35%,
            rgba(248,249,250,0.8) 65%,
            #f8f9fa 100%);
}
[data-theme="light"] .hero-inner { position: relative; z-index: 1; }
[data-theme="light"] .hero h1 { color: var(--text); }
[data-theme="light"] .hero h1 .accent { color: var(--accent); }
[data-theme="light"] .hero-sub { color: var(--text-muted); }
[data-theme="light"] .hero-badge {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.08);
}
[data-theme="light"] .hero-badge,
[data-theme="light"] .hero-badge i { color: #22c55e; }
[data-theme="light"] .hero .btn-primary { color: #ffffff; box-shadow: 0 4px 20px rgba(255,107,0,0.35); }
[data-theme="light"] .hero .btn-secondary {
    border: 2px solid var(--text);
    color: var(--text);
    background: transparent;
}
[data-theme="light"] .hero .btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}
[data-theme="light"] .hero-vin-link {
    background: rgba(45,48,56,0.05);
    border-color: rgba(45,48,56,0.15);
    color: var(--text-muted);
}
[data-theme="light"] .hero-vin-link:hover { border-color: var(--accent); color: var(--accent); }
[data-theme="light"] .hero-vin-link i { color: var(--accent); }

/* --- PROBLEM SECTION: light gray bg, white cards with orange top border --- */
[data-theme="light"] .problem {
    background: #f0f1f3;
}
[data-theme="light"] .problem .section-tag { color: var(--accent); }
[data-theme="light"] .problem h2 { color: var(--text); }
[data-theme="light"] .problem h2 .accent { color: var(--accent); }
[data-theme="light"] .problem-card {
    background: #ffffff;
    border: none;
    border-top: 3px solid var(--accent);
    color: var(--text);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
[data-theme="light"] .problem-card h3 { color: var(--text); }
[data-theme="light"] .problem-card p { color: var(--text-muted); }
[data-theme="light"] .problem-card:hover {
    box-shadow: 0 12px 40px rgba(255,107,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

/* --- LIGHT THEME: sections need position relative for z-index --- */
[data-theme="light"] .problem,
[data-theme="light"] .deliverables,
[data-theme="light"] .how-it-works,
[data-theme="light"] .features,
[data-theme="light"] .pricing,
[data-theme="light"] .vin-check { position: relative; overflow: hidden; }
[data-theme="light"] .problem > .container,
[data-theme="light"] .deliverables > .container,
[data-theme="light"] .how-it-works > .container,
[data-theme="light"] .features > .container,
[data-theme="light"] .pricing > .container,
[data-theme="light"] .vin-check > .container { position: relative; z-index: 1; }

/* === Decorative elements hidden === */
.section-tacho-arc { display: none; }
.checkered-strip { display: none; }

/* === RACING STRIPE upgrade for light theme === */
[data-theme="light"] .racing-stripe {
    height: 6px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,107,0,0.1) 5%,
        var(--accent) 15%,
        var(--accent) 85%,
        rgba(255,107,0,0.1) 95%,
        transparent 100%
    );
    box-shadow: 0 0 16px rgba(255,107,0,0.25), 0 0 4px rgba(255,107,0,0.15);
    opacity: 1;
    position: relative;
}
[data-theme="light"] .racing-stripe::before,
[data-theme="light"] .racing-stripe::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}
[data-theme="light"] .racing-stripe::before { top: -6px; }
[data-theme="light"] .racing-stripe::after { bottom: -6px; }

/* --- DELIVERABLES: white cards on warm bg --- */
[data-theme="light"] .deliverables {
    background: #f8f9fa;
}
[data-theme="light"] .deliverables .section-header h2 { color: var(--text); }
[data-theme="light"] .deliverable-card {
    background: #ffffff;
    border: none;
    border-left: 4px solid var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
[data-theme="light"] .deliverable-card:hover {
    box-shadow: 0 16px 50px rgba(255, 107, 0, 0.15), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
[data-theme="light"] .gauge-container svg circle[fill="#0d0d1a"] { fill: #0d0d1a; }

/* --- HOW IT WORKS: white bg, strong cards --- */
[data-theme="light"] .how-it-works {
    background: #ffffff;
    color: var(--text);
}
[data-theme="light"] .how-it-works .section-tag { color: var(--accent); }
[data-theme="light"] .how-it-works h2 { color: var(--text); }
[data-theme="light"] .how-it-works .section-subhead { color: var(--text-muted); }
[data-theme="light"] .how-it-works .step {
    background: #ffffff;
    border: none;
    color: var(--text);
    border-left: 4px solid var(--accent);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-radius: 0;
}
[data-theme="light"] .how-it-works .step:hover {
    box-shadow: 0 12px 40px rgba(255,107,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}
[data-theme="light"] .how-it-works .step-number {
    color: rgba(255, 107, 0, 0.2);
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -2px;
}
[data-theme="light"] .how-it-works .step:hover .step-number {
    color: rgba(255, 107, 0, 0.4);
}
[data-theme="light"] .how-it-works .step h3 { color: var(--text); }
[data-theme="light"] .how-it-works .step li { color: var(--text-muted); }
[data-theme="light"] .how-it-works .step-time { color: var(--text-dim); }

/* --- FEATURES GRID: clean white, strong cards --- */
[data-theme="light"] .features {
    background: #ffffff;
}
[data-theme="light"] .features .section-header h2 { color: var(--text); }
[data-theme="light"] .features-grid {
    background: transparent;
    border-radius: 0;
}
[data-theme="light"] .feature-card {
    background: #ffffff;
    border: none;
    border-top: 3px solid var(--accent);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
}
[data-theme="light"] .feature-card h3 { color: var(--text); }
[data-theme="light"] .feature-card p { color: var(--text-muted); }
[data-theme="light"] .feature-card:hover {
    box-shadow: 0 16px 48px rgba(255, 107, 0, 0.18), 0 4px 16px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}
[data-theme="light"] .feature-card .feature-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    border: none;
    border-radius: 12px;
    padding: 10px;
}
[data-theme="light"] .feature-card .feature-icon svg,
[data-theme="light"] .feature-card .feature-icon i { color: #ffffff; }

/* --- VIN CHECK: light warm bg with strong orange accents --- */
[data-theme="light"] .vin-check {
    background: #f0f1f3;
}
[data-theme="light"] .vin-check h2 { color: var(--text); }
[data-theme="light"] .vin-check p { color: var(--text-muted); }
[data-theme="light"] .vin-check .section-tag { color: var(--accent); }
[data-theme="light"] .vin-input { background: #ffffff; border: 2px solid #d0d5db; color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
[data-theme="light"] .vin-input::placeholder { color: var(--text-dim); }
[data-theme="light"] .vin-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,107,0,0.15); }
[data-theme="light"] .vin-check-btn { color: #ffffff; box-shadow: 0 4px 20px rgba(255, 107, 0, 0.35); }
[data-theme="light"] .vin-feature { background: #ffffff; border: 1px solid #d0d5db; color: var(--text); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
[data-theme="light"] .vin-feature strong { color: var(--text); }
[data-theme="light"] .vin-feature span { color: var(--text-muted); }
[data-theme="light"] .vin-feature i { color: var(--accent); }
[data-theme="light"] .vin-feature:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(255,107,0,0.1); }

/* --- PRICING: clean white section --- */
[data-theme="light"] .pricing {
    background: #f8f9fa;
}
[data-theme="light"] .pricing .section-tag { color: var(--accent); }
[data-theme="light"] .pricing h2 { color: var(--text); }
[data-theme="light"] .pricing-cta { color: #ffffff; }
[data-theme="light"] .pricing-free-banner { color: #ffffff; }
[data-theme="light"] .pricing-card {
    background: #ffffff;
    box-shadow: 0 12px 48px rgba(255, 107, 0, 0.12), 0 4px 16px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}
[data-theme="light"] .pricing-card-featured {
    border-color: var(--accent);
}
[data-theme="light"] .pricing-card .price-value { color: var(--text); }
[data-theme="light"] .pricing-card .price-dollar { color: var(--text-dim); }
[data-theme="light"] .pricing-card .price-unit { color: var(--text-dim); }
[data-theme="light"] .pricing-features-list li { color: var(--text-muted); border-bottom-color: #eef0f2; }

/* Racing stripe override removed — now handled by the upgraded version above */

/* --- SECTION TAGS --- */
[data-theme="light"] .section-tag {
    background: rgba(255, 107, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.25);
}

/* --- SECTION ICONS: bigger, orange-backed circles in light mode --- */
[data-theme="light"] .section-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    border-radius: 50%;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}
[data-theme="light"] .section-icon i {
    color: #ffffff;
    font-size: 22px;
}
[data-theme="light"] .problem-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.1);
    border: 2px solid rgba(255, 107, 0, 0.2);
    border-radius: 50%;
}
[data-theme="light"] .problem-icon i { color: var(--accent); }

/* --- STEP NUMBERS --- */
[data-theme="light"] .step-number { color: rgba(255, 107, 0, 0.12); }

/* --- BUTTONS in light content areas --- */
[data-theme="light"] .btn-primary { color: #ffffff; box-shadow: 0 4px 14px rgba(255, 107, 0, 0.3); }
[data-theme="light"] .btn-secondary { border-color: var(--border); color: var(--text); }
[data-theme="light"] .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* --- MOBILE STICKY --- */
[data-theme="light"] .sticky-bottom-cta { background: rgba(255, 255, 255, 0.97); box-shadow: 0 -4px 16px rgba(0,0,0,0.08); border-top: 1px solid rgba(255,107,0,0.2); }
[data-theme="light"] .sticky-bottom-btn { color: #ffffff; }

/* --- MODALS --- */
[data-theme="light"] .ea-modal { background: #ffffff; box-shadow: 0 24px 80px rgba(0,0,0,0.2); }
[data-theme="light"] .ea-input { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
[data-theme="light"] .ea-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1); }
[data-theme="light"] .ea-input::placeholder { color: var(--text-dim); }
[data-theme="light"] .ea-platform-btn { background: var(--bg); border: 1px solid var(--border); }
[data-theme="light"] .ea-platform-btn:hover { border-color: var(--accent); }
[data-theme="light"] .ea-btn { color: #ffffff; }
[data-theme="light"] .ea-overlay { background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); }

/* --- TRUST BAR: light with orange accent border --- */
[data-theme="light"] .trust-bar {
    background: #ffffff;
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}
[data-theme="light"] .trust-item strong { color: var(--text); }
[data-theme="light"] .trust-item span { color: var(--text-muted); }
[data-theme="light"] .trust-item i { color: var(--accent); }

/* --- FOOTER: always dark --- */
[data-theme="light"] .footer { background: #0f0f0f; }
[data-theme="light"] .footer .footer-col a { color: rgba(255,255,255,0.5); }
[data-theme="light"] .footer .footer-col a:hover { color: #ffffff; }
[data-theme="light"] .footer .footer-col h4 { color: rgba(255,255,255,0.8); }
[data-theme="light"] .footer .footer-brand p { color: rgba(255,255,255,0.5); }
[data-theme="light"] .footer .footer-bottom p { color: rgba(255,255,255,0.35); }

/* Theme toggle */
.theme-toggle {
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 15px;
    transition: all 0.2s;
    margin-left: 12px;
}
.theme-toggle:hover {
    color: var(--accent);
    border-color: var(--accent);
}
.theme-toggle .fa-moon { display: inline; }
.theme-toggle .fa-sun { display: none; }
[data-theme="light"] .theme-toggle .fa-moon { display: none; }
[data-theme="light"] .theme-toggle .fa-sun { display: inline; }

.header-actions {
    display: flex;
    align-items: center;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Hex pattern */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

/* === RACING STRIPE DIVIDER === */
.racing-stripe {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 20%, var(--accent) 80%, transparent 100%);
    opacity: 0.7;
    position: relative;
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.3), 0 0 30px rgba(255, 107, 0, 0.1);
}
.racing-stripe::before,
.racing-stripe::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--accent);
    opacity: 0.3;
}
.racing-stripe::before { top: -4px; }
.racing-stripe::after { bottom: -4px; }

/* === AUTOMOTIVE SECTION BACKGROUNDS === */

/* Tire tread pattern - Problem section */
.problem::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 20 L10 15 L10 25 Z M20 0 L15 10 L25 10 Z M40 20 L30 25 L30 15 Z M20 40 L25 30 L15 30 Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3Cpath d='M10 10 L15 5 L20 10 L15 15 Z M30 10 L35 5 L40 10 L35 15 Z M10 30 L15 25 L20 30 L15 35 Z M30 30 L35 25 L40 30 L35 35 Z' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.problem { position: relative; }
.problem > .container { position: relative; z-index: 1; }

/* Carbon fiber pattern - Deliverables section */
.deliverables::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Ccircle cx='1' cy='1' r='0.6' fill='%23ffffff' fill-opacity='0.025'/%3E%3Ccircle cx='4' cy='4' r='0.6' fill='%23ffffff' fill-opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.deliverables { position: relative; }
.deliverables > .container,
.deliverables > .section-header,
.deliverables-grid { position: relative; z-index: 1; }

/* Asphalt grain - How It Works section */
.how-it-works::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 L12 10 M30 5 L32 5 M50 15 L52 15 M70 8 L72 8 M90 12 L92 12 M20 30 L22 30 M40 25 L42 25 M60 35 L62 35 M80 28 L82 28 M5 50 L7 50 M25 45 L27 45 M45 55 L47 55 M65 48 L67 48 M85 52 L87 52 M15 70 L17 70 M35 65 L37 65 M55 75 L57 75 M75 68 L77 68 M95 72 L97 72 M8 90 L10 90 M28 85 L30 85 M48 95 L50 95 M68 88 L70 88 M88 92 L90 92' stroke='%23ffffff' stroke-opacity='0.03' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.how-it-works { position: relative; }
.how-it-works > .container { position: relative; z-index: 1; }
.steps { position: relative; z-index: 1; }

/* Speed lines - Features section */
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cline x1='0' y1='40' x2='60' y2='40' stroke='%23ffffff' stroke-opacity='0.015' stroke-width='1'/%3E%3Cline x1='100' y1='80' x2='180' y2='80' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='0.5'/%3E%3Cline x1='20' y1='120' x2='90' y2='120' stroke='%23ffffff' stroke-opacity='0.015' stroke-width='1'/%3E%3Cline x1='140' y1='160' x2='200' y2='160' stroke='%23ffffff' stroke-opacity='0.02' stroke-width='0.5'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}
.features { position: relative; }
.features > .container { position: relative; z-index: 1; }
.features-grid { position: relative; z-index: 1; }

/* Light theme: orange-tinted textures instead of white */
[data-theme="light"] .problem::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M0 20 L10 15 L10 25 Z M20 0 L15 10 L25 10 Z M40 20 L30 25 L30 15 Z M20 40 L25 30 L15 30 Z' fill='%23ff6b00' fill-opacity='0.06'/%3E%3Cpath d='M10 10 L15 5 L20 10 L15 15 Z M30 10 L35 5 L40 10 L35 15 Z M10 30 L15 25 L20 30 L15 35 Z M30 30 L35 25 L40 30 L35 35 Z' fill='%23ff6b00' fill-opacity='0.04'/%3E%3C/svg%3E");
}
[data-theme="light"] .deliverables::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Ccircle cx='1' cy='1' r='0.6' fill='%23ff6b00' fill-opacity='0.06'/%3E%3Ccircle cx='4' cy='4' r='0.6' fill='%23ff6b00' fill-opacity='0.04'/%3E%3C/svg%3E");
}
[data-theme="light"] .how-it-works::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10 L12 10 M30 5 L32 5 M50 15 L52 15 M70 8 L72 8 M90 12 L92 12 M20 30 L22 30 M40 25 L42 25 M60 35 L62 35 M80 28 L82 28 M5 50 L7 50 M25 45 L27 45 M45 55 L47 55 M65 48 L67 48 M85 52 L87 52 M15 70 L17 70 M35 65 L37 65 M55 75 L57 75 M75 68 L77 68 M95 72 L97 72 M8 90 L10 90 M28 85 L30 85 M48 95 L50 95 M68 88 L70 88 M88 92 L90 92' stroke='%23ff6b00' stroke-opacity='0.07' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}
[data-theme="light"] .features::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cline x1='0' y1='40' x2='60' y2='40' stroke='%23ff6b00' stroke-opacity='0.04' stroke-width='1'/%3E%3Cline x1='100' y1='80' x2='180' y2='80' stroke='%23ff6b00' stroke-opacity='0.05' stroke-width='0.5'/%3E%3Cline x1='20' y1='120' x2='90' y2='120' stroke='%23ff6b00' stroke-opacity='0.04' stroke-width='1'/%3E%3Cline x1='140' y1='160' x2='200' y2='160' stroke='%23ff6b00' stroke-opacity='0.05' stroke-width='0.5'/%3E%3C/svg%3E");
}

/* Light theme: body hex pattern — orange tinted */
[data-theme="light"] body::before {
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23ff6b00' fill-opacity='0.035'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Light theme: phone shadow softer */
[data-theme="light"] .hero-phone { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

/* Light theme: accent elements get subtle glow */
[data-theme="light"] .accent { text-shadow: none; }
[data-theme="light"] .section-header h2 { color: var(--text); }

/* === INTERACTIVE HOVER EFFECTS === */

/* Card 3D tilt on hover */
.problem-card,
.feature-card,
.deliverable-card {
    transition: transform 0.3s ease, border-color 0.2s, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px) rotateX(2deg);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.08);
    border-color: var(--accent);
}

.feature-card {
    position: relative;
    overflow: hidden;
}
.feature-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}
.feature-card:hover::after {
    width: 100%;
}
.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.06);
}

.deliverable-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent);
}

/* Icon pulse on hover */
.problem-icon,
.feature-icon,
.section-icon,
.step-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}
.problem-card:hover .problem-icon {
    transform: scale(1.15);
    animation: iconShake 0.5s ease;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}
.step:hover .step-icon {
    transform: scale(1.15);
}

@keyframes iconShake {
    0%, 100% { transform: scale(1.15) rotate(0deg); }
    25% { transform: scale(1.15) rotate(-8deg); }
    75% { transform: scale(1.15) rotate(8deg); }
}

/* Step number glow on hover */
.step {
    transition: all 0.3s ease;
}
.step:hover {
    background: var(--bg-elevated);
    box-shadow: inset 0 2px 0 var(--accent), 0 8px 30px rgba(0, 0, 0, 0.2);
}
.step:hover .step-number {
    color: var(--accent);
    text-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
    transition: color 0.3s, text-shadow 0.3s;
}

/* Trust item hover */
.trust-item {
    transition: transform 0.2s ease;
}
.trust-item:hover {
    transform: translateY(-2px);
}

/* Gauge glow */
.gauge-container {
    transition: filter 0.3s ease;
}
.deliverable-card:hover .gauge-container {
    filter: drop-shadow(0 0 12px rgba(255, 107, 0, 0.25));
}

/* === SCROLL ENTRANCE ANIMATIONS === */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.scroll-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger-children.revealed > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.revealed > *:nth-child(4) { transition-delay: 0.25s; }
.stagger-children.revealed > *:nth-child(5) { transition-delay: 0.3s; }
.stagger-children.revealed > *:nth-child(6) { transition-delay: 0.35s; }
.stagger-children.revealed > * {
    opacity: 1;
    transform: translateY(0);
}
/* Only apply revealed state when parent has class */
.stagger-children:not(.revealed) > * {
    opacity: 0;
    transform: translateY(20px);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
}

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    border-top: 2px solid var(--accent);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img { height: 40px; }
.logo-full { height: 44px !important; }

.nav-menu { display: flex; gap: 28px; }
.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}
.nav-menu a:hover { color: var(--text); }

/* Bootstrap navbar nav links */
.header .navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    padding: 8px 14px;
}
.header .navbar-nav .nav-link:hover { color: #ffffff; }

.header-cta {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    background: var(--accent);
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.25);
}
.header-cta:hover {
    background: var(--accent-dim);
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.4);
    transform: translateY(-1px);
}

/* --- BUTTONS --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    background: var(--accent);
    color: var(--bg);
    border-radius: 50px;
    transition: all 0.2s;
}
.btn-primary:hover {
    background: var(--accent-dim);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(255, 107, 0, 0.35);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text);
    transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--text-muted); }
.btn-secondary svg { width: 16px; height: 16px; }

.btn-large { font-size: 16px; padding: 16px 32px; }

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 60px;
    overflow: hidden;
}

.hero-car-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: #0a0a0a;
}
.hero-car-image,
.hero-car-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.6), rgba(10,10,10,0.95));
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-content { text-align: left; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }

.hero-vin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
}
.hero-vin-link:hover {
    border-color: var(--accent);
    color: var(--text);
}
.hero-vin-link i { color: var(--accent); }

.hero-app {
    text-align: center;
    perspective: 1000px;
    overflow: hidden;
}

.hero-phones {
    position: relative;
    display: inline-block;
    width: 480px;
    height: 520px;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.hero-phone {
    position: absolute;
    max-height: 420px;
    width: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    will-change: transform;
}

/* 4-phone fan: far-back, back, front (hero), far-front */
.hero-phone-far-back {
    z-index: 0;
    left: -20px;
    top: 40px;
    opacity: 0.5;
    transform: scale(0.72) rotate(-8deg) translateX(-30px);
    animation: float-far-back 5s ease-in-out infinite;
}

.hero-phone-back {
    z-index: 1;
    left: 40px;
    top: 20px;
    opacity: 0.75;
    transform: scale(0.84) rotate(-3deg);
    animation: float-back 4.5s ease-in-out infinite;
    animation-delay: -1s;
}

.hero-phone-front {
    z-index: 10;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    animation: float-front 4s ease-in-out infinite;
}

.hero-phone-far-front {
    z-index: 2;
    right: -20px;
    top: 45px;
    opacity: 0.5;
    transform: scale(0.7) rotate(6deg) translateX(20px);
    animation: float-far-front 5s ease-in-out infinite;
    animation-delay: -2.5s;
}

.hero-phones:hover .hero-phone-front {
    transform: translateX(-50%) translateY(-8px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.hero-phones:hover .hero-phone-back {
    opacity: 0.9;
    transform: scale(0.86) rotate(-6deg) translateX(-10px);
}
.hero-phones:hover .hero-phone-far-back {
    opacity: 0.65;
    transform: scale(0.74) rotate(-12deg) translateX(-40px);
}
.hero-phones:hover .hero-phone-far-front {
    opacity: 0.75;
    transform: scale(0.78) rotate(10deg) translateX(30px);
}

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

@keyframes float-back {
    0%, 100% { transform: scale(0.84) rotate(-3deg) translateY(0); }
    50% { transform: scale(0.84) rotate(-3deg) translateY(-8px); }
}

@keyframes float-far-back {
    0%, 100% { transform: scale(0.72) rotate(-8deg) translateX(-30px) translateY(0); }
    50% { transform: scale(0.72) rotate(-8deg) translateX(-30px) translateY(-6px); }
}

@keyframes float-far-front {
    0%, 100% { transform: scale(0.76) rotate(6deg) translateX(20px) translateY(0); }
    50% { transform: scale(0.76) rotate(6deg) translateX(20px) translateY(-8px); }
}

/* --- MINI TRUST STRIP --- */
.mini-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,107,0,0.25);
    border-radius: 20px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
}
.mini-trust-sep {
    color: var(--accent);
    font-size: 14px;
}
[data-theme="light"] .mini-trust-strip {
    border-color: rgba(255,107,0,0.3);
    color: #5a5f6b;
}

/* --- VIN CHECK --- */
.vin-check {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    padding: 80px 0;
}

.vin-check .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.vin-check-content h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.vin-check-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.vin-input-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.vin-input {
    width: 100%;
    padding: 18px 80px 18px 20px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--bg);
    border: 2px solid var(--border);
    color: var(--text);
    transition: border-color 0.2s;
}
.vin-input:focus {
    outline: none;
    border-color: var(--accent);
}
.vin-input::placeholder {
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text-dim);
}

.vin-counter {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--text-dim);
}
.vin-counter span { color: var(--accent); }

.vin-hint {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.vin-check-btn {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    padding: 16px 32px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 36px;
}
.vin-check-btn:hover { background: var(--accent-dim); }

.vin-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vin-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
}

.vin-feature i {
    font-size: 18px;
    color: var(--accent);
    width: 24px;
    text-align: center;
}

.vin-feature strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
}
.vin-feature span {
    font-size: 12px;
    color: var(--text-dim);
}

.vin-check-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}
.vin-check-image img,
.vin-check-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .vin-check .container { grid-template-columns: 1fr; }
    .vin-check-image { display: none; }
    .vin-features { grid-template-columns: 1fr; }
}

/* --- SECTION COMMON --- */
section { padding: 100px 0; }

.section-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 2px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.section-subhead { font-size: 17px; color: var(--text-muted); }

/* --- PROBLEM --- */
.problem {
    background: var(--bg-card);
}

.problem-header { text-align: center; margin-bottom: 60px; }
.problem-header h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }

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

.problem-card {
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.problem-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(255, 107, 0, 0.08), 0 8px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

.problem-icon { font-size: 28px; color: var(--accent); margin-bottom: 16px; }

.problem-card h3 { font-size: 16px; margin-bottom: 10px; }
.problem-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* --- SHOWCASE --- */
.showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.showcase-video {
    position: relative;
    overflow: hidden;
}
.showcase-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content .section-icon { margin: 0 0 16px; }
.showcase-content h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 16px; }

.showcase-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.showcase-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.showcase-feature i { font-size: 14px; color: var(--success); flex-shrink: 0; }

/* --- DELIVERABLES --- */
.deliverables {
    background: var(--bg);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.deliverable-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 24px;
    transition: all 0.3s ease;
}
.deliverable-card:hover {
    border-color: rgba(255, 107, 0, 0.4);
    box-shadow: 0 0 24px rgba(255, 107, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.deliverable-wide { grid-column: span 2; }

.deliverable-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.deliverable-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.deliverable-range {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--text-dim);
}

.deliverable-card > p {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 16px;
    line-height: 1.5;
}

/* Gauge */
.gauge-container { text-align: center; padding: 10px 0; }
.gauge { width: 160px; height: auto; }
.gauge-fill { transition: stroke-dashoffset 1s ease-out; }
.gauge-value {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    color: var(--accent);
    margin-top: -30px;
}
.gauge-status {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--warning);
}

/* Price Scale */
.price-scale {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0 30px;
}

.price-line {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
}

.price-point { text-align: center; position: relative; }
.price-point::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--bg-card);
    border: 2px solid var(--text-dim);
    border-radius: 50%;
}

.price-fair::after { border-color: var(--accent); background: var(--accent); }

.price-value {
    display: block;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}
.price-tag {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Repair Bars */
.repair-bars { display: flex; flex-direction: column; gap: 14px; }
.repair-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}
.repair-amount { font-family: var(--font-display); font-weight: 700; }
.repair-amount.worst { color: var(--danger); }

.repair-bar-track {
    height: 6px;
    background: var(--bg);
    border-radius: 3px;
    overflow: hidden;
}
.repair-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease-out;
}
.repair-bar-fill.likely { background: var(--warning); }
.repair-bar-fill.worst { background: var(--danger); }

/* Risk Flags */
.risk-flags { display: flex; flex-direction: column; gap: 10px; }
.risk-flag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 13px;
}
.risk-flag i { font-size: 16px; flex-shrink: 0; }
.risk-flag.recall i { color: var(--warning); }
.risk-flag.fraud i { color: var(--danger); }

/* Scripts */
.scripts-preview {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.script-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.script-tab i { font-size: 12px; }
.script-tab.active { border-color: var(--accent); color: var(--accent); }
.script-tab:hover { border-color: var(--text-dim); }

.script-content {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 16px;
    position: relative;
}

.script-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    padding-right: 60px;
}

.copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.copy-btn i { font-size: 12px; }
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Offer Strategy */
.offer-strategy { display: flex; flex-direction: column; gap: 10px; }
.offer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
}
.offer-type { font-size: 13px; color: var(--text-muted); }
.offer-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--success);
}
.offer-value.walk { color: var(--warning); }

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

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1400px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.step {
    background: var(--bg);
    padding: 40px 32px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 20px;
}

.step-icon { color: var(--accent); margin-bottom: 16px; width: 42px; height: 42px; }
.step-icon svg { width: 42px; height: 42px; }

.step h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent);
}

.step ul { margin-bottom: 16px; }
.step li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}
.step li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: var(--accent);
}

.step-time {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --- FEATURES --- */
.features { background: var(--bg); }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.feature-card {
    background: var(--bg-card);
    padding: 28px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-elevated);
    box-shadow: inset 0 -2px 0 var(--accent), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon { color: var(--accent); margin-bottom: 14px; width: 36px; height: 36px; }
.feature-icon svg { width: 36px; height: 36px; }

.feature-card h3 { font-size: 14px; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* --- PRICING --- */
.pricing {
    background: var(--bg);
}

.pricing-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.pricing-cards-row.pricing-single {
    grid-template-columns: 1fr;
    max-width: 420px;
}

@media (max-width: 768px) {
    .pricing-cards-row { grid-template-columns: 1fr; max-width: 420px; }
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 2px solid var(--border);
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.08), 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.15), 0 24px 70px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}
.pricing-card-featured {
    border-color: var(--accent);
}
.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    white-space: nowrap;
}

.pricing-header {
    padding: 28px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.pricing-label {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.pricing-amount { display: flex; align-items: baseline; justify-content: center; }
.currency { font-family: var(--font-display); font-size: 20px; color: var(--text-dim); }
.price { font-family: var(--font-display); font-size: 56px; font-weight: 800; }
.pricing-per { display: block; font-size: 13px; color: var(--text-dim); margin-top: 4px; }

.pricing-list { padding: 24px 28px; flex: 1; }
.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 8px 0;
}
.pricing-list i { font-size: 14px; color: var(--success); flex-shrink: 0; }

.pricing-cta {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    padding: 18px;
    background: var(--accent);
    color: var(--bg);
    transition: background 0.2s;
}
.pricing-cta:hover { background: var(--accent-dim); }

/* --- FINAL CTA --- */
.final-cta {
    background: var(--bg-card);
    padding: 100px 24px;
}

.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
}

.cta-phone {
    height: 280px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    opacity: 0.7;
    transform: scale(0.9);
}
.cta-phone-main {
    height: 340px;
    opacity: 1;
    transform: scale(1);
}

.cta-content h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 16px; }
.cta-content > p { font-size: 17px; color: var(--text-muted); margin-bottom: 32px; }

.cta-buttons { margin-bottom: 16px; }
.cta-note { font-size: 13px; color: var(--text-dim); }

/* --- FOOTER --- */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 48px 24px 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo { height: 24px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: var(--text-dim); }

.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    padding: 5px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
    max-width: 1000px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); }

/* --- HERO BADGE --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--success);
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 8px 18px;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.1);
}
.hero-badge i { color: var(--success); }

@keyframes badgePulse {
    0%, 100% { border-color: rgba(34, 197, 94, 0.3); }
    50% { border-color: rgba(34, 197, 94, 0.6); }
}

/* --- TRUST BAR --- */
.trust-bar {
    background: var(--bg-card);
    padding: 28px 0;
}

.trust-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    font-size: 22px;
    color: var(--accent);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-item span {
    display: block;
    font-size: 11px;
    color: var(--text-dim);
}

/* --- VIN RESULTS --- */
.vin-results {
    background: var(--bg);
    border: 2px solid var(--accent);
    padding: 24px;
    margin-bottom: 28px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vin-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.vin-results-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.vin-results-close {
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}
.vin-results-close:hover { border-color: var(--accent); color: var(--accent); }

.vin-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.vin-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 16px;
}

.vin-result-icon {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 8px;
}

.vin-result-card h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.vin-result-data {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-muted);
}

.vin-result-data .vin-data-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(34, 34, 34, 0.5);
}

.vin-result-data .vin-data-row:last-child { border: none; }
.vin-result-data .vin-data-label { color: var(--text-dim); font-size: 12px; }
.vin-result-data .vin-data-value { color: var(--text); font-weight: 500; font-size: 12px; }

.vin-result-data .vin-recall-item {
    padding: 8px 0;
    border-bottom: 1px solid rgba(34, 34, 34, 0.5);
}
.vin-result-data .vin-recall-item:last-child { border: none; }
.vin-result-data .recall-component {
    font-weight: 600;
    color: var(--warning);
    font-size: 12px;
    margin-bottom: 2px;
}
.vin-result-data .recall-summary {
    font-size: 11px;
    color: var(--text-dim);
    line-height: 1.4;
}

.vin-result-data .vin-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}
.vin-count-badge.green { color: var(--success); }
.vin-count-badge.yellow { color: var(--warning); }
.vin-count-badge.red { color: var(--danger); }

.vin-result-data .vin-rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}
.vin-rating-stars .star-filled { color: var(--accent); }
.vin-rating-stars .star-empty { color: var(--border); }

.vin-result-data .vin-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3px 0;
    font-size: 12px;
}
.vin-rating-row .rating-label { color: var(--text-dim); }
.vin-rating-row .rating-value { color: var(--text); font-weight: 600; }

.vin-results-cta {
    padding: 20px;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 16px;
    text-align: center;
}
.vin-results-cta p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.vin-results-cta .btn-primary { font-size: 14px; padding: 12px 20px; }

.vin-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

.vin-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.vin-error {
    padding: 14px 20px;
    margin-bottom: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--danger);
    font-size: 14px;
}

/* --- PRICING FREE BANNER --- */
.pricing-free-banner {
    background: var(--success);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    padding: 12px 16px;
    letter-spacing: 0.02em;
}
.pricing-free-banner i { margin-right: 4px; }

/* --- iOS WAITLIST --- */
.ios-waitlist {
    margin-top: 20px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    max-width: 440px;
}

.ios-waitlist-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.ios-waitlist-form {
    display: flex;
    gap: 8px;
}

.ios-waitlist-input {
    flex: 1;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    transition: border-color 0.2s;
}
.ios-waitlist-input:focus { outline: none; border-color: var(--accent); }
.ios-waitlist-input::placeholder { color: var(--text-dim); }

.ios-waitlist-btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.ios-waitlist-btn:hover { background: var(--accent-dim); }

.ios-waitlist-status {
    font-size: 13px;
    margin-top: 8px;
    min-height: 20px;
}
.ios-waitlist-status.success { color: var(--success); }
.ios-waitlist-status.error { color: var(--danger); }

/* --- STICKY MOBILE CTA --- */
/* --- STICKY BOTTOM CTA: always visible, centered --- */
.sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 12px 16px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,107,0,0.3);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-bottom-cta.visible { transform: translateY(0); }

.sticky-bottom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 32px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    background: var(--accent);
    color: #ffffff;
    border-radius: 50px;
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.sticky-bottom-btn:hover { background: var(--accent-dim); transform: scale(1.02); }
.sticky-bottom-btn svg { flex-shrink: 0; }

/* --- EARLY ACCESS MODAL --- */
.ea-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: eaFadeIn 0.3s ease;
}
.ea-overlay.active { display: flex; }

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

.ea-modal {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 720px;
    width: 100%;
    background: linear-gradient(135deg, #111111 0%, #0d0d0d 100%);
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 107, 0, 0.08);
    animation: eaSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes eaSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.ea-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: none;
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 1;
}
.ea-close:hover { border-color: var(--accent); color: var(--accent); }

.ea-media {
    width: 220px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.ea-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ea-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.3);
    padding: 6px 14px;
    margin-bottom: 14px;
}
.ea-badge i { font-size: 10px; }

.ea-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ea-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.ea-perks { margin-bottom: 20px; }
.ea-perks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0;
}
.ea-perks li i { font-size: 12px; color: var(--success); flex-shrink: 0; }

.ea-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.ea-input {
    flex: 1;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text);
    transition: border-color 0.2s;
}
.ea-input:focus { outline: none; border-color: var(--accent); }
.ea-input::placeholder { color: var(--text-dim); }

.ea-platform { display: flex; gap: 6px; }
.ea-platform-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}
.ea-platform-btn:hover { border-color: var(--text-dim); color: var(--text); }
.ea-platform-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(255, 107, 0, 0.08);
}
.ea-platform-btn i { font-size: 14px; }

.ea-btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 20px;
    background: var(--accent);
    color: var(--bg);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}
.ea-btn:hover { background: var(--accent-dim); }

.ea-note { font-size: 11px; color: var(--text-dim); }

.ea-status { font-size: 13px; margin-top: 6px; min-height: 18px; }
.ea-status.success { color: var(--success); }
.ea-status.error { color: var(--danger); }

@media (max-width: 640px) {
    .ea-modal {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 28px 24px;
        max-height: 90vh;
        overflow-y: auto;
    }
    .ea-media { width: 100%; max-height: 180px; }
    .ea-content h2 { font-size: 1.25rem; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { text-align: center; }
    .hero-ctas { justify-content: center; }
    .hero-app { margin-top: 40px; }
    .hero-phones { width: 300px; height: 440px; }
    .hero-phone { max-height: 380px; }

    .cta-inner { grid-template-columns: 1fr; }
    .cta-phones { margin-bottom: 40px; }
    .cta-content { text-align: center; }
    .cta-buttons { justify-content: center; display: flex; }
    .ios-waitlist { margin-left: auto; margin-right: auto; }

    .trust-items { flex-wrap: wrap; justify-content: center; gap: 16px 32px; }

    .problem-grid,
    .steps { grid-template-columns: 1fr; }

    .showcase { grid-template-columns: 1fr; }
    .showcase-video { height: 300px; }
    .showcase-content { padding: 40px 24px; }

    .deliverables-grid { grid-template-columns: 1fr; }
    .deliverable-wide { grid-column: span 1; }

    .features-grid { grid-template-columns: 1fr 1fr; }

    .footer-inner { grid-template-columns: 1fr; }
    .nav-menu { display: none; }

    .sticky-bottom-cta { display: flex; }

    .vin-results-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    section { padding: 60px 0; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-phones { width: 260px; height: 380px; }
    .hero-phone { max-height: 300px; }
    .hero-phone-back { display: none; }

    .showcase-features { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .scripts-preview { flex-wrap: wrap; }

    .cta-phone:not(.cta-phone-main) { display: none; }
    .cta-phone-main { height: 300px; }

    .footer-links { grid-template-columns: 1fr; gap: 20px; }

    .trust-items { flex-direction: column; align-items: flex-start; gap: 12px; }

    .ios-waitlist-form { flex-direction: column; }

    /* Pad bottom for sticky CTA */
    .footer { padding-bottom: 80px; }

    .news-grid { grid-template-columns: 1fr; }
}

/* ============================
   CAR NEWS SECTION (HOMEPAGE)
   ============================ */

.car-news {
    padding: 80px 0;
    background: var(--bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

a.news-card {
    text-decoration: none;
    color: inherit;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    padding: 24px 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

a.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.12), 0 4px 12px rgba(0,0,0,0.2);
}

.news-card-source {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: rgba(255, 107, 0, 0.08);
    border: 1px solid rgba(255, 107, 0, 0.2);
    padding: 4px 10px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.news-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

.news-card-date {
    font-size: 11px;
    color: var(--text-dim);
    font-family: var(--font-display);
}

.news-see-all {
    text-align: center;
    margin-top: 32px;
}

.news-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
}

[data-theme="light"] .news-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* Google Play badge */
.gp-badge { display: inline-block; margin-top: 20px; }
.gp-badge img { height: 54px; }
.gp-badge-nav { margin-top: 0; }
.gp-badge-nav img { height: 40px; }

