:root {
  --black: #0d0e12;
  --dark: #14161d;
  --gold: #f5b400;
  --gold-dark: #c98f00;
  --gray: #5c6270;
  --light: #f6f6f8;
  --white: #ffffff;
  --radius: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  color: #1c1e24;
  background: var(--white);
  line-height: 1.5;
}

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

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

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

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(245,180,0,.15);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 24px;
}

.logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 0.95rem;
}

.nav a {
  color: #d9dae0;
  transition: color .15s;
}
.nav a:hover { color: var(--gold); }

.nav-cta { margin-left: 8px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn--gold {
  background: var(--gold);
  color: #16130a;
  box-shadow: 0 8px 20px rgba(245,180,0,.3);
}
.btn--gold:hover { transform: translateY(-2px); background: var(--gold-dark); }

.btn--ghost {
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---------- HERO ---------- */
.hero {
  background: radial-gradient(1200px 500px at 80% -10%, #23180a 0%, var(--black) 55%);
  color: var(--white);
  padding: 84px 0 100px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.tag {
  display: inline-block;
  background: rgba(245,180,0,.12);
  color: var(--gold);
  border: 1px solid rgba(245,180,0,.35);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .3px;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 18px;
}
.text-gold { color: var(--gold); }

.hero p {
  color: #c3c5cf;
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 0 30px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero__stores {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__stores--center { justify-content: center; }

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 9px 16px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.store-badge small {
  display: block;
  font-weight: 400;
  font-size: 0.65rem;
  color: #b8b9c2;
}
.store-badge--dark {
  border-color: rgba(0,0,0,.25);
  color: #16130a;
}
.store-badge--dark small { color: #4a3d1a; }

/* phone card illustration */
.hero__art { display: flex; justify-content: center; }
.phone-card {
  width: 300px;
  background: #1b1d26;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,.45);
}
.phone-card__top {
  display: flex;
  gap: 6px;
  padding: 14px 16px;
}
.phone-card__top .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.phone-card__map {
  background: linear-gradient(160deg, #202436, #14161d);
  height: 220px;
}
.route-svg { width: 100%; height: 100%; }
.car-marker { filter: drop-shadow(0 2px 3px rgba(0,0,0,.5)); }
@media (prefers-reduced-motion: reduce) {
  .car-marker animateMotion { display: none; }
}

.phone-card__info { padding: 18px 18px 22px; }
.eta { margin-bottom: 16px; }
.eta strong { display: block; font-size: 1.4rem; color: var(--gold); }
.eta span { font-size: 0.85rem; color: #a9abb6; }

.driver {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  padding: 10px 12px;
}
.driver__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #16130a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}
.driver strong { display: block; font-size: 0.85rem; }
.driver span { font-size: 0.75rem; color: #a9abb6; }
.driver .rating { margin-left: auto; color: var(--gold); font-weight: 700; font-size: 0.85rem; }

/* ---------- SECTIONS ---------- */
.section { padding: 90px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--gold { background: linear-gradient(135deg, #ffcf42, var(--gold)); color: #16130a; text-align: center; }

.section__title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  text-align: center;
  margin: 0 0 10px;
}
.section__title--light { color: var(--white); }
.section__title--left { text-align: left; }

.section__subtitle {
  text-align: center;
  color: var(--gray);
  margin: 0 0 48px;
  font-size: 1.05rem;
}
.section__subtitle--light { color: #b8b9c2; }

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  border: 1px solid #eee;
}
.step__icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #fff3d6;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.step h3 { margin: 0 0 10px; font-size: 1.1rem; }
.step p { margin: 0; color: var(--gray); font-size: 0.95rem; }

/* cards */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  background: #1b1d26;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.card__icon { font-size: 1.8rem; }
.card h3 { margin: 14px 0 8px; font-size: 1.05rem; }
.card p { margin: 0; color: #b8b9c2; font-size: 0.92rem; }

/* area */
.area {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.area__text p { color: var(--gray); }
.city-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
.city-list li {
  padding: 10px 14px;
  background: var(--light);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}
.city-list li::before { content: "📍 "; }
.muted { color: #9a9ea8; font-size: 0.88rem; }

/* coverage diagram */
.coverage-card {
  position: relative;
  background: #1b1d26;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 22px 22px 26px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
}
.coverage-card__tag {
  display: inline-block;
  background: rgba(245,180,0,.12);
  color: var(--gold);
  border: 1px solid rgba(245,180,0,.35);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.coverage-card__map { width: 100%; height: auto; overflow: visible; }
.coverage-link {
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 2 10;
  stroke-linecap: round;
  opacity: .6;
}
.coverage-node circle {
  fill: #1b1d26;
  stroke: var(--gold);
  stroke-width: 2;
}
.coverage-node text {
  fill: #d9dae0;
  font-size: 13px;
  font-weight: 600;
}
.coverage-hub { fill: var(--gold); }
.coverage-hub-label {
  fill: #ffffff;
  font-size: 15px;
  font-weight: 800;
  text-anchor: middle;
}
.coverage-pulse {
  fill: var(--gold);
  opacity: .35;
  transform-origin: 200px 200px;
  animation: coverage-pulse 2.4s ease-out infinite;
}
@keyframes coverage-pulse {
  0%   { transform: scale(.55); opacity: .5; }
  100% { transform: scale(1.8); opacity: 0; }
}
.coverage-card__caption {
  text-align: center;
  color: #b8b9c2;
  font-size: 0.88rem;
  margin: 6px 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .coverage-pulse { animation: none; opacity: .3; }
}

/* app section */
.app .btn { margin-top: 4px; }
.soon-note {
  margin-top: 22px;
  font-size: 0.85rem;
  color: #5a460a;
}

/* driver cta */
.driver-cta {
  background: var(--light);
  border-radius: 24px;
  padding: 56px;
  text-align: center;
  max-width: 900px;
}
.driver-cta p { color: var(--gray); max-width: 60ch; margin: 0 auto 26px; }

/* contact */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contact__item {
  background: #1b1d26;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: border-color .15s;
}
.contact__item:hover { border-color: var(--gold); }
.contact__item strong { display: block; color: var(--gold); margin-bottom: 8px; font-size: 0.95rem; }
.contact__item span { color: #d9dae0; }

/* footer */
.footer { background: var(--black); padding: 40px 0; }
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__logo { height: 40px; border-radius: 8px; }
.footer__legal { color: #7d808c; font-size: 0.8rem; margin: 0; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; }
  .steps { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .area { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav, .nav-cta { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(245,180,0,.15);
  }
  .menu-toggle { display: flex; }
  .cards { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  .driver-cta { padding: 36px 24px; }
}
