/* ============================================================
   SR2Go — style.css
   Brand tokens v2  ·  Logo_7  ·  August 2026
   MAINTENANCE: Edit :root to change colours globally
   Sections are numbered to match index.html
============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand */
  --blue:       #1E90FF;
  --blue-deep:  #0D6BFF;
  --blue-light: #4FA8FF;
  --navy:       #0B1F3B;
  --navy-dark:  #07172C;
  --black:      #0A1628;
  --white:      #ffffff;
  --card-bg:    #F8FAFC;
  --border-col: #E8EDF5;

  /* Text */
  --text-main:  #0A1628;
  --text-muted: #4A5568;
  --text-hint:  #9CA3AF;

  /* Gradients */
  --grad-hero-right: linear-gradient(135deg, #07172C 0%, #0B1F3B 55%, #0E2A63 100%);
  --grad-blue:       linear-gradient(135deg, #1E90FF 0%, #0D6BFF 100%);
  --grad-dark:       linear-gradient(160deg, #07172C 0%, #0B1F3B 100%);

  /* Shadows */
  --sh-sm:   0 2px 8px rgba(0,0,0,0.06);
  --sh-md:   0 4px 20px rgba(0,0,0,0.10);
  --sh-blue: 0 4px 20px rgba(30,144,255,0.30);
  --sh-lift: 0 8px 32px rgba(30,144,255,0.22);

  /* Radii */
  --r-sm:   6px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-pill: 999px;

  /* Layout */
  --max-w:    1200px;
  --pad-x:    clamp(20px, 5vw, 60px);
  --sec-v:    clamp(60px, 8vw, 96px);
  --header-h: 72px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: var(--white);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ── UTILITIES ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.20s; }
.d3 { transition-delay: 0.30s; }
.d4 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Section label pill */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30,144,255,0.08);
  color: var(--blue);
  border: 1px solid rgba(30,144,255,0.18);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.sec-label-light {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.20);
}

/* Section headings */
.sec-h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.sec-h2-white { color: var(--white); }

.sec-body {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}
.sec-body-white { color: rgba(255,255,255,0.65); }

.sec-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.sec-head .sec-body { margin: 0 auto; }

/* Dashed road motif — brand signature */
.road-dash {
  display: block;
  width: 72px;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue) 0px, var(--blue) 8px,
    transparent 8px, transparent 14px
  );
  border-radius: 2px;
  opacity: 0.55;
  margin: 12px auto 0;
}
.road-dash-left { margin: 12px 0 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  box-shadow: var(--sh-blue);
}
.btn-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
  box-shadow: var(--sh-lift);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline:hover {
  background: rgba(30,144,255,0.06);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: 2px solid transparent;
  box-shadow: var(--sh-md);
}
.btn-white:hover {
  background: var(--card-bg);
  transform: translateY(-1px);
}

/* ============================================================
   SECTION 1 — HEADER
   bg: #ffffff  ·  logo.png (Primary Chrome)
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: none;
  height: var(--header-h);
  box-shadow: none;
  transition: box-shadow 0.3s ease;
}
#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo — Primary Chrome on white */
.header-logo img {
  height: clamp(36px, 4.5vw, 52px);
  width: auto;
  object-fit: contain;
  display: block;
}

/* Desktop nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}
.header-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.22s ease;
  border-radius: 1px;
}
.header-nav a:hover { color: var(--blue); }
.header-nav a:hover::after { width: 100%; }

/* CTA button in nav */
.header-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: var(--r-sm) !important;
  letter-spacing: 0.02em;
  transition: background 0.18s, transform 0.18s !important;
  box-shadow: 0 2px 10px rgba(30,144,255,0.30);
}
.header-cta:hover {
  background: var(--blue-deep) !important;
  transform: translateY(-1px) !important;
  color: var(--white) !important;
}
.header-cta::after { display: none !important; }

/* Hamburger button */
.header-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.header-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* Mobile overlay menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#mobile-menu.open { display: flex; }

#mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#mobile-menu nav a {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  padding: 18px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
#mobile-menu nav a:hover { color: var(--blue-light); }

.mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 24px;
  color: rgba(255,255,255,0.65);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.mobile-cta {
  margin-top: 24px;
  background: var(--blue) !important;
  color: var(--white) !important;
  border-radius: var(--r-md) !important;
  padding: 16px 40px !important;
  border-bottom: none !important;
  font-size: 16px !important;
  width: auto !important;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav  { display: none; }
  .header-burger { display: flex; }
}


/* ============================================================
   SECTION 2 — HERO
   Left:  #ffffff  ·  logo.png Primary Chrome
   Right: dark gradient  ·  NO logo
============================================================ */
#hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
}

/* ── Left column ─────────────────────────────────────────── */
.hero-left {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px,6vw,80px) clamp(24px,4vw,64px) clamp(48px,6vw,80px) var(--pad-x);
  position: relative;
  z-index: 1;
}

/* Hero logo — Primary Chrome on white (LOGO RULE 2) */
.hero-logo {
  margin-bottom: clamp(24px,3vw,36px);
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-logo img {
  height: clamp(40px, 5.5vw, 68px);
  width: auto;
  object-fit: contain;
}

/* Announce pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(30,144,255,0.07);
  color: var(--blue);
  border: 1px solid rgba(30,144,255,0.18);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.5s 0.15s ease both;
}

/* H1 */
.hero-h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-h1 .line1 {
  display: block;
  color: var(--black);          /* #0A1628 */
  animation: fadeUp 0.5s 0.25s ease both;
}
.hero-h1 .line2 {
  display: block;
  color: var(--blue);           /* #1E90FF */
  animation: fadeUp 0.5s 0.35s ease both;
}

/* Body */
.hero-body {
  font-size: clamp(15px,2vw,17px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.45s ease both;
}
.hero-body strong { color: var(--black); font-weight: 600; }

/* CTA row */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeUp 0.5s 0.55s ease both;
}

/* Trust badges */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 9px;
  animation: fadeUp 0.5s 0.65s ease both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-check {
  width: 20px; height: 20px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #16A34A;
  flex-shrink: 0;
}

/* ── Right column ────────────────────────────────────────── */
.hero-right {
  background: var(--grad-hero-right);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: fadeRight 0.6s 0.4s ease both;
}

/* Subtle dot texture */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,144,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Phone mockup */
.phone-wrap {
  position: relative;
  z-index: 2;
}

.phone {
  width: 268px;
  background: #0A1628;
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 40px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.08);
}

.phone-screen {
  width: 100%;
  background: var(--card-bg);
  border-radius: 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Phone top bar */
.phone-topbar {
  background: var(--blue);
  padding: 16px 16px 20px;
  color: var(--white);
}
.phone-appname {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.78;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.phone-route-lbl {
  font-size: 10px;
  opacity: 0.65;
  margin-bottom: 3px;
}
.phone-route {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.phone-arrow { color: #93C5FD; }

/* Phone body */
.phone-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Cards inside phone */
.p-card {
  background: var(--white);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.p-card-lbl {
  font-size: 10px;
  color: var(--text-hint);
  font-weight: 500;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Price card */
.p-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--black);
}
.p-saving {
  background: #DCFCE7;
  color: #16A34A;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
}
.p-market {
  font-size: 11px;
  color: var(--text-hint);
  margin-top: 2px;
}
.p-market s { color: #EF4444; }

/* Seats card */
.seats-row {
  display: flex;
  gap: 7px;
}
.seat {
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.seat.taken { background: #EEF4FF; }
.seat.avail {
  background: #DCFCE7;
  border: 2px dashed #16A34A;
  font-size: 18px;
  color: #16A34A;
  font-weight: 700;
}

/* Driver card */
.driver-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.drv-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.drv-name  { font-size: 13px; font-weight: 700; color: var(--black); }
.drv-stars { font-size: 11px; color: #F59E0B; }
.drv-car   { font-size: 10px; color: var(--text-hint); }

/* Book button */
.phone-book-btn {
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 13px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: 0.02em;
  transition: background 0.18s;
}
.phone-book-btn:hover { background: var(--blue-deep); }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 11px 15px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.float-left  {
  left: clamp(8px, 3vw, 24px);
  top: 22%;
  animation: floatUp 3s ease-in-out infinite;
}
.float-right {
  right: clamp(8px, 3vw, 24px);
  bottom: 22%;
  animation: floatDown 3.5s ease-in-out infinite;
}
.fb-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.fb-green { background: #DCFCE7; color: #16A34A; }
.fb-blue  { background: #EEF4FF; color: var(--blue); }
.fb-num   { font-size: 14px; font-weight: 800; color: var(--black); }
.fb-lbl   { font-size: 10px; color: var(--text-hint); }

/* Dashed road at bottom of right column */
.hero-road-svg {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 20px;
  pointer-events: none;
  z-index: 2;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes floatDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    order: 2;
    padding: 40px var(--pad-x) 52px;
  }
  .hero-right {
    order: 1;
    min-height: 380px;
  }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .float-badge { display: none; }
}


/* ============================================================
   SECTION 3 — STATS BAR
   bg: #F8FAFC
============================================================ */
#stats {
  background: var(--card-bg);
  border-top: 1px solid var(--border-col);
  border-bottom: none;
  padding: clamp(24px, 3.5vw, 36px) var(--pad-x);
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 clamp(16px, 3vw, 40px);
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: var(--border-col);
  flex-shrink: 0;
}

.stat-icon {
  font-size: 26px;
  margin-bottom: 6px;
  line-height: 1;
}

.stat-number {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: var(--text-hint);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.01em;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .stats-inner {
    flex-direction: column;
    gap: 0;
  }
  .stat-divider {
    width: 80%;
    height: 1px;
    margin: 4px auto;
  }
  .stat-item {
    padding: 18px 0;
    width: 100%;
  }
}


/* ============================================================
   SECTION 4 — CAMPAIGN VIDEO
   bg: #ffffff
============================================================ */
#video {
  padding: var(--sec-v) 0;
  background: var(--white);
}

.vid-wrap {
  max-width: 820px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-col);
  box-shadow: var(--sh-md);
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--navy-dark);
}

.vid-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Dashed accent line below video — brand motif */
#video .container::after {
  content: '';
  display: block;
  width: 72px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue) 0, var(--blue) 8px,
    transparent 8px, transparent 14px
  );
  margin: 36px auto 0;
  opacity: 0.45;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .vid-wrap { border-radius: var(--r-lg); }
}


/* ============================================================
   SECTION 5 — HOW IT WORKS
   bg: #F8FAFC
============================================================ */
#how {
  padding: var(--sec-v) 0;
  background: var(--card-bg);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

/* Animated dashed connectors */
.how-conn {
  position: absolute;
  top: 60px;
  pointer-events: none;
  width: calc(33.33% + 24px);
}
.conn-1 { left: calc(33.33% - 12px); }
.conn-2 { left: calc(66.66% - 12px); }

/* Step card */
.how-card {
  background: var(--white);
  border: 1px solid var(--border-col);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lift);
  border-color: rgba(30,144,255,0.25);
}

/* Faded big number behind content */
.how-num {
  position: absolute;
  top: -8px; right: 14px;
  font-size: 88px;
  font-weight: 900;
  color: rgba(30,144,255,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.how-icon {
  width: 52px; height: 52px;
  background: rgba(30,144,255,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.how-step {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: rgba(30,144,255,0.08);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  margin-bottom: 10px;
}

.how-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3;
}

.how-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-conn  { display: none; }
}


/* ============================================================
   SECTION 6 — SERVICES
   bg: #ffffff
============================================================ */
#services {
  padding: var(--sec-v) 0;
  background: var(--white);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.svc-card {
  border: 1px solid var(--border-col);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 32px);
  background: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lift);
}

/* Featured card */
.svc-featured {
  background: var(--grad-blue);
  border: none;
  transform: scale(1.03);
  box-shadow: var(--sh-blue);
}
.svc-featured:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 12px 36px rgba(30,144,255,0.40);
}

.svc-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.22);
  color: var(--white);
}

.svc-icon {
  font-size: 32px;
  margin-bottom: 16px;
  line-height: 1;
}

.svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.25;
}
.svc-featured h3 { color: var(--white); }

.svc-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}
.svc-featured p { color: rgba(255,255,255,0.80); }

.svc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.svc-tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--card-bg);
  color: var(--text-muted);
  border-radius: var(--r-pill);
  padding: 3px 10px;
}
.svc-featured .svc-tag {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.svc-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 14px;
}
.svc-featured .svc-price { color: var(--white); }

.svc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: gap 0.2s, opacity 0.2s;
  width: fit-content;
}
.svc-cta:hover { gap: 8px; opacity: 0.8; }
.svc-featured .svc-cta { color: var(--white); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-featured { transform: none; }
  .svc-featured:hover { transform: translateY(-4px); }
}


/* ============================================================
   SECTION 7 — WHY SR2GO
   bg: dark gradient — NO logo (LOGO RULE 5)
============================================================ */
#why {
  padding: var(--sec-v) 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle road-lane texture */
#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px, transparent 40px,
    rgba(30,144,255,0.025) 40px, rgba(30,144,255,0.025) 80px
  );
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

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

.why-glow {
  position: absolute;
  width: 260px; height: 260px;
  background: radial-gradient(circle,
    rgba(30,144,255,0.22) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,100% { opacity: 0.8; transform: translate(-50%,-50%) scale(1); }
  50%      { opacity: 1.0; transform: translate(-50%,-50%) scale(1.08); }
}

.why-phone {
  width: 220px;
  background: var(--black);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 64px rgba(0,0,0,0.55);
  overflow: hidden;
  position: relative;
  z-index: 1;
  animation: phoneFloat 4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-9px); }
}

.why-screen {
  padding: 18px 14px 20px;
  background: #0a1628;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-screen-hdr {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Mini map */
.why-map {
  background: linear-gradient(135deg, #0d2137, #0a1a2a);
  border-radius: 10px;
  padding: 12px;
  height: 72px;
  position: relative;
  overflow: hidden;
}
.why-route-line {
  position: absolute;
  top: 50%; left: 12px; right: 12px;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue) 0, var(--blue) 6px,
    transparent 6px, transparent 12px
  );
  transform: translateY(-50%);
}
.why-pin {
  font-size: 18px;
  position: relative;
  z-index: 1;
  line-height: 1;
}

/* ETA pill */
.why-eta {
  background: var(--blue);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

/* Driver row */
.why-drv-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px 10px;
}
.why-drv-av {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.why-drv-name { font-size: 11px; font-weight: 600; color: var(--white); }
.why-drv-car  { font-size: 9px;  color: rgba(255,255,255,0.45); }

/* Progress bar */
.why-progress-wrap { display: flex; flex-direction: column; gap: 4px; }
.why-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255,255,255,0.40);
}
.why-progress-track {
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px;
  position: relative;
  overflow: visible;
}
.why-progress-fill {
  position: absolute;
  left: 0; top: 0;
  width: 62%;
  height: 100%;
  background: var(--grad-blue);
  border-radius: 2px;
}
.why-progress-dot {
  position: absolute;
  top: 50%;
  left: 62%;
  width: 10px; height: 10px;
  background: var(--blue);
  border: 2px solid var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px rgba(30,144,255,0.6);
}
.why-progress-dist {
  font-size: 9px;
  color: rgba(255,255,255,0.38);
  text-align: right;
}

/* Action row */
.why-action-row {
  display: flex;
  gap: 6px;
}
.why-action-btn, .why-sos-btn {
  flex: 1;
  border: none;
  border-radius: 7px;
  padding: 7px 4px;
  font-size: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.why-action-btn {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.12);
}
.why-action-btn:hover { opacity: 0.8; }
.why-sos-btn {
  background: #EF4444;
  color: var(--white);
}
.why-sos-btn:hover { opacity: 0.88; }

/* ── Content side ────────────────────────────────────────── */
.why-content .sec-h2   { margin-top: 12px; }
.why-content .sec-body { margin-bottom: 28px; }

.why-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}

.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.why-feat strong { color: var(--white); font-weight: 600; }

.why-check {
  width: 22px; height: 22px;
  background: rgba(30,144,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--blue-light);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Stats row */
.why-stats {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.why-stat-num {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--blue-light);
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.why-stat-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  margin-top: 2px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-phone-wrap { order: 2; }
  .why-content    { order: 1; }
  .why-stats      { gap: 20px; }
}


/* ============================================================
   SECTION 8 — DRIVER SECTION
   bg: #ffffff
============================================================ */
#drivers {
  padding: var(--sec-v) 0;
  background: var(--white);
}

.driver-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

/* ── Content side ────────────────────────────────────────── */
.driver-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.driver-bens {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.driver-ben {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
  font-weight: 500;
}

.ben-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.driver-req {
  background: var(--card-bg);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 14px 18px;
  margin-bottom: 28px;
}
.driver-req strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.driver-req p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Media side ──────────────────────────────────────────── */
.driver-media {
  position: relative;
}

/* Real photo — uncomment when driver-photo.jpg is ready */
.driver-photo {
  width: 100%;
  height: clamp(320px, 40vw, 480px);
  object-fit: cover;
  object-position: top center;
  border-radius: var(--r-xl);
}

/* Placeholder shown until real photo arrives */
.driver-photo-placeholder {
  width: 100%;
  height: clamp(320px, 40vw, 480px);
  background: linear-gradient(135deg, var(--card-bg), #dde8ff);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed var(--border-col);
}
.dph-icon { font-size: 56px; }
.dph-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}
.dph-sub {
  font-size: 11px;
  color: var(--text-hint);
  font-family: monospace;
}

/* Earnings card — floating */
.earn-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  min-width: 220px;
  border: 1px solid var(--border-col);
  animation: floatUp 3.5s ease-in-out infinite;
}

.earn-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.earn-lbl {
  font-size: 11px;
  color: var(--text-hint);
  font-weight: 500;
}
.earn-trend {
  font-size: 11px;
  font-weight: 700;
  color: #16A34A;
  background: #DCFCE7;
  padding: 2px 7px;
  border-radius: var(--r-pill);
}

.earn-amount {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  line-height: 1;
}

.earn-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.earn-bar {
  flex: 1;
  height: 6px;
  background: var(--card-bg);
  border-radius: 3px;
  overflow: hidden;
}
.earn-fill {
  height: 100%;
  width: 78%;
  background: var(--grad-blue);
  border-radius: 3px;
}
.earn-pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.earn-goal {
  font-size: 11px;
  color: var(--text-hint);
  margin-bottom: 12px;
}

.earn-divider {
  height: 1px;
  background: var(--border-col);
  margin-bottom: 10px;
}

.earn-trips {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.earn-trip-num {
  font-size: 18px;
  font-weight: 800;
  color: var(--black);
}
.earn-trip-lbl {
  font-size: 11px;
  color: var(--text-hint);
}

/* Verified badge */
.verified-badge {
  position: absolute;
  top: 20px;
  right: -12px;
  background: #16A34A;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(22,163,74,0.40);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.vbadge-check {
  width: 16px; height: 16px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

/* Rating badge */
.rating-badge {
  position: absolute;
  top: 72px;
  right: -12px;
  background: var(--white);
  border: 1px solid var(--border-col);
  border-radius: var(--r-pill);
  padding: 6px 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--sh-sm);
  animation: floatDown 4s ease-in-out infinite;
}
.rating-star { color: #F59E0B; font-size: 14px; }
.rating-num  { font-size: 14px; font-weight: 800; color: var(--black); }
.rating-lbl  { font-size: 11px; color: var(--text-hint); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .driver-inner { grid-template-columns: 1fr; }
  .driver-media { margin-top: 40px; }
  .earn-card    { left: 0; bottom: -16px; }
  .verified-badge,
  .rating-badge  { right: 0; }
}

@keyframes floatDown {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(7px); }
}


/* ============================================================
   SECTION 9 — TESTIMONIALS
   bg: #F8FAFC
============================================================ */
#testimonials {
  padding: var(--sec-v) 0;
  background: var(--card-bg);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}

/* ── Card base ───────────────────────────────────────────── */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-col);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--sh-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lift);
}

/* Featured centre card */
.testi-featured {
  border-color: rgba(30,144,255,0.25);
  box-shadow: 0 4px 20px rgba(30,144,255,0.10);
  transform: scale(1.02);
}
.testi-featured:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 12px 36px rgba(30,144,255,0.18);
}

/* ── Card top — quote mark + stars ──────────────────────── */
.testi-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testi-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  color: var(--blue);
  line-height: 0.7;
  opacity: 0.55;
  transition: opacity 0.25s, font-size 0.25s;
  user-select: none;
}
.testi-card:hover .testi-quote {
  opacity: 0.75;
  font-size: 60px;
}

.testi-stars {
  color: #F59E0B;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ── Quote text ──────────────────────────────────────────── */
.testi-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.80;
  font-style: italic;
  margin-bottom: 18px;
  flex: 1;
}

/* ── Divider ─────────────────────────────────────────────── */
.testi-divider {
  height: 1px;
  background: var(--border-col);
  margin-bottom: 16px;
}

/* ── Author row ──────────────────────────────────────────── */
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.testi-author-info { flex: 1; }

.testi-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.testi-role {
  font-size: 11px;
  color: var(--text-hint);
  margin-top: 1px;
}

/* Rider / Driver badge */
.testi-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(30,144,255,0.08);
  border: 1px solid rgba(30,144,255,0.18);
  border-radius: var(--r-pill);
  padding: 3px 9px;
  white-space: nowrap;
  flex-shrink: 0;
}
.testi-badge-driver {
  color: #16A34A;
  background: rgba(22,163,74,0.08);
  border-color: rgba(22,163,74,0.20);
}

/* ── Trust footer strip ──────────────────────────────────── */
.testi-trust {
  background: var(--white);
  border: 1px solid var(--border-col);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px) clamp(24px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 24px;
}

.testi-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.testi-trust-num {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.5px;
  line-height: 1;
}

.testi-trust-lbl {
  font-size: 13px;
  color: var(--text-hint);
  max-width: 200px;
  line-height: 1.4;
}

.testi-trust-sep {
  width: 1px;
  height: 48px;
  background: var(--border-col);
  flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-featured { transform: none; }
  .testi-featured:hover { transform: translateY(-4px); }
  .testi-trust {
    flex-direction: column;
    gap: 0;
  }
  .testi-trust-sep {
    width: 80%;
    height: 1px;
    margin: 6px 0;
  }
  .testi-trust-item { padding: 16px 0; }
}


/* ============================================================
   SECTION 10 — REFERRAL PROGRAMME
   bg: dark gradient — NO logo (LOGO RULE 5)
============================================================ */
#referral {
  padding: var(--sec-v) 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}

/* Dot texture */
#referral::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle, rgba(30,144,255,0.05) 1px, transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}

/* ── How it works strip ──────────────────────────────────── */
.ref-how {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 20px 26px;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.ref-how-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  margin-bottom: 7px;
}
.ref-how-text {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
}

/* ── Driver + Passenger split ────────────────────────────── */
.ref-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

/* ── Card base ───────────────────────────────────────────── */
.ref-card {
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ref-driver {
  background: linear-gradient(160deg, #0D6BFF 0%, #0B1F3B 100%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 20px 52px rgba(13,107,255,0.28);
}

.ref-pax {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Badge */
.ref-badge {
  position: absolute;
  top: -13px;
  left: 22px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}
.ref-badge-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(30,144,255,0.40);
}
.ref-badge-secondary {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.15);
}

/* Card header */
.ref-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 16px 0 14px;
}
.ref-card-icon {
  font-size: 30px;
  flex-shrink: 0;
  line-height: 1;
}
.ref-card-header h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.25;
}
.ref-pct {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-light);
}
.ref-pct-light {
  color: rgba(255,255,255,0.65);
}

/* Lead text */
.ref-lead {
  font-size: 13px;
  color: rgba(255,255,255,0.62);
  line-height: 1.70;
  margin-bottom: 16px;
}

/* Bullet rows */
.ref-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 18px;
}
.ref-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.ref-row strong { color: var(--white); font-weight: 600; }
.ref-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  margin-top: 6px;
}
.ref-driver .ref-dot { background: rgba(255,255,255,0.55); }

/* Example table */
.ref-eg {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.ref-eg-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 10px;
}
.ref-eg-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
}
.ref-eg-row:last-of-type { border-bottom: none; }
.ref-eg-highlight {
  background: rgba(30,144,255,0.10);
  border-radius: 6px;
  padding: 7px 8px;
  margin: 3px -8px;
  border-bottom: none !important;
}
.ref-eg-route  { color: rgba(255,255,255,0.62); }
.ref-eg-credit { color: var(--white); font-weight: 600; }
.ref-eg-note {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  line-height: 1.55;
  margin-top: 10px;
  font-style: italic;
}

/* Referral code box */
.ref-code-wrap {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 13px 15px;
  margin-bottom: 14px;
}
.ref-code-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  display: block;
  margin-bottom: 7px;
}
.ref-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 5px;
}
.ref-code-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.ref-code-copy {
  font-size: 11px;
  font-weight: 600;
  color: var(--blue-light);
  background: rgba(30,144,255,0.12);
  border: 1px solid rgba(30,144,255,0.25);
  border-radius: 5px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
.ref-code-copy:hover { background: rgba(30,144,255,0.22); }
.ref-code-hint {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  display: block;
}

/* Rules box — passenger card */
.ref-rules-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 13px 15px;
  margin-bottom: 16px;
}
.ref-rules-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 6px;
}
.ref-rules-text {
  font-size: 12px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
}

/* Card buttons */
.ref-btn-primary {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.18s;
}
.ref-btn-primary:hover { background: var(--blue-deep); }

.ref-btn-outline {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--blue-light);
  border: 1.5px solid var(--blue);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  margin-top: auto;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background 0.18s;
}
.ref-btn-outline:hover { background: rgba(30,144,255,0.08); }

/* ── Milestone strip ─────────────────────────────────────── */
.ref-milestones {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  text-align: center;
  position: relative;
  z-index: 1;
}
.ref-ms-title {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.ref-ms-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 32px;
}

.ref-ms-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

.ref-ms {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.ref-ms-icon {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 4px;
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
  cursor: default;
}
.ref-ms-icon:hover {
  transform: translateY(-5px);
  background: rgba(30,144,255,0.15);
  border-color: rgba(30,144,255,0.35);
}
.ref-ms-icon-legend {
  background: rgba(30,144,255,0.18);
  border-color: rgba(30,144,255,0.40);
  box-shadow: 0 0 22px rgba(30,144,255,0.22);
}

.ref-ms-conn {
  width: 52px;
  flex-shrink: 0;
  margin-bottom: 38px;
  padding: 0 4px;
}

.ref-ms-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-light);
}
.ref-ms-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
}
.ref-ms-bonus {
  font-size: 10px;
  color: rgba(255,255,255,0.40);
  background: rgba(30,144,255,0.10);
  border: 1px solid rgba(30,144,255,0.18);
  border-radius: var(--r-pill);
  padding: 2px 8px;
}

.ref-ms-note {
  font-size: 11px;
  color: rgba(255,255,255,0.26);
  line-height: 1.65;
  margin-top: 24px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .ref-split { grid-template-columns: 1fr; }
  .ref-milestones { padding: 22px 18px; }
  .ref-ms-icon { width: 46px; height: 46px; font-size: 20px; }
  .ref-ms-conn { width: 32px; }
}


/* ============================================================
   SECTION 11 — APP DOWNLOAD
   bg: blue gradient — NO logo (LOGO RULE 5)
============================================================ */
#download {
  padding: var(--sec-v) 0;
  background: var(--grad-blue);
  position: relative;
  overflow: hidden;
}

/* Subtle cross-hatch texture */
#download::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20h20v20H20V20zM0 0h20v20H0V0z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.dl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Content side ────────────────────────────────────────── */
.dl-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--r-md);
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 0.18s, box-shadow 0.18s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  min-width: 160px;
}
.dl-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
  color: var(--black);
}

.dl-btn-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.dl-btn-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.dl-btn-sub  { font-size: 9px;  font-weight: 400; color: var(--text-muted); }
.dl-btn-main { font-size: 15px; font-weight: 800; color: var(--black); }

/* Rating row */
.dl-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.dl-stars       { color: #FDE047; font-size: 14px; letter-spacing: 1px; }
.dl-rating-text { font-size: 13px; color: rgba(255,255,255,0.78); }

/* Feature pills */
.dl-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.dl-pill {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--r-pill);
  padding: 5px 12px;
  white-space: nowrap;
}

/* ── Phone mockups side ──────────────────────────────────── */
.dl-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  height: clamp(360px, 45vw, 480px);
}

.dl-phone {
  width: 190px;
  background: var(--black);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.10);
  box-shadow: 0 32px 72px rgba(0,0,0,0.45);
  overflow: hidden;
  position: absolute;
}

/* Back phone — slightly rotated left, behind */
.dl-phone-back {
  transform: rotate(-7deg) translateX(-30px) translateY(20px);
  z-index: 1;
  animation: floatUp 4s ease-in-out infinite;
}

/* Front phone — slight right rotation, in front */
.dl-phone-front {
  transform: rotate(4deg) translateX(30px);
  z-index: 2;
  animation: floatDown 3.5s ease-in-out infinite;
}

.dl-screen {
  padding: 16px 12px 20px;
  background: #0a1628;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 300px;
}

.dl-screen-hdr {
  font-size: 10px;
  font-weight: 700;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

/* Route row with dots and dashed line */
.dl-route-row {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}
.dl-route-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dl-dot-green  { background: #16A34A; }
.dl-dot-orange { background: #F59E0B; }
.dl-route-line-dashed {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue) 0, var(--blue) 5px,
    transparent 5px, transparent 9px
  );
  opacity: 0.5;
}

/* Cards inside phone */
.dl-card {
  background: rgba(255,255,255,0.07);
  border-radius: 9px;
  padding: 9px 10px;
}
.dl-card-lbl {
  font-size: 8px;
  color: rgba(255,255,255,0.38);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.dl-card-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.dl-card-fare { background: rgba(30,144,255,0.12); }
.dl-fare-val  { font-size: 16px; color: var(--blue-light); }

.dl-card-eta  { background: rgba(30,144,255,0.14); }
.dl-eta-val   { color: var(--blue-light); }

/* SOS bar */
.dl-sos-bar {
  background: #EF4444;
  border-radius: 9px;
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .dl-inner { grid-template-columns: 1fr; }
  .dl-phones { display: none; }
  .dl-btns  { flex-direction: column; }
  .dl-btn   { width: 100%; }
}


/* ============================================================
   SECTION 12 — FOOTER
   bg: #0B1F3B (navy)
   Logo: logo_dark.png — Dark Inverse Chrome (LOGO RULE 4)
   Links: #BBD0FF — hover white
============================================================ */
#footer {
  background: var(--navy);
  padding-top: 0;
  position: relative;
}

/* Dashed road line at top — brand motif */
.footer-road {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 0;
}

/* ── Main grid ───────────────────────────────────────────── */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(40px, 5vw, 56px);
}

/* ── Brand column ────────────────────────────────────────── */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 18px;
}

/* Dark Inverse Chrome logo (LOGO RULE 4) */
.footer-logo {
  height: clamp(32px, 4vw, 46px);
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.72;
  margin-bottom: 22px;
  max-width: 280px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-soc {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none;
}
.footer-soc:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.footer-nigerian {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  letter-spacing: 0.02em;
}

/* ── Nav columns ─────────────────────────────────────────── */
.footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Link colour: #BBD0FF as per spec, hover white */
.footer-col ul li a {
  font-size: 14px;
  color: #BBD0FF;
  transition: color 0.20s, padding-left 0.20s;
  line-height: 1.4;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

/* ── Divider ─────────────────────────────────────────────── */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

/* ── Bottom bar ──────────────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.01em;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.72); }

.footer-support {
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}
.footer-support a {
  color: #BBD0FF;
  transition: color 0.2s;
}
.footer-support a:hover { color: var(--white); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

