/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  /* Greens */
  --g950: #010A03;
  --g900: #052E16;
  --g800: #14532D;
  --g700: #15803D;
  --g600: #16A34A;
  --g500: #22C55E;
  --g400: #4ADE80;
  --g300: #86EFAC;
  --g100: #DCFCE7;
  --g50:  #F0FDF4;

  /* Neutrals */
  --ink:      #0A0A0A;
  --ink-2:    #374151;
  --ink-3:    #6B7280;
  --border:   #E5E7EB;
  --surface:  #F9FAFB;
  --white:    #FFFFFF;

  /* Accents */
  --gold:     #F59E0B;
  --blue:     #3B82F6;
  --red:      #EF4444;
  --purple:   #8B5CF6;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Shadows */
  --s1: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --s2: 0 4px 16px rgba(0,0,0,.08);
  --s3: 0 12px 40px rgba(0,0,0,.12);
  --s4: 0 24px 64px rgba(0,0,0,.18);
  --s-green: 0 12px 40px rgba(22,163,74,.25);
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--g600); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: var(--font); }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }

/* ── Scroll reveal ──────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: .08s; }
.reveal:nth-child(3) { transition-delay: .16s; }
.reveal:nth-child(4) { transition-delay: .24s; }
.reveal:nth-child(5) { transition-delay: .32s; }
.reveal:nth-child(6) { transition-delay: .40s; }

/* ── Announcement bar ────────────────────────────────────────────────────────── */
.topbar {
  background: linear-gradient(90deg, var(--g800), var(--g600));
  color: var(--white);
  padding: 10px 0;
  font-size: .825rem;
  font-weight: 600;
  text-align: center;
}
.topbar-inner { display: flex; align-items: center; justify-content: center; gap: 16px; }
.topbar-close {
  font-size: 1.1rem; color: rgba(255,255,255,.7);
  line-height: 1; padding: 2px 6px;
  transition: color .15s;
}
.topbar-close:hover { color: var(--white); }

/* ── Nav ─────────────────────────────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(2,13,4,.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.4); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800; color: var(--white);
  letter-spacing: -.02em;
}
.nav-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--g600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.7);
  padding: 8px 14px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.06); text-decoration: none; }
.nav-cta {
  background: var(--g600) !important; color: var(--white) !important;
  padding: 9px 20px !important; font-weight: 700 !important;
  box-shadow: var(--s-green); margin-left: 8px;
  transition: background .2s, transform .15s, box-shadow .2s !important;
}
.nav-cta:hover { background: var(--g500) !important; transform: translateY(-1px); box-shadow: 0 16px 40px rgba(22,163,74,.35) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.8); border-radius: 2px; transition: all .25s; }
.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); }

/* ── Hero ─────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--g950);
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: calc(100vh - 66px);
  display: flex; align-items: center;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Orbs */
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.orb-1 { width: 500px; height: 500px; background: rgba(22,163,74,.18); top: -100px; right: 10%; }
.orb-2 { width: 350px; height: 350px; background: rgba(34,197,94,.1); bottom: -80px; left: 15%; }
.orb-3 { width: 250px; height: 250px; background: rgba(5,150,105,.15); top: 35%; left: 2%; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { padding-bottom: 24px; }

.live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 7px 16px;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.85);
  letter-spacing: .03em; margin-bottom: 28px;
}
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--g400);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  color: var(--white); letter-spacing: -.04em;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(90deg, var(--g400) 0%, var(--g300) 50%, #a7f3d0 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 480px; margin-bottom: 28px; line-height: 1.7;
}

.rating-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 36px;
}
.stars { color: var(--gold); font-size: 1rem; letter-spacing: .05em; }
.rating-text { font-size: .825rem; color: rgba(255,255,255,.55); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); color: var(--ink);
  padding: 14px 22px; border-radius: var(--r);
  font-weight: 600; font-size: .875rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,.35); text-decoration: none; }
.store-btn svg { flex-shrink: 0; }
.store-btn div { line-height: 1.25; }
.store-btn small { font-size: .68rem; font-weight: 400; color: var(--ink-3); display: block; }
.store-btn strong { font-size: .95rem; }
.store-btn.light { background: rgba(255,255,255,.12); color: var(--white); border: 1px solid rgba(255,255,255,.2); }
.store-btn.light:hover { background: rgba(255,255,255,.18); }
.store-btn.light small { color: rgba(255,255,255,.5); }

.hero-fine { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: 16px; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.35); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase;
  animation: fadeUpDown 2.5s ease-in-out infinite;
  z-index: 2;
}

/* ── Phone mockup ────────────────────────────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-wrap { position: relative; }

/* Floating food items */
.float-item {
  position: absolute; font-size: 1.8rem;
  animation: floatItem 4s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
}
.fi-1 { top: 8%;  left: -14%; animation-delay: 0s;    animation-duration: 3.8s; }
.fi-2 { top: 22%; right: -12%; animation-delay: .6s;   animation-duration: 4.2s; }
.fi-3 { top: 62%; left: -16%; animation-delay: 1.2s;  animation-duration: 3.5s; }
.fi-4 { top: 75%; right: -10%; animation-delay: 1.8s;  animation-duration: 4.5s; }
.fi-5 { top: 44%; left: -18%; animation-delay: 2.4s;  animation-duration: 4s; }

.phone {
  width: 270px; height: 570px;
  background: #0A0A0A;
  border-radius: 48px;
  border: 9px solid #1A1A1A;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06),
    0 40px 80px rgba(0,0,0,.7),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  animation: phoneFloat 5s ease-in-out infinite;
}

/* Dynamic Island */
.phone-island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 33px;
  background: #000; border-radius: 20px;
  z-index: 10;
}

/* Status bar */
.phone-status-bar {
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 52px 16px 8px;
  flex-shrink: 0;
}
.phone-time { color: var(--white); font-size: .7rem; font-weight: 700; }
.phone-indicators { display: flex; align-items: center; gap: 6px; }

/* App header */
.app-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px 6px;
  background: linear-gradient(180deg, rgba(5,46,22,.95) 0%, rgba(5,46,22,.8) 100%);
  flex-shrink: 0;
}
.app-header-left { display: flex; align-items: center; gap: 8px; }
.app-logo-small { font-size: 1rem; }
.app-greeting { color: rgba(255,255,255,.5); font-size: .55rem; font-weight: 500; }
.app-name { color: var(--white); font-size: .68rem; font-weight: 700; }
.app-cart-btn {
  width: 30px; height: 30px; border-radius: 9px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--red); color: var(--white);
  font-size: .45rem; font-weight: 800;
  width: 13px; height: 13px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* App content */
.app-search {
  background: rgba(255,255,255,.07);
  margin: 8px 14px 0;
  border-radius: 9px; padding: 8px 12px;
  color: rgba(255,255,255,.4); font-size: .62rem;
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0;
}
.app-cats {
  display: flex; gap: 6px; padding: 8px 14px 0;
  flex-shrink: 0; overflow: hidden;
}
.cat-chip {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.5);
  padding: 4px 10px; border-radius: 20px;
  font-size: .58rem; font-weight: 600; white-space: nowrap;
  flex-shrink: 0;
}
.cat-chip.active { background: var(--g600); color: var(--white); }

.app-banner {
  margin: 8px 14px 0;
  background: linear-gradient(135deg, rgba(22,163,74,.3), rgba(34,197,94,.15));
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 10px; padding: 10px 12px;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.banner-tag { color: var(--g400); font-size: .5rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px; }
.banner-text { color: var(--white); font-size: .65rem; font-weight: 700; line-height: 1.3; }
.banner-icon { font-size: 1.4rem; }

.app-products {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; padding: 8px 14px 0;
  flex: 1; overflow: hidden;
}
.app-product {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 10px; padding: 8px;
}
.ap-img {
  width: 100%; height: 42px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 5px;
}
.ap-name { color: rgba(255,255,255,.75); font-size: .55rem; font-weight: 600; margin-bottom: 2px; }
.ap-price { color: var(--g400); font-size: .6rem; font-weight: 700; }
.ap-add {
  margin-top: 5px; background: var(--g600); border-radius: 5px;
  height: 18px; width: 18px; display: flex; align-items: center; justify-content: center;
  color: white; font-size: .7rem; font-weight: 700; margin-left: auto;
}
.ap-add.added { background: rgba(34,197,94,.2); border: 1px solid var(--g500); color: var(--g400); }

.app-nav {
  display: flex; justify-content: space-around;
  padding: 8px 4px 14px;
  background: rgba(0,0,0,.4);
  border-top: 1px solid rgba(255,255,255,.06);
  flex-shrink: 0; margin-top: 8px;
}
.app-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  color: rgba(255,255,255,.3); font-size: .45rem; font-weight: 600;
  padding: 2px 8px;
}
.app-nav-item.active { color: var(--g400); }

/* ── Trust bar ───────────────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 28px; font-size: .825rem; color: var(--ink-2);
}
.trust-divider {
  width: 1px; height: 24px; background: var(--border);
  flex-shrink: 0;
}
.trust-stars { color: var(--gold); font-size: .85rem; letter-spacing: .05em; }
.trust-label { font-size: .8rem; color: var(--ink-3); }
.trust-label strong { color: var(--ink-2); }

/* ── Stats ───────────────────────────────────────────────────────────────────── */
.stats-section {
  padding: 72px 0;
  background: var(--g50);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s2);
}
.stat-card {
  background: var(--white);
  padding: 40px 32px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.stat-card:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.stat-card:last-child  { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.stat-number, .stat-plus, .stat-unit {
  display: inline;
  font-size: 3rem; font-weight: 900;
  color: var(--g700); letter-spacing: -.04em; line-height: 1;
}
.stat-number { font-size: 3rem; }
.stat-plus, .stat-unit { font-size: 2rem; color: var(--g500); }
.stat-top { margin-bottom: 8px; }
.stat-label { font-size: .825rem; color: var(--ink-3); font-weight: 500; margin-top: 8px; }

/* ── Section common ──────────────────────────────────────────────────────────── */
.section-tag {
  display: inline-flex; align-items: center;
  background: var(--g100); color: var(--g700);
  padding: 6px 14px; border-radius: 100px;
  font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag.light { background: rgba(255,255,255,.1); color: var(--g300); }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.1;
  color: var(--ink); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-sub { font-size: 1.05rem; color: var(--ink-3); max-width: 560px; line-height: 1.7; }

/* ── Features ────────────────────────────────────────────────────────────────── */
.features-section { background: var(--white); }
.features-section .section-tag { margin-bottom: 18px; }
.features-section .section-title,
.features-section .section-sub { text-align: center; margin: 0 auto; }
.features-section .section-title { margin-bottom: 16px; }
.features-section .section-sub { margin-bottom: 56px; }

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--s1);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s3);
  border-color: var(--g300);
}
.feature-icon-wrap {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--icon-bg, rgba(34,197,94,.1));
  color: var(--icon-color, var(--g600));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feature-card h3 {
  font-size: 1.05rem; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: 12px;
  color: var(--ink);
}
.feature-card p { color: var(--ink-3); font-size: .9rem; line-height: 1.7; }

/* ── How it works ────────────────────────────────────────────────────────────── */
.hiw-section {
  background: var(--g900);
  position: relative; overflow: hidden;
}
.hiw-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hiw-section .section-title,
.hiw-section .section-sub { text-align: center; margin: 0 auto; }
.hiw-section .section-tag { margin-bottom: 18px; }
.hiw-section .section-title { margin-bottom: 16px; }
.hiw-section .section-sub { color: rgba(255,255,255,.5); margin-bottom: 64px; }

.steps-grid {
  display: flex; align-items: flex-start; gap: 0;
  position: relative; z-index: 1;
}
.step {
  flex: 1; text-align: center; padding: 0 20px;
}
.step-connector {
  flex-shrink: 0; width: 60px; height: 2px;
  background: linear-gradient(90deg, rgba(34,197,94,.4), rgba(34,197,94,.2));
  margin-top: 48px; align-self: flex-start;
}
.step-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; margin-bottom: 24px; }
.step-num-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(34,197,94,.12);
  border: 2px solid rgba(34,197,94,.3);
  display: flex; align-items: center; justify-content: center;
}
.step-num {
  font-size: 1.4rem; font-weight: 900; color: var(--g400);
  letter-spacing: -.04em;
}
.step-icon-bg {
  width: 72px; height: 72px; border-radius: var(--r);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.step h3 {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  margin-bottom: 12px; letter-spacing: -.02em;
}
.step p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.7; max-width: 240px; margin: 0 auto; }

/* ── Testimonials ────────────────────────────────────────────────────────────── */
.testimonials-section { background: var(--g50); }
.testimonials-section .section-tag,
.testimonials-section .section-title,
.testimonials-section .section-sub { text-align: center; margin: 0 auto; display: block; }
.testimonials-section .section-tag { display: inline-flex; margin-bottom: 18px; }
.testimonials-section .section-title { margin-bottom: 16px; }
.testimonials-section .section-sub { margin-bottom: 56px; }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  box-shadow: var(--s1);
  transition: transform .25s, box-shadow .25s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--s3); }
.featured-testimonial {
  background: var(--g900);
  border-color: rgba(34,197,94,.2);
  box-shadow: 0 12px 40px rgba(5,46,22,.3);
}
.t-stars { color: var(--gold); font-size: .85rem; letter-spacing: .08em; margin-bottom: 16px; }
.t-quote {
  font-size: .925rem; line-height: 1.75; color: var(--ink-2);
  margin-bottom: 24px; font-style: italic;
}
.featured-testimonial .t-quote { color: rgba(255,255,255,.75); }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 800; color: var(--white);
  flex-shrink: 0;
}
.t-author strong { display: block; font-size: .875rem; color: var(--ink); margin-bottom: 2px; }
.featured-testimonial .t-author strong { color: var(--white); }
.t-author span { font-size: .78rem; color: var(--ink-3); }
.featured-testimonial .t-author span { color: rgba(255,255,255,.45); }

/* ── Delivery ────────────────────────────────────────────────────────────────── */
.delivery-section { background: var(--white); }
.delivery-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  background: var(--g50);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 64px;
  box-shadow: var(--s2);
}
.delivery-info .section-tag { margin-bottom: 18px; }
.delivery-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900; letter-spacing: -.04em;
  line-height: 1.1; margin-bottom: 16px;
}
.delivery-info p { color: var(--ink-3); margin-bottom: 28px; font-size: .95rem; }

.zones { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.zone {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 100px; padding: 6px 16px;
  font-size: .78rem; font-weight: 600; color: var(--ink-2);
  transition: background .15s, border-color .15s, color .15s;
}
.zone:hover { background: var(--g50); border-color: var(--g300); color: var(--g700); }

.btn-outline {
  display: inline-flex; align-items: center;
  border: 2px solid var(--g600); color: var(--g700);
  padding: 12px 24px; border-radius: var(--r);
  font-weight: 700; font-size: .9rem;
  transition: background .2s, color .2s, transform .15s;
}
.btn-outline:hover { background: var(--g600); color: var(--white); text-decoration: none; transform: translateY(-2px); }

/* Map art */
.delivery-map { display: flex; justify-content: center; }
.map-art {
  width: 100%; max-width: 380px; height: 320px;
  background: linear-gradient(145deg, #c8e6c9 0%, #a5d6a7 40%, #81c784 100%);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--s3);
  border: 2px solid rgba(255,255,255,.6);
}
.map-art::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-accent { position: absolute; bottom: 20px; right: 20px; font-size: 2.5rem; opacity: .6; }
.map-label {
  position: absolute; bottom: 16px; left: 20px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; color: var(--g800);
}
.map-pin { position: absolute; z-index: 2; }
.pin-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--g700); border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
  animation: mapPulse 2.5s ease-in-out infinite;
}
.pin-label {
  position: absolute; left: 16px; top: -3px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  padding: 3px 8px; border-radius: 6px;
  font-size: .6rem; font-weight: 700; color: var(--g800);
  white-space: nowrap; box-shadow: var(--s1);
}
.pin-1 { top: 30%; left: 55%; }
.pin-2 { top: 50%; left: 30%; }
.pin-3 { top: 25%; left: 72%; }
.pin-4 { top: 60%; left: 60%; }
.pin-1 { animation-delay: 0s; }
.pin-2 { animation-delay: .6s; }
.pin-3 { animation-delay: 1.2s; }
.pin-4 { animation-delay: 1.8s; }

/* ── Pricing ─────────────────────────────────────────────────────────────────── */
.pricing-section { background: var(--surface); }
.pricing-section .section-tag,
.pricing-section .section-title,
.pricing-section .section-sub { text-align: center; margin: 0 auto; display: block; }
.pricing-section .section-tag { display: inline-flex; margin-bottom: 18px; }
.pricing-section .section-title { margin-bottom: 16px; }
.pricing-section .section-sub { margin-bottom: 56px; }

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--s3); }
.pricing-card.recommended {
  border-color: var(--g500);
  box-shadow: var(--s-green);
}
.recommended-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--g600); color: var(--white);
  padding: 4px 16px; border-radius: 100px;
  font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-icon { font-size: 2rem; margin-bottom: 16px; }
.pricing-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.pricing-price {
  font-size: 2.6rem; font-weight: 900; color: var(--g700);
  letter-spacing: -.05em; line-height: 1; margin-bottom: 6px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--ink-3); }
.pricing-time { font-size: .8rem; color: var(--ink-3); margin-bottom: 24px; }
.pricing-features { padding: 0; }
.pricing-features li {
  font-size: .875rem; color: var(--ink-2);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  text-align: center; margin-top: 40px;
  color: var(--g700); font-size: .9rem; font-weight: 600;
  background: var(--g100); padding: 14px 24px; border-radius: var(--r);
  display: inline-block;
  margin-left: 50%; transform: translateX(-50%);
}

/* ── Payment ─────────────────────────────────────────────────────────────────── */
.payment-section { background: var(--white); padding: 96px 0; }
.payment-section .section-tag,
.payment-section .section-title,
.payment-section .section-sub { text-align: center; margin: 0 auto; display: block; }
.payment-section .section-tag { display: inline-flex; margin-bottom: 18px; }
.payment-section .section-title { margin-bottom: 16px; }
.payment-section .section-sub { margin-bottom: 56px; }

.payment-grid {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px;
}
.payment-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center; min-width: 160px;
  box-shadow: var(--s1);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.payment-card:hover { transform: translateY(-4px); box-shadow: var(--s3); border-color: var(--g300); }
.payment-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: .8rem; font-weight: 900;
}
.payment-icon.mtn { background: #FFCC00; color: #1A1A1A; font-size: .7rem; }
.payment-icon.voda { background: #E60026; color: var(--white); font-size: .7rem; }
.payment-icon.airtel { background: #FF0000; color: var(--white); font-size: .7rem; }
.payment-icon.bank { background: var(--g50); color: var(--g700); }
.payment-icon.cash { background: #FEF3C7; color: #92400E; }
.payment-name { font-size: .875rem; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.payment-sub { font-size: .75rem; color: var(--ink-3); }
.payment-note {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 40px; color: var(--ink-3); font-size: .825rem;
  background: var(--g50); border: 1px solid var(--border);
  padding: 14px 24px; border-radius: var(--r); max-width: 620px;
  margin-left: auto; margin-right: auto;
}

/* ── CTA ─────────────────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--g950) 0%, #0a2e14 50%, var(--g900) 100%);
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
}
.cta-content .section-title { color: var(--white); }
.cta-content p {
  color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 440px;
  margin-bottom: 36px; line-height: 1.7;
}
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-fine { color: rgba(255,255,255,.3); font-size: .78rem; margin-top: 16px; }

/* Tracking card */
.tracking-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.tracking-header {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: .9rem; font-weight: 700;
  margin-bottom: 6px;
}
.tracking-status-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--g400);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.tracking-header svg { margin-left: auto; }
.tracking-order { color: rgba(255,255,255,.4); font-size: .76rem; margin-bottom: 20px; }

.tracking-map {
  background: #1a2e1e;
  border-radius: var(--r);
  height: 120px; position: relative; overflow: hidden;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,.06);
}
.tracking-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(34,197,94,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.t-road { position: absolute; background: rgba(255,255,255,.1); }
.t-road-h { width: 100%; height: 3px; top: 50%; transform: translateY(-50%); }
.t-road-v { height: 100%; width: 3px; left: 50%; transform: translateX(-50%); }
.t-rider { position: absolute; font-size: 1.4rem; top: 55%; left: 25%; transform: translate(-50%, -50%); animation: riderMove 4s ease-in-out infinite; }
.t-dest { position: absolute; font-size: 1.4rem; top: 40%; right: 18%; }
.t-path {
  position: absolute; top: 50%; left: 25%; width: 50%; height: 2px;
  background: linear-gradient(90deg, var(--g500), transparent);
  transform: translateY(-50%);
}

.tracking-eta { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.eta-label { color: rgba(255,255,255,.4); font-size: .7rem; margin-bottom: 2px; }
.eta-time { color: var(--white); font-size: 1.1rem; font-weight: 800; }
.eta-bar { flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.eta-fill { height: 100%; width: 65%; background: linear-gradient(90deg, var(--g500), var(--g400)); border-radius: 3px; animation: etaProgress 3s ease-in-out infinite alternate; }

.tracking-rider { display: flex; align-items: center; gap: 12px; }
.rider-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--g700), var(--g500));
  color: var(--white); font-size: .75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.rider-name { color: var(--white); font-size: .8rem; font-weight: 700; margin-bottom: 2px; }
.rider-stars { color: var(--gold); font-size: .7rem; }
.rider-call {
  margin-left: auto;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--g600);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.rider-call:hover { background: var(--g500); transform: scale(1.08); text-decoration: none; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
footer {
  background: var(--g950);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  margin-bottom: 16px; text-decoration: none;
}
.footer-brand p {
  font-size: .86rem; line-height: 1.75;
  color: rgba(255,255,255,.4); max-width: 260px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 9px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.social-link:hover { background: var(--g700); color: var(--white); text-decoration: none; }
footer h4 {
  color: rgba(255,255,255,.35); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px;
}
footer ul { padding: 0; }
footer ul li { margin-bottom: 12px; }
footer ul li a {
  color: rgba(255,255,255,.55); font-size: .875rem;
  transition: color .15s;
}
footer ul li a:hover { color: var(--g400); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 5px 12px; border-radius: 20px;
  font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.45);
}

/* ── Legal / Help pages ──────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(145deg, var(--g950), var(--g900));
  color: var(--white); padding: 72px 0 56px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); font-weight: 900; letter-spacing: -.04em; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.6); font-size: 1rem; }

.prose {
  max-width: 780px; margin: 0 auto;
  padding: 60px 24px 96px;
}
.prose h2 {
  font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em;
  margin: 44px 0 14px; color: var(--g700);
}
.prose h3 { font-size: 1rem; font-weight: 700; margin: 28px 0 10px; }
.prose p { color: var(--ink-3); margin-bottom: 16px; font-size: .95rem; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 22px; margin-bottom: 16px; }
.prose li { color: var(--ink-3); margin-bottom: 8px; font-size: .95rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0 28px; font-size: .88rem; }
.prose th { background: var(--g50); color: var(--ink); font-weight: 700; text-align: left; padding: 12px 16px; border: 1px solid var(--border); }
.prose td { padding: 10px 16px; border: 1px solid var(--border); color: var(--ink-3); vertical-align: top; }
.prose tr:nth-child(even) td { background: var(--surface); }
.prose a { color: var(--g600); }
.prose strong { color: var(--ink); }
.effective-date {
  background: var(--g50); border-left: 4px solid var(--g500);
  padding: 16px 20px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin-bottom: 36px; font-size: .875rem; color: var(--ink-3);
}

/* Help page */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px;
  box-shadow: var(--s1); transition: transform .2s, box-shadow .2s;
}
.faq-item:hover { transform: translateY(-3px); box-shadow: var(--s3); }
.faq-item h3 { font-size: .95rem; font-weight: 800; margin-bottom: 10px; color: var(--g700); }
.faq-item p { font-size: .875rem; color: var(--ink-3); line-height: 1.7; }
.faq-item p a { color: var(--g600); }
.contact-strip {
  background: var(--g900); border-radius: var(--r-lg);
  padding: 48px; text-align: center; margin-top: 56px;
}
.contact-strip h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.contact-strip p { color: rgba(255,255,255,.5); margin-bottom: 24px; }
.contact-methods { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--g600); color: var(--white);
  padding: 13px 26px; border-radius: var(--r); font-weight: 700; font-size: .9rem;
  transition: background .2s, transform .15s; box-shadow: var(--s-green);
}
.contact-btn:hover { background: var(--g500); text-decoration: none; color: var(--white); transform: translateY(-2px); }
.contact-btn.outline {
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.15); box-shadow: none;
}
.contact-btn.outline:hover { background: rgba(255,255,255,.14); }

/* ── Keyframes ───────────────────────────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50% { transform: scale(1.15); opacity: .9; box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50%       { transform: translateY(-16px) rotate(2deg); }
}
@keyframes floatItem {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}
@keyframes mapPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(21,128,61,.6); }
  50%       { box-shadow: 0 0 0 8px rgba(21,128,61,0); }
}
@keyframes fadeUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: .8; }
}
@keyframes riderMove {
  0%        { left: 15%; }
  50%       { left: 50%; }
  100%      { left: 15%; }
}
@keyframes etaProgress {
  from { width: 50%; }
  to   { width: 80%; }
}

/* ── Responsive: tablet ──────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-bottom: 60px; }
  .hero-visual { display: none; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-actions { justify-content: center; }
  .rating-row { justify-content: center; }
  .live-badge { margin: 0 auto 28px; }
  .hero h1 { font-size: clamp(2.2rem, 6vw, 3.2rem); }

  .trust-inner { gap: 0; }
  .trust-item { padding: 8px 16px; }
  .trust-divider { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card:first-child { border-radius: var(--r-lg) 0 0 0; }
  .stat-card:last-child  { border-radius: 0 0 var(--r-lg) 0; }

  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 40px; margin: 0; background: linear-gradient(180deg, rgba(34,197,94,.4), rgba(34,197,94,.2)); }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .delivery-card { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-buttons { justify-content: center; }
  .cta-content p { margin: 0 auto 36px; }
  .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: rgba(2,13,4,.98); border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px 0; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; border-radius: 0; }
  .nav-cta { margin: 8px 24px 0 !important; border-radius: var(--r) !important; }
  .hamburger { display: flex; }
  nav { position: sticky; }

  .topbar-inner span { font-size: .75rem; }
  .hero { padding: 70px 0 100px; min-height: unset; }
  .hero h1 { font-size: 2.1rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 28px 20px; }
  .stat-number { font-size: 2.4rem; }

  .features-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }

  .delivery-card { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .trust-inner { flex-wrap: wrap; justify-content: center; }
  .trust-item { border: 1px solid var(--border); border-radius: var(--r-sm); padding: 10px 16px; margin: 4px; }

  .pricing-note { margin-left: 0; transform: none; display: block; }
}
