:root {
  --purple-950: #3b0764;
  --purple-800: #5b21b6;
  --purple-600: #7c3aed;
  --purple-200: #ddd6fe;
  --purple-100: #ede9fe;
  --ink: #1e1b2e;
  --ink-soft: #3f3a52;
  --muted: #6b6580;
  --white: #ffffff;
  --surface: #f7f5ff;
  --mist: #f5f3ff;
  --line: transparent;
  --brand: #5b21b6;
  --brand-deep: #3b0764;
  --brand-mid: #7c3aed;
  --accent: #7c3aed;
  --accent-deep: #5b21b6;
  --accent-soft: #ede9fe;
  --line-green: #06c755;
  --header-h: 4.35rem;
  --sticky-h: 4.35rem;
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1140px;
  --font-body: "Sarabun", "Noto Sans Thai", system-ui, sans-serif;
  --font-display: "Anuphan", "Noto Sans Thai", sans-serif;
  --fs-body: 1rem;
  --lh-body: 1.7;
  --lh-heading: 1.4;
  --shadow-sm: none;
  --shadow-md: none;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: 0;
  color: var(--ink);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(ellipse 70% 45% at 0% 0%, rgba(124, 58, 237, 0.1), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 8%, rgba(91, 33, 182, 0.08), transparent 50%),
    var(--white);
}

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

a {
  color: var(--brand-mid);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-deep);
}

h1, h2, h3, .brand-name, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
  line-height: var(--lh-heading);
}

h1 { font-size: clamp(1.55rem, 3.4vw, 2.1rem); margin: 0 0 0.7rem; }
h2 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); margin: 0 0 0.55rem; }
h3 { font-size: 1.05rem; margin: 0 0 0.35rem; line-height: 1.45; font-weight: 600; }

p { margin: 0 0 1rem; color: var(--ink-soft); }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
li + li { margin-top: 0.35rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brand);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
  border-radius: var(--radius-sm);
}

.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  vertical-align: middle;
  font-size: 1.25rem;
}

.icon-sm { font-size: 1.05rem; }

.icon-line {
  display: inline-block;
  flex-shrink: 0;
  width: 1.2rem;
  height: 1.15rem;
  background: currentColor;
  -webkit-mask: url("/assets/images/icons/line.svg") center / contain no-repeat;
  mask: url("/assets/images/icons/line.svg") center / contain no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 0;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after {
    transition: none;
  }
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.brand-name {
  font-size: 0.98rem;
  color: var(--brand-deep);
  line-height: 1.35;
}

.brand-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.nav-toggle {
  margin-left: auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border: 0;
  background: var(--mist);
  color: var(--brand-deep);
  cursor: pointer;
  border-radius: 12px;
  position: relative;
  z-index: 60;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-toggle:hover {
  background: var(--purple-100);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-toggle[aria-expanded="true"] {
  background: var(--brand);
  color: #fff;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.1rem;
}

.site-nav li + li { margin-top: 0; }

.site-nav a {
  display: block;
  padding: 0.4rem 0.5rem;
  color: var(--ink-soft);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.45;
  position: relative;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.2rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
  background: rgba(91, 33, 182, 0.06);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  flex-shrink: 0;
}

.header-cta a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  background: var(--brand);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.header-cta a:hover {
  background: var(--brand-deep);
  color: #fff;
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

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

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-deep);
  color: #fff;
}

.btn-on-dark {
  background: #fff;
  color: var(--brand-deep);
}

.btn-on-dark:hover {
  background: var(--accent-soft);
  color: var(--brand-deep);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: transparent;
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-ghost {
  background: var(--white);
  color: var(--brand);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--mist);
  color: var(--brand-deep);
  border-color: transparent;
}

.btn-line {
  background: var(--line-green);
  color: #fff;
}

.btn-line:hover {
  filter: brightness(0.96);
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

/* Hero — white, copy left / image right */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(ellipse 55% 70% at 100% 30%, rgba(237, 233, 254, 0.9), transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(245, 243, 255, 0.85), transparent 55%),
    var(--white);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
  animation: heroCopyIn 0.85s var(--ease) both;
}

@keyframes heroCopyIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.hero-media {
  min-width: 0;
  animation: heroMediaIn 0.95s var(--ease) 0.08s both;
}

@keyframes heroMediaIn {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
}

.hero-kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.01em;
}

.hero h1 {
  margin: 0 0 0.75rem;
  color: var(--brand-deep);
  font-size: clamp(1.55rem, 3.6vw, 2.2rem);
  line-height: 1.35;
  max-width: 16em;
}

.hero-h1-line {
  display: inline-block;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.82em;
}

.hero-lede {
  margin: 0;
  max-width: 46ch;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.hero-lede strong {
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05em;
}

.hero-chips {
  margin: 1rem 0 0;
  max-width: 34rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-chips li {
  min-height: 2.2rem;
  font-size: 0.8rem;
  background: var(--mist);
}

.hero-copy .hero-actions {
  margin-top: 1.15rem;
}

@media (max-width: 560px) {
  .hero-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-copy,
  .hero-media {
    animation: none;
  }
}

/* Sections */
.section {
  padding: clamp(3.25rem, 6.5vw, 5.5rem) 0;
}

.section-mist {
  background: var(--mist);
  border-block: 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-head p {
  margin: 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent-deep);
  margin: 0 0 0.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.eyebrow::before {
  content: "";
  width: 1.1rem;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
}

/* Fit section — who + what you get */
.fit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.fit-col h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  color: var(--brand-deep);
}

.fit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.fit-list li {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.fit-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--purple-100);
  color: var(--purple-800);
  font-size: 1.35rem;
}

.fit-list strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.1rem;
}

.fit-list p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Interactive cards */
.route-visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.route-visual {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.route-visual:hover {
  transform: translateY(-4px);
  border-color: transparent;
}

.route-visual-media {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(ellipse 70% 80% at 70% 20%, rgba(167, 139, 250, 0.45), transparent 55%),
    linear-gradient(145deg, var(--purple-800) 0%, var(--brand) 55%, #7c3aed 100%);
}

.route-visual-media .material-symbols-outlined {
  font-size: 3.25rem;
  color: #fff;
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 48;
  transition: transform 0.35s var(--ease);
}

.route-visual:hover .route-visual-media .material-symbols-outlined {
  transform: scale(1.08);
}

.route-visual-body {
  padding: 1rem 1.1rem 1.15rem;
}

.route-visual-body h3 {
  margin: 0 0 0.2rem;
  font-size: 0.98rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.3rem;
}

.route-swap {
  font-size: 1.05em;
  color: var(--accent-deep);
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 20;
  vertical-align: middle;
}

.route-visual-body p {
  margin: 0;
  font-size: 0.875rem;
}

.route-visual:hover h3 {
  color: var(--brand);
}

.route-cell {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.4rem;
}

.route-cell > .material-symbols-outlined:first-child {
  color: var(--accent-deep);
  font-size: 1.25rem;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
}

/* Fleet preview — copy + image slider */
.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}

.fleet-copy .eyebrow {
  margin-bottom: 0.4rem;
}

.fleet-copy h2 {
  margin-bottom: 0.55rem;
}

.fleet-copy > p {
  margin: 0 0 1.25rem;
  max-width: 36ch;
}

.fleet-specs {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.fleet-specs li {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.fleet-specs .material-symbols-outlined {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mist);
  color: var(--purple-800);
  font-size: 1.25rem;
}

.fleet-specs strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.1rem;
}

.fleet-specs p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.fleet-slider {
  min-width: 0;
}

.fleet-slides {
  display: grid;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
}

.fleet-slide {
  margin: 0;
  grid-area: 1 / 1;
  position: relative;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  z-index: 0;
}

.fleet-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.fleet-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.fleet-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem 1rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(59, 7, 100, 0.78));
}

.fleet-slider-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.fleet-nav {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--mist);
  color: var(--brand-deep);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.fleet-nav:hover {
  background: var(--purple-100);
  color: var(--brand);
}

.fleet-nav .material-symbols-outlined {
  font-size: 1.35rem;
}

.fleet-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.fleet-dot {
  width: 0.5rem;
  height: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: var(--purple-200);
  cursor: pointer;
  transition: width 0.25s var(--ease), background 0.25s var(--ease);
}

.fleet-dot[aria-selected="true"] {
  width: 1.35rem;
  background: var(--brand);
}

/* Service cards */
.service-rows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.service-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.service-row:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

.service-row h2,
.service-row h3 {
  margin: 0;
  font-size: 1.05rem;
}

.service-row:hover h3,
.service-row:hover h2 { color: var(--brand); }

.service-row .material-symbols-outlined {
  color: var(--brand-mid);
  font-size: 1.35rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  background: var(--mist);
  border-radius: 12px;
}

.service-row p {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
}

.service-row .row-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-deep);
  align-self: center;
  white-space: nowrap;
}

/* Coverage */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: stretch;
}

.coverage-layout > .reveal:last-child {
  display: flex;
  min-height: 100%;
}

.coverage-layout img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  border: 0;
}

.chip-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.chip-list li {
  margin: 0;
  display: grid;
  place-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.55rem;
  background: var(--mist);
  border: 0;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-deep);
  text-align: center;
  line-height: 1.35;
}

@media (max-width: 720px) {
  .chip-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Routes table */
.route-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.98rem;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.route-table th,
.route-table td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 0;
  vertical-align: top;
}

.route-table tr:last-child td {
  border-bottom: 0;
}

.route-table th {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 700;
  background: var(--surface);
}

.route-table td:first-child {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.route-table a {
  text-decoration: none;
  font-weight: 700;
  color: var(--accent-deep);
}

.route-table tbody tr {
  transition: background 0.2s var(--ease);
}

.route-table tbody tr:hover {
  background: rgba(124, 58, 237, 0.06);
}

/* Price — homepage */
.price-home .section-head {
  margin-bottom: 1.75rem;
}

.price-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}

.price-start {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.price-start-label {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.price-start-amount {
  margin: 0;
  font-family: var(--font-display);
  color: var(--brand-deep);
  line-height: 1.2;
}

.price-start-amount strong {
  font-size: clamp(2.25rem, 5vw, 2.85rem);
  font-weight: 700;
  color: var(--brand);
}

.price-start-amount span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.price-start-note {
  margin: 0.4rem 0 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.price-chip-group + .price-chip-group {
  margin-top: 0.9rem;
}

.price-chip-label {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
}

.price-start .chip-list {
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-start .chip-list li {
  min-height: 2.25rem;
  font-size: 0.82rem;
  background: var(--mist);
}

.chip-list-soft li {
  background: var(--surface);
  color: var(--muted);
  font-weight: 500;
}

.price-plan-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.price-plan-list li {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  background: var(--white);
  border-radius: var(--radius);
}

.price-plan-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.15rem;
}

.price-plan-list p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.price-plan-val {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.price-home-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 1.35rem;
}

.price-home-foot p {
  margin: 0;
  max-width: 40rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Price cards (inner pages) */
.price-rows {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-row {
  display: grid;
  gap: 0.55rem;
  padding: 1.4rem 1.35rem;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.price-row:hover {
  transform: translateY(-3px);
}

.price-row .amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
}

.price-row p { margin: 0; font-size: 0.9rem; }

/* Trust points — same pattern as fit / fleet specs */
.trust-grid {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.75rem;
}

.trust-grid li {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.trust-grid .material-symbols-outlined {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mist);
  color: var(--purple-800);
  font-size: 1.25rem;
}

.trust-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 0.1rem;
}

.trust-grid p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.trust-flow {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-deep);
}

/* Legacy lists on inner pages */
.why-list,
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.why-list li,
.steps li {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}

.why-list .material-symbols-outlined,
.steps .step-num {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mist);
  color: var(--purple-800);
  font-size: 1.25rem;
}

.steps .step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.why-list p,
.steps p {
  margin: 0.1rem 0 0;
  font-size: 0.9rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Reviews */
.review-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.15rem 0.75rem;
  scroll-snap-type: x mandatory;
}

.review-item {
  scroll-snap-align: start;
  padding: 1.35rem 1.3rem;
  border: 0;
  background: var(--white);
  border-radius: var(--radius);
}

.review-item blockquote {
  margin: 0;
  padding: 0;
  border-left: 0;
  color: var(--ink-soft);
  position: relative;
}

.review-item blockquote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  display: block;
  margin-bottom: 0.2rem;
}

.review-author {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  margin-top: 1rem;
}

.review-avatar {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  flex-shrink: 0;
}

.review-item:nth-child(2) .review-avatar { background: var(--brand-deep); }
.review-item:nth-child(3) .review-avatar { background: var(--brand-mid); }
.review-item:nth-child(4) .review-avatar { background: #6d28d9; }

.review-author cite {
  display: block;
  margin: 0;
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.review-author .meta {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.8rem;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.4;
}

/* FAQ */
.faq-topics {
  margin: 0 0 1.35rem;
  max-width: 42rem;
}

.faq-topics li {
  min-height: 2.15rem;
  font-size: 0.82rem;
}

.faq {
  display: grid;
  gap: 0.65rem;
}

.faq-more {
  margin: 1.15rem 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.faq-item {
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
  transition: background 0.2s var(--ease);
}

.faq-item[data-open="true"] {
  border-color: transparent;
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.1rem 1.2rem;
  font: inherit;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
  cursor: pointer;
}

.faq-item button .faq-chevron {
  transition: transform 0.25s var(--ease);
  color: var(--brand-mid);
  background: var(--mist);
  border-radius: 999px;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
}

.faq-item[data-open="true"] button .faq-chevron {
  transform: rotate(180deg);
  background: var(--accent-soft);
  color: var(--accent-deep);
}

.faq-panel {
  display: none;
  padding: 0 1.2rem 1.15rem;
}

.faq-item[data-open="true"] .faq-panel {
  display: block;
}

.faq-panel p:last-child { margin-bottom: 0; }

/* Page hero (inner) — same language as homepage hero */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4.5vw, 3.25rem) 0;
  background:
    radial-gradient(ellipse 50% 80% at 100% 10%, rgba(237, 233, 254, 0.95), transparent 55%),
    radial-gradient(ellipse 40% 60% at 0% 90%, rgba(245, 243, 255, 0.9), transparent 50%),
    var(--white);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
  max-width: 36rem;
}

.page-hero-media {
  min-width: 0;
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.page-hero-aside {
  min-width: 0;
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
}

.page-hero-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius) - 0.35rem);
  margin-bottom: 1rem;
}

.page-hero-aside-label {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.page-hero-aside .fit-list {
  gap: 0.85rem;
}

.page-hero-aside .fit-icon {
  background: var(--white);
}

.page-hero .eyebrow {
  margin-bottom: 0.4rem;
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  color: var(--brand-deep);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  line-height: 1.3;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 0.3rem; }
.breadcrumb a { text-decoration: none; color: var(--muted); }
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb li + li::before {
  content: "/";
  color: var(--purple-200);
  margin-right: 0.1rem;
}

.page-hero .lede {
  max-width: 40rem;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.page-hero .chip-list,
.page-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1rem 0 0;
  max-width: none;
  grid-template-columns: none;
}

.page-hero .chip-list li,
.page-hero-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  background: var(--mist);
  border-radius: 999px;
}

.page-hero .hero-actions {
  margin-top: 1.15rem;
}

.content-media {
  margin: 0 0 1.5rem;
}

.content-media img {
  width: 100%;
  aspect-ratio: 16 / 7;
  max-height: 30rem;
  object-fit: cover;
  border-radius: var(--radius);
  border: 0;
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: start;
}

.page-split > img,
.page-split .page-split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-panel {
  background: var(--mist);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.contact-panel-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.contact-channel {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.05rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
}

.contact-channel:hover {
  background: var(--purple-100);
  color: inherit;
}

.contact-channel-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--mist);
  color: var(--brand);
  flex-shrink: 0;
}

.contact-channel-icon .material-symbols-outlined {
  font-size: 1.35rem;
}

.contact-channel-line .contact-channel-icon {
  background: var(--line-green);
}

.contact-channel-line .icon-line {
  width: 1.15rem;
  height: 1.1rem;
  background: #fff;
}

.contact-channel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 0.1rem;
}

.contact-channel p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--brand-deep);
  font-family: var(--font-display);
  font-weight: 600;
}

.contact-panel-chips {
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  grid-template-columns: none;
}

.contact-panel-chips li {
  min-height: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  background: var(--white);
  border-radius: 999px;
}

.contact-panel-note {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.section-foot {
  margin-top: 1.5rem;
}

.prose { max-width: 42rem; }

.policy-meta {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.policy-doc {
  max-width: 44rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.policy-toc {
  margin: 0;
  max-width: 44rem;
}

.policy-toc li {
  padding: 0;
  background: var(--white);
}

.policy-toc a {
  display: grid;
  place-items: center;
  min-height: 2.5rem;
  padding: 0.45rem 0.55rem;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.policy-toc li:hover {
  background: var(--purple-100);
}

.policy-doc h2 {
  margin-top: 2.25rem;
  padding-top: 0.25rem;
}

.policy-doc h2:first-child {
  margin-top: 0;
}

.policy-doc code {
  font-size: 0.88em;
  padding: 0.1em 0.35em;
  background: var(--mist);
  border: 0;
  color: var(--ink-soft);
  word-break: break-all;
  border-radius: 6px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.check-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin: 0 0 0.55rem;
}

.check-list .material-symbols-outlined {
  color: var(--accent-deep);
  font-size: 1.15rem;
  margin-top: 0.15rem;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 50% 80% at 80% 120%, rgba(167, 139, 250, 0.35), transparent 50%),
    linear-gradient(135deg, #3b0764 0%, #5b21b6 55%, #6d28d9 100%);
  color: #fff;
  padding: clamp(2.75rem, 5.5vw, 3.75rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 32rem; margin: 0 auto 1.25rem; }
.cta-band .hero-actions { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--purple-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 1.75rem 0 5.25rem;
}

.footer-inner {
  display: grid;
  gap: 1.1rem;
}

.footer-top {
  display: block;
}

.footer-brand-block {
  min-width: 0;
}

.footer-brand {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.3;
}

.footer-brand:hover {
  color: var(--purple-200);
}

.footer-tag {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: rgba(237, 233, 254, 0.78);
  line-height: 1.45;
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s var(--ease);
}

.footer-cta-link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.footer-cta-link .material-symbols-outlined {
  font-size: 1.05rem;
}

.footer-cta-link .icon-line {
  width: 1rem;
  height: 1rem;
  background: #fff;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.15rem;
  align-items: center;
}

.footer-nav a {
  color: rgba(237, 233, 254, 0.82);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.footer-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.footer-copy {
  margin: 0;
  padding-top: 0.85rem;
  font-size: 0.8rem;
  color: rgba(237, 233, 254, 0.55);
  line-height: 1.5;
}

.footer-copy a {
  color: rgba(237, 233, 254, 0.72);
  text-decoration: none;
}

.footer-copy a:hover {
  color: #fff;
}

/* HTML sitemap page */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.sitemap-grid h2 {
  font-size: 1.05rem;
  color: var(--brand-deep);
  margin: 0 0 0.85rem;
}

.sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.sitemap-list li { margin: 0; }

.sitemap-list a {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  background: var(--mist);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s var(--ease);
}

.sitemap-list a:hover {
  background: var(--purple-100);
  color: inherit;
}

.sitemap-list strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.sitemap-list span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

@media (max-width: 960px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
  }
}

/* legacy grid (unused on new footer) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-top: 0;
  padding: 0.6rem 0.85rem;
  gap: 0.5rem;
}

.sticky-cta .btn {
  flex: 1;
  padding: 0.75rem 0.45rem;
  font-size: 0.88rem;
  line-height: 1.3;
  white-space: nowrap;
}

/* Back to top */
.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  z-index: 45;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  padding: 0;
  cursor: pointer;
  background: var(--purple-950);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.22s var(--ease),
    visibility 0.22s var(--ease),
    transform 0.22s var(--ease),
    background 0.2s var(--ease);
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.to-top:hover {
  background: var(--brand);
  color: #fff;
}

.to-top .material-symbols-outlined {
  font-size: 1.35rem;
}

@media (max-width: 960px) {
  .to-top {
    bottom: calc(var(--sticky-h) + 0.85rem);
    right: 0.85rem;
  }

  body.nav-open .to-top {
    opacity: 0;
    visibility: hidden;
  }
}

/* Cookie */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(var(--sticky-h) + 0.75rem);
  z-index: 60;
  max-width: 28rem;
  margin: 0 auto;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: none;
}

.cookie-banner h2 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.cookie-banner p {
  font-size: 0.9rem;
  margin: 0 0 0.85rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* 404 */
.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.25rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.18), transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(91, 33, 182, 0.14), transparent 45%),
    var(--mist);
}

.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--brand);
}

.not-found .lede {
  max-width: 28rem;
  margin: 0 auto 1.5rem;
  color: var(--muted);
}

.not-found .hero-actions { justify-content: center; }

.not-found .chip-list {
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.not-found .chip-list a {
  color: inherit;
  text-decoration: none;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.not-found .chip-list li {
  padding: 0;
  background: var(--white);
}

.not-found .chip-list li:hover {
  background: var(--purple-100);
}

.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.media-pair img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 0;
}

@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .hero-copy {
    max-width: none;
    order: 1;
  }

  .hero-media {
    order: 2;
  }

  .coverage-layout,
  .two-col,
  .fit-split,
  .fleet-layout,
  .price-home-grid,
  .price-rows,
  .page-split,
  .media-pair,
  .service-rows {
    grid-template-columns: 1fr;
  }

  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: none;
  }

  .page-hero-media,
  .page-hero-aside {
    order: 2;
  }

  .footer-top {
    align-items: flex-start;
  }

  .fleet-copy > p {
    max-width: none;
  }

  .price-home-foot {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .fit-split {
    gap: 2.25rem;
  }

  .service-row {
    grid-template-columns: auto 1fr;
  }

  .service-row .row-link {
    grid-column: 2;
  }

  .site-header {
    z-index: 55;
  }

  .site-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 55;
    margin: 0;
    padding:
      calc(var(--header-h) + 1.25rem)
      1.25rem
      calc(var(--sticky-h) + 1.5rem);
    background: var(--brand-deep);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
    transition:
      opacity 0.28s var(--ease),
      visibility 0.28s var(--ease),
      transform 0.28s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav ul {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.15rem;
  }

  .site-nav li + li { margin-top: 0; }

  .site-nav a {
    padding: 0.85rem 0.35rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    border-radius: 0;
  }

  .site-nav a::after { display: none; }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: #fff;
    background: transparent;
  }

  .site-nav a[aria-current="page"] {
    color: #fff;
    box-shadow: inset 3px 0 0 #fff;
    padding-left: 0.75rem;
  }

  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .site-header {
    background: transparent;
    backdrop-filter: none;
  }

  body.nav-open .brand {
    position: relative;
    z-index: 60;
  }

  body.nav-open .brand-name {
    color: #fff;
  }

  body.nav-open .brand-tag {
    color: rgba(237, 233, 254, 0.75);
  }

  .sticky-cta { display: flex; }

  body { padding-bottom: calc(var(--sticky-h) + 0.5rem); }

  .site-footer { padding-bottom: 5.75rem; }
}

@media (max-width: 720px) {
  .route-visuals {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) and (max-width: 960px) {
  .route-visuals {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-rows {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-actions .btn { width: 100%; }
  .route-table { font-size: 0.9rem; }
  .route-table th:nth-child(3),
  .route-table td:nth-child(3) { display: none; }
}
