/* ═══════════════════════════════════════════════════════
   TAKE — Shared Design System
   Production-ready CSS for all pages
═══════════════════════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black: #000; --white: #fff;
  --gold: #C8A84B; --gold-hover: #b8963f; --gold-light: rgba(200,168,75,.12); --gold-border: rgba(200,168,75,.25);
  --gray1: #f7f7f7; --gray2: #efefef; --gray3: #e0e0e0; --gray4: #9a9a9a; --gray5: #525252; --gray6: #1a1a1a;
  --border: #e2e2e2; --radius: 10px; --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08); --shadow-md: 0 4px 24px rgba(0,0,0,.1); --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --transition: 200ms ease; --transition-slow: 400ms ease;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 64px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--white); color: var(--black); overflow-x: hidden; line-height: 1.5; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font-family: var(--font); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; } }

/* ── Skip Nav ── */
.skip-nav { position: absolute; top: -100%; left: 8px; background: var(--black); color: var(--white); padding: 8px 16px; border-radius: 0 0 8px 8px; font-size: 14px; font-weight: 600; z-index: 9999; transition: top .2s; }
.skip-nav:focus { top: 0; }

/* ── Header ── */
.site-header { position: sticky; top: 0; z-index: 500; background: var(--black); height: var(--header-h); display: flex; align-items: center; padding: 0 clamp(16px, 3vw, 48px); border-bottom: 1px solid rgba(255,255,255,.06); }
.header-inner { max-width: 1400px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 8px; }
.site-logo { font-size: 22px; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -.5px; margin-right: 24px; flex-shrink: 0; }
.site-logo span { color: var(--gold); }
.nav-tabs { display: flex; gap: 2px; }
.nav-tab { background: none; border: none; color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 24px; cursor: pointer; font-family: var(--font); text-decoration: none; transition: all var(--transition); white-space: nowrap; }
.nav-tab:hover { background: rgba(255,255,255,.1); color: var(--white); }
.nav-tab.active { background: var(--white); color: var(--black); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-trigger { display: flex; align-items: center; gap: 5px; background: none; border: none; color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; padding: 8px 12px; border-radius: 24px; cursor: pointer; font-family: var(--font); transition: all var(--transition); }
.dropdown-trigger:hover { background: rgba(255,255,255,.1); color: var(--white); }
.dropdown-trigger svg { width: 11px; height: 11px; transition: transform var(--transition); flex-shrink: 0; }
.dropdown[aria-expanded="true"] .dropdown-trigger { background: rgba(255,255,255,.1); color: var(--white); }
.dropdown[aria-expanded="true"] .dropdown-trigger svg { transform: rotate(180deg); }
.dropdown-menu { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); min-width: 210px; padding: 6px; z-index: 600; opacity: 0; transform: translateY(-8px); pointer-events: none; transition: opacity var(--transition), transform var(--transition); }
.dropdown[aria-expanded="true"] .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: all; }
.dropdown-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 14px; color: var(--black); text-decoration: none; border-radius: 8px; transition: background var(--transition); }
.dropdown-item:hover { background: var(--gray1); }
.dropdown-sep { height: 1px; background: var(--border); margin: 4px 6px; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; margin-left: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-nav { position: fixed; inset: 0; z-index: 490; background: var(--black); display: flex; flex-direction: column; padding: clamp(80px,12vh,120px) 32px 40px; gap: 8px; transform: translateX(100%); transition: transform var(--transition-slow); visibility: hidden; }
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav a, .mobile-nav button { display: block; width: 100%; text-align: left; font-size: clamp(28px, 6vw, 40px); font-weight: 700; color: rgba(255,255,255,.5); text-decoration: none; background: none; border: none; cursor: pointer; font-family: var(--font); letter-spacing: -.5px; padding: 6px 0; transition: color var(--transition); border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-nav a:last-child, .mobile-nav button:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav button:hover, .mobile-nav a.active { color: var(--white); }
.mobile-nav-cta { margin-top: 24px; background: var(--gold) !important; color: var(--black) !important; border-radius: 10px !important; padding: 16px 0 !important; font-size: 16px !important; text-align: center !important; border: none !important; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: all var(--transition); text-decoration: none; border: none; white-space: nowrap; user-select: none; position: relative; overflow: hidden; }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--gray6); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-hover); }
.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--black); }
.btn-ghost-white { background: transparent; color: rgba(255,255,255,.8); }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-white { background: var(--white); color: var(--black); }
.btn-white:hover { background: var(--gray2); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 17px 32px; font-size: 15px; }
.btn-full { width: 100%; }
.btn-pill { border-radius: 50px; }
/* Loading spinner in button */
.btn.loading { color: transparent; pointer-events: none; }
.btn.loading::after { content: ''; position: absolute; width: 16px; height: 16px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; color: inherit; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Form Elements ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--gray5); text-transform: uppercase; letter-spacing: .07em; }
.form-label .required { color: var(--gold); margin-left: 2px; }
.form-control { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius); font-size: 15px; font-family: var(--font); background: var(--white); color: var(--black); transition: border-color var(--transition), box-shadow var(--transition); outline: none; -webkit-appearance: none; }
.form-control:focus { border-color: var(--black); box-shadow: 0 0 0 3px rgba(0,0,0,.08); }
.form-control.error { border-color: #e53e3e; box-shadow: 0 0 0 3px rgba(229,62,62,.1); }
.form-control.success { border-color: #22c55e; }
.form-control::placeholder { color: var(--gray4); }
.form-error { font-size: 12px; color: #e53e3e; margin-top: 2px; display: none; }
.form-group.has-error .form-error { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23525252' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
textarea.form-control { resize: vertical; min-height: 110px; }

/* Dark form variants */
.form-control-dark { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: var(--white); }
.form-control-dark:focus { border-color: rgba(255,255,255,.3); box-shadow: 0 0 0 3px rgba(255,255,255,.06); }
.form-control-dark::placeholder { color: rgba(255,255,255,.3); }
.form-control-dark option { background: #1a1a1a; }
.form-label-dark { color: rgba(255,255,255,.4); }

/* ── Section Layout ── */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-tag::before { content: ''; display: block; width: 20px; height: 1.5px; background: var(--gold); flex-shrink: 0; }
.section-title { font-size: clamp(32px, 5vw, 60px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.04; margin-bottom: 18px; }
.section-title em { font-style: normal; color: var(--gold); }
.section-body { font-size: 16px; color: var(--gray5); line-height: 1.7; max-width: 500px; }
.section-body-wide { max-width: 680px; }
.split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split-content { padding: clamp(40px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; }
.split-visual { position: relative; overflow: hidden; min-height: 400px; }
.divider { height: 1px; background: var(--border); }
.dark-bg { background: var(--black); }
.gray-bg { background: var(--gray1); }

/* ── Cards ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: box-shadow var(--transition), transform var(--transition-slow); }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
.card-gray { background: var(--gray1); border-color: transparent; }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ── Toast ── */
.toast-stack { position: fixed; bottom: 88px; right: clamp(12px, 3vw, 24px); z-index: 700; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px; font-size: 14px; box-shadow: var(--shadow-lg); transform: translateX(calc(100% + 32px)); transition: transform .4s cubic-bezier(.34,1.56,.64,1); max-width: 300px; pointer-events: all; }
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 20px; flex-shrink: 0; }
.toast-title { font-weight: 700; color: var(--black); line-height: 1.3; }
.toast-sub { font-size: 12px; color: var(--gray5); margin-top: 2px; }
.toast-close { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--gray4); font-size: 18px; padding: 2px; line-height: 1; flex-shrink: 0; }
.toast-close:hover { color: var(--black); }

/* ── WhatsApp Float ── */
.wa-float { position: fixed; bottom: clamp(16px, 3vw, 24px); right: clamp(16px, 3vw, 24px); z-index: 600; width: 54px; height: 54px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: transform var(--transition), box-shadow var(--transition); }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.wa-float::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,.3); animation: wa-ring 2.5s ease-out infinite; }
@keyframes wa-ring { 0% { opacity: .8; transform: scale(1); } 100% { opacity: 0; transform: scale(1.5); } }

/* ── Cookie Banner ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: var(--white); border-top: 1px solid var(--border); padding: clamp(14px, 2vw, 20px) clamp(20px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: 0 -4px 24px rgba(0,0,0,.08); transform: translateY(100%); transition: transform .5s ease; }
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 14px; color: var(--gray5); line-height: 1.5; }
.cookie-text a { color: var(--black); font-weight: 600; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger { width: 100%; background: none; border: none; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 600; color: var(--black); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--font); transition: color var(--transition); }
.faq-trigger:hover { color: var(--gray5); }
.faq-icon { font-size: 22px; color: var(--gray4); transition: transform .35s ease; flex-shrink: 0; line-height: 1; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .3s ease; }
.faq-item[open] .faq-body { max-height: 400px; padding-bottom: 20px; }
.faq-body p { font-size: 15px; color: var(--gray5); line-height: 1.75; }

/* ── City Cards ── */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.city-card { position: relative; height: 220px; overflow: hidden; cursor: pointer; }
.city-card-inner { position: absolute; inset: 0; transition: transform .6s ease; }
.city-card:hover .city-card-inner { transform: scale(1.05); }
.city-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%); }
.city-info { position: absolute; bottom: 18px; left: 18px; }
.city-name { font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.2; }
.city-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }
.city-badge.live { color: #4ade80; }
.city-badge.soon { color: rgba(255,255,255,.4); }
.city-pattern { position: absolute; inset: 0; opacity: .05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpolygon points='30,2 58,17 58,43 30,58 2,43 2,17' fill='none' stroke='%23C8A84B' stroke-width='.6'/%3E%3C/svg%3E"); background-size: 60px; }

/* ── Ride Type Cards ── */
.rides-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ride-card { background: var(--gray1); border-radius: var(--radius-lg); padding: 20px 14px; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; text-align: center; }
.ride-card:hover { border-color: var(--black); background: var(--white); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.ride-card.selected { border-color: var(--black); background: var(--white); }
.ride-card-img { width: 100%; height: 64px; object-fit: contain; margin: 0 auto 10px; }
.ride-card-name { font-size: 13px; font-weight: 700; margin-bottom: 3px; }
.ride-card-eta { font-size: 11px; color: var(--gray5); }
.ride-card-price { font-size: 12px; font-weight: 700; color: var(--gold-hover); margin-top: 6px; }

/* ── Stats ── */
.stats-bar { display: grid; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { padding: clamp(32px, 5vw, 52px) clamp(20px, 3vw, 40px); text-align: center; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 20%; bottom: 20%; width: 1px; background: var(--border); }
.stat-num { font-size: clamp(40px, 6vw, 64px); font-weight: 800; color: var(--gold); line-height: 1; letter-spacing: -2px; }
.stat-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray5); margin-top: 6px; }

/* ── App Badges ── */
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.app-badge { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: 12px 20px; cursor: pointer; transition: background var(--transition); text-decoration: none; color: var(--white); }
.app-badge:hover { background: rgba(255,255,255,.13); }
.app-badge-icon { font-size: 26px; flex-shrink: 0; }
.app-badge-small { font-size: 10px; color: rgba(255,255,255,.4); letter-spacing: .05em; }
.app-badge-name { font-size: 16px; font-weight: 700; line-height: 1.2; }

/* ── Footer ── */
.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.07); padding: clamp(40px, 6vw, 64px) 0 clamp(24px, 4vw, 40px); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: clamp(24px, 3vw, 48px); margin-bottom: clamp(32px, 5vw, 56px); }
.footer-logo { font-size: 28px; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 220px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; font-weight: 700; transition: all var(--transition); }
.footer-social a:hover { border-color: rgba(255,255,255,.3); color: var(--white); }
.footer-col-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.28); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Newsletter ── */
.newsletter-form { display: flex; gap: 10px; max-width: 480px; }
.newsletter-input { flex: 1; background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.12); border-radius: 8px; padding: 13px 18px; color: var(--white); font-size: 15px; font-family: var(--font); outline: none; transition: border-color var(--transition); }
.newsletter-input:focus { border-color: rgba(255,255,255,.35); }
.newsletter-input::placeholder { color: rgba(255,255,255,.3); }

/* ── SVG Icons ── */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: middle; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 22px; height: 22px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

/* Feature icon boxes */
.feat-icon-box {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
}
.feat-icon-box-black { background: var(--black); color: var(--white); }
.feat-icon-box-gold { background: var(--gold-light); color: var(--gold-hover); }
.feat-icon-box-gray { background: var(--gray2); color: var(--black); }
.feat-icon-box-dark { background: rgba(255,255,255,.08); color: rgba(255,255,255,.8); }

/* Step number badge */
.step-badge {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--black); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; flex-shrink: 0;
}
.step-badge-gold { background: var(--gold); color: var(--black); }
.step-badge-outline { background: transparent; border: 2px solid var(--border); color: var(--gray5); }

/* Vehicle showcase */
.vehicle-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vehicle-cell {
  background: var(--gray1);
  padding: 28px 20px 20px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.vehicle-cell::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold-light);
  opacity: 0;
  transition: opacity var(--transition);
}
.vehicle-cell:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vehicle-cell:hover::before { opacity: 1; }
.vehicle-cell img { width: 100%; height: 80px; object-fit: contain; position: relative; z-index: 1; margin-bottom: 12px; transition: transform var(--transition-slow); }
.vehicle-cell:hover img { transform: scale(1.08); }
.vehicle-cell-name { font-size: 14px; font-weight: 700; position: relative; z-index: 1; margin-bottom: 3px; }
.vehicle-cell-desc { font-size: 12px; color: var(--gray5); position: relative; z-index: 1; }

/* App mockup phone */
.app-phone {
  width: 200px; height: 400px;
  background: linear-gradient(145deg, #1e1e1e, #111);
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 100px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.05);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.app-phone-screen { position: absolute; inset: 10px; border-radius: 24px; background: #111; overflow: hidden; display: flex; flex-direction: column; }
.app-phone-notch { height: 28px; background: #0a0a0a; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-phone-notch-pill { width: 50px; height: 14px; background: #1a1a1a; border-radius: 0 0 12px 12px; }
.app-phone-body { flex: 1; padding: 12px; overflow: hidden; }
.app-phone-logo { font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: .1em; margin-bottom: 10px; }
.app-phone-row { background: #1a1a1a; border-radius: 8px; padding: 9px 11px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.app-phone-row-img { width: 28px; height: 18px; object-fit: contain; flex-shrink: 0; }
.app-phone-row-name { font-size: 9px; font-weight: 600; color: rgba(255,255,255,.8); }
.app-phone-row-price { font-size: 10px; font-weight: 700; color: var(--gold); margin-left: auto; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,.35); }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .rides-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-tabs { display: none; }
  .header-actions .btn { display: none; }
  .header-actions .dropdown { display: none; }
  .hamburger { display: flex; }
  .split-section { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .rides-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
}
@media (max-width: 480px) {
  .rides-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .app-badges { flex-direction: column; }
}
