@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand-orange: #fa931f;
  --brand-orange-soft: #fff4e7;
  --action-orange: #b94700;
  --action-orange-hover: #963a00;
  --ink: #111111;
  --ink-2: #232323;
  --muted: #646464;
  --line: #e8e8e8;
  --soft: #fafafa;
  --white: #ffffff;
  --whatsapp: #128c4a;
  --danger: #b42318;
  --success: #087a3d;
  --radius-sm: 9px;
  --radius-md: 13px;
  --radius-lg: 17px;
  --shadow-card: 0 8px 28px rgba(17, 17, 17, 0.07);
  --shadow-small: 0 3px 14px rgba(17, 17, 17, 0.055);
  --container: 1200px;
  --header-height: 76px;
  --font: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section,
.hero,
.trust-strip,
.permit-section,
.site-footer {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.section {
  padding: 66px 0;
}

.section-soft {
  background: var(--soft);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 750;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.btn-orange {
  color: var(--white);
  background: var(--action-orange);
  box-shadow: 0 7px 18px rgba(185, 71, 0, 0.22);
}

.btn-orange:hover {
  background: var(--action-orange-hover);
  box-shadow: 0 9px 22px rgba(150, 58, 0, 0.25);
}

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

.btn-dark:hover {
  background: #292929;
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(17, 17, 17, 0.12);
}

.btn-outline {
  min-height: 44px;
  padding: 9px 15px;
  color: var(--ink);
  background: var(--white);
  border-color: #d9d9d9;
}

.btn-outline:hover {
  color: var(--action-orange);
  border-color: var(--action-orange);
}

.btn-large {
  min-height: 50px;
  padding-inline: 23px;
  font-size: 14.5px;
}

.wa-dot {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
  color: #ffffff;
  background: #25D366;
  border-radius: 50%;
}

.wa-dot i {
  color: #ffffff;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.wa-dot {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 23px;
  color: var(--white);
  background: var(--whatsapp);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.075);
}

.header-inner {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 166px;
  height: auto;
}

.desktop-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.65vw, 25px);
}

.desktop-nav a {
  position: relative;
  padding: 9px 0;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--action-orange);
}

.desktop-nav a.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--brand-orange);
  border-radius: 99px;
}

.header-actions,
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-actions .btn {
  min-height: 44px;
  padding: 10px 16px;
}

.mobile-header-actions {
  display: none;
  margin-left: auto;
}

.mobile-call,
.menu-toggle,
.menu-close {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-call {
  color: var(--white);
  background: var(--action-orange);
}

.menu-toggle,
.menu-close {
  color: var(--ink);
  background: transparent;
}

.menu-toggle:hover,
.menu-close:hover {
  background: #f2f2f2;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1190;
  width: 100%;
  height: 100%;
  padding: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(17, 17, 17, 0.52);
  border: 0;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.menu-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  width: min(86vw, 330px);
  padding: 22px;
  visibility: hidden;
  overflow-y: auto;
  background: var(--white);
  box-shadow: -20px 0 50px rgba(17, 17, 17, 0.16);
  transform: translateX(105%);
  transition: transform 230ms ease, visibility 230ms ease;
}

.mobile-menu.is-open {
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-head img {
  width: 148px;
}

.mobile-menu-links {
  display: grid;
  gap: 3px;
  padding-top: 16px;
}

.mobile-menu-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 10px;
  border-radius: 9px;
  font-weight: 650;
}

.mobile-menu-links a:hover {
  color: var(--action-orange);
  background: var(--brand-orange-soft);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 39% 78%, rgba(250, 147, 31, 0.09), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff 78%, #fdfdfd 100%);
  border-bottom: 1px solid #f0f0f0;
}

.hero-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  grid-template-areas:
    "copy form"
    "visual form";
  column-gap: clamp(28px, 4vw, 58px);
  padding-top: 50px;
}

.hero-copy,
.hero-visual,
.quote-card {
  min-width: 0;
}

.hero-copy {
  grid-area: copy;
  padding: 12px 0 4px;
}

.eyebrow,
.section-kicker,
.fare-example-label {
  margin: 0 0 8px;
  color: var(--action-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(42px, 4.15vw, 55px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.hero h1 span,
.section-heading h2 span {
  color: var(--action-orange);
}

.hero-intro {
  max-width: 570px;
  margin: 18px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.starting-price {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 17px;
  background: var(--white);
  border: 1px solid var(--brand-orange);
  border-radius: 12px;
  box-shadow: 0 7px 20px rgba(250, 147, 31, 0.1);
}

.starting-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  color: var(--ink);
  background: var(--brand-orange);
  border-radius: 9px;
}

.starting-price > span:last-child {
  display: grid;
}

.starting-price small {
  color: var(--action-orange);
  font-size: 12px;
  font-weight: 750;
}

.starting-price strong {
  color: var(--action-orange);
  font-size: 31px;
  line-height: 1.05;
}

.starting-price strong span {
  font-size: 15px;
  font-weight: 700;
}

.hero-notes {
  margin: 15px 0 22px;
}

.hero-notes p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-notes p:first-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 12.5px;
}

.hero-notes svg {
  color: var(--action-orange);
}

.hero-buttons {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-buttons .btn {
  flex: 1 1 0%;
  min-width: 160px;
}

.hero-visual {
  position: relative;
  grid-area: visual;
  height: auto;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 18px 0 24px;
}

.hero-visual picture {
  position: relative;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 1858 / 846;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-card {
  grid-area: form;
  align-self: start;
  margin-bottom: 40px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 45px rgba(17, 17, 17, 0.09);
}

.quote-card-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.quote-card-heading > span {
  width: 22px;
  height: 3px;
  flex: 0 0 22px;
  background: var(--brand-orange);
  border-radius: 99px;
}

.quote-card h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

#quote-form {
  min-width: 0;
  display: grid;
  gap: 10px;
}

.field,
.date-fields > .field {
  min-width: 0;
}

.field > label {
  display: block;
  margin: 0 0 4px 2px;
  color: #4f4f4f;
  font-size: 12px;
  font-weight: 750;
}

.field > label span {
  color: var(--muted);
  font-weight: 500;
}

.input-shell {
  min-width: 0;
  min-height: 49px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  color: #4f4f4f;
  background: #fbfbfb;
  border: 1px solid #e5e5e5;
  border-radius: 9px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.input-shell > svg {
  color: var(--action-orange);
  flex-shrink: 0;
}

.input-shell:focus-within {
  color: var(--action-orange);
  background: var(--white);
  border-color: var(--action-orange);
  box-shadow: 0 0 0 3px rgba(185, 71, 0, 0.12);
}

.input-shell.has-error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.1);
}

.input-shell input,
.input-shell select {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-weight: 550;
}

.input-shell select {
  cursor: pointer;
}

.input-shell input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.date-fields {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-privacy,
.form-status {
  margin: 0;
  text-align: center;
  font-size: 12px;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
}

.form-status {
  min-height: 18px;
  color: var(--muted);
  font-weight: 650;
}

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

.form-status.is-error {
  color: var(--danger);
}

.field-error {
  display: block;
  margin: 4px 2px 0;
  color: var(--danger);
  font-size: 12px;
  font-weight: 650;
}

.highlight-target {
  animation: highlightTarget 900ms ease;
}

@keyframes highlightTarget {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185, 71, 0, 0); }
  45% { box-shadow: 0 0 0 7px rgba(185, 71, 0, 0.2); }
}

/* Trust strip */
.trust-strip {
  padding: 24px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.trust-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

.trust-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 45px;
  color: var(--ink);
  background: var(--brand-orange);
  border-radius: 10px;
}

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

.trust-card h2 {
  font-size: 13px;
  line-height: 1.25;
}

.trust-card p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

/* Shared sections */
.section-heading {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(29px, 3vw, 37px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.section-note {
  margin: 20px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

/* Pricing */
.pricing-grid,
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pricing-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover,
.vehicle-card:hover,
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(185, 71, 0, 0.5);
  box-shadow: var(--shadow-card);
}

.pricing-card-premium {
  border-top: 3px solid var(--brand-orange);
}

.pricing-image {
  height: 118px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.pricing-image img {
  width: 155px;
  height: 155px;
  object-fit: contain;
}

.pricing-content {
  padding: 14px 18px 17px;
  border-top: 1px solid #f0f0f0;
}

.pricing-content h3,
.pricing-content p {
  margin: 0;
}

.pricing-content h3 {
  font-size: 17px;
}

.pricing-content .rate {
  margin: 6px 0 10px;
  color: var(--action-orange);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-content .rate span,
.vehicle-rate span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.pricing-content ul {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 10px 0 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 12px;
}

/* Local fares */
.local-table-wrap {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

.local-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.local-table th,
.local-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.local-table thead th {
  color: #3e3e3e;
  background: #f5f5f5;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.local-table tbody tr:last-child > * {
  border-bottom: 0;
}

.local-table tbody tr:hover {
  background: #fffaf4;
}

.local-table strong {
  color: var(--action-orange);
  font-size: 15px;
}

.local-cards {
  display: none;
}

/* Vehicle cards */
.vehicle-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.vehicle-image {
  height: 160px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--white);
}

.vehicle-image img {
  width: 190px;
  height: 190px;
  object-fit: contain;
}

.vehicle-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-top: 1px solid #f0f0f0;
}

.vehicle-copy h3,
.vehicle-copy p {
  margin: 0;
}

.vehicle-copy h3 {
  font-size: 17px;
}

.vehicle-subtitle {
  margin-top: 3px !important;
  color: var(--action-orange);
  font-size: 12px;
  font-weight: 750;
}

.vehicle-description {
  flex: 1;
  margin-top: 7px !important;
  color: var(--muted);
  font-size: 12.5px;
}

.vehicle-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.vehicle-rate {
  color: var(--action-orange);
  font-size: 22px;
  font-weight: 800;
}

/* Routes */
.routes-section {
  position: relative;
}

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

.route-button {
  min-width: 0;
  min-height: 54px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-small);
  cursor: pointer;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.route-button > svg:first-child {
  color: var(--action-orange);
}

.route-button > svg:last-child {
  color: #858585;
}

.route-button:hover {
  color: var(--action-orange);
  border-color: var(--action-orange);
  transform: translateY(-2px);
}

.custom-route-cta {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 13px;
  margin: 20px auto 0;
  padding: 9px 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
}

.custom-route-cta a,
.footer-form-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--action-orange);
  font-weight: 750;
}

/* Fare calculation */
.calculation-layout {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.8fr);
  gap: 18px;
}

.steps-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  position: relative;
  min-width: 0;
  padding: 20px 17px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
}

.step-number {
  position: absolute;
  top: 14px;
  right: 14px;
  color: var(--action-orange);
  font-size: 13px;
  font-weight: 800;
}

.step-icon,
.why-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--action-orange);
  background: var(--brand-orange-soft);
  border-radius: 10px;
}

.step-card h3,
.step-card p {
  margin: 0;
}

.step-card h3 {
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.25;
}

.step-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.fare-example {
  min-width: 0;
  padding: 21px;
  background: #fff7ee;
  border: 1px solid rgba(250, 147, 31, 0.42);
  border-radius: var(--radius-md);
}

.fare-example h3,
.fare-example p {
  margin: 0;
}

.fare-example h3 {
  font-size: 15px;
}

.fare-example dl {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.fare-example dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(185, 71, 0, 0.14);
  font-size: 12px;
}

.fare-example dt,
.fare-example dd {
  margin: 0;
}

.fare-example dd {
  font-weight: 750;
}

.fare-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.fare-total span {
  max-width: 165px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.fare-total strong {
  color: var(--action-orange);
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

/* Why */
.why-card {
  min-width: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-small);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.why-card h3,
.why-card p {
  margin: 0;
}

.why-card h3 {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.25;
}

.why-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

/* Permits */
.permit-section {
  padding: 0 0 58px;
  background: var(--white);
}

.permit-disclosure {
  max-width: 820px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.permit-disclosure summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 18px;
  cursor: pointer;
  list-style: none;
}

.permit-disclosure summary::-webkit-details-marker {
  display: none;
}

.permit-disclosure summary span {
  display: grid;
}

.permit-disclosure summary strong {
  font-size: 14px;
}

.permit-disclosure summary small {
  color: var(--muted);
  font-size: 12px;
}

.permit-disclosure summary > svg {
  color: var(--action-orange);
  transition: transform 180ms ease;
}

.permit-disclosure[open] summary > svg {
  transform: rotate(180deg);
}

.permit-content {
  padding: 0 18px 18px;
}

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

.permit-grid div {
  display: grid;
  gap: 3px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
}

.permit-grid strong {
  color: var(--action-orange);
  font-size: 14px;
}

.permit-content > p {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
}

/* FAQ */
.faq-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 10px;
  margin: 0 auto;
}

.faq-item {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-small);
}

.faq-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.faq-item.is-open {
  border-color: rgba(185, 71, 0, 0.55);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 12.5px;
  font-weight: 750;
}

.faq-question svg {
  color: var(--action-orange);
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 15px 15px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Final CTA */
.final-cta-wrap {
  padding: 34px 0 0;
}

.final-cta {
  min-width: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 155px;
  padding: 24px 30px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.35), transparent 24%),
    var(--brand-orange);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.final-cta-vehicle {
  align-self: stretch;
  position: relative;
}

.final-cta-vehicle img {
  position: absolute;
  width: 205px;
  height: 205px;
  left: -8px;
  bottom: -50px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.final-cta-copy h2,
.final-cta-copy p {
  margin: 0;
}

.final-cta-copy h2 {
  max-width: 520px;
  font-size: clamp(22px, 2.3vw, 31px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.final-cta-copy p {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 550;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* Footer */
.site-footer {
  padding: 48px 0 22px;
  color: #cacaca;
  background: #111;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 1.25fr 1.25fr;
  gap: 36px;
  padding-bottom: 34px;
}

.footer-logo {
  width: fit-content;
  display: inline-flex;
  padding: 8px 10px;
  background: var(--white);
  border-radius: 9px;
}

.footer-logo img {
  width: 170px;
}

.footer-brand p {
  max-width: 310px;
  margin: 15px 0 0;
  color: #a9a9a9;
  font-size: 12px;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: var(--white);
  font-size: 13px;
}

.footer-column ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a,
.footer-route,
.footer-column p {
  color: #aaa;
  font-size: 12px;
}

.footer-column a:hover,
.footer-route:hover {
  color: #ffd09c;
}

.footer-route {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
}

.footer-contact p {
  display: grid;
  gap: 2px;
  margin: 0 0 12px;
}

.footer-contact strong {
  color: var(--white);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #2b2b2b;
  color: #8e8e8e;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 17px;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Mobile conversion bar */
.mobile-conversion-bar {
  display: none;
}

/* Legal and error pages */
.simple-page {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--soft);
}

.simple-header {
  padding: 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.simple-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.simple-header img {
  width: 165px;
}

.simple-content {
  width: min(calc(100% - 40px), 820px);
  margin: 44px auto;
  padding: clamp(24px, 5vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.simple-content h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.1;
}

.simple-content h2 {
  margin: 28px 0 8px;
  font-size: 19px;
}

.simple-content p,
.simple-content li {
  color: var(--muted);
  font-size: 14px;
}

.simple-footer {
  padding: 22px 0;
  color: #aaa;
  background: #111;
  text-align: center;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-header-actions {
    display: flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

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

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
    column-gap: 25px;
  }

  .hero h1 {
    font-size: clamp(38px, 5vw, 47px);
  }

  .quote-card {
    padding: 21px;
  }

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

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

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

  .calculation-layout {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 145px minmax(0, 1fr) auto;
    gap: 18px;
  }

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

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

@media (max-width: 820px) {
  .site-footer {
    padding-bottom: 84px;
  }

  .custom-route-cta a,
  .footer-form-link,
  .footer-column li > a,
  .footer-route,
  .footer-bottom a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-route {
    width: 100%;
  }

  .mobile-conversion-bar {
    position: fixed;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 1100;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 7px !important;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
  }

  .mobile-conversion-bar a {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    padding: 9px 8px !important;
    color: #ffffff !important;
    border-radius: 11px !important;
    font-size: 13.5px !important;
    font-weight: 800 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: transform 140ms ease, box-shadow 140ms ease !important;
  }

  .mobile-conversion-bar a:active {
    transform: scale(0.96) !important;
  }

  .mobile-conversion-bar .btn-bar-call {
    color: #ffffff !important;
    background: linear-gradient(135deg, #FF7900 0%, #D84800 100%) !important;
    box-shadow: 0 4px 12px rgba(224, 72, 0, 0.28) !important;
  }

  .mobile-conversion-bar .btn-bar-wa {
    color: #ffffff !important;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28) !important;
  }

  .mobile-conversion-bar a:nth-child(n+3),
  .btn-bar-fare {
    display: none !important;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand img {
    width: 139px;
  }

  .mobile-call,
  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "copy" "visual" "form";
    column-gap: 0;
    padding-top: 34px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    margin-bottom: 6px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.4vw, 40px);
    letter-spacing: -0.045em;
  }

  .hero-intro {
    margin: 13px 0 18px;
    font-size: 15px;
  }

  .starting-price {
    padding: 10px 14px;
  }

  .starting-price strong {
    font-size: 29px;
  }

  .hero-notes {
    margin: 13px 0 17px;
  }

  .hero-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-inline: 8px;
    font-size: 13px;
  }

  .hero-visual {
    height: auto;
    margin: 16px 0 18px;
    display: flex;
    justify-content: center;
  }

  .hero-visual picture {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 12 / 7;
  }

  .quote-card {
    margin: 8px 0 36px;
    padding: 20px;
    border-radius: 14px;
  }

  .section {
    padding: 50px 0;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(26px, 7.6vw, 30px);
  }

  .section-kicker {
    margin-bottom: 6px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-card {
    display: grid;
    grid-template-columns: 116px minmax(0, 1fr);
    align-items: center;
  }

  .pricing-image {
    height: 100%;
    min-height: 142px;
  }

  .pricing-image img {
    width: 132px;
    height: 132px;
  }

  .pricing-content {
    border-top: 0;
    border-left: 1px solid #f0f0f0;
  }

  .local-table-wrap {
    display: none;
  }

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

  .local-card {
    min-width: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 11px;
    box-shadow: var(--shadow-small);
  }

  .local-card h3,
  .local-card p,
  .local-card dl,
  .local-card dt,
  .local-card dd {
    margin: 0;
  }

  .local-card h3 {
    font-size: 15px;
  }

  .local-card p {
    color: var(--muted);
    font-size: 12px;
  }

  .local-card > strong {
    display: block;
    margin: 9px 0;
    color: var(--action-orange);
    font-size: 21px;
  }

  .local-card dl {
    display: grid;
    gap: 5px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .local-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 7px;
    font-size: 12px;
  }

  .local-card dt {
    color: var(--muted);
  }

  .local-card dd {
    font-weight: 700;
  }

  .vehicle-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .vehicle-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
  }

  .vehicle-image {
    height: 100%;
    min-height: 185px;
  }

  .vehicle-image img {
    width: 154px;
    height: 154px;
  }

  .vehicle-copy {
    min-width: 0;
    border-top: 0;
    border-left: 1px solid #f0f0f0;
  }

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

  .step-card {
    padding: 17px 12px;
  }

  .step-card h3 {
    font-size: 13px;
  }

  .step-card p {
    font-size: 12px;
  }

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

  .permit-section {
    padding-bottom: 44px;
  }

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

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

  .faq-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .final-cta-wrap {
    padding-top: 24px;
  }

  .final-cta {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
    padding: 21px;
  }

  .final-cta-vehicle img {
    width: 145px;
    height: 145px;
    left: -23px;
    bottom: -34px;
  }

  .final-cta-actions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .final-cta-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .site-footer {
    padding-bottom: 84px;
  }

  .custom-route-cta a,
  .footer-form-link,
  .footer-column li > a,
  .footer-route,
  .footer-bottom a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-route {
    width: 100%;
  }

  .mobile-conversion-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1100;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -7px 24px rgba(17, 17, 17, 0.14);
  }

  .mobile-conversion-bar a {
    min-width: 0;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 7px 5px;
    color: var(--white);
    background: var(--action-orange);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 750;
    text-align: center;
  }

  .mobile-conversion-bar a:nth-child(2) {
    background: var(--ink);
  }
}

@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .trust-card {
    padding: 12px 14px;
  }

  .trust-icon {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
  }

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

  .route-button {
    min-height: 64px;
    grid-template-columns: auto minmax(0, 1fr);
    align-content: center;
    font-size: 12px;
  }

  .route-button > svg:last-child {
    display: none;
  }

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

  .step-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
  }

  .step-number {
    top: 12px;
  }

  .step-icon {
    grid-row: 1 / span 2;
  }

  .step-card h3 {
    align-self: end;
    margin-top: 0;
    font-size: 13px;
  }

  .step-card p {
    margin-top: 3px;
  }

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

  .why-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
  }

  .why-card > span {
    grid-row: 1 / span 2;
  }

  .why-card h3 {
    align-self: end;
    margin-top: 0;
  }

  .why-card p {
    margin-top: 3px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .mobile-header-actions {
    gap: 3px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero-intro {
    font-size: 14.5px;
  }

  .quote-card {
    padding: 17px;
  }

  .local-cards {
    grid-template-columns: 1fr;
  }

  .local-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px 12px;
  }

  .local-card > strong {
    margin: 0;
  }

  .local-card dl {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .local-card dl div {
    display: grid;
  }

  .vehicle-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .vehicle-image img {
    width: 132px;
    height: 132px;
  }

  .vehicle-copy {
    padding: 14px 12px;
  }

  .vehicle-description {
    font-size: 12px;
  }

  .vehicle-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .vehicle-bottom .btn {
    width: 100%;
  }

  .final-cta {
    grid-template-columns: 92px minmax(0, 1fr);
    padding: 18px 15px;
  }

  .final-cta-copy h2 {
    font-size: 21px;
  }

  .final-cta-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .date-fields {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }

  .starting-price {
    width: 100%;
  }

  .starting-price small {
    font-size: 12px;
  }

  .starting-price strong {
    font-size: 27px;
  }

  .pricing-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .pricing-content {
    padding-inline: 14px;
  }

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

  .route-button {
    min-height: 52px;
  }

  .mobile-conversion-bar span {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
