/* ================================================================
   MWAMBA TAXI — Design System v2
   Font    : Inter (Google Fonts)
   Yellow  : #FFC107  |  Black : #0A0A0A
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0A0A0A;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Tokens ─────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --dark-1:      #111111;
  --dark-2:      #161616;
  --dark-3:      #1E1E1E;
  --dark-4:      #262626;
  --border:      rgba(255,255,255,0.08);
  --yellow:      #FFC107;
  --yellow-tint: rgba(255,193,7,0.10);
  --white:       #FFFFFF;
  --muted:       rgba(255,255,255,0.48);
  --r:           10px;
  --r-lg:        18px;
  --r-xl:        24px;
  --r-full:      9999px;
  --nav-h:       70px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; }
h1 { font-size: clamp(38px, 5.5vw, 68px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(17px, 1.8vw, 21px); }
em { font-style: normal; color: var(--yellow); }

/* ── Layout ─────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(18px, 5vw, 60px); }
.section    { padding: clamp(72px, 9vw, 120px) 0; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
  padding: 13px 24px; border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: opacity .15s, transform .15s, box-shadow .15s;
  text-decoration: none; line-height: 1;
}
.btn:hover  { opacity: .86; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary     { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.btn-black       { background: var(--black);  color: var(--white); border-color: var(--black); }
.btn-white       { background: var(--white);  color: var(--black); border-color: var(--white); }
.btn-dark        { background: var(--dark-3); color: var(--white); border-color: rgba(255,255,255,.1); }
.btn-dark:hover  { background: var(--dark-4); border-color: rgba(255,255,255,.22); opacity: 1; }
.btn-outline     { background: transparent;   color: var(--white); border-color: rgba(255,255,255,.22); }
.btn-outline:hover { border-color: rgba(255,255,255,.5); opacity: 1; }
.btn-outline-dark { background: transparent; color: var(--black); border-color: rgba(0,0,0,.22); }
.btn-lg  { padding: 16px 30px; font-size: 16px; }
.btn-sm  { padding: 9px 18px;  font-size: 14px; }

/* ── Nav ────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .25s, box-shadow .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.nav-inner {
  display: flex; align-items: center; width: 100%;
}
.nav-logo {
  display: flex; align-items: center;
  margin-right: auto; flex-shrink: 0;
  background: #fff;
  padding: 4px 8px;
  border-radius: 8px;
}
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 2px; margin: 0 28px;
}
.nav-link {
  padding: 7px 13px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer; margin-left: 12px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all .3s var(--ease); transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--dark-1);
  padding: calc(var(--nav-h) + 16px) 24px 40px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link {
  font-size: 19px; font-weight: 600; padding: 15px 10px;
  color: var(--white); border-bottom: 1px solid var(--border);
}
.mobile-menu-footer {
  margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 28px;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero-vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.65;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to right, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 55%, rgba(10,10,10,0.25) 100%),
    radial-gradient(ellipse 70% 50% at 65% 10%, rgba(255,193,7,.10) 0%, transparent 60%);
}
.hero > .container { position: relative; z-index: 2; }
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 0%, rgba(255,193,7,.10) 0%, transparent 65%);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: clamp(48px,8vh,96px) 0;
  width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 22px;
}
.hero-eyebrow-dash {
  width: 24px; height: 2px; background: var(--yellow); border-radius: 2px; flex-shrink: 0;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px); color: var(--muted);
  line-height: 1.7; margin: 20px 0 36px; max-width: 480px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px;
}

/* Store badges in hero */
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--r); padding: 10px 16px;
  transition: border-color .2s, transform .2s;
  cursor: pointer;
}
.store-badge:hover { border-color: rgba(255,255,255,.28); transform: translateY(-2px); }
.store-badge-txt   { display: flex; flex-direction: column; }
.store-badge-sub   { font-size: 10px; color: var(--muted); font-weight: 500; }
.store-badge-name  { font-size: 14px; font-weight: 700; letter-spacing: -.01em; }

/* Phone frame (hero visual) */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-glow {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,193,7,.18) 0%, transparent 70%);
  pointer-events: none;
}
.phone-frame {
  position: relative; width: 248px;
  background: #111;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 40px 80px rgba(0,0,0,.65);
  flex-shrink: 0;
}
.phone-frame img {
  width: 100%; border-radius: 34px; display: block;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #111; border-radius: 0 0 18px 18px; z-index: 2;
}

/* ── Stats bar ───────────────────────────────────────── */
.stats-bar {
  background: var(--dark-1);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
}
.stat-item   { background: var(--dark-1); padding: 34px 28px; }
.stat-val    { font-size: 40px; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.stat-val b  { color: var(--yellow); font-weight: inherit; }
.stat-sup    { font-size: .55em; vertical-align: super; color: var(--yellow); }
.stat-lbl    { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Section header ──────────────────────────────────── */
.sec-header         { margin-bottom: 52px; }
.sec-header.center  { text-align: center; }
.sec-header.center .sec-sub { margin-left: auto; margin-right: auto; }
.sec-tag   { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.sec-title { margin-bottom: 14px; }
.sec-sub   { font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 520px; }

/* ── Feature grid ────────────────────────────────────── */
.feat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
}
.feat-cell {
  background: var(--dark-1); padding: 36px 30px;
  transition: background .2s;
}
.feat-cell:hover { background: var(--dark-2); }
.feat-ico  { color: var(--yellow); margin-bottom: 18px; }
.feat-cell h3 { font-size: 16px; font-weight: 600; margin-bottom: 9px; }
.feat-cell p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── How it works ────────────────────────────────────── */
.hiw-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; margin-top: 56px;
}
.hiw-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.hiw-step p  { font-size: 14px; color: var(--muted); line-height: 1.65; }
.hiw-n {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 16px;
}

/* ── Testimonials ────────────────────────────────────── */
.testi-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.testi-card {
  padding: 28px 26px; background: var(--dark-1);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.testi-card:hover { border-color: rgba(255,193,7,.3); transform: translateY(-4px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-star  { color: var(--yellow); }
.testi-text  {
  font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.7;
  margin-bottom: 20px; flex: 1;
}
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--black); flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── CTA sections ────────────────────────────────────── */
.cta-dark   { background: var(--dark-1); padding: 96px 0; }
.cta-yellow { background: var(--yellow); padding: 96px 0; color: var(--black); }
.cta-split  { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.cta-split-inner { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; width: 100%; }
.cta-split h2, .cta-split-inner h2 { line-height: 1.1; }
.cta-split .sub  { font-size: 16px; margin-top: 12px; opacity: .62; }
.cta-btns { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ── App CTA ─────────────────────────────────────────── */
.app-cta {
  background: var(--black); padding: 96px 0; text-align: center;
  border-top: 1px solid var(--border);
}
.app-cta h2       { margin-bottom: 12px; }
.app-cta p        { font-size: 17px; color: var(--muted); max-width: 460px; margin: 0 auto 36px; line-height: 1.65; }
.app-cta .sec-tag { margin-bottom: 16px; }
.app-cta-badges   { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Page header (inner pages) ───────────────────────── */
.page-header {
  min-height: 46vh; display: flex; align-items: center;
  padding-top: var(--nav-h); text-align: center; position: relative;
}
.page-header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255,193,7,.12), transparent 65%);
}
.page-header .container { position: relative; }
.page-header h1 { margin-bottom: 18px; }
.page-header p  {
  font-size: clamp(16px, 1.8vw, 19px); color: var(--muted);
  max-width: 540px; margin: 0 auto; line-height: 1.75;
}

/* ── Two-col layout ──────────────────────────────────── */
.two-col      { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.col-tag   { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--yellow); margin-bottom: 14px; }
.col-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 18px; }
.col-body  { font-size: 16px; color: var(--muted); line-height: 1.75; }
.col-quote {
  font-size: 16px; font-weight: 600; line-height: 1.55;
  border-left: 3px solid var(--yellow); padding-left: 18px;
  margin: 22px 0; color: rgba(255,255,255,.8);
}
.ydash { width: 36px; height: 2px; background: var(--yellow); border-radius: 2px; margin: 18px 0; }

/* ── Step list ───────────────────────────────────────── */
.step-list { display: flex; flex-direction: column; }
.step-item {
  display: flex; gap: 20px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-n {
  font-size: 11px; font-weight: 700; color: var(--yellow);
  letter-spacing: .05em; min-width: 32px; padding-top: 3px; flex-shrink: 0;
}
.step-item h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.step-item p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Pricing ─────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 56px;
}
.pricing-card {
  background: var(--dark-1); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.pricing-card:hover { border-color: rgba(255,193,7,.3); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--yellow);
  background: linear-gradient(145deg, rgba(255,193,7,.07), var(--dark-1) 60%);
  transform: scale(1.02);
}
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.p-tier  { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--yellow); margin-bottom: 10px; }
.pricing-card.featured .p-tier { color: var(--yellow); }
.p-name  { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.p-price { font-size: 38px; font-weight: 800; letter-spacing: -.04em; line-height: 1; margin-bottom: 4px; }
.p-price span { font-size: 14px; font-weight: 500; letter-spacing: 0; }
.p-desc  { font-size: 13px; color: var(--muted); margin-bottom: 22px; line-height: 1.5; }
.p-list  { display: flex; flex-direction: column; gap: 10px; }
.p-list li { font-size: 14px; color: rgba(255,255,255,.65); display: flex; gap: 10px; align-items: flex-start; }
.pricing-card.featured .p-list li { color: rgba(255,255,255,.8); }
.p-check { flex-shrink: 0; margin-top: 1px; color: var(--yellow); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 22px 0; font-size: 16px; font-weight: 600;
  cursor: pointer; user-select: none; transition: color .2s; width: 100%;
  background: none; border: none; color: inherit; font-family: inherit; text-align: left;
}
.faq-q:hover { color: var(--yellow); }
.faq-icon { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  font-size: 15px; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }

/* ── Info cards (3-col, 2-col) ───────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.info-card {
  background: var(--dark-1); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.info-card:hover { border-color: rgba(255,193,7,.28); transform: translateY(-4px); }
.info-card-ico {
  color: var(--yellow); margin-bottom: 18px;
}
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.info-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── Values grid ─────────────────────────────────────── */
.values-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden;
  margin-top: 52px;
}
.val-item    { background: var(--dark-1); padding: 36px 28px; }
.val-item:hover { background: var(--dark-2); }
.val-ico     { color: var(--yellow); margin-bottom: 16px; }
.val-item h3 { font-size: 16px; font-weight: 600; margin-bottom: 9px; }
.val-item p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Cities grid ─────────────────────────────────────── */
.cities-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px;
}
.city-card   {
  padding: 30px 26px; background: var(--dark-1);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  transition: border-color .2s;
}
.city-card:hover { border-color: rgba(255,193,7,.28); }
.city-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.city-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.city-status {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-full);
  background: var(--dark-3); color: var(--muted); margin-bottom: 12px;
}
.city-status.active { background: rgba(255,193,7,.15); color: var(--yellow); }

/* ── Earnings calculator ─────────────────────────────── */
.calc-box   { background: var(--dark-1); border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; }
.calc-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.calc-lbl   { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; display: block; }
.calc-sel   {
  width: 100%; padding: 10px 14px; border-radius: var(--r);
  background: var(--dark-3); border: 1px solid var(--border);
  color: var(--white); font-family: inherit; font-size: 15px;
}
.calc-result {
  padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border); padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}
.footer-brand img     { height: 30px; width: auto; background: #fff; padding: 3px 6px; border-radius: 6px; }
.footer-tagline       { font-size: 13px; color: rgba(255,255,255,.32); line-height: 1.65; max-width: 220px; margin-top: 12px; }
.footer-col h4        { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 18px; }
.footer-links         { display: flex; flex-direction: column; gap: 10px; }
.footer-links a       { font-size: 14px; color: rgba(255,255,255,.52); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.26); flex-wrap: wrap; gap: 12px;
}

/* ── Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .10s; }
.delay-2 { transition-delay: .20s; }
.delay-3 { transition-delay: .30s; }
.delay-4 { transition-delay: .40s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner       { grid-template-columns: 1fr; text-align: center; }
  .hero-sub         { margin-left: auto; margin-right: auto; }
  .hero-actions     { justify-content: center; }
  .store-badges     { justify-content: center; }
  .hero-visual      { display: none; }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .feat-grid        { grid-template-columns: repeat(2,1fr); }
  .hiw-grid         { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .testi-grid       { grid-template-columns: 1fr; gap: 12px; }
  .values-grid      { grid-template-columns: repeat(2,1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 40px; }
  .two-col, .two-col.flip { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .cta-split, .cta-split-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-btns         { flex-direction: row; align-items: center; justify-content: center; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .section, .cta-dark, .cta-yellow, .app-cta { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid    { grid-template-columns: repeat(2,1fr); }
  .feat-grid     { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .cards-3, .cards-2 { grid-template-columns: 1fr; }
  .cities-grid   { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-btns      { flex-direction: column; width: 100%; }
  .cta-btns .btn { justify-content: center; }
  .stat-item     { padding: 24px 18px; }
  .stat-val      { font-size: 30px; }
  .calc-row      { grid-template-columns: 1fr; }
}
