:root {
  --orange: #f97316;
  --orange-dark: #c2410c;
  --amber: #ffb000;
  --black: #090909;
  --ink: #151515;
  --muted: #666b75;
  --soft: #f6f7f9;
  --line: rgba(12, 12, 12, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 50;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.1);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand small { display: block; margin-top: -2px; color: var(--orange); letter-spacing: .16em; text-transform: uppercase; font-size: 10px; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 14px;
  color: white; background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 10px 25px rgba(249, 115, 22, .34);
}
.desktop-nav { display: flex; gap: 14px; font-size: 13px; font-weight: 700; color: #30343b; }
.desktop-nav a:hover { color: var(--orange); }
.nav-cta { padding: 12px 18px; border-radius: 999px; background: #111; color: white; font-weight: 800; font-size: 14px; }

section { position: relative; padding: 112px 24px; }
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  align-items: center;
  gap: 40px;
  padding: 118px max(24px, calc((100vw - var(--max)) / 2)) 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(249, 115, 22, .18), transparent 32%),
    linear-gradient(135deg, #fff7ed 0%, #ffffff 45%, #f8fafc 100%);
}
.hero h1, h2 { margin: 0; color: #08090a; letter-spacing: -0.065em; line-height: .94; }
.hero h1 { font-size: clamp(48px, 7vw, 88px); }
h2 { font-size: clamp(38px, 5vw, 66px); }
h3 { margin: 0; font-size: 22px; letter-spacing: -.03em; }
p { line-height: 1.7; color: var(--muted); }
.hero-subtitle { max-width: 620px; font-size: 19px; margin: 24px 0 0; }
.badge, .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px; border-radius: 999px;
  background: rgba(249, 115, 22, .1); color: var(--orange-dark);
  font-weight: 900; font-size: 13px; text-transform: uppercase; letter-spacing: .12em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 54px; padding: 0 24px; border-radius: 999px;
  font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: white; background: linear-gradient(135deg, var(--orange), var(--orange-dark)); box-shadow: 0 18px 40px rgba(249, 115, 22, .34); }
.btn-secondary { background: white; border: 1px solid var(--line); box-shadow: 0 14px 34px rgba(15, 23, 42, .08); }
.btn-light { background: white; color: #111; }
.btn-secondary.on-dark { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.24); }
.trust-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 28px 0 0; list-style: none; }
.trust-list li { padding: 10px 13px; border-radius: 999px; background: white; border: 1px solid var(--line); font-weight: 800; font-size: 13px; }
.launch-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.launch-strip span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .06);
  border: 1px solid rgba(17, 17, 17, .08);
  color: #1f2937;
  font-size: 12px;
  font-weight: 900;
}

.hero-visual { min-height: 660px; position: relative; display: grid; place-items: center; }
.image-card {
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.44)), var(--image);
  background-size: cover; background-position: center;
}
.city-card {
  position: absolute; inset: 70px 8% 80px 12%; border-radius: 46px; overflow: hidden; box-shadow: var(--shadow);
}
.city-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 60% 30%, transparent 0 28%, rgba(0,0,0,.24)); }
.city-card span { position: absolute; left: 28px; bottom: 28px; z-index: 1; color: white; font-weight: 900; }

.phone-mockup, .mini-phone {
  position: relative; width: 272px; min-height: 552px; padding: 15px;
  border-radius: 42px; background: #070707;
  box-shadow: 0 30px 80px rgba(2, 6, 23, .34), inset 0 0 0 2px #202020;
}
.hero-phone { transform: rotate(-4deg); z-index: 4; }
.phone-speaker { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 72px; height: 7px; border-radius: 99px; background: #222; z-index: 3; }
.app-screen {
  min-height: 522px; overflow: hidden; border-radius: 31px; background: #f9fafb; padding: 22px 16px 16px;
}
.app-topbar, .fare-row, .driver-panel { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.app-topbar { font-size: 13px; font-weight: 900; }
.map-grid { position: relative; height: 310px; margin: 18px 0; border-radius: 24px; overflow: hidden; background:
  linear-gradient(90deg, rgba(15,23,42,.06) 1px, transparent 1px) 0 0/34px 34px,
  linear-gradient(rgba(15,23,42,.06) 1px, transparent 1px) 0 0/34px 34px,
  #e8f0eb;
}
.route-line { position: absolute; left: 46px; top: 42px; width: 150px; height: 205px; border: 6px solid var(--orange); border-left: 0; border-bottom: 0; border-radius: 0 42px 0 0; }
.pin { position: absolute; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: white; box-shadow: 0 10px 20px rgba(0,0,0,.16); }
.pin-start { left: 30px; top: 35px; color: #16a34a; }.pin-car { left: 142px; top: 136px; }.pin-end { right: 24px; bottom: 44px; color: #ef4444; }
.driver-panel, .fare-row { padding: 13px; border-radius: 18px; background: white; box-shadow: 0 12px 26px rgba(15,23,42,.08); }
.driver-panel small { display: block; color: var(--muted); margin-top: 3px; }.avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: #111; color: white; font-weight: 900; }
.fare-row { margin-top: 10px; }
.floating-card { position: absolute; z-index: 5; padding: 14px 17px; border-radius: 18px; background: rgba(255,255,255,.88); backdrop-filter: blur(18px); box-shadow: 0 18px 44px rgba(15,23,42,.16); font-weight: 800; }
.card-arrival { top: 130px; right: 4%; }.card-fare { left: 2%; bottom: 175px; }.card-delivered { right: 7%; bottom: 102px; }

.story-section { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.photo-panel { position: relative; min-height: 540px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: #ddd; }
.photo-panel img { width: 100%; height: 100%; min-height: 540px; object-fit: cover; }
.photo-caption {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, .62);
  color: white;
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 900;
}
.stats-overlay { position: absolute; left: 24px; right: 24px; bottom: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stats-overlay article, .earnings-card { padding: 20px; border-radius: 24px; background: rgba(255,255,255,.86); backdrop-filter: blur(18px); box-shadow: 0 16px 44px rgba(0,0,0,.12); }
.stats-overlay strong, .earnings-card strong { display: block; font-size: 30px; letter-spacing: -.05em; }.stats-overlay span, .earnings-card span { color: var(--muted); font-weight: 800; font-size: 13px; }
.section-copy > p:not(.eyebrow) { font-size: 18px; }
.icon-grid, .feature-grid { display: grid; gap: 14px; margin: 28px 0; }
.icon-grid.four { grid-template-columns: repeat(2, 1fr); }
.icon-grid article, .feature-grid article {
  padding: 20px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: 0 12px 32px rgba(15,23,42,.06);
}
.icon-grid span, .feature-grid span { font-size: 28px; display: block; margin-bottom: 10px; }.icon-grid strong, .feature-grid strong { display: block; }.icon-grid small { color: var(--muted); }
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.section-actions.center { justify-content: center; }

.locations-section {
  background: #0a0a0a;
  color: white;
}
.locations-section .section-heading h2,
.locations-section .section-heading p:not(.eyebrow) { color: white; }
.locations-section .section-heading p:not(.eyebrow) { color: rgba(255,255,255,.72); }
.city-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.city-tile {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  border-radius: 28px;
  overflow: hidden;
  color: white;
  background-image: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.82)), var(--image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 22px 60px rgba(0,0,0,.24);
}
.city-tile span { font-size: 24px; font-weight: 950; letter-spacing: -.04em; }
.city-tile small { margin-top: 8px; color: rgba(255,255,255,.78); font-weight: 800; }
.city-tile.coming { outline: 2px solid rgba(249,115,22,.7); }

.how-section { background: var(--soft); }
.section-heading { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.phone-steps { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 22px; }
.phone-step { text-align: center; }
.mini-phone { width: min(100%, 238px); min-height: 430px; margin: 0 auto 24px; padding: 18px; border-radius: 36px; }
.mini-top { height: 88px; border-radius: 24px; background: linear-gradient(135deg, #111, #333); margin-bottom: 18px; }
.input-pill, .vehicle-option, .payment-row { padding: 13px 14px; margin-bottom: 11px; border-radius: 16px; background: white; font-weight: 800; font-size: 13px; text-align: left; }
.input-pill.active, .vehicle-option.selected, .payment-row.selected { border: 2px solid var(--orange); }
.mini-map { height: 170px; border-radius: 22px; background: linear-gradient(135deg, #dbeafe, #dcfce7); }
.vehicle-option { display: flex; justify-content: space-between; align-items: center; }.vehicle-screen { background: #f8fafc; }.tracking-screen { background: #f8fafc; }.tracking { height: 260px; background: radial-gradient(circle at 70% 35%, var(--orange) 0 6px, transparent 7px), linear-gradient(135deg,#e0f2fe,#dcfce7); }.tracking-card { padding: 14px; border-radius: 18px; background: white; text-align: left; }.tracking-card small { display: block; color: var(--muted); }
.step-number { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 12px; border-radius: 50%; background: var(--orange); color: white; font-weight: 900; }
.step-arrow { color: var(--orange); font-size: 42px; font-weight: 900; animation: nudge 1.2s ease-in-out infinite alternate; }
@keyframes nudge { to { transform: translateX(8px); } }

.app-proof-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(249,115,22,.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #fff7ed);
}
.screen-board {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.screen-column {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}
.screen-column.driver { background: #111; color: white; }
.screen-column.driver h3 { color: white; }
.screen-column h3 { margin-bottom: 20px; }
.screen-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px;
  margin-top: 12px;
  border-radius: 22px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}
.screen-column.driver .screen-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.1); }
.screen-card img {
  width: 76px;
  height: 112px;
  object-fit: cover;
  object-position: top;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15,23,42,.18);
}
.screen-card span { font-weight: 950; }

.services-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { overflow: hidden; min-height: 390px; border-radius: 32px; background: white; border: 1px solid var(--line); box-shadow: 0 16px 42px rgba(15,23,42,.08); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-12px); box-shadow: var(--shadow); }
.service-card img { width: 100%; height: 250px; object-fit: cover; }.service-card div { padding: 22px; }.service-card p { margin-bottom: 0; }
.phone-showcase, .app-screenshot { position: relative; display: grid; place-items: center; }
.phone-showcase img, .app-screenshot img { max-height: 650px; filter: drop-shadow(0 30px 60px rgba(15,23,42,.22)); }
.screen-note, .app-screenshot span { position: absolute; bottom: 24px; padding: 12px 16px; border-radius: 999px; background: #111; color: white; font-weight: 900; }
.benefit-list { list-style: none; padding: 0; margin: 26px 0; display: grid; gap: 12px; }
.benefit-list li { padding: 14px 16px; border-radius: 16px; background: var(--soft); font-weight: 800; }
.drivers-section { background: linear-gradient(135deg, #fff, #fff7ed); max-width: none; padding-inline: max(24px, calc((100vw - var(--max)) / 2)); }
.feature-grid { grid-template-columns: repeat(2, 1fr); }.earnings-card { display: inline-block; margin-top: 24px; background: #111; color: white; }.earnings-card span { color: rgba(255,255,255,.72); }

.delivery-section { display: grid; grid-template-columns: 1fr 1fr 280px; align-items: center; gap: 34px; max-width: var(--max); margin: 0 auto; }
.delivery-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }.delivery-image img { height: 560px; width: 100%; object-fit: cover; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }.tag-cloud span, .business-benefits span { padding: 12px 14px; border-radius: 999px; background: rgba(249,115,22,.1); color: var(--orange-dark); font-weight: 900; font-size: 13px; }
.courier-phone { width: 250px; min-height: 500px; }.courier-screen h4 { margin-top: 18px; }.package-card, .proof-card { padding: 15px; border-radius: 18px; background: white; margin: 14px 0; box-shadow: 0 12px 26px rgba(15,23,42,.08); }.package-card strong { display: block; color: var(--orange); margin-top: 8px; }

.dark-section { background: #070707; color: white; }
.business-section { display: grid; grid-template-columns: .95fr .85fr 1.2fr; gap: 28px; align-items: center; }
.business-section h2, .dark-section .eyebrow { color: white; }.dark-section p { color: rgba(255,255,255,.72); }
.dashboard-card { min-height: 420px; border-radius: 34px; padding: 24px; background: linear-gradient(145deg, #171717, #0d0d0d); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 28px 80px rgba(0,0,0,.32); }
.dashboard-top, .dashboard-list span { display: flex; justify-content: space-between; gap: 14px; }.dashboard-top { font-weight: 900; }.dashboard-top strong { color: #22c55e; }
.dashboard-bars { display: flex; align-items: end; gap: 14px; height: 190px; margin: 32px 0; }.dashboard-bars i { flex: 1; border-radius: 14px 14px 0 0; background: linear-gradient(var(--orange), var(--orange-dark)); }.dashboard-bars i:nth-child(1){height:45%}.dashboard-bars i:nth-child(2){height:72%}.dashboard-bars i:nth-child(3){height:55%}.dashboard-bars i:nth-child(4){height:88%}
.dashboard-list { display: grid; gap: 12px; }.dashboard-list span { padding: 14px; border-radius: 16px; background: rgba(255,255,255,.07); }
.business-illustration { border-radius: 34px; overflow: hidden; }.business-illustration img { height: 460px; width: 100%; object-fit: cover; opacity: .84; }
.business-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }.business-benefits span { background: rgba(255,255,255,.08); color: white; }

.safety-section { background: linear-gradient(180deg, #fff, #fff7ed); }
.safety-orbit { max-width: 880px; min-height: 520px; margin: 0 auto; position: relative; display: grid; place-items: center; }
.shield { width: 190px; height: 190px; display: grid; place-items: center; border-radius: 50%; background: white; box-shadow: var(--shadow); font-size: 80px; border: 1px solid var(--line); }
.safety-orbit article { position: absolute; width: 180px; padding: 18px; text-align: center; border-radius: 22px; background: white; box-shadow: 0 18px 44px rgba(15,23,42,.1); font-weight: 900; }
.safety-orbit article:nth-of-type(1){left:4%;top:12%}.safety-orbit article:nth-of-type(2){right:4%;top:12%}.safety-orbit article:nth-of-type(3){left:0;top:48%}.safety-orbit article:nth-of-type(4){right:0;top:48%}.safety-orbit article:nth-of-type(5){left:18%;bottom:6%}.safety-orbit article:nth-of-type(6){right:18%;bottom:6%}
.payments-section { text-align: center; }.payment-icons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }.payment-icons span { padding: 18px 22px; border-radius: 20px; background: white; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(15,23,42,.08); font-weight: 900; }.payment-phone { background: #f8fafc; margin: 0 auto; min-height: 390px; }

.impact-section { min-height: 650px; display: grid; place-items: center; overflow: hidden; color: white; }
.impact-bg, .final-bg { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.42)), var(--image); background-size: cover; background-position: center; transform: scale(1.04); }
.impact-content { position: relative; max-width: var(--max); text-align: center; }.impact-content h2, .final-content h2 { color: white; }.impact-content .eyebrow { color: white; background: rgba(255,255,255,.12); }
.counter-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }.counter-grid article { padding: 26px 16px; border-radius: 26px; background: rgba(255,255,255,.13); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.18); }.counter-grid strong { display: block; font-size: 30px; }.counter-grid span { color: rgba(255,255,255,.78); font-weight: 800; }
.testimonial-carousel { max-width: 760px; margin: 0 auto; position: relative; min-height: 430px; }.testimonial-card { position: absolute; inset: 0; opacity: 0; transform: translateX(22px) scale(.98); transition: .35s ease; padding: 34px; border-radius: 34px; background: white; box-shadow: var(--shadow); text-align: center; pointer-events: none; }.testimonial-card.active { opacity: 1; transform: none; pointer-events: auto; }.testimonial-card img { width: 108px; height: 108px; border-radius: 50%; object-fit: cover; margin: 0 auto 22px; }.testimonial-card blockquote { font-size: 24px; line-height: 1.45; letter-spacing: -.03em; margin: 0 0 22px; }.testimonial-card span { display: block; color: var(--muted); margin-top: 4px; }.carousel-dots { display: flex; justify-content: center; gap: 10px; }.carousel-dots button { width: 12px; height: 12px; border: 0; border-radius: 50%; background: #d1d5db; cursor: pointer; }.carousel-dots button.active { width: 34px; border-radius: 99px; background: var(--orange); }

.download-section { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr 1fr; gap: 30px; align-items: center; text-align: center; }
.download-center p { max-width: 560px; margin-inline: auto; }.store-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 28px; }.store-btn { min-width: 180px; padding: 14px 20px; border-radius: 18px; background: #111; color: white; text-align: left; }.store-btn small { display: block; opacity: .68; }.store-btn strong { font-size: 20px; }
.whatsapp-section {
  background: linear-gradient(135deg, #ecfdf5, #ffffff 48%, #fff7ed);
}
.whatsapp-card {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 44px;
  padding: 46px;
  border-radius: 42px;
  background: rgba(255,255,255,.84);
  box-shadow: var(--shadow);
  border: 1px solid rgba(22, 163, 74, .16);
}
.whatsapp-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.whatsapp-flow span {
  padding: 14px 16px;
  border-radius: 18px;
  background: #dcfce7;
  color: #166534;
  font-weight: 900;
}
.chat-phone { width: 250px; min-height: 500px; justify-self: center; }
.chat-screen { background: #e7f8ee; padding-top: 52px; }
.chat-bubble {
  max-width: 90%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
}
.chat-bubble.user { margin-left: auto; background: #22c55e; color: white; border-bottom-right-radius: 4px; }
.chat-bubble.bot { background: white; color: #111; border-bottom-left-radius: 4px; box-shadow: 0 10px 18px rgba(15,23,42,.08); }
.legal-trust-section { background: #f8fafc; }
.legal-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.legal-grid article {
  padding: 24px;
  border-radius: 26px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(15,23,42,.07);
}
.legal-grid span { display: block; font-size: 30px; margin-bottom: 14px; }
.legal-grid strong { display: block; margin-bottom: 8px; font-size: 17px; }
.legal-grid small { color: var(--muted); line-height: 1.55; }
.final-cta { min-height: 540px; display: grid; place-items: center; text-align: center; overflow: hidden; }.final-content { position: relative; max-width: 900px; color: white; }.final-content p { color: rgba(255,255,255,.8); font-size: 20px; }
.site-footer { padding: 54px max(24px, calc((100vw - var(--max)) / 2)); background: #070707; color: white; display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 34px; align-items: start; }.site-footer p { color: rgba(255,255,255,.62); }.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; color: rgba(255,255,255,.78); font-weight: 700; }.footer-grid a:hover { color: var(--orange); }.socials { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }.socials span { padding: 10px 12px; border-radius: 999px; background: rgba(255,255,255,.08); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }.reveal.visible { opacity: 1; transform: none; }.delay-1 { transition-delay: .12s; }.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero, .story-section, .drivers-section, .delivery-section, .business-section, .download-section { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .hero-visual { min-height: 600px; }
  .phone-steps { grid-template-columns: 1fr; }.step-arrow { transform: rotate(90deg); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .city-grid, .legal-grid { grid-template-columns: repeat(2, 1fr); }
  .screen-board, .whatsapp-card { grid-template-columns: 1fr; }
  .business-section { padding-inline: 24px; }
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1fr; }.socials { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .site-header { inset: 10px 10px auto; }.nav-cta { display: none; }
  section { padding: 84px 18px; }
  .hero h1 { font-size: 48px; }
  h2 { font-size: 38px; }
  .hero-visual { min-height: 560px; }.city-card { inset: 92px 0 92px 0; border-radius: 30px; }.floating-card { font-size: 12px; }.card-arrival{right:0}.card-fare{left:0}.card-delivered{right:0}
  .icon-grid.four, .feature-grid, .services-grid, .stats-overlay, .counter-grid, .footer-grid { grid-template-columns: 1fr; }
  .city-grid, .legal-grid, .whatsapp-flow { grid-template-columns: 1fr; }
  .screen-column, .whatsapp-card { padding: 20px; border-radius: 28px; }
  .photo-panel, .photo-panel img { min-height: 420px; }
  .service-card { min-height: auto; }
  .safety-orbit { min-height: auto; display: grid; grid-template-columns: 1fr; gap: 12px; }.shield { margin-bottom: 12px; }.safety-orbit article { position: static; width: 100%; }
  .testimonial-card blockquote { font-size: 20px; }
  .app-screenshot img { max-height: 520px; }
}

/* ── Conversion-ready sections ───────────────────────────────────────── */
.pricing-section,
.lead-forms-section,
.faq-section {
  background: #ffffff;
}

.pricing-grid,
.forms-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pricing-card,
.lead-form {
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .07);
}

.pricing-card span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(249, 115, 22, .1);
  font-size: 25px;
}

.pricing-card strong,
.lead-form h3 {
  display: block;
  margin-bottom: 8px;
}

.pricing-card small,
.lead-form p,
.form-message {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-note {
  max-width: 760px;
  margin: 24px auto 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: #111;
  color: white;
  text-align: center;
  font-weight: 900;
}

.lead-forms-section {
  background:
    radial-gradient(circle at 80% 12%, rgba(249, 115, 22, .13), transparent 32%),
    #f8fafc;
}

.lead-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.lead-form label,
.waitlist-form label {
  display: grid;
  gap: 7px;
  color: #20242b;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.lead-form input,
.lead-form select,
.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(15, 23, 42, .13);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.lead-form input:focus,
.lead-form select:focus,
.waitlist-form input:focus,
.waitlist-form select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}

.lead-form button,
.waitlist-form button {
  border: 0;
  cursor: pointer;
}

.form-message {
  min-height: 20px;
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.form-message.success { color: #15803d; }

.driver-registration-form {
  grid-column: span 1;
  border: 2px solid rgba(249, 115, 22, .18);
}

.form-kicker,
.form-section-title {
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(249, 115, 22, .1);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.form-section-title {
  margin-top: 6px;
  background: #111;
  color: white;
}

.onboarding-steps {
  display: grid;
  gap: 8px;
  margin: 4px 0 8px;
}

.onboarding-steps span,
.document-checklist span {
  padding: 11px 12px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, .08);
  color: #374151;
  font-size: 12px;
  font-weight: 900;
}

.onboarding-steps span.active {
  background: #fff7ed;
  border-color: rgba(249, 115, 22, .32);
  color: var(--orange-dark);
}

.document-checklist {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
  background: #0f172a;
  color: white;
}

.document-checklist strong {
  margin-bottom: 4px;
}

.document-checklist span {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .84);
}

.document-checklist span::before {
  content: "✓ ";
  color: #22c55e;
}

.form-link {
  color: var(--orange-dark);
  font-weight: 900;
  text-align: center;
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.waitlist-form button,
.waitlist-form .form-message {
  grid-column: 1 / -1;
}

.muted-stores .store-btn {
  background: #2b2b2b;
  opacity: .9;
}

.faq-section {
  background: linear-gradient(180deg, #ffffff, #fff7ed);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, .78);
}

.footer-contact strong {
  color: white;
  font-size: 18px;
}

.footer-contact a:hover {
  color: var(--orange);
}

.socials a,
.socials span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: white;
}

@media (max-width: 980px) {
  .pricing-grid,
  .forms-grid {
    grid-template-columns: 1fr;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
  }
}