/* =========================================================
   TRIRIDE — Main Stylesheet
   Brand: Deep navy #0F2A47 / Amber #E5A823 / Mint #00C896
   ========================================================= */

:root {
  --navy: #0F2A47;
  --navy-light: #1A3D63;
  --amber: #E5A823;
  --amber-light: #F5C04E;
  --mint: #00C896;
  --bg: #F7F7F7;
  --white: #FFFFFF;
  --text-muted: #6B7A90;
  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 8px 32px rgba(15, 42, 71, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(15, 42, 71, 0.14);
  --container: 1180px;
  --transition: 0.35s cubic-bezier(.25,.8,.25,1);
}

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: auto; } /* Lenis handles smooth scroll */

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--navy);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

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

section { position: relative; }

.section-pad { padding: 100px 0; }

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(229, 168, 35, 0.1);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(229, 168, 35, 0.35);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(229, 168, 35, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  transform: scale(1.05);
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(15,42,71,0.2);
}
.btn-outline-navy:hover {
  transform: scale(1.05);
  background: rgba(15,42,71,0.05);
  border-color: var(--navy);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ---------- Loading Screen ---------- */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  animation: loaderLogoPulse 1.6s ease-in-out infinite;
}
@keyframes loaderLogoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.85; }
}
.loader-logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.loader-logo .accent { color: var(--amber); }
.loader-wheels {
  display: flex;
  gap: 12px;
}
.loader-wheels span {
  width: 14px;
  height: 14px;
  border: 3px solid var(--amber);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.loader-wheels span:nth-child(2) { animation-delay: 0.15s; border-color: var(--mint); border-top-color: transparent; }
.loader-wheels span:nth-child(3) { animation-delay: 0.3s; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo .accent { color: var(--amber); }
.logo svg, .logo img { flex-shrink: 0; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--amber);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--navy);
  z-index: 1050;
  padding: 100px 32px 40px;
  transition: right 0.4s cubic-bezier(.25,.8,.25,1);
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-drawer.open { right: 0; }
.mobile-drawer a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--navy) 0%, #163655 60%, #1A3D63 100%);
  overflow: hidden;
  padding-top: 90px;
  z-index: 5;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45%;
  opacity: 0.5;
}
.hero-keke-layer {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
}
.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(229,168,35,0.18) 0%, transparent 70%);
  filter: blur(60px);
}
.hero-glow-2 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(0,200,150,0.12) 0%, transparent 70%);
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-text h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-text h1 .accent { color: var(--amber); }

.hero-text p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.trust-strip span {
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-icon {
  width: 16px;
  height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}

/* Phone Mockup */
.hero-phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 1000px;
}
.phone-mockup {
  width: 270px;
  height: 550px;
  background: var(--navy);
  border-radius: 40px;
  border: 8px solid #1f2937;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1f2937;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #14304f 0%, #0F2A47 100%);
  padding: 36px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.phone-screen .ps-greeting { color: rgba(255,255,255,0.6); font-size: 11px; }
.phone-screen .ps-title { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.phone-search {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-search .row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255,255,255,0.85); }
.phone-search .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-mint { background: var(--mint); }
.dot-amber { background: var(--amber); }
.phone-map-card {
  flex: 1;
  background: linear-gradient(135deg, #1a3d63 0%, #0f2a47 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.phone-map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 24px);
}
.phone-map-pin {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--amber);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  top: 40%; left: 45%;
  box-shadow: 0 0 0 6px rgba(229,168,35,0.2);
}
.phone-keke {
  position: absolute;
  font-size: 22px;
  top: 60%; left: 60%;
  animation: drift 4s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-30px, -20px); }
}
.phone-driver-card {
  background: var(--white);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.phone-driver-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); font-size: 16px;
  flex-shrink: 0;
}
.phone-driver-info { flex: 1; }
.phone-driver-info .name { font-weight: 700; font-size: 13px; color: var(--navy); }
.phone-driver-info .meta { font-size: 11px; color: var(--text-muted); }
.phone-driver-info .eta { font-size: 11px; color: var(--mint); font-weight: 600; }

/* ---------- Live Map Section ---------- */
.map-section { background: var(--white); position: relative; z-index: 4; transform-origin: center top; will-change: transform, opacity; }
.map-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  margin-top: 48px;
}
#liveMap {
  height: 480px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  z-index: 1;
}
.map-side-panel {
  background: var(--navy);
  border-radius: var(--radius-card);
  padding: 28px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-card);
}
.map-side-panel h4 { color: var(--white); font-size: 18px; }
.finding-pulse {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--mint);
  position: relative;
}
.finding-pulse::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  animation: pulseRing 1.6s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
.map-panel-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.map-panel-brand img { object-fit: contain; }
.accent-amber { color: var(--amber); }
.finding-row { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255,255,255,0.85); }
.map-driver-preview {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fare-est {
  background: rgba(229,168,35,0.12);
  border: 1px solid rgba(229,168,35,0.3);
  border-radius: 12px;
  padding: 14px 16px;
}
.fare-est .label { font-size: 12px; color: rgba(255,255,255,0.6); }
.fare-est .value { font-size: 24px; font-weight: 700; color: var(--amber); }

.leaflet-keke-marker {
  font-size: 22px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  animation: markerPulse 2s ease-in-out infinite;
}
@keyframes markerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

/* ---------- How It Works ---------- */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--amber);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 24px;
}
.step-card h3 { font-size: 20px; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 20px; }

.step-mock {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  padding: 16px;
  border: 1px solid rgba(15,42,71,0.06);
}
.step-mock-search {
  background: var(--white);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.step-mock-driver {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.step-mock-pay {
  display: flex;
  gap: 10px;
}
.pay-pill {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.pay-pill.active { background: var(--mint); color: var(--white); }

/* ---------- Features Grid (Bento) ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.feature-card.large { grid-column: span 2; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(229,168,35,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--amber);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card.mint .feature-icon { background: rgba(0,200,150,0.12); color: var(--mint); }
.feature-card h3 { font-size: 17px; margin-bottom: 4px; }
.feature-card p { font-size: 13.5px; color: var(--text-muted); }
.feature-card.dark {
  background: var(--navy);
}
.feature-card.dark h3, .feature-card.dark p { color: var(--white); }
.feature-card.dark p { color: rgba(255,255,255,0.6); }
.feature-card.dark .feature-icon { background: rgba(229,168,35,0.18); }

/* ---------- For Drivers ---------- */
.drivers-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.drivers-bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.drivers-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.drivers-section h2, .drivers-section .eyebrow { color: var(--white); }
.drivers-section .eyebrow { background: rgba(229,168,35,0.18); }
.drivers-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.drivers-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15.5px;
  color: rgba(255,255,255,0.85);
}
.drivers-list .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  color: var(--navy);
}
.driver-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.driver-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 24px 16px;
  text-align: center;
}
.driver-stat .num {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 6px;
}
.driver-stat .label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.65);
}
.driver-photo-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1a3d63, #0a1c30);
}
.driver-photo-card .badge {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

/* ---------- Mobile App Preview ---------- */
.app-preview-section { background: var(--bg); overflow: hidden; }
.phones-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: -20px;
  margin-top: 60px;
  position: relative;
}
.app-phone {
  width: 230px;
  height: 470px;
  background: var(--navy);
  border-radius: 36px;
  border: 7px solid #1f2937;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.app-phone:nth-child(1) { transform: translateY(30px) rotate(-6deg); margin-right: -40px; z-index: 1; }
.app-phone:nth-child(2) { z-index: 2; transform: translateY(-10px); }
.app-phone:nth-child(3) { transform: translateY(30px) rotate(6deg); margin-left: -40px; z-index: 1; }
.app-phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 20px;
  background: #1f2937;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.app-phone-screen {
  position: absolute; inset: 0;
  padding: 30px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
  background: linear-gradient(165deg, #14304f, #0F2A47);
}
.aps-label {
  position: absolute;
  bottom: -36px; left: 50%;
  transform: translateX(-50%);
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.app-phone-splash-screen {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  background: linear-gradient(165deg, #14304f 0%, #0F2A47 60%, #1A3D63 100%);
}
.splash-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  animation: splashFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(229,168,35,0.25));
}
@keyframes splashFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}
.splash-wordmark {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.splash-wordmark .accent { color: var(--amber); }
.splash-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: -10px;
}
.splash-loader {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
.splash-loader span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  animation: splashDot 1.2s ease-in-out infinite;
}
.splash-loader span:nth-child(2) { background: var(--mint); animation-delay: 0.15s; }
.splash-loader span:nth-child(3) { animation-delay: 0.3s; }
@keyframes splashDot {
  0%, 80%, 100% { opacity: 0.25; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1.15); }
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 80px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: rgba(255,255,255,0.5);
  padding: 12px 22px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.6;
}
.store-badge .small { font-size: 10px; display: block; font-weight: 400; }

/* ---------- Safety Section ---------- */
.safety-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.safety-item {
  text-align: center;
}
.safety-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  box-shadow: var(--shadow-card);
  color: var(--navy);
}
.safety-icon svg { width: 28px; height: 28px; }
.safety-item h4 { font-size: 15px; margin-bottom: 6px; }
.safety-item p { font-size: 13px; color: var(--text-muted); }

/* ---------- Coverage Map ---------- */
.coverage-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.coverage-section h2, .coverage-section .eyebrow { color: var(--white); }
.coverage-section .eyebrow { background: rgba(229,168,35,0.18); }
.coverage-map-wrap {
  max-width: 600px;
  margin: 56px auto 0;
  position: relative;
}
.coverage-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.coverage-map-wrap svg { width: 100%; height: auto; position: relative; z-index: 1; }
.coverage-dot {
  animation: coverageDotPulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
.coverage-dot.launch { animation-delay: 0s; }
.coverage-dot:nth-child(2) { animation-delay: 0.4s; }
.coverage-dot:nth-child(3) { animation-delay: 0.8s; }
.coverage-dot:nth-child(4) { animation-delay: 1.2s; }
.coverage-dot:nth-child(5) { animation-delay: 1.6s; }
@keyframes coverageDotPulse {
  0%, 100% { r: 6; opacity: 1; }
  50% { r: 11; opacity: 0.4; }
}
.coverage-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
}
.coverage-legend span { display: flex; align-items: center; gap: 8px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--white); }
.testimonial-track {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  overflow-x: hidden;
  position: relative;
}
.testimonial-card {
  min-width: 100%;
  background: var(--bg);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: none;
  flex-direction: column;
  gap: 20px;
}
.testimonial-card.active { display: flex; }
.testimonial-quote { font-size: 18px; font-style: italic; color: var(--navy); line-height: 1.7; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--mint));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-muted); }
.testimonial-stars { color: var(--amber); font-size: 14px; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.testimonial-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(15,42,71,0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testimonial-dots button.active { background: var(--amber); width: 28px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(229,168,35,0.12);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
  font-size: 16px;
  font-weight: 700;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}
.faq-answer p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Contact / Waitlist ---------- */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  margin-top: 48px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-card .desc { color: var(--text-muted); font-size: 14.5px; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(15,42,71,0.1);
  font-size: 14.5px;
  font-family: inherit;
  background: var(--bg);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(229,168,35,0.12);
  background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.contact-card.dark {
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 24px;
}
.contact-card.dark h3, .contact-card.dark .desc { color: var(--white); }
.contact-card.dark .desc { color: rgba(255,255,255,0.65); }
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.contact-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: left;
  transition: var(--transition);
}
.contact-info-row:hover { background: rgba(255,255,255,0.1); }
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(229,168,35,0.18);
  color: var(--amber);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info-row .label-sm { font-size: 12px; color: rgba(255,255,255,0.55); }
.contact-info-row .value { font-size: 14.5px; font-weight: 600; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 18px 26px;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2000;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.25,.8,.25,1), opacity 0.5s ease;
  max-width: 360px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.toast.error .toast-icon { background: #E5535A; }
.toast strong { display: block; font-size: 14.5px; }
.toast span.msg { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 22px; font-weight: 700; color: var(--white);
  margin-bottom: 14px;
}
.footer-logo img { object-fit: contain; }
.footer-logo .accent { color: var(--amber); }
.footer-tagline { font-size: 14px; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 15px;
}
.footer-social a:hover { background: var(--amber); color: var(--navy); transform: translateY(-3px); }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; transition: color var(--transition); }
.footer-col a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom .made { color: var(--amber); }

/* ---------- Sticky Mobile CTA Bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.1);
  padding: 12px 16px;
  z-index: 900;
  gap: 10px;
  align-items: center;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px 16px; font-size: 14px; }
.mobile-cta-bar .wa-icon-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

/* ---------- Cursor trail (desktop only) ---------- */
.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  pointer-events: none;
  z-index: 9998;
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  mix-blend-mode: screen;
}

/* ---------- AOS-like reveal fallback ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.25,.8,.25,1), transform 0.8s cubic-bezier(.25,.8,.25,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="fade"] { transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; }
  .hero-phone-wrap { order: -1; }
  .phone-mockup { width: 240px; height: 480px; }
  .map-wrapper { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .feature-card.large { grid-column: span 2; }
  .drivers-grid { grid-template-columns: 1fr; gap: 40px; }
  .driver-photo-card { order: -1; max-width: 360px; margin: 0 auto; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .phones-row { gap: 0; }
  .app-phone { width: 200px; height: 410px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.large { grid-column: span 1; }
  .driver-stats { grid-template-columns: repeat(3, 1fr); }
  .driver-stat .num { font-size: 18px; }
  .safety-grid { grid-template-columns: repeat(2, 1fr); }
  #liveMap { height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 76px; }
  .cursor-dot { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { justify-content: center; text-align: center; }

  /* Stack phone mockups vertically on mobile */
  .phones-row {
    flex-direction: column;
    align-items: center;
    gap: 64px;
    margin-top: 48px;
  }
  .app-phone,
  .app-phone:nth-child(1),
  .app-phone:nth-child(2),
  .app-phone:nth-child(3) {
    transform: none;
    margin: 0;
    width: 230px;
    height: 470px;
    z-index: 1;
  }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr 1fr; }
  .hero-text p { font-size: 16px; }
  .app-phone,
  .app-phone:nth-child(1),
  .app-phone:nth-child(2),
  .app-phone:nth-child(3) {
    width: 210px;
    height: 430px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
