:root {
  --green: #087a43;
  --green-dark: #075d35;
  --green-deep: #063b25;
  --green-soft: #e9f2ed;
  --green-mist: #f4f7f5;
  --green-line: #cbded3;
  --yellow: #f2bc22;
  --yellow-dark: #dca80d;
  --yellow-soft: #fff6d9;
  --white: #fff;
  --off-white: #f7f8f6;
  --ink: #14221b;
  --text: #33433a;
  --muted: #66746c;
  --line: #dfe5e1;
  --danger: #b3261e;
  --ff-head: "Manrope", "Segoe UI", sans-serif;
  --ff-body: "DM Sans", "Segoe UI", sans-serif;
  --maxw: 1240px;
  --maxw-narrow: 880px;
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 8px;
  --radius-xl: 8px;
  --shadow-sm: 0 1px 2px rgba(10, 35, 22, .08);
  --shadow: 0 10px 30px rgba(10, 35, 22, .09);
  --shadow-lg: 0 22px 55px rgba(10, 35, 22, .14);
  --ring: 0 0 0 3px rgba(8, 122, 67, .16);
  --grad-green: var(--green);
  --grad-hero: var(--green-deep);
  --t: .2s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
h1, h2, h3, h4, h5 {
  color: var(--ink);
  font-family: var(--ff-head);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.12;
}
h1 { font-size: clamp(2.65rem, 5.7vw, 5.3rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3.25rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text); }
a { color: var(--green-dark); text-decoration: none; transition: color var(--t), background var(--t), border-color var(--t); }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.container { margin: 0 auto; max-width: var(--maxw); padding: 0 28px; width: 100%; }
.container.narrow { max-width: var(--maxw-narrow); }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section.tight { padding: clamp(48px, 6vw, 80px) 0; }
.center { text-align: center; }
.bg-soft, .bg-paper { background: var(--off-white); }
.bg-green { background: var(--green-deep); color: var(--white); padding: 64px 0; }
.grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.kicker, .eyebrow {
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--green-dark);
  display: block;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 0;
  text-transform: uppercase;
}
.kicker-light, .eyebrow.light { color: #d5e9dc; }
.eyebrow.yellow { color: #755900; }
.section-head { margin: 0 auto 48px; max-width: 680px; }
.section-head.left { margin-left: 0; }
.section-head h2, .section-head h1 { margin-top: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; margin-top: 16px; }
.section-intro {
  align-items: end;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
  margin-bottom: 56px;
}
.section-intro h2 { margin-top: 14px; max-width: 720px; }
.section-intro > p { color: var(--muted); max-width: 520px; }

.btn {
  align-items: center;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--radius-sm);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--ff-head);
  font-size: .94rem;
  font-weight: 700;
  gap: 10px;
  justify-content: center;
  line-height: 1;
  min-height: 48px;
  padding: 14px 22px;
  transition: background var(--t), border-color var(--t), transform var(--t);
}
.btn:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); transform: translateY(-1px); }
.btn:focus-visible { box-shadow: var(--ring); outline: none; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-yellow, .btn-accent { background: var(--yellow); border-color: var(--yellow); color: #292000; }
.btn-yellow:hover, .btn-accent:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); color: #292000; }
.btn-light { background: var(--white); border-color: var(--white); color: var(--green-dark); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green-dark); }
.btn-outline:hover { background: var(--green); color: var(--white); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); border-color: var(--white); color: var(--green-deep); }
.btn-lg { min-height: 54px; padding: 17px 27px; }
.btn-block { width: 100%; }
.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  color: var(--green-dark);
  display: inline-flex;
  font-family: var(--ff-head);
  font-weight: 700;
  gap: 18px;
  padding-bottom: 3px;
}
.text-link:hover { color: var(--green); }
.text-link-light { color: var(--white); }

.site-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  transition: box-shadow var(--t);
  z-index: 100;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { align-items: center; display: flex; gap: 28px; height: 88px; justify-content: space-between; }
.brand { align-items: center; display: inline-flex; flex: 0 0 auto; }
.brand img { height: 76px; width: 76px; }
.nav-links { align-items: center; display: flex; gap: 32px; }
.nav-links a {
  color: var(--text);
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 600;
  padding: 26px 0 24px;
  position: relative;
}
.nav-links a::after {
  background: var(--green);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t);
  width: 100%;
}
.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { align-items: center; display: flex; gap: 18px; }
.lang { color: var(--muted); font-size: .8rem; font-weight: 700; }
.btn-nav { min-height: 42px; padding: 12px 18px; }
.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 42px;
  place-items: center;
  width: 42px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  background: var(--ink);
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: var(--t);
  width: 22px;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.hero-home {
  color: var(--white);
  min-height: min(760px, calc(100vh - 88px));
  overflow: hidden;
  position: relative;
}
.hero-photo, .hero-shade { inset: 0; position: absolute; }
.hero-photo {
  background-image: url("../assets/amana-fleet.jpeg");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero-shade { background: linear-gradient(90deg, rgba(5,28,17,.92) 0%, rgba(5,28,17,.72) 46%, rgba(5,28,17,.14) 76%); }
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(760px, calc(100vh - 88px));
  padding-bottom: 70px;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
.hero-content h1 { color: var(--white); margin-top: 20px; max-width: 780px; }
.hero-content .lead { color: rgba(255,255,255,.86); font-size: 1.2rem; margin-top: 24px; max-width: 620px; }
.hero-actions { align-items: center; display: flex; gap: 30px; margin-top: 36px; }
.hero-proof {
  border-top: 1px solid rgba(255,255,255,.28);
  display: flex;
  gap: 44px;
  margin-top: 70px;
  max-width: 720px;
  padding-top: 20px;
}
.hero-proof span {
  color: rgba(255,255,255,.78);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.booking-band { background: var(--white); border-bottom: 1px solid var(--line); }
.booking-panel {
  align-items: end;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 1.05fr 1fr 1fr auto;
  padding: 36px 0 28px;
}
.booking-heading h2 { font-size: 1.5rem; margin-top: 8px; }
.booking-field > span {
  color: var(--muted);
  display: block;
  font-size: .74rem;
  font-weight: 700;
  margin-bottom: 7px;
  text-transform: uppercase;
}
.booking-field input {
  border: 1px solid #cfd8d2;
  border-radius: var(--radius-sm);
  color: var(--ink);
  height: 50px;
  outline: 0;
  padding: 0 15px;
  width: 100%;
}
.booking-field input:focus { border-color: var(--green); box-shadow: var(--ring); }
.booking-submit { height: 50px; white-space: nowrap; }
.ride-selector { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(270px, 1.25fr); }
.ride-type {
  align-items: start;
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  display: grid;
  grid-template-columns: 38px 1fr;
  min-height: 100px;
  padding: 22px;
  text-align: left;
}
.ride-type:first-child { border-left: 1px solid var(--line); }
.ride-type:hover { background: var(--green-mist); }
.ride-type.sel { background: var(--green-soft); box-shadow: inset 0 -3px var(--green); }
.service-code {
  align-items: center;
  border: 1px solid var(--green);
  color: var(--green-dark);
  display: inline-flex;
  font-size: .64rem;
  font-weight: 700;
  grid-row: 1 / 3;
  height: 28px;
  justify-content: center;
  letter-spacing: .04em;
  width: 28px;
}
.ride-type .nm { color: var(--ink); font-family: var(--ff-head); font-size: .95rem; font-weight: 700; }
.ride-type .pr { color: var(--muted); font-size: .8rem; line-height: 1.35; }
.fare-summary {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 100px;
  padding: 22px 0 22px 28px;
}
.fare-summary .lab { color: var(--muted); display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.fare-summary .eta { color: var(--muted); display: block; font-size: .8rem; margin-top: 3px; }
.fare-summary .amt { color: var(--ink); font-family: var(--ff-head); font-size: 1.05rem; margin-left: 16px; white-space: nowrap; }

.service-section { background: var(--white); }
.service-list { border-top: 1px solid var(--ink); }
.service-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 54px minmax(260px, 1fr) 220px 70px;
  padding: 28px 0;
}
.service-row:hover { background: var(--off-white); }
.service-index { color: var(--muted); font-size: .75rem; font-weight: 700; }
.service-row h3 { font-size: 1.2rem; }
.service-row p { color: var(--muted); margin-top: 5px; max-width: 600px; }
.service-meta { color: var(--muted); font-size: .85rem; }
.service-row > a { font-family: var(--ff-head); font-size: .85rem; font-weight: 700; text-align: right; }

.evidence-section { background: var(--off-white); }
.evidence-grid { align-items: center; display: grid; gap: clamp(42px, 7vw, 96px); grid-template-columns: 1.2fr .8fr; }
.evidence-main img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.evidence-main figcaption { color: var(--muted); font-size: .78rem; margin-top: 10px; }
.evidence-copy h2 { margin-top: 16px; }
.evidence-copy > p:not(.kicker) { color: var(--muted); font-size: 1.05rem; margin-top: 22px; }
.evidence-points { border-top: 1px solid var(--line); margin: 34px 0; }
.evidence-points > div { border-bottom: 1px solid var(--line); display: grid; gap: 20px; grid-template-columns: 100px 1fr; padding: 18px 0; }
.evidence-points dt { color: var(--ink); font-family: var(--ff-head); font-weight: 700; }
.evidence-points dd { color: var(--muted); }

.metrics { background: var(--green-deep); color: var(--white); padding: 68px 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metrics-grid > div { border-left: 1px solid rgba(255,255,255,.22); padding: 0 48px; }
.metrics-grid > div:first-child { border-left: 0; padding-left: 0; }
.metrics-grid strong { color: var(--yellow); display: block; font-family: var(--ff-head); font-size: clamp(2.5rem, 5vw, 4.2rem); font-weight: 600; line-height: 1; }
.metrics-grid span { color: rgba(255,255,255,.72); display: block; margin-top: 12px; max-width: 210px; }

.how-section { background: var(--white); }
.process-grid { border-top: 1px solid var(--ink); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; }
.process-grid li { border-right: 1px solid var(--line); min-height: 250px; padding: 32px 44px 20px 0; }
.process-grid li + li { padding-left: 44px; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { color: var(--green); font-family: var(--ff-head); font-size: .75rem; font-weight: 700; }
.process-grid h3 { margin-top: 56px; }
.process-grid p { color: var(--muted); margin-top: 10px; }

.driver-callout { min-height: 620px; overflow: hidden; position: relative; }
.driver-photo {
  background-image: linear-gradient(90deg, rgba(6,35,22,.9), rgba(6,35,22,.55) 52%, rgba(6,35,22,.06)), url("../assets/amana-driver.jpeg");
  background-position: center 40%;
  background-size: cover;
  inset: 0;
  position: absolute;
}
.driver-inner { align-items: center; display: flex; min-height: 620px; position: relative; }
.driver-copy { max-width: 560px; }
.driver-copy h2 { color: var(--white); margin-top: 16px; }
.driver-copy > p:not(.kicker) { color: rgba(255,255,255,.8); font-size: 1.08rem; margin: 22px 0 30px; }

.faq-layout { align-items: start; display: grid; gap: 80px; grid-template-columns: .7fr 1.3fr; }
.faq-layout h2 { margin-top: 14px; }
.faq-layout > div:first-child > p:not(.kicker) { color: var(--muted); margin: 16px 0 24px; }
.faq { border-top: 1px solid var(--ink); }
.faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.faq summary {
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-family: var(--ff-head);
  font-size: 1.02rem;
  font-weight: 700;
  gap: 18px;
  justify-content: space-between;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { color: var(--green); font-size: 1.35rem; font-weight: 400; transition: transform var(--t); }
.faq details[open] .plus { transform: rotate(45deg); }
.faq details p { color: var(--muted); max-width: 680px; padding: 14px 48px 0 0; }

.card, .svc-card, .testi {
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 30px;
}
.card p, .svc-card p, .testi p { color: var(--muted); margin-top: 10px; }
.ic-box, .glyph {
  align-items: center;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  border-radius: 0;
  color: var(--green-dark);
  display: flex;
  font-family: var(--ff-head);
  font-size: .75rem;
  font-weight: 700;
  height: 38px;
  justify-content: center;
  margin-bottom: 18px;
  width: 38px;
}
.ic-box.yellow, .glyph.amber { background: var(--yellow-soft); border-color: #eadba9; color: #6b5200; }
.svc-card .top { display: flex; justify-content: space-between; }
.svc-card .body { margin-top: 18px; }
.price-tag { color: var(--green-dark); font-weight: 700; text-align: right; }
.price-tag small { color: var(--muted); display: block; font-size: .7rem; font-weight: 400; }
.specs { color: var(--muted); display: flex; flex-wrap: wrap; font-size: .8rem; gap: 12px; margin-top: 18px; }
.specs .d { background: var(--green); display: inline-block; height: 5px; margin-right: 5px; width: 5px; }

.page-hero {
  background: var(--green-deep);
  border-bottom: 0;
  color: var(--white);
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0;
  position: relative;
}
.page-hero::after { display: none; }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4.7rem); margin-top: 16px; max-width: 900px; }
.page-hero .lead { color: rgba(255,255,255,.76); font-size: 1.12rem; margin-top: 20px; max-width: 700px; }
.page-hero .eyebrow { color: #b9d8c6; }
.breadcrumb { color: rgba(255,255,255,.5); display: flex; font-size: .8rem; gap: 8px; margin-bottom: 28px; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.split { align-items: center; display: grid; gap: clamp(42px, 7vw, 94px); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.split.reverse .split-media { order: 2; }
.split-copy > p { color: var(--muted) !important; }
.media-frame { aspect-ratio: 4 / 3; background: var(--off-white); border: 0; border-radius: 0; box-shadow: none; overflow: hidden; position: relative; }
.media-frame .illus { inset: 0; position: absolute; }
.feature-list { border-top: 1px solid var(--line); margin-top: 28px; }
.feature-list li { border-bottom: 1px solid var(--line); display: flex; gap: 16px; padding: 18px 0; }
.feature-list .tick {
  align-items: center;
  background: var(--green);
  border-radius: 0;
  color: var(--white);
  display: flex;
  flex: 0 0 auto;
  font-size: .72rem;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.feature-list h4 { font-size: 1rem; }
.feature-list p { color: var(--muted); font-size: .92rem; margin-top: 3px; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step { border-top: 1px solid var(--ink); counter-increment: step; padding: 30px 36px 20px 0; position: relative; }
.step + .step { border-left: 1px solid var(--line); padding-left: 36px; }
.step::after { display: none; }
.step .num {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--green);
  display: flex;
  font-size: .75rem;
  height: auto;
  justify-content: start;
  margin: 0 0 46px;
  width: auto;
}
.step .num::before { content: "0" counter(step); }
.step p { color: var(--muted); margin-top: 8px; }
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-band .item { border-left: 1px solid rgba(255,255,255,.2); padding: 10px 30px; text-align: left; }
.stat-band .item:first-child { border-left: 0; }
.stat-band .num { color: var(--white); font-family: var(--ff-head); font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 600; }
.stat-band .suf { color: var(--yellow); }
.stat-band .lbl { color: rgba(255,255,255,.7); font-size: .9rem; margin-top: 8px; }

.cta-banner {
  background: var(--green-deep);
  border-radius: 0;
  box-shadow: none;
  color: var(--white);
  overflow: hidden;
  padding: clamp(48px, 7vw, 84px);
  position: relative;
  text-align: left;
}
.cta-banner::before, .cta-banner::after { display: none; }
.cta-banner h2 { color: var(--white); max-width: 760px; }
.cta-banner p { color: rgba(255,255,255,.74); margin: 18px 0 0; max-width: 640px; }
.cta-banner .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.area-pills { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.area-pills .pill { border-bottom: 1px solid var(--line); color: var(--text); padding: 14px 0; }
.area-pills .d { background: var(--green); display: inline-block; height: 6px; margin-right: 8px; width: 6px; }
.app-section { align-items: center; display: grid; gap: 70px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.store-row { display: flex; flex-wrap: wrap; gap: 12px; }
.store-btn { align-items: center; background: var(--ink); border-radius: var(--radius-sm); color: var(--white); display: inline-flex; gap: 12px; min-width: 166px; padding: 11px 16px; }
.store-btn:hover { background: #000; color: var(--white); }
.store-btn small { display: block; font-size: .62rem; }
.store-btn b { display: block; font-family: var(--ff-head); font-size: .95rem; }
.qr-box { border: 1px solid var(--line); padding: 26px; text-align: center; }
.qr-box .qr { background: repeating-conic-gradient(#15231c 0 25%, #fff 0 50%) 0/24px 24px; height: 120px; margin: auto; width: 120px; }
.hint { color: var(--muted); font-size: .78rem; }

.form-card { background: var(--white); border: 1px solid var(--line); border-radius: 0; box-shadow: none; padding: clamp(26px, 4vw, 44px); }
.field-group { border: 1px solid #cfd8d2; margin-bottom: 16px; position: relative; }
.field-row { align-items: center; display: flex; min-height: 52px; padding: 0 14px; }
.field-row + .field-row { border-top: 1px solid var(--line); }
.field-row .pin {
  background: var(--green);
  flex: 0 0 auto;
  height: 8px;
  margin-right: 14px;
  width: 8px;
}
.field-row .pin.to { background: var(--yellow-dark); }
.field-row input {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  padding: 13px 4px;
  width: 100%;
}
.form-row { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-field { margin-bottom: 18px; }
.form-field label { color: var(--ink); display: block; font-size: .85rem; font-weight: 700; margin-bottom: 7px; }
.form-field .req { color: var(--danger); }
.input, .select, .textarea {
  background: var(--white);
  border: 1px solid #cfd8d2;
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 13px 14px;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.input:focus, .select:focus, .textarea:focus { border-color: var(--green); box-shadow: var(--ring); outline: 0; }
.textarea { min-height: 120px; resize: vertical; }
.progress { display: flex; gap: 8px; margin-bottom: 28px; }
.progress .seg { background: var(--line); height: 4px; width: 100%; }
.progress .seg.done { background: var(--green); }

.site-footer { background: #0a2015; color: #b9c8c0; padding: 72px 0 0; }
.footer-top { display: grid; gap: 90px; grid-template-columns: .8fr 1.2fr; padding-bottom: 60px; }
.footer-brand img { height: 120px; width: 120px; }
.footer-brand p { color: #9eb0a6; margin-top: 18px; max-width: 300px; }
.footer-nav { display: grid; gap: 48px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-nav h2, .site-footer h5 { color: var(--white); font-family: var(--ff-head); font-size: .75rem; letter-spacing: .1em; margin-bottom: 18px; text-transform: uppercase; }
.footer-nav a, .footer-nav span { color: #aebeb5; display: block; font-size: .9rem; margin: 10px 0; }
.footer-nav a:hover { color: var(--white); }
.footer-grid { display: grid; gap: 50px; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; padding-bottom: 50px; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a, .footer-contact li { color: #aebeb5; font-size: .9rem; }
.footer-contact .ic { display: none; }
.gov-badge { align-items: center; color: var(--muted); display: flex; font-size: .8rem; gap: 8px; margin-top: 18px; }
.gov-badge .seal { display: none; }
.social { display: flex; gap: 18px; margin-top: 18px; }
.social a { color: #aebeb5; font-size: .85rem; }
.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  flex-wrap: wrap;
  font-size: .78rem;
  gap: 20px;
  justify-content: space-between;
  padding: 22px 0;
}
.footer-bottom span:last-child { display: flex; gap: 22px; }
.footer-bottom a { color: #aebeb5; }
.fab-help {
  align-items: center;
  background: var(--green);
  border: 2px solid var(--white);
  border-radius: 50%;
  bottom: 20px;
  box-shadow: var(--shadow);
  color: var(--white);
  display: flex;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  height: 48px;
  justify-content: center;
  position: fixed;
  right: 20px;
  width: 48px;
  z-index: 90;
}
.fab-help .badge { display: none; }
.toast {
  background: var(--ink);
  border-radius: var(--radius-sm);
  bottom: 24px;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  font-weight: 600;
  left: 50%;
  opacity: 0;
  padding: 13px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 20px);
  transition: opacity var(--t), transform var(--t);
  z-index: 999;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast .ic { display: none; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }
[id] { scroll-margin-top: 108px; }

@media (max-width: 1040px) {
  .nav-links { gap: 20px; }
  .booking-panel { grid-template-columns: 1fr 1fr; }
  .booking-heading { grid-column: 1 / -1; }
  .booking-submit { width: 100%; }
  .ride-selector { grid-template-columns: repeat(3, 1fr); }
  .fare-summary { grid-column: 1 / -1; padding-left: 0; }
  .evidence-grid, .split, .app-section { gap: 48px; }
}

@media (max-width: 900px) {
  .nav-links {
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 12px 28px 26px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 88px;
    transform: translateY(-10px);
    transition: opacity var(--t), transform var(--t);
  }
  body.nav-open .nav-links { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { border-bottom: 1px solid var(--line); padding: 15px 0; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: grid; }
  .nav-cta .lang { display: inline-flex; }
  .section-intro, .evidence-grid, .faq-layout, .split, .app-section { grid-template-columns: 1fr; }
  .evidence-copy { max-width: 680px; }
  .split.reverse .split-media { order: 0; }
  .service-row { grid-template-columns: 42px 1fr auto; }
  .service-meta { display: none; }
  .metrics-grid > div { padding: 0 28px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav { height: 72px; }
  .brand img { height: 62px; width: 62px; }
  .btn-nav { display: none; }
  .nav-cta { gap: 8px; }
  .nav-cta .lang { font-size: .72rem; }
  .nav-links { top: 72px; }
  .hero-home, .hero-content { min-height: 650px; min-width: 0; width: 100%; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,28,17,.92), rgba(5,28,17,.54)); }
  .hero-content { justify-content: end; padding-bottom: 50px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-content h1, .hero-content .lead { max-width: 100%; }
  .hero-proof { display: grid; gap: 12px 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 42px; max-width: 100%; width: 100%; }
  .hero-proof span { min-width: 0; }
  .booking-panel { grid-template-columns: 1fr; }
  .booking-heading { grid-column: auto; }
  .ride-selector { grid-template-columns: 1fr; }
  .ride-type, .ride-type:first-child { border-bottom: 1px solid var(--line); border-left: 0; border-right: 0; min-height: 88px; }
  .fare-summary { grid-column: auto; }
  .section-intro { gap: 20px; margin-bottom: 40px; }
  .service-row { gap: 16px; grid-template-columns: 34px 1fr auto; }
  .service-row p { font-size: .9rem; }
  .service-row > a { font-size: 0; }
  .service-row > a span { font-size: 1.1rem; }
  .metrics { padding: 20px 0; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metrics-grid > div, .metrics-grid > div:first-child { border-bottom: 1px solid rgba(255,255,255,.18); border-left: 0; padding: 28px 0; }
  .metrics-grid > div:last-child { border-bottom: 0; }
  .process-grid, .steps { grid-template-columns: 1fr; }
  .process-grid li, .process-grid li + li, .step, .step + .step { border-bottom: 1px solid var(--line); border-left: 0; border-right: 0; min-height: 0; padding: 28px 0; }
  .process-grid h3, .step .num { margin-top: 28px; }
  .step .num { margin-bottom: 28px; }
  .driver-callout, .driver-inner { min-height: 590px; }
  .driver-photo { background-position: 56% center; }
  .grid-2, .grid-3, .grid-4, .mission-grid { grid-template-columns: 1fr !important; }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .stat-band .item { border-bottom: 1px solid rgba(255,255,255,.2); padding: 24px 16px; }
  .area-pills { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 2rem; }
  .hero-content .lead { font-size: 1.05rem; }
  .hero-proof span { font-size: .64rem; }
  .booking-panel { padding-top: 28px; }
  .evidence-points > div { grid-template-columns: 1fr; gap: 4px; }
  .stat-band { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
