:root {
  --ink: #18202b;
  --muted: #5c6877;
  --line: #dce5ec;
  --soft: #f5f9fc;
  --white: #ffffff;
  --blue: #09aeea;
  --blue-dark: #0679b6;
  --orange: #f29524;
  --green: #168b73;
  --shadow: 0 24px 70px rgba(21, 34, 48, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(9, 174, 234, 0.08), rgba(255, 255, 255, 0) 360px),
    var(--white);
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 229, 236, 0.9);
  backdrop-filter: blur(18px);
}

.brand img,
.footer-brand img {
  width: 178px;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 0.94rem;
  font-weight: 720;
  color: #26323f;
}

.nav-links a,
.nav-cta,
.button,
.contact-row,
.store-links a {
  text-decoration: none;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 780;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(242, 149, 36, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.nav-cta:hover,
.button:hover,
.nav-cta:focus-visible,
.button:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.section-pad {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 4vw, 58px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  align-items: center;
  gap: clamp(38px, 6vw, 86px);
  max-width: 1220px;
  margin: 0 auto;
  padding-top: clamp(54px, 7vw, 88px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.hero-copy {
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 790px;
  margin-right: auto;
  margin-bottom: 22px;
  margin-left: auto;
  font-size: clamp(2.42rem, 4.7vw, 4.55rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  line-height: 1.18;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.hero-lede {
  max-width: 710px;
  margin: 0 auto 30px;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 680px;
  margin: 34px auto 0;
}

.hero-proof div {
  padding: 18px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-proof strong {
  display: block;
  margin-bottom: 5px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-media {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: clamp(28px, 5vw, 48px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(242, 149, 36, 0.25), transparent 30%),
    linear-gradient(145deg, #e9f7fc, #ffffff 42%, #eef5f9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  inset: 38px;
  content: "";
  border: 1px solid rgba(9, 174, 234, 0.26);
  border-radius: 8px;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: min(72%, 360px);
  height: auto;
  margin-top: 58px;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(22, 32, 43, 0.18));
}

.route-panel {
  position: absolute;
  right: 24px;
  bottom: 26px;
  z-index: 2;
  width: min(318px, calc(100% - 48px));
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 229, 236, 0.98);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(21, 34, 48, 0.18);
}

.route-panel-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.route-panel-top strong {
  color: var(--green);
}

.route-line {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.route-line span {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.route-line strong,
.route-line small {
  display: block;
}

.route-line small {
  margin-top: 3px;
  color: var(--muted);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 18px 22px;
}

.trust-strip span {
  padding: 10px 14px;
  color: #24313f;
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.center-section {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.compact {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.center-section p {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.split-section,
.image-story,
.app-band,
.path-section,
.process-section {
  max-width: 1220px;
  margin: 0 auto;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-intro p {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.path-grid article,
.steps div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(21, 34, 48, 0.07);
}

.service-grid article {
  padding: 24px;
}

.service-grid p,
.path-grid p,
.steps p {
  margin-bottom: 0;
}

.image-story {
  padding-top: clamp(58px, 7vw, 92px);
}

.image-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.image-story-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(21, 34, 48, 0.08);
}

.image-story-grid img {
  width: 100%;
  height: clamp(260px, 28vw, 360px);
  object-fit: cover;
}

.image-story-grid div {
  padding: 24px;
  text-align: center;
}

.image-story-grid p {
  margin-bottom: 0;
}

.service-area {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: clamp(40px, 6vw, 74px);
  padding-bottom: clamp(48px, 7vw, 88px);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.area-list span {
  padding: 11px 14px;
  color: #24313f;
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(21, 34, 48, 0.06);
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--blue-dark);
  background: rgba(9, 174, 234, 0.11);
  border-radius: 8px;
}

.icon svg,
.contact-row svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(9, 174, 234, 0.11), rgba(242, 149, 36, 0.1)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-copy {
  max-width: 720px;
  text-align: center;
}

.app-copy p {
  margin-bottom: 24px;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store-links img {
  width: 150px;
  height: auto;
}

.phone-mockup {
  width: min(100%, 360px);
  min-height: 500px;
  padding: 22px;
  background: #151d27;
  border: 10px solid #26323f;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(21, 34, 48, 0.24);
}

.phone-top {
  width: 88px;
  height: 8px;
  margin: 0 auto 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.app-card {
  padding: 18px;
  margin-bottom: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.app-card.active {
  background: var(--blue);
}

.app-card small,
.app-card strong,
.app-card span {
  display: block;
}

.app-card small {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 820;
  text-transform: uppercase;
}

.app-card strong {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.app-card span {
  color: rgba(255, 255, 255, 0.78);
}

.path-section {
  padding-right: 18px;
  padding-left: 18px;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.path-grid article {
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
}

.path-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  background: rgba(9, 174, 234, 0.11);
  border-radius: 8px;
}

ul {
  display: grid;
  gap: 12px;
  max-width: 560px;
  margin: 22px auto 26px;
  padding: 0;
  color: var(--muted);
  line-height: 1.55;
  list-style: none;
}

li {
  position: relative;
  padding-left: 24px;
  text-align: left;
}

li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.process-section {
  text-align: center;
}

.process-section .section-intro {
  display: block;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin-top: 34px;
  margin-right: auto;
  margin-left: auto;
}

.steps div {
  padding: 22px;
}

.steps span {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 880;
  line-height: 34px;
  background: rgba(242, 149, 36, 0.11);
  border-radius: 50%;
}

.contact-section {
  background: #151d27;
}

.contact-inner {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.contact-inner h2,
.contact-inner p {
  color: var(--white);
}

.contact-inner .eyebrow {
  color: var(--blue);
}

.contact-inner p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.76);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 28px;
}

.contact-column {
  display: grid;
  gap: 12px;
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 68px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  line-height: 1.35;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-row:hover,
.contact-row:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-driver {
  grid-column: 1 / -1;
  width: min(420px, 100%);
  justify-self: center;
}

.contact-row svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 42px 18px;
  text-align: center;
  background: #ffffff;
}

.site-footer p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.modal-layer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.modal-layer.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 34, 0.64);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(930px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.modal-panel h2 {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 12px;
  margin-left: auto;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.modal-panel p {
  max-width: 700px;
  margin-right: auto;
  margin-bottom: 18px;
  margin-left: auto;
  line-height: 1.55;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.modal-close span {
  grid-area: 1 / 1;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin-top: 18px;
  text-align: left;
}

.request-form label {
  display: block;
  margin-bottom: 8px;
  color: #24313f;
  font-size: 0.86rem;
  font-weight: 760;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.request-form textarea {
  min-height: 92px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  background: var(--white);
  border-color: var(--blue);
  outline: none;
}

.request-form .full-field,
.request-form > button {
  grid-column: 1 / -1;
}

.request-form > button {
  justify-self: center;
  min-width: 220px;
  border: 0;
  cursor: pointer;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.driver-page {
  background:
    linear-gradient(180deg, rgba(9, 174, 234, 0.1), rgba(255, 255, 255, 0) 360px),
    var(--white);
}

.driver-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.driver-hero-copy {
  text-align: center;
}

.driver-hero-copy h1 {
  max-width: 760px;
}

.driver-hero-card {
  position: relative;
  min-height: 560px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 16px;
  padding: clamp(26px, 5vw, 44px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(242, 149, 36, 0.28), transparent 28%),
    linear-gradient(145deg, #eef9fd, #ffffff 48%, #edf5f9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.driver-stat-card {
  width: min(360px, 100%);
  padding: 22px;
  text-align: center;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(21, 34, 48, 0.1);
}

.driver-stat-card.accent {
  background: #151d27;
  border-color: #26323f;
}

.driver-stat-card span,
.driver-stat-card strong {
  display: block;
}

.driver-stat-card span {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.driver-stat-card strong {
  font-size: 1.28rem;
  line-height: 1.22;
}

.driver-stat-card.accent span,
.driver-stat-card.accent strong {
  color: var(--white);
}

.driver-route-card {
  position: relative;
  width: min(320px, calc(100% - 48px));
  padding: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(21, 34, 48, 0.16);
}

.driver-route-card small,
.driver-route-card strong,
.driver-route-card span {
  display: block;
}

.driver-route-card small {
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-weight: 850;
  text-transform: uppercase;
}

.driver-route-card strong {
  margin-bottom: 7px;
  font-size: 1.24rem;
  line-height: 1.15;
}

.driver-route-card span {
  color: var(--muted);
  line-height: 1.55;
}

.driver-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px 22px;
}

.driver-strip span {
  padding: 10px 14px;
  color: #24313f;
  font-size: 0.92rem;
  font-weight: 800;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.driver-section,
.driver-app-band,
.driver-faq,
.driver-cta {
  max-width: 1220px;
  margin: 0 auto;
}

.driver-card-grid,
.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.driver-card-grid article,
.eligibility-grid div,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(21, 34, 48, 0.07);
}

.driver-card-grid article,
.eligibility-grid div {
  padding: 26px;
  text-align: center;
}

.driver-card-grid p,
.eligibility-grid p {
  margin-bottom: 0;
}

.eligibility-grid span {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 880;
  line-height: 34px;
  background: rgba(242, 149, 36, 0.11);
  border-radius: 50%;
}

.driver-app-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  margin-top: 18px;
  margin-bottom: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(9, 174, 234, 0.11), rgba(242, 149, 36, 0.1)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.driver-app-band p {
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.driver-phone-preview {
  width: min(100%, 360px);
  min-height: 470px;
  padding: 22px;
  background: #151d27;
  border: 10px solid #26323f;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(21, 34, 48, 0.24);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 820;
}

.faq-list p {
  margin: 12px 0 0;
}

.driver-cta {
  text-align: center;
}

.driver-cta h2 {
  max-width: 790px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 16px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .hero,
  .driver-hero,
  .app-band {
    grid-template-columns: 1fr;
  }

  .app-copy {
    text-align: center;
  }

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

  .app-band {
    justify-items: center;
  }

  .driver-app-band {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .driver-card-grid,
  .eligibility-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 74px;
  }

  .brand img,
  .footer-brand img {
    width: 150px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-actions,
  .contact-actions,
  .store-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-proof,
  .service-grid,
  .image-story-grid,
  .path-grid,
  .steps,
  .contact-grid,
  .request-form {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 560px;
    padding: 26px;
  }

  .hero-media img {
    width: min(86%, 330px);
    margin-top: 42px;
  }

  .route-panel {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .app-band {
    margin-right: 18px;
    margin-left: 18px;
  }

  .phone-mockup {
    min-height: 438px;
  }

  .contact-row {
    min-height: 62px;
  }

  .contact-driver {
    width: 100%;
  }

  .modal-layer {
    padding: 14px;
  }

  .modal-panel {
    max-height: 90vh;
  }

  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .driver-hero {
    padding-top: 48px;
  }

  .driver-hero-card {
    min-height: auto;
  }

  .driver-route-card {
    width: 100%;
  }

  .driver-app-band {
    margin-right: 18px;
    margin-left: 18px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2rem, 12vw, 2.78rem);
  }

  h2 {
    font-size: clamp(1.78rem, 10vw, 2.35rem);
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 48px;
  }

  .hero-lede {
    margin-bottom: 22px;
    font-size: 0.97rem;
  }

  .hero-proof {
    margin-top: 22px;
  }

  .hero-media {
    min-height: 520px;
  }

  .route-panel {
    padding: 14px;
  }

  .trust-strip span {
    width: 100%;
    text-align: center;
  }
}
