/* ========================================
   Gecko — Community-First Landing Page
   Brand: #2D6A4F (green)
   Fonts: Space Grotesk (headings), DM Sans (body)
   ======================================== */

/* Self-hosted fonts */
@font-face {
    font-family: 'Space Grotesk';
    src: url('fonts/space-grotesk.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'DM Sans';
    src: url('fonts/dm-sans.woff2') format('woff2');
    font-weight: 400 700;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --green: #2D6A4F;
    --green-light: #40916C;
    --green-glow: rgba(45,106,79,.2);
    --amber: #D29922;
    --red: #F85149;

    --bg: #ffffff;
    --bg-alt: #f7f8fa;
    --bg-elevated: #ffffff;
    --bg-card: #ffffff;
    --text: #111827;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --border: rgba(0,0,0,.06);
    --border-strong: rgba(0,0,0,.12);
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 16px rgba(0,0,0,.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,.08);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .2s cubic-bezier(.22,1,.36,1);
    --ease-out: cubic-bezier(.22,1,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scrollbar-color: var(--text-muted) transparent; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.logo-text, .price-amount, .tc-stat-value {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: -.02em;
}

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

/* ============================================
   SCROLL-DRIVEN ANIMATIONS
   ============================================ */

@keyframes reveal-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
    .community-grid, .tc-layout, .carplay-layout,
    .how-steps, .price-card, .faq-item, .privacy-list, .trust-levels {
        animation: reveal-up linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 80%;
    }
}

@supports not (animation-timeline: view()) {
    .community-grid, .tc-layout, .carplay-layout,
    .how-steps, .price-card, .faq-item, .privacy-list, .trust-levels {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
    }
    .in-view {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   TOP BAR — Logo + language only
   ============================================ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: background .3s, border-color .3s;
}
.topbar.scrolled {
    background: rgba(255,255,255,.85);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
}
.logo-img {
    border-radius: 8px;
}
.logo-text {
    font-weight: 700;
    font-size: 18px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
}
.nav-links a:hover {
    color: var(--text);
}
.nav-links .nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.nav-links .nav-cta:hover {
    background: var(--accent-hover);
    color: #fff;
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0; right: 0;
        background: rgba(255,255,255,.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 16px 24px 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-hamburger {
        display: flex;
    }
}

/* Language switcher */
.lang-switcher {
    position: relative;
}
.lang-btn {
    background: none;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    padding: 5px 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    font-family: inherit;
    transition: border-color var(--transition), color var(--transition);
}
.lang-btn:hover {
    border-color: var(--text-muted);
    color: var(--text);
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: none;
    min-width: 160px;
    z-index: 200;
}
.lang-dropdown.open {
    display: block;
}
.lang-dropdown button {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}
.lang-dropdown button:hover {
    background: var(--bg-alt);
    color: var(--text);
}

/* ============================================
   HERO BANNER — above-hero photographic slot
   ============================================ */
.hero-banner {
    width: 100%;
    max-width: 1100px;
    margin: 80px auto 0;
    padding: 0 24px;
}
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    aspect-ratio: 1200 / 654;
    object-fit: cover;
}
@media (max-width: 768px) {
    .hero-banner { margin-top: 72px; padding: 0 16px; }
    .hero-banner img { border-radius: 10px; }
}

/* ============================================
   HERO — Light, product-focused
   ============================================ */
.hero {
    padding: 60px 24px 80px;
    max-width: 1100px;
    margin: 0 auto;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    text-align: center;
    justify-items: center;
}
.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: 16px;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 32px;
}
.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--text);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100px;
    transition: transform .3s var(--ease-out), background var(--transition);
    min-height: 48px;
}
.btn-appstore:hover {
    background: #333;
}
.btn-appstore:active {
    transform: scale(.97);
}

/* ============================================
   REAL IMAGE ASSETS — Replace placeholders
   ============================================ */
.hero-mockup {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,.15));
    animation: hero-float 6s ease-in-out infinite;
}
@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.section-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.section-image-rounded {
    border-radius: var(--radius-lg);
}
.coverage-heatmap-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
    .hero-mockup {
        max-width: 280px;
    }
}

/* ============================================
   PHONE PLACEHOLDER — Structured mockup
   ============================================ */
.phone-placeholder {
    width: 280px;
    margin: 0 auto;
}
.phone-placeholder.phone-sm {
    width: 240px;
}
.phone-frame {
    background: #0a0a0a;
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,.08) inset;
    transform: perspective(800px) rotateY(-6deg) rotateX(2deg);
}
.phone-screen {
    background: #1a1a2e;
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    display: flex;
    flex-direction: column;
}
.ph-status {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.5);
    padding: 12px 0 8px;
    font-family: 'Space Grotesk', sans-serif;
}
.ph-alert {
    margin: 8px 12px;
    background: rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ph-alert-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--red);
    flex-shrink: 0;
    opacity: .8;
}
.ph-alert-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ph-alert-type {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.9);
}
.ph-alert-dist {
    font-size: 10px;
    color: rgba(255,255,255,.4);
}
.ph-map {
    flex: 1;
    background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
    margin: 8px 12px 12px;
    border-radius: 12px;
    min-height: 120px;
    position: relative;
}
.ph-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background:
        linear-gradient(45deg, transparent 48%, rgba(45,106,79,.15) 48%, rgba(45,106,79,.15) 52%, transparent 52%),
        linear-gradient(-30deg, transparent 46%, rgba(45,106,79,.1) 46%, rgba(45,106,79,.1) 54%, transparent 54%);
}

/* Community phone placeholder */
.ph-comm-header {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    padding: 4px 16px 8px;
}
.ph-comm-report {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 11px;
    color: rgba(255,255,255,.7);
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.ph-comm-report .trust-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}


/* ============================================
   CARPLAY PLACEHOLDER
   ============================================ */
.carplay-placeholder {
    width: 100%;
    max-width: 520px;
}
.cp-frame {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
}
.cp-screen {
    background: #1a1a2e;
    border-radius: 14px;
    display: flex;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}
.cp-sidebar {
    width: 48px;
    background: rgba(0,0,0,.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    gap: 10px;
}
.cp-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255,255,255,.1);
}
.cp-icon.cp-icon-active {
    background: var(--green);
}
.cp-map {
    flex: 1;
    background: linear-gradient(135deg, #1a2332 0%, #0d1117 100%);
    position: relative;
    overflow: hidden;
}
.cp-map::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(45deg, transparent 48%, rgba(45,106,79,.12) 48%, rgba(45,106,79,.12) 52%, transparent 52%),
        linear-gradient(-30deg, transparent 46%, rgba(45,106,79,.08) 46%, rgba(45,106,79,.08) 54%, transparent 54%);
}
.cp-cam-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 8px rgba(248,81,73,.4);
    z-index: 1;
}
.cp-dot-1 { top: 30%; left: 40%; }
.cp-dot-2 { top: 55%; left: 65%; }
.cp-dot-3 { top: 70%; left: 30%; }
.cp-tc-bar {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0,0,0,.6);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    color: var(--green-light);
    display: flex;
    gap: 8px;
    z-index: 1;
}
.cp-report-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--green);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 1;
}

/* ============================================
   COMMUNITY — Core differentiator
   ============================================ */
.community {
    padding: 80px 0 100px;
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
}
.community > .container > h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 48px;
}
.community-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
    max-width: 780px;
    margin: 0 auto;
}
.community-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}
.comm-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.comm-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(45,106,79,.08);
    color: var(--green);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.comm-step strong {
    display: block;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 4px;
}
.comm-step p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.trust-levels {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.trust-level {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--text-secondary);
}
.trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.trust-low { background: var(--amber); opacity: .5; }
.trust-mid { background: var(--amber); }
.trust-high { background: var(--green); }
.trust-level strong {
    color: var(--text);
}

.community-keyline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--green);
    text-align: center;
    margin-top: 60px;
    line-height: 1.3;
}

/* ============================================
   TRAJECTCONTROLE — The killer feature
   ============================================ */
.trajectcontrole {
    padding: 100px 0;
    background: var(--bg-alt);
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}
.tc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.tc-mascot {
    display: block;
    width: 180px;
    height: auto;
    margin: 0 auto 20px auto;
    border-radius: 16px;
    opacity: 0.92;
}
@media (max-width: 720px) {
    .tc-mascot { width: 140px; margin-bottom: 12px; }
}
.tc-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}
.tc-lead {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.tc-exclusive {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 36px;
}
.tc-extras {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.tc-extra-item {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.tc-extra-item strong {
    color: var(--text);
    font-weight: 600;
}

/* Trajectcontrole demo bar */
.tc-visual {
    position: sticky;
    top: 100px;
}
.tc-demo {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 0 60px rgba(45,106,79,.08);
}
.tc-bar-zone {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
}
.tc-bar-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.tc-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tc-stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.tc-stat-value.tc-safe { color: var(--green-light); }
.tc-stat-unit {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
}
.tc-bar-progress {
    height: 4px;
    background: rgba(255,255,255,.06);
    border-radius: 2px;
    overflow: hidden;
}
.tc-bar-fill {
    height: 100%;
    width: 62%;
    background: linear-gradient(90deg, var(--green), var(--green-light));
    border-radius: 2px;
    animation: tc-progress 3s ease-in-out infinite alternate;
}
@keyframes tc-progress {
    from { width: 55%; }
    to { width: 72%; }
}


/* ============================================
   CARPLAY
   ============================================ */
.carplay {
    padding: 100px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}
.carplay-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}
.carplay-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.15;
}
.carplay-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PERSONAS — Target audience cards
   ============================================ */
.personas {
    padding: 80px 0;
}
.personas h2 {
    text-align: center;
    margin-bottom: 48px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    color: var(--text);
}
.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.persona-card {
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.persona-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.persona-icon {
    display: block;
    margin: 0 auto 16px;
    border-radius: 12px;
}
.persona-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 8px;
}
.persona-card p {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .personas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================
   EXTRAS — Compact feature strip
   ============================================ */
.extras {
    padding: 64px 0;
}
.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.extras-item {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.extras-item strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 6px;
}
.extras-item p {
    font-size: .85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .extras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
@media (max-width: 480px) {
    .extras-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   HOW IT WORKS — Ultra-brief
   ============================================ */
.how {
    padding: 64px 0;
}
.how-inner {
    text-align: center;
}
.how h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
}
.how-steps {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.how-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}
.how-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   PRIVACY
   ============================================ */
.privacy-section {
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 350px;
}
.privacy-section h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.2;
}
.privacy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}
.privacy-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}
.privacy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}
.privacy-link {
    font-size: .9rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}
.privacy-link:hover {
    color: var(--green);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 750px;
    margin-top: 40px;
}
.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), border-color var(--transition);
}
.price-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--border-strong);
}
.price-featured {
    background: rgba(45,106,79,.04);
    border-color: rgba(45,106,79,.2);
}
.price-featured:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(45,106,79,.35);
}
.price-tier {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}
.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.price-cents {
    font-size: 1.5rem;
    font-weight: 600;
}
.price-period {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.price-features li {
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.4;
    padding-left: 18px;
    position: relative;
}
.price-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-muted);
}
.price-featured .price-features li::before { background: var(--green); }
.price-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    color: var(--green);
    background: rgba(45,106,79,.08);
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 4px;
    vertical-align: middle;
    letter-spacing: .01em;
}
.price-note {
    font-size: .8rem;
    color: var(--text-muted);
    font-style: italic;
}
.pricing-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

/* Comparison table */
.compare {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}
.compare h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}
.compare-sub {
    font-size: .95rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
    min-width: 560px;
}
.compare-table th {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text-secondary);
    padding: 12px 16px;
    border-bottom: 2px solid var(--border-strong);
    white-space: nowrap;
}
.compare-table th:first-child {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
}
.compare-table th:nth-child(2),
.compare-table th:nth-child(3) {
    color: var(--green);
}
.compare-competitor {
    color: var(--text-muted) !important;
}
.compare-table td {
    padding: 10px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}
.compare-table td:first-child {
    text-align: left;
    color: var(--text);
    font-weight: 500;
}
.compare-table td:nth-child(2),
.compare-table td:nth-child(3),
.compare-table td:nth-child(4) {
    text-align: center;
}
.compare-category td {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-muted);
    padding-top: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-strong);
    background: none;
}
.compare-highlight td {
    background: rgba(45,106,79,.03);
}
.ch {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
}
.compare-paid {
    color: var(--red);
    font-weight: 600;
    font-size: .8rem;
}
.cmp-soon {
    display: inline-block;
    margin-left: 4px;
    padding: 1px 6px;
    border-radius: 4px;
    background: rgba(45,106,79,.12);
    color: var(--green);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: lowercase;
}
.compare-price-row td {
    border-bottom: none;
    padding-top: 16px;
    border-top: 2px solid var(--border-strong);
}
.compare-footnote {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 16px;
    font-style: italic;
}

/* ============================================
   DATABASE — Compact credibility
   ============================================ */
.database {
    padding: 64px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.database-inner {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.database h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.database p {
    font-size: .95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}
.database-source {
    font-size: .85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}
.faq-list {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item summary {
    padding: 20px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}
.faq-item summary:hover { color: var(--green); }
.faq-item summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 300;
    transition: transform .2s;
}
.faq-item[open] summary::after {
    content: '\2212';
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
    padding: 0 0 20px;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 400px;
}
.testimonials h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 40px;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    margin: 0;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}
.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 20px;
    left: 24px;
    font-size: 3rem;
    line-height: 1;
    color: var(--green);
    opacity: .18;
    font-family: Georgia, serif;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.testimonial-card p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    padding-top: 8px;
}
.testimonial-card footer {
    font-size: .8rem;
    color: var(--text-muted);
    font-style: normal;
    font-weight: 500;
}
.testimonial-note {
    font-size: .8rem;
    color: var(--text-muted);
    margin-top: 20px;
    text-align: center;
}

/* ============================================
   LIVE STATS — Animated counters
   ============================================ */
.live-stats {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
}
.stat-label {
    font-size: .82rem;
    color: var(--text-muted);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border-strong);
}
@media (max-width: 600px) {
    .stats-grid { gap: 24px; }
    .stat-divider { display: none; }
    .stats-grid { display: grid; grid-template-columns: 1fr 1fr; }
}

/* ============================================
   APP PREVIEW — Screenshot gallery
   ============================================ */
.app-preview {
    padding: 80px 0;
}
.app-preview h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.preview-sub {
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.preview-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
}
.preview-track::-webkit-scrollbar {
    height: 6px;
}
.preview-track::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
}
.preview-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.preview-phone {
    width: 200px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid #1a1a1a;
    background: #1a1a1a;
}
.preview-screen {
    background: #f8f9fa;
    padding: 16px 14px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    border-radius: 25px;
}
.preview-screen.prev-screen-dark {
    background: #000;
}
.prev-status {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}
.prev-status-light {
    color: #fff;
}
.prev-speed {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    color: var(--green);
    line-height: 1;
}
.prev-unit {
    text-align: center;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.prev-limit {
    width: 48px;
    height: 48px;
    border: 3px solid #e53e3e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: auto auto 0;
    color: #1a1a1a;
}
.prev-bar {
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin-top: 16px;
    width: 60%;
}
.prev-alert-banner {
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}
.prev-alert-warn {
    background: #fef3c7;
    border: 1px solid #f59e0b;
}
.prev-alert-banner strong {
    display: block;
    font-size: .85rem;
    color: #92400e;
}
.prev-alert-banner span {
    font-size: .75rem;
    color: #92400e;
}
.prev-map-area {
    flex: 1;
    background: #e5e7eb;
    border-radius: 8px;
    min-height: 180px;
}
.prev-tc-header {
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}
.prev-tc-zone {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
}
.prev-tc-avg {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.1;
}
.prev-tc-avg small, .prev-tc-target small {
    font-size: .7rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
}
.prev-tc-target {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 12px;
}
.prev-tc-progress {
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    margin-top: auto;
}
.prev-tc-fill {
    width: 62%;
    height: 100%;
    background: var(--green);
    border-radius: 3px;
}
.prev-comm-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 16px;
}
.prev-comm-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: .8rem;
    color: var(--text-secondary);
}
.prev-di-pill {
    background: #333;
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 40px;
}
.prev-di-icon {
    width: 10px;
    height: 10px;
    background: #f59e0b;
    border-radius: 50%;
}
.prev-di-text {
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
}
.prev-lock-time {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1;
    margin-top: auto;
}
.prev-lock-date {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    text-align: center;
    margin-top: 4px;
}
.preview-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================
   TRUST BADGES — Quick reassurance strip
   ============================================ */
.trust-badges {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}
.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
}
.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text-secondary);
}
.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .badges-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* ============================================
   WHY SWITCH — Emotional comparison
   ============================================ */
.why-switch {
    padding: 80px 0;
    background: var(--bg);
}
.why-switch h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.switch-sub {
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.switch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 720px;
}
.switch-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}
.switch-old {
    background: #fef2f2;
    border: 1px solid #fecaca;
}
.switch-new {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.switch-header {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.switch-old .switch-header {
    color: #991b1b;
}
.switch-new .switch-header {
    color: #166534;
}
.switch-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: .9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.switch-x {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0;
}
.switch-check {
    color: var(--green);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .switch-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   COVERAGE MAP — European coverage
   ============================================ */
.coverage {
    padding: 80px 0;
}
.coverage h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.coverage-sub {
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 560px;
}
.coverage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.coverage-map {
    position: relative;
}
.europe-svg {
    width: 100%;
    max-width: 400px;
}
.map-country {
    fill: #e5e7eb;
    stroke: #fff;
    stroke-width: 1.5;
    transition: fill .2s;
    cursor: pointer;
}
.map-country.map-active {
    fill: #bbf7d0;
}
.map-country.map-active:hover {
    fill: var(--green-light);
}
.map-country.map-featured {
    fill: var(--green);
}
.map-country.map-featured:hover {
    fill: var(--green-light);
}
.coverage-tooltip {
    position: absolute;
    background: var(--text);
    color: #fff;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: .8rem;
    font-weight: 500;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10;
}
.coverage-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.coverage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: box-shadow var(--transition);
}
.coverage-item:hover {
    box-shadow: var(--shadow-sm);
}
.coverage-item.coverage-highlight {
    background: #f0fdf4;
    border-color: #bbf7d0;
}
.coverage-flag {
    font-size: 1.2rem;
}
.coverage-name {
    font-size: .9rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}
.coverage-count {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: var(--green);
}
.coverage-more {
    font-size: .8rem;
    color: var(--text-muted);
    padding: 8px 16px;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .coverage-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .europe-svg {
        max-width: 300px;
        margin: 0 auto;
        display: block;
    }
}

/* ============================================
   LEGAL STATUS — Per-country legality
   ============================================ */
.legal-status {
    padding: 80px 0;
}
.legal-status h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 8px;
}
.legal-sub {
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}
.legal-card {
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
}
.legal-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-bottom: 16px;
}
.legal-green { background: #f0fdf4; border-color: #bbf7d0; }
.legal-green .legal-indicator { background: #22c55e; }
.legal-green h3 { color: #166534; }
.legal-amber { background: #fffbeb; border-color: #fde68a; }
.legal-amber .legal-indicator { background: #f59e0b; }
.legal-amber h3 { color: #92400e; }
.legal-red { background: #fef2f2; border-color: #fecaca; }
.legal-red .legal-indicator { background: #ef4444; }
.legal-red h3 { color: #991b1b; }
.legal-card h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}
.legal-card > p {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.legal-card ul {
    list-style: none;
    padding: 0;
}
.legal-card li {
    font-size: .88rem;
    color: var(--text-secondary);
    padding: 4px 0;
}
.legal-card li small {
    color: var(--text-muted);
}
.legal-note {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 560px;
}
@media (max-width: 768px) {
    .legal-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PRESS — Media mentions
   ============================================ */
.press {
    padding: 48px 0;
}
.press-label {
    text-align: center;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.press-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.press-item {
    opacity: .35;
    transition: opacity var(--transition);
}
.press-item:hover {
    opacity: .6;
}
.press-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

/* ============================================
   CTA — Final push
   ============================================ */
.cta {
    padding: 100px 0 60px;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}
.cta-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}
.cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.cta-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}
.cta-meta {
    display: block;
    margin-top: 16px;
    font-size: .8rem;
    color: var(--text-muted);
}

/* Android capture */
.android-capture {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.android-label {
    font-size: .95rem;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 12px;
}
.android-form {
    display: flex;
    gap: 8px;
    max-width: 380px;
    margin: 0 auto 8px;
}
.android-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}
.android-input:focus {
    border-color: var(--green);
}
.android-btn {
    padding: 10px 16px;
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}
.android-btn:hover {
    background: var(--green-light);
}
.android-thanks {
    font-size: .9rem;
    color: var(--green);
    font-weight: 600;
}
.android-privacy {
    font-size: .75rem;
    color: var(--text-muted);
    margin-top: 8px;
}

/* On Android devices, make capture more prominent */
.is-android .android-capture {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.cta-about {
    margin-top: 40px;
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 0;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.footer-brand .logo-text { font-size: 16px; }
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-links a {
    font-size: .85rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--text-secondary); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8rem;
    color: var(--text-muted);
}
.lang-btn-footer {
    font-size: 12px;
    padding: 3px 8px;
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--bg);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 16px rgba(0,0,0,.06);
    padding: 10px 16px;
    transform: translateY(100%);
    animation: slide-up .3s var(--ease-out) forwards;
}
.sticky-cta[hidden] {
    display: block;
    visibility: hidden;
    pointer-events: none;
    animation: none;
    transform: translateY(100%);
}
@keyframes slide-up {
    to { transform: translateY(0); }
}
.sticky-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    max-width: 400px;
    margin: 0 auto;
    padding: 8px 20px;
    background: var(--green);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: background var(--transition);
}
.sticky-cta-link:hover {
    background: var(--green-light);
}
.sticky-cta-icon {
    border-radius: 6px;
}
.sticky-cta-badge {
    font-size: 11px;
    background: rgba(255,255,255,.2);
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 700;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-visual {
        display: flex;
        justify-content: center;
    }
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tc-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .tc-visual {
        position: static;
    }

    .carplay-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .how-steps {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .phone-placeholder { width: 240px; }
    .phone-placeholder.phone-sm { width: 200px; }
    .tc-bar-stats { grid-template-columns: 1fr; gap: 12px; }
    .tc-stat-value { font-size: 1.6rem; }
    .android-form { flex-direction: column; }
}

/* ─── About / Founder Section ─── */
.about-section {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}
.about-inner {
    max-width: 720px;
}
.about-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-text p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.about-stat {
    display: flex;
    flex-direction: column;
}
.about-stat strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}
.about-stat span {
    font-size: .82rem;
    color: var(--text-secondary);
}

/* Hide sticky CTA on desktop */
@media (min-width: 769px) {
    .sticky-cta {
        display: none !important;
    }
}

/* ========================================
   New asset sections
   ======================================== */

/* How It Works visual */
.how-visual {
    display: block;
    text-align: center;
    margin-bottom: 2rem;
}
.how-visual .section-image {
    max-width: 800px;
    margin: 0 auto;
}

/* Trust badges strip image */
.trust-visual {
    display: block;
    text-align: center;
    margin-bottom: 1.5rem;
}
.trust-strip-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    opacity: .7;
    margin: 0 auto;
}

/* Testimonial avatars */
.testimonial-avatar {
    display: block;
    margin-bottom: .75rem;
}
.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-light);
}
.avatar-1 { object-position: 0 0; }
.avatar-2 { object-position: -48px 0; }
.avatar-3 { object-position: -96px 0; }

/* Extras hero images */
.extras-hero-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (max-width: 640px) {
    .extras-hero-images {
        grid-template-columns: 1fr;
    }
}

/* Before / After section */
.before-after {
    padding: 3rem 0;
    text-align: center;
}
.before-after-img {
    width: 100%;
    max-width: 1120px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
