/* CabSwift v2 */

:root {
    --bg: #030304;
    --bg-2: #08080c;
    --surface: rgba(255, 255, 255, 0.035);
    --surface-2: rgba(255, 255, 255, 0.055);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --text: #fafafa;
    --text-secondary: rgba(255, 255, 255, 0.62);
    --text-tertiary: rgba(255, 255, 255, 0.38);
    --gold: #d4a012;
    --gold-bright: #f0c040;
    --gold-dim: rgba(212, 160, 18, 0.14);
    --gold-glow: rgba(240, 192, 64, 0.22);
    --green: #34d399;
    --red: #f87171;
    --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --header-h: 84px;
    --container: 1140px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 1rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

p { margin: 0 0 1rem; color: var(--text-secondary); }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.accent, .text-gold { color: var(--gold-bright); }

.text-gradient {
    background: linear-gradient(135deg, #fff 20%, var(--gold-bright) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Noise overlay */
.noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-h);
    border-bottom: 1px solid transparent;
    transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
    background: rgba(3, 3, 4, 0.82);
    backdrop-filter: blur(16px) saturate(1.4);
    border-color: var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -0.04em;
    z-index: 1001;
}

.logo-img {
    display: block;
    height: 36px;
    width: auto;
    flex-shrink: 0;
}

.site-header .logo-img {
    height: 52px;
}

.site-header .logo {
    gap: 12px;
    font-size: 1.25rem;
}

.footer-logo.logo .logo-img {
    height: 31px;
}

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

.main-nav ul a {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.main-nav ul a:hover,
.main-nav ul a.active {
    color: var(--text);
    background: var(--surface);
}

.main-nav-panel { display: contents; }

.main-nav-cta { display: none; }

.main-nav-cta-wrap { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn-primary {
    background: linear-gradient(180deg, #f5cc4a 0%, #d4a012 100%);
    color: #1a1200;
    box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px rgba(212, 160, 18, 0.25);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 12px 32px rgba(212, 160, 18, 0.35);
}

.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
}

.btn-lg { padding: 14px 26px; font-size: 0.95rem; }
.btn-header { padding: 10px 18px; font-size: 0.85rem; }

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-h) + 48px) 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 70% at 15% -10%, rgba(212, 160, 18, 0.18), transparent 55%),
        radial-gradient(ellipse 60% 50% at 95% 20%, rgba(120, 80, 255, 0.08), transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(52, 211, 153, 0.05), transparent 50%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 75%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 8px;
    margin-bottom: 24px;
    background: var(--gold-dim);
    border: 1px solid rgba(240, 192, 64, 0.2);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold-bright);
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-bright);
    box-shadow: 0 0 8px var(--gold-glow);
}

.hero h1 {
    font-size: clamp(2.8rem, 5.5vw, 4.25rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .word { display: inline-block; }

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.hero-sub em { color: var(--text); font-style: normal; font-weight: 600; }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-tertiary);
}

.trust-item svg { color: var(--green); flex-shrink: 0; }

/* Device showcase */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 520px;
}

.device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 420px;
    height: 420px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--gold-glow), transparent 68%);
    filter: blur(40px);
    pointer-events: none;
}

.device-frame {
    position: relative;
    z-index: 2;
    width: 270px;
    padding: 10px;
    background: linear-gradient(160deg, #2a2a32 0%, #121218 40%, #0a0a0e 100%);
    border-radius: 44px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.1),
        0 40px 80px -20px rgba(0,0,0,0.8),
        0 0 60px rgba(212, 160, 18, 0.08);
    transform-style: preserve-3d;
    will-change: transform;
}

.device-screen {
    border-radius: 36px;
    overflow: hidden;
    background: #0e0e14;
    aspect-ratio: 9/19;
    display: flex;
    flex-direction: column;
}

.device-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px 8px;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.device-notch {
    width: 72px;
    height: 22px;
    margin: 0 auto 8px;
    background: #000;
    border-radius: 20px;
}

.device-app-header {
    padding: 0 18px 14px;
    text-align: center;
}

.device-app-header h4 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
}

.device-app-header h4 span { color: var(--gold-bright); }

.device-app-header p {
    font-size: 0.68rem;
    margin: 4px 0 0;
    color: var(--text-tertiary);
}

.device-map {
    flex: 1;
    margin: 0 12px;
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 100%),
        linear-gradient(135deg, #14141f 0%, #0c1018 50%, #101820 100%);
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.device-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 24px 24px;
}

.device-car {
    position: absolute;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-bright);
    border-radius: 8px;
    color: #1a1200;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    z-index: 3;
    will-change: left, top;
}

.device-car svg { width: 16px; height: 16px; }
.ride-avatar svg { width: 18px; height: 18px; }

.device-bottom {
    padding: 12px;
}

.device-book-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    background: linear-gradient(180deg, #f5cc4a, #d4a012);
    color: #1a1200;
    font-weight: 700;
    font-size: 0.78rem;
    text-align: center;
}

.device-card {
    position: absolute;
    z-index: 3;
    background: rgba(12, 12, 18, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 14px 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.device-card--earnings {
    right: -24px;
    bottom: 100px;
    min-width: 150px;
}

.device-card--ride {
    left: -36px;
    top: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.device-card-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.device-card-value {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
}

.ride-avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gold-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.ride-info strong { display: block; font-size: 0.82rem; color: var(--text); }
.ride-info span { font-size: 0.72rem; color: var(--text-tertiary); }

.device-back {
    position: absolute;
    right: -20px;
    top: 40px;
    width: 220px;
    padding: 8px;
    background: linear-gradient(160deg, #222228, #101014);
    border-radius: 36px;
    opacity: 0.55;
    transform: rotate(6deg) scale(0.9);
    z-index: 1;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.device-back .device-screen { border-radius: 30px; min-height: 380px; }

/* Sections */
section { padding: 96px 0; position: relative; }

.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-bright);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 800;
    max-width: 640px;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 48px;
}

/* Stats */
.stats-bar {
    padding: 0;
    border-block: 1px solid var(--border);
    background: var(--bg-2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
}

.stat-item h3 .suffix { font-size: 0.55em; color: var(--gold-bright); }

.stat-item p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--text-tertiary);
}

/* Compare boxes */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.compare-box {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--surface);
}

.compare-box--bad {
    background: rgba(248, 113, 113, 0.04);
    border-color: rgba(248, 113, 113, 0.15);
}

.compare-box--good {
    background: rgba(52, 211, 153, 0.04);
    border-color: rgba(52, 211, 153, 0.15);
}

.compare-box h3 { font-size: 1.25rem; margin-bottom: 16px; }

.split-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.split-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

.split-list li:first-child { border-top: none; padding-top: 0; }
.split-list li svg { flex-shrink: 0; margin-top: 3px; }
.split-list li > span { flex: 1; min-width: 0; }
.split-list li em { color: var(--text); }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}

.card {
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
    height: 100%;
    transition:
        border-color 0.3s,
        box-shadow 0.35s var(--ease),
        background 0.35s var(--ease);
}

.card-grid-interactive .card:hover {
    border-color: rgba(240, 192, 64, 0.28);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, var(--surface) 100%);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(240, 192, 64, 0.06);
}

.card:hover {
    border-color: var(--border-strong);
}

.card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: var(--gold-dim);
    color: var(--gold-bright);
    border: 1px solid rgba(240, 192, 64, 0.15);
    transition: transform 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.card-grid-interactive .card:hover .card-icon {
    transform: scale(1.08);
    background: rgba(212, 160, 18, 0.22);
    border-color: rgba(240, 192, 64, 0.32);
}

.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p { font-size: 0.9rem; margin: 0; line-height: 1.6; }

/* Feature highlight */
.feature-highlight {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background:
        radial-gradient(ellipse 80% 60% at 100% 0%, rgba(212, 160, 18, 0.08), transparent 60%),
        var(--bg-2);
    overflow: hidden;
}

.feature-highlight h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 16px;
}

.qr-visual { display: flex; justify-content: center; }

.qr-card-mock {
    width: 240px;
    padding: 28px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, #16161e, #0c0c12);
    border: 1px solid var(--border-strong);
    box-shadow: 0 32px 64px rgba(0,0,0,0.45);
    transform: rotate(-2deg);
}

.qr-card-mock .driver-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 16px;
}

.qr-code {
    width: 130px;
    height: 130px;
    margin: 0 auto 16px;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    position: relative;
}

.qr-code::before {
    content: '';
    position: absolute;
    inset: 12px;
    background:
        linear-gradient(90deg, #111 2px, transparent 2px) 0 0 / 10px 10px,
        linear-gradient(#111 2px, transparent 2px) 0 0 / 10px 10px;
    opacity: 0.85;
}

.qr-code::after {
    content: '';
    position: absolute;
    inset: 38%;
    background: var(--gold-bright);
    border-radius: 4px;
}

.qr-card-mock p { font-size: 0.82rem; margin: 0; }

/* CTA */
.cta-banner {
    text-align: center;
    padding: 64px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background:
        radial-gradient(ellipse 70% 80% at 50% 120%, rgba(212, 160, 18, 0.12), transparent 60%),
        var(--bg-2);
}

.cta-banner h2 {
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    max-width: 520px;
    margin: 0 auto 12px;
}

.cta-banner p {
    max-width: 440px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
}

.cta-banner .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Page hero */
.page-hero {
    padding: calc(var(--header-h) + 64px) 0 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% -20%, rgba(212, 160, 18, 0.12), transparent 60%);
    pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    max-width: 720px;
    margin: 0 auto 16px;
}

.page-hero .hero-sub {
    margin: 0 auto 28px;
    text-align: center;
    max-width: 560px;
}

/* Pricing */
.pricing-card {
    max-width: 440px;
    margin: 0 auto;
    padding: 40px 36px;
    text-align: center;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(240, 192, 64, 0.3);
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(212, 160, 18, 0.1), transparent 55%),
        var(--bg-2);
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--gold-bright);
    color: #1a1200;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin: 16px 0 4px;
}

.pricing-amount .currency { font-size: 1.75rem; vertical-align: super; }

.pricing-period { color: var(--text-tertiary); margin-bottom: 8px; }

.pricing-setup {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border);
}

.pricing-features li:first-child { border-top: none; }
.pricing-features li svg { color: var(--green); flex-shrink: 0; }

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.step-card {
    padding: 24px 18px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
    text-align: center;
    counter-increment: step;
    position: relative;
}

.steps-grid { counter-reset: step; }

.step-card::before {
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--gold-dim);
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.95rem;
}

.step-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.step-card p { font-size: 0.8rem; margin: 0; line-height: 1.55; }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.about-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 30% 30%, rgba(212, 160, 18, 0.15), transparent 50%),
        var(--bg-2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}

.about-visual h3 { font-size: 2rem; margin-bottom: 8px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}

.value-card {
    padding: 28px 20px;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
}

.value-card .card-icon { margin: 0 auto 14px; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 { font-size: 1.4rem; margin-bottom: 16px; }

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gold-dim);
    color: var(--gold-bright);
}

.form-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    line-height: 1.5;
}

.form-alert--success {
    background: rgba(52, 211, 153, 0.08);
    border: 1px solid rgba(52, 211, 153, 0.22);
    color: #a7f3d0;
}

.form-alert--error {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.22);
    color: #fecaca;
}

.contact-form {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg-2);
}

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.2s;
}

.form-group select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23f0c040' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    color-scheme: dark;
}

.form-group select option {
    color: #111827;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(240, 192, 64, 0.4);
}

.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.lead-magnet {
    margin-top: 28px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--gold-dim);
    border: 1px solid rgba(240, 192, 64, 0.2);
}

.lead-magnet strong { color: var(--gold-bright); font-size: 0.9rem; }
.lead-magnet p { margin: 6px 0 0; font-size: 0.85rem; }

/* Feature rows */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 32px 0;
}

.feature-row:nth-child(even) .feature-row-content { order: 2; }
.feature-row:nth-child(even) .feature-row-visual { order: 1; }

.feature-row-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual--compact {
    min-height: 420px;
    width: 100%;
}

.feature-row-visual .qr-visual {
    width: 100%;
}

/* Footer */
.site-footer {
    margin-top: 48px;
    padding: 64px 0 28px;
    border-top: 1px solid var(--border);
    background: var(--bg-2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { margin-bottom: 12px; }

.footer-tagline {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.footer-desc { font-size: 0.88rem; }

.footer-links h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 16px;
}

.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.footer-cta h4 { font-size: 1rem; margin-bottom: 8px; }
.footer-cta p { font-size: 0.88rem; margin-bottom: 16px; }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.footer-bottom p { margin: 0; color: var(--text-tertiary); }

/* Legacy compare boxes */
.problem-box {
    background: rgba(248, 113, 113, 0.04);
    border: 1px solid rgba(248, 113, 113, 0.15);
    padding: 32px;
    border-radius: var(--radius-xl);
}

.solution-box {
    background: rgba(52, 211, 153, 0.04);
    border: 1px solid rgba(52, 211, 153, 0.15);
    padding: 32px;
    border-radius: var(--radius-xl);
}

[data-reveal] { will-change: transform, opacity; }

[data-split-words] .word,
.hero h1 .word { display: inline-block; }

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.hero-orb--1 {
    width: 480px;
    height: 480px;
    background: rgba(212, 160, 18, 0.14);
    top: -8%;
    right: -6%;
}

.hero-orb--2 {
    width: 360px;
    height: 360px;
    background: rgba(52, 211, 153, 0.07);
    bottom: 8%;
    left: -8%;
}

.map-route-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    z-index: 2;
}

.map-pin span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 800;
    color: #1a1200;
    background: var(--gold-bright);
    box-shadow: 0 0 14px var(--gold-glow);
}

.map-pin small {
    font-size: 0.55rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.map-pin--pickup { top: 18%; left: 18%; }
.map-pin--dropoff { bottom: 16%; right: 16%; }
.map-pin--dropoff span { background: var(--green); color: #042f1a; box-shadow: 0 0 14px rgba(52,211,153,0.45); }

.device-trip-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 12px 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: var(--surface-2);
    border: 1px solid var(--border);
}

.device-trip-bar small {
    display: block;
    font-size: 0.58rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.device-trip-bar strong { font-size: 0.72rem; color: var(--text); }

.device-eta {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--gold-dim);
    color: var(--gold-bright);
    font-size: 0.68rem;
    font-weight: 700;
}

.driver-job-card {
    margin: 12px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    text-align: left;
}

.driver-job-label {
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--green);
    font-weight: 700;
}

.driver-job-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text);
    margin: 4px 0;
}

.driver-job-card p {
    font-size: 0.65rem;
    margin: 0 0 10px;
    color: var(--text-secondary);
}

.driver-job-cta {
    display: block;
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    background: var(--green);
    color: #042f1a;
    font-size: 0.68rem;
    font-weight: 700;
}

.device-screen--driver { min-height: 400px; }

.stats-bar.is-active {
    background: linear-gradient(90deg, rgba(212,160,18,0.04), rgba(52,211,153,0.03), rgba(212,160,18,0.04));
}

.app-showcase { padding-top: 72px; }

.app-showcase-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-tile {
    text-align: center;
}

.app-tile p {
    margin: 16px 0 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.app-tile-screen {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    text-align: left;
    background: var(--bg-2);
    min-height: 180px;
}

.app-tile-header {
    padding: 12px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--border);
}

.app-tile-screen--passenger .app-tile-header { background: rgba(212,160,18,0.1); color: var(--gold-bright); }
.app-tile-screen--driver .app-tile-header { background: rgba(52,211,153,0.1); color: var(--green); }
.app-tile-screen--admin .app-tile-header { background: rgba(120,140,255,0.1); color: #a5b4fc; }

.app-tile-body { padding: 14px; }

.app-tile-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-secondary);
    padding: 6px 0;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-tertiary);
    flex-shrink: 0;
}

.dot--gold { background: var(--gold-bright); }
.dot--green { background: var(--green); }

.qr-card-top {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
    font-weight: 700;
    margin-bottom: 6px;
}

.card-grid-interactive .card {
    transform: none;
    opacity: 1;
}

.card-grid-interactive .card,
.step-card,
.pricing-card { transform-style: preserve-3d; }

.card-grid-interactive .card:hover,
.step-card:hover,
.pricing-card:hover { will-change: transform; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner,
    .split-section,
    .feature-highlight,
    .about-grid,
    .contact-grid,
    .feature-row { grid-template-columns: 1fr; gap: 40px; }

    .hero-visual { order: -1; min-height: 460px; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item { border-bottom: 1px solid var(--border); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .feature-row:nth-child(even) .feature-row-content,
    .feature-row:nth-child(even) .feature-row-visual { order: unset; }
    .app-showcase-inner { grid-template-columns: 1fr; }
    .device-card--earnings { right: 0; }
    .device-card--ride { left: 0; }
}

@media (max-width: 768px) {
    html.is-menu-open {
        scroll-behavior: auto !important;
    }

    body.is-menu-open .noise {
        opacity: 0;
        visibility: hidden;
    }

    .site-header.is-menu-open {
        background: var(--bg);
        backdrop-filter: none;
        border-color: var(--border);
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 10050;
        display: flex;
        justify-content: center;
        padding: calc(var(--header-h) + 20px) 24px 32px;
        background: var(--bg);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s var(--ease), visibility 0.3s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav-panel {
        display: flex;
        flex-direction: column;
        gap: 28px;
        width: 100%;
        max-width: 420px;
        min-height: calc(100vh - var(--header-h) - 52px);
        min-height: calc(100dvh - var(--header-h) - 52px);
    }

    .main-nav-cta-wrap {
        display: block;
        position: sticky;
        bottom: 0;
        margin-top: auto;
        padding: 20px 0 8px;
        background: linear-gradient(180deg, transparent 0%, var(--bg) 28%);
        border-top: 1px solid var(--border);
    }

    .main-nav-cta-label {
        margin: 0 0 12px;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text);
        text-align: center;
        letter-spacing: 0.01em;
    }

    .main-nav.is-open .main-nav-cta,
    .main-nav.is-open a.main-nav-cta {
        animation:
            nav-cta-in 0.55s var(--ease) 0.18s forwards,
            nav-cta-glow 2.8s ease-in-out 0.75s infinite;
    }

    .main-nav:not(.is-open) .main-nav-cta,
    .main-nav:not(.is-open) a.main-nav-cta {
        animation: none;
        opacity: 0;
        transform: translateY(18px);
    }

    @keyframes nav-cta-in {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes nav-cta-glow {
        0%, 100% {
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.3) inset,
                0 12px 36px rgba(212, 160, 18, 0.32);
        }
        50% {
            box-shadow:
                0 1px 0 rgba(255, 255, 255, 0.3) inset,
                0 14px 44px rgba(240, 192, 64, 0.5);
        }
    }

    .main-nav ul {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .main-nav li { width: 100%; }

    .main-nav ul a {
        display: block;
        width: 100%;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 16px 18px;
        border-radius: var(--radius);
        text-align: left;
        border: 1px solid transparent;
    }

    .main-nav ul a:hover,
    .main-nav ul a.active {
        color: var(--gold-bright);
        background: var(--gold-dim);
        border-color: rgba(240, 192, 64, 0.18);
    }

    .main-nav a.main-nav-cta,
    .main-nav a.main-nav-cta:hover,
    .main-nav a.main-nav-cta:focus-visible {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 18px 24px;
        font-size: 1.05rem;
        font-weight: 700;
        text-align: center;
        color: #1a1200 !important;
        background: linear-gradient(180deg, #f5cc4a 0%, #d4a012 100%);
        border: none;
        box-shadow:
            0 1px 0 rgba(255, 255, 255, 0.3) inset,
            0 12px 36px rgba(212, 160, 18, 0.35);
        opacity: 0;
        transform: translateY(18px);
    }

    .main-nav a.main-nav-cta svg {
        color: #1a1200;
        stroke: #1a1200;
        flex-shrink: 0;
    }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 10060;
    }

    .site-header .logo {
        position: relative;
        z-index: 10060;
    }

    .btn-header { display: none; }

    .card-grid,
    .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
    .stat-item:last-child { border-bottom: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .feature-highlight { padding: 28px; }
    .cta-banner { padding: 40px 24px; }
    .hero h1 { font-size: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: var(--text-tertiary);
}

.breadcrumb a {
    color: var(--text-secondary);
    transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold-bright); }

.breadcrumb [aria-current="page"] { color: var(--text); }

.location-hero .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.location-split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.location-copy h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin-bottom: 16px;
}

.location-copy p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.location-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.location-points li:first-child { border-top: none; padding-top: 0; }

.location-points svg { flex-shrink: 0; margin-top: 2px; }

.area-county-block { margin-bottom: 36px; }

.area-county-block:last-child { margin-bottom: 0; }

.area-county-title {
    font-size: 1.1rem;
    margin: 0 0 14px;
    color: var(--gold-bright);
}

.area-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-pill-grid--home { margin-top: 8px; }

.area-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.area-pill:hover {
    border-color: rgba(240, 192, 64, 0.35);
    background: var(--gold-dim);
    transform: translateY(-2px);
}

.area-pill--muted {
    color: var(--text-secondary);
    font-weight: 500;
}

.location-faq {
    display: grid;
    gap: 14px;
}

.faq-item {
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--surface);
}

.faq-item h3 {
    font-size: 1rem;
    margin: 0 0 8px;
}

.faq-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .location-split { grid-template-columns: 1fr; }
    .location-visual { order: -1; }
}
