:root {
  --ink: #111820;
  --ink-soft: #28323d;
  --muted: #68717b;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: #d9dedb;
  --yellow: #f4c542;
  --yellow-dark: #c69113;
  --green: #147a61;
  --green-soft: #e3f2ec;
  --coral: #c9563d;
  --red: #b7342c;
  --amber: #b97913;
  --blue: #27638f;
  --shadow: 0 18px 48px rgba(17, 24, 32, 0.18);
  --radius: 8px;
  --max: 1240px;
  --touch: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

[hidden] {
  display: none !important;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--yellow);
  color: var(--ink);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.app-header,
.driver-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(17, 24, 32, 0.1);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}

.site-header {
  position: fixed;
  left: 0;
  right: 0;
}

.simple-page .site-header {
  position: sticky;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  min-width: 0;
}

.brand-logo {
  width: 148px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 10px rgba(17, 24, 32, .12));
}

.brand-logo + .brand-text strong {
  display: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--yellow);
  font-weight: 900;
}

.brand strong {
  display: block;
  font-size: 1.08rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.2;
}

.site-nav,
.desktop-app-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a,
.desktop-app-nav button,
.app-nav-button {
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-soft);
  min-height: 40px;
  padding: .55rem .75rem;
  font-weight: 700;
}

.site-nav a:hover,
.desktop-app-nav button:hover,
.app-nav-button.is-active {
  background: rgba(244, 197, 66, .25);
  color: var(--ink);
}

.staff-link {
  border: 1px solid rgba(17, 24, 32, .18) !important;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  min-height: 78svh;
  max-height: 760px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("/assets/images/lgtaxis-hero.png");
  background-size: cover;
  background-position: 58% center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 32, .88), rgba(17, 24, 32, .58) 44%, rgba(17, 24, 32, .12) 78%),
    linear-gradient(0deg, rgba(17, 24, 32, .42), rgba(17, 24, 32, 0) 52%);
}

.hero-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 9.5rem 1rem 2rem;
  position: relative;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 .55rem;
  color: var(--yellow-dark);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.action-band .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  font-size: 4.5rem;
  max-width: 760px;
}

.hero-copy {
  max-width: 680px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.2rem;
}

.hero-actions,
.action-buttons,
.button-row,
.view-actions,
.quote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.4rem;
}

.button {
  min-height: var(--touch);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: .72rem 1rem;
  font-weight: 900;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(198, 145, 19, .26);
}

.button-secondary {
  background: var(--green);
  color: var(--white);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button-danger {
  background: var(--red);
  color: var(--white);
}

.button-icon {
  font-size: 1rem;
  line-height: 1;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin: 2rem 0 0;
  max-width: 980px;
}

.trust-row div {
  border-left: 4px solid var(--yellow);
  padding-left: .85rem;
}

.trust-row dt {
  font-weight: 900;
  margin-bottom: .2rem;
}

.trust-row dd {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.action-band {
  background: var(--green);
  color: var(--white);
}

.content-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 1.1rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.content-grid h2 {
  font-size: 1.4rem;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.4rem 1rem;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 1.8rem;
}

.section-heading h2,
.split-section h2,
.page-hero h1,
.view-heading h1 {
  font-size: 2.4rem;
}

.service-grid,
.metric-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card,
.metric-card,
.panel,
.coverage-panel,
.airport-list-panel,
.quote-response-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 32, .08);
}

.service-card {
  padding: 1.25rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.service-kicker {
  color: var(--green);
  font-weight: 900;
  margin-bottom: .8rem;
}

.service-card h3 {
  font-size: 1.45rem;
}

.service-card p {
  color: var(--muted);
  margin: .8rem 0 1.1rem;
}

.service-card a {
  margin-top: auto;
  color: var(--green);
  font-weight: 900;
}

.split-section,
.page-hero,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.page-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem 1rem;
}

.page-hero p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.coverage-panel,
.airport-list-panel {
  padding: 1.4rem;
}

.coverage-panel h2,
.airport-list-panel h2,
.panel h2,
.flush-panel h2 {
  font-size: 1.25rem;
}

.coverage-panel ul,
.airport-list {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.coverage-panel li,
.airport-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem;
  background: #f6f6f0;
  font-weight: 800;
}

.route-board {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  min-height: 360px;
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  align-content: stretch;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.route-line {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  gap: .55rem;
  align-items: center;
  font-weight: 900;
  font-size: .82rem;
}

.route-line i,
.map-road {
  display: block;
  height: 3px;
  background: var(--yellow);
}

.mini-map {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 42px 42px;
}

.tall-map {
  min-height: 420px;
}

.map-pin {
  position: absolute;
  z-index: 2;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: .35rem .65rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}

.pin-a { left: 10%; top: 18%; }
.pin-b { right: 12%; top: 24%; }
.pin-c { left: 28%; bottom: 18%; }
.pin-d { right: 18%; bottom: 14%; }

.map-road {
  position: absolute;
  transform-origin: left center;
  border-radius: 999px;
}

.road-one {
  width: 54%;
  left: 22%;
  top: 36%;
  transform: rotate(8deg);
}

.road-two {
  width: 48%;
  left: 34%;
  bottom: 35%;
  transform: rotate(-20deg);
  background: var(--green);
}

.road-three {
  width: 40%;
  left: 42%;
  bottom: 24%;
  transform: rotate(15deg);
  background: var(--coral);
}

.process-list {
  display: grid;
  gap: .85rem;
  margin: 1.2rem 0 0;
  padding-left: 1.35rem;
}

.process-list li {
  padding-left: .2rem;
}

.quote-section {
  padding-top: 3rem;
}

.quote-page-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4rem 1rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 1.25rem;
  align-items: stretch;
}

.quote-page-hero h1 {
  font-size: 2.7rem;
  max-width: 860px;
}

.quote-page-hero p {
  max-width: 760px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.quote-help-panel {
  border: 2px solid rgba(17, 24, 32, .12);
  border-radius: var(--radius);
  background: #fff7dc;
  padding: 1rem;
  box-shadow: 8px 8px 0 rgba(244, 197, 66, .34);
  transform: rotate(.35deg);
}

.quote-help-panel h2 {
  font-size: 1.2rem;
}

.quote-help-panel ul {
  margin: .9rem 0 0;
  padding-left: 1.15rem;
}

.quote-help-panel li + li {
  margin-top: .45rem;
}

.standalone-quote {
  padding-top: 1rem;
}

.quote-mode-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.control-label {
  display: block;
  margin-bottom: .4rem;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form,
.quick-quote,
.add-booking-form,
.day-off-form {
  display: grid;
  gap: 1rem;
}

.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.segmented-control {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.segmented-control.compact {
  justify-content: flex-start;
}

.segment,
.chip {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  padding: .55rem .85rem;
  font-weight: 900;
}

.segment.is-active,
.chip.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

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

label {
  display: grid;
  gap: .35rem;
  color: var(--ink-soft);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: var(--touch);
  border: 1px solid #c9d1cc;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: .75rem .85rem;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

.full-span {
  grid-column: 1 / -1;
}

.submit-button {
  justify-self: start;
}

.form-error,
.form-success {
  margin: 0;
  font-weight: 800;
}

.form-error {
  color: var(--red);
}

.form-success {
  color: var(--green);
}

.notice-strip {
  display: flex;
  gap: .6rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border-left: 5px solid var(--yellow);
  background: #fff7d6;
  border-radius: var(--radius);
}

.lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 2rem 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.site-footer > * {
  width: min(100%, 580px);
}

.site-footer p {
  color: rgba(255, 255, 255, .72);
  margin: .45rem 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: flex-end;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
}

.quote-response-shell {
  width: min(100% - 2rem, 760px);
  margin: 5rem auto;
  padding: 1.4rem;
}

.quote-summary dl,
.detail-list {
  display: grid;
  gap: .7rem;
  margin: 1.2rem 0;
}

.quote-summary dl div,
.detail-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: .8rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .6rem;
}

.staff-access-page {
  min-height: 100svh;
}

.staff-access-hero {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 4.5rem 1rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 1.5rem;
  align-items: end;
}

.staff-access-hero h1 {
  margin-bottom: .75rem;
}

.staff-access-hero p {
  max-width: 680px;
  color: var(--ink-soft);
}

.access-status-card,
.access-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 24, 32, .1);
}

.access-status-card {
  padding: 1rem;
  display: grid;
  gap: .35rem;
  border-left: 5px solid var(--green);
}

.access-status-card span,
.auth-note {
  color: var(--muted);
}

.staff-access-section {
  padding-top: 1rem;
}

.staff-access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.access-card {
  padding: 1.15rem;
  display: grid;
  gap: .75rem;
  align-content: start;
}

.access-card h2,
.access-card p {
  margin: 0;
}

.auth-note {
  margin: 1rem 0 0;
  font-weight: 700;
}

dt {
  color: var(--muted);
  font-weight: 800;
}

dd {
  margin: 0;
}

.app-page {
  background: #f2f3ed;
}

.app-header,
.driver-header {
  position: sticky;
}

.app-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 1rem;
}

.login-panel,
.driver-login {
  width: min(100%, 420px);
  margin: 3rem auto;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  gap: 1rem;
}

.small-note {
  color: var(--muted);
  font-size: .9rem;
  margin: 0;
}

.console {
  display: grid;
  gap: 1rem;
}

.mobile-chip-nav {
  display: none;
  gap: .45rem;
  overflow-x: auto;
  padding: .2rem 0 .45rem;
}

.app-view,
.driver-tab {
  display: none;
}

.app-view.is-active,
.driver-tab.is-active {
  display: block;
}

.view-heading,
.driver-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.panel {
  padding: 1rem;
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .85rem;
}

.panel-title span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.metric-card {
  padding: 1rem;
}

.metric-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-weight: 800;
}

.booking-list,
.quote-list,
.shift-list,
.request-list {
  display: grid;
  gap: .75rem;
}

.booking-card,
.quote-card,
.shift-card,
.request-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fdfdf9;
  padding: .85rem;
}

.booking-card {
  display: grid;
  gap: .5rem;
}

.booking-top,
.quote-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  align-items: start;
}

.booking-time {
  min-width: 4.3rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--green);
}

.journey {
  color: var(--ink-soft);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: fit-content;
  min-height: 30px;
  border-radius: 999px;
  padding: .25rem .55rem;
  font-size: .82rem;
  font-weight: 900;
  background: var(--green-soft);
  color: var(--green);
}

.status-pill.warn {
  background: #fff0d6;
  color: var(--amber);
}

.status-pill.bad {
  background: #ffe5df;
  color: var(--red);
}

.status-pill.info {
  background: #e4f0f8;
  color: var(--blue);
}

.compact-table {
  display: grid;
  gap: .35rem;
}

.table-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 100px;
  gap: .65rem;
  padding: .55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f8f3;
}

.date-filter {
  width: min(100%, 280px);
  margin-bottom: 1rem;
}

.quick-quote,
.settings-list {
  max-width: 860px;
}

.email-workbench {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(320px, 1.1fr) minmax(280px, .9fr);
  gap: 1rem;
  align-items: start;
}

.email-template-list {
  display: grid;
  gap: .55rem;
}

.email-template-card {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fdfdf9;
  color: var(--ink);
  padding: .8rem;
  text-align: left;
  display: grid;
  gap: .35rem;
}

.email-template-card.is-selected {
  border-color: var(--green);
  box-shadow: inset 4px 0 0 var(--green);
}

.email-template-card strong,
.email-preview-subject {
  font-weight: 900;
}

.email-template-card span {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 800;
}

.email-template-editor {
  display: grid;
  gap: .85rem;
}

.template-token-row {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.template-token {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f8f3;
  color: var(--ink-soft);
  padding: .25rem .55rem;
  font-size: .8rem;
  font-weight: 900;
}

.email-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fdfdf9;
  overflow: hidden;
}

.email-preview-subject {
  padding: .8rem;
  border-bottom: 1px solid var(--line);
  background: #fff7dc;
}

.email-preview-body {
  padding: .9rem;
  color: var(--ink-soft);
}

.email-preview-body p {
  margin: 0 0 .8rem;
}

.email-preview-body p:last-child {
  margin-bottom: 0;
}

.email-preview-body a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
}

.quick-quote {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.price-output {
  min-height: 70px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--yellow);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  padding: .75rem;
}

.quick-quote .button-row {
  grid-column: 1 / -1;
}

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

.pricing-card {
  display: grid;
  gap: .35rem;
}

.pricing-card strong {
  font-size: 1.4rem;
}

.driver-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 1rem;
}

.driver-console {
  display: grid;
  gap: 1rem;
}

.sticky-chips {
  position: sticky;
  top: 72px;
  z-index: 20;
  display: flex;
  background: #f2f3ed;
  padding-top: .5rem;
}

.driver-bookings .booking-card {
  min-height: 144px;
}

.driver-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}

.flush-panel {
  box-shadow: none;
}

.day-off-form {
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .desktop-app-nav {
    display: none;
  }

  .mobile-chip-nav {
    display: flex;
  }

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

  .split-section,
  .page-hero,
  .staff-access-hero,
  .staff-access-grid,
  .two-column,
  .email-workbench {
    grid-template-columns: 1fr;
  }

  .route-board {
    min-height: 300px;
  }
}

@media (max-width: 740px) {
  .site-header {
    min-height: 64px;
    align-items: flex-start;
    padding: .55rem .75rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-logo {
    width: 112px;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    max-width: 56%;
    gap: .2rem;
    justify-content: flex-end;
  }

  .site-nav a {
    min-height: 34px;
    padding: .35rem .45rem;
    font-size: .82rem;
  }

  .staff-link {
    display: none !important;
  }

  .hero {
    min-height: 76svh;
  }

  .hero-media {
    background-position: 60% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(17, 24, 32, .84), rgba(17, 24, 32, .38) 58%, rgba(17, 24, 32, .18));
  }

  .hero-inner {
    padding: 7.5rem .85rem 1.2rem;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .trust-row {
    grid-template-columns: 1fr;
    margin-top: 1.2rem;
  }

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

  .action-buttons,
  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .site-header .button,
  .app-header .button,
  .driver-header .button {
    width: auto;
  }

  .driver-header .button {
    min-width: 112px;
  }

  .section {
    padding: 3rem .85rem;
  }

  .staff-access-hero {
    padding: 3rem .85rem 1rem;
  }

  .section-heading h2,
  .split-section h2,
  .page-hero h1,
  .view-heading h1 {
    font-size: 2rem;
  }

  .service-grid,
  .metric-grid,
  .pricing-grid,
  .form-grid,
  .quote-mode-row,
  .quote-page-hero {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .page-hero {
    padding: 2.2rem .85rem 3rem;
  }

  .quote-page-hero {
    padding: 2.2rem .85rem 1rem;
  }

  .quote-page-hero h1 {
    font-size: 2rem;
  }

  .route-line {
    grid-template-columns: 1fr;
  }

  .route-line i {
    width: 3px;
    height: 18px;
    justify-self: start;
    margin-left: 1rem;
  }

  .quote-form {
    padding: .8rem;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .quote-summary dl div,
  .detail-list div,
  .table-row {
    grid-template-columns: 1fr;
  }

  .app-shell {
    padding: .75rem;
  }

  .view-heading,
  .driver-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .view-actions {
    width: 100%;
  }

  .panel {
    padding: .85rem;
  }

  .booking-top,
  .quote-top {
    display: grid;
  }

  .quick-quote {
    grid-template-columns: 1fr;
  }

  .quick-quote .button-row {
    grid-column: auto;
  }
}
