/* Snap Rides — Bolt-inspired redesign
   Brand: Emerald #0D5E48 | Graphite #1B1D22 | Ivory #F4F1EA | Gold #C49A5E | Mint #BFE0D5
*/

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

:root {
  --emerald:      #0D5E48;
  --emerald-mid:  #0A4D3B;
  --emerald-dark: #073328;
  --emerald-tint: #EAF4F0;
  --graphite:     #1B1D22;
  --graphite-mid: #252A2F;
  --ivory:        #F5F2EB;
  --gold:         #C49A5E;
  --mint:         #BFE0D5;
  --white:        #FFFFFF;
  --text-head:    #0D0F12;
  --text-body:    #3D4350;
  --text-muted:   #7A8490;
  --border:       #E4E1DA;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;
  --nav-h:        68px;
  --max-w:        1180px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 200;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 5%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-head);
  text-decoration: none;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.nav-logo em {
  font-style: normal;
  color: var(--emerald);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--text-head); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--emerald);
  color: var(--white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--emerald-mid); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 5% 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-text { max-width: 560px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--emerald-tint);
  color: var(--emerald);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text-head);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--emerald);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-dark {
  background: var(--graphite);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,29,34,0.2);
}
.btn-dark:hover { box-shadow: 0 8px 28px rgba(27,29,34,0.3); }

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  cursor: default;
}
.btn-outline:hover { transform: none; }

.btn-soon {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.6;
  font-style: italic;
  letter-spacing: 0;
}

/* ─── HERO VISUAL ─── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.hero-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(13,94,72,0.18) 0%, rgba(13,94,72,0.04) 55%, transparent 75%);
  pointer-events: none;
}

.hero-phone {
  position: relative;
  width: 256px;
  background: var(--graphite);
  border-radius: 36px;
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 50px 100px rgba(13,29,34,0.28),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0 1px rgba(255,255,255,0.04);
  z-index: 2;
}

.phone-map {
  width: 100%;
  height: 220px;
  background:
    linear-gradient(160deg, rgba(13,94,72,0.35) 0%, rgba(13,94,72,0.1) 40%, rgba(27,29,34,0.6) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.03) 28px, rgba(255,255,255,0.03) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(255,255,255,0.03) 28px, rgba(255,255,255,0.03) 29px),
    var(--graphite-mid);
  position: relative;
}

.phone-map-pin {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--emerald);
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(-45deg);
  box-shadow: 0 4px 12px rgba(13,94,72,0.5);
}
.phone-map-pin::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
}

.phone-body {
  padding: 1.25rem 1.25rem 1.75rem;
}

.phone-route {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.1rem;
}

.phone-stop {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  position: relative;
}

.phone-stop + .phone-stop::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 7px;
  width: 2px;
  height: 10px;
  background: rgba(255,255,255,0.15);
}

.stop-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stop-dot.pickup { background: var(--mint); box-shadow: 0 0 0 3px rgba(191,224,213,0.2); }
.stop-dot.dropoff { background: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,94,0.2); }

.stop-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.phone-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0.75rem 0;
}

.phone-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-type {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.phone-fare {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.phone-cta-btn {
  width: 100%;
  background: var(--emerald);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 1rem;
  cursor: default;
  letter-spacing: -0.01em;
}

/* Floating badges */
.hero-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 0 0 1px var(--border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
}

.badge-left {
  left: -24px;
  top: 50%;
  transform: translateY(-30%);
}

.badge-right {
  right: -20px;
  top: 28%;
}

.badge-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--emerald-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.badge-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.badge-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── SECTION BASE ─── */
.section {
  padding: 6rem 0;
}
.section-sm { padding: 4.5rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 0.75rem;
}

.section-head {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-head);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 480px;
  line-height: 1.7;
}

/* ─── FLEET SECTION ─── */
.fleet { background: var(--white); }

.fleet-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.fleet-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.fleet-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: border-color 0.2s;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,94,72,0.1);
}

.fleet-card:hover::after {
  border-color: rgba(13,94,72,0.25);
}

.fleet-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.fleet-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.fleet-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── HOW IT WORKS — dark emerald section ─── */
.how {
  background: var(--emerald);
  color: var(--white);
}

.how .section-label { color: rgba(255,255,255,0.5); }
.how .section-head { color: var(--white); }
.how .section-sub { color: rgba(255,255,255,0.7); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 14px);
  right: calc(16.66% + 14px);
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ─── PAYMENT SECTION ─── */
.payment { background: var(--ivory); }

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.pay-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pay-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}

.pay-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--emerald-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.pay-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.pay-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pay-note-bar {
  margin-top: 1.5rem;
  background: var(--emerald-tint);
  border: 1px solid rgba(13,94,72,0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  font-size: 0.88rem;
  color: var(--emerald);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pay-note-bar::before {
  content: '✓';
  font-weight: 800;
}

/* ─── SAFETY SECTION ─── */
.safety { background: var(--white); }

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 1rem;
}

.safety-text .section-sub { margin-bottom: 2.5rem; }

.safety-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.safety-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.safety-bullet {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--emerald-tint);
  border: 1.5px solid rgba(13,94,72,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--emerald);
  font-size: 0.75rem;
  font-weight: 800;
}

.safety-item-head {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.safety-item-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Safety visual panel */
.safety-visual {
  background: var(--graphite);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.safety-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,94,72,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.safety-stat {
  position: relative;
  z-index: 1;
}

.safety-stat + .safety-stat {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ─── DRIVER CTA SECTION ─── */
.driver-cta {
  background: var(--graphite);
  padding: 6rem 0;
}

.driver-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.driver-cta .section-label { color: rgba(255,255,255,0.4); }
.driver-cta .section-head { color: var(--white); }

.driver-cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.btn-white {
  background: var(--white);
  color: var(--graphite);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-white:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

.driver-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.driver-perk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
}

.perk-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
.footer {
  background: #13161A;
  padding: 4rem 0 2.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.footer-brand-logo em { font-style: normal; color: var(--gold); }

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  max-width: 220px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.15s, color 0.15s;
}
.social-btn:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ─── INNER PAGES (Privacy / Terms / Support) ─── */
.page-wrapper {
  min-height: 100vh;
  background: var(--ivory);
  padding: calc(var(--nav-h) + 3.5rem) 5% 5rem;
  display: flex;
  justify-content: center;
}

.page-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  max-width: 780px;
  width: 100%;
  height: fit-content;
}

.page-content h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-head);
  margin-bottom: 0.4rem;
}

.page-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-content h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--emerald);
  margin: 2.25rem 0 0.6rem;
  letter-spacing: -0.01em;
}

.page-content p {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.78;
  margin-bottom: 0.75rem;
}

.page-content ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
}
.page-content ul li {
  font-size: 0.93rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

.page-content a { color: var(--emerald); }

.contact-block {
  background: var(--emerald-tint);
  border: 1px solid rgba(13,94,72,0.18);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.contact-block p { margin: 0; }
.contact-block strong { display: block; color: var(--text-head); font-weight: 700; margin-bottom: 0.5rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-q { font-weight: 700; color: var(--text-head); font-size: 0.95rem; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
.faq-a { font-size: 0.9rem; color: var(--text-body); line-height: 1.65; margin: 0; }

.emergency-box {
  background: #FFF8EC;
  border: 1.5px solid #E8B84B;
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: 2.5rem;
}
.emergency-box h2 { color: #7A4F00 !important; margin-top: 0 !important; }
.emergency-box p { color: #5C3A00; }
.emergency-box strong { color: #3D2600; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .fleet-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 5% 3rem;
  }
  .hero-visual { display: none; }
  .hero-text { max-width: 100%; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .fleet-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .payment-grid { grid-template-columns: 1fr; }

  .safety-grid { grid-template-columns: 1fr; }
  .safety-visual { display: none; }

  .driver-cta-inner { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .page-content { padding: 2.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
}
