:root {
  --navy: #0f172a;
  --charcoal: #1e293b;
  --coral: #f97360;
  --coral-dark: #ea604d;
  --gold: #d4a017;
  --offwhite: #f8fafc;
  --light: #eef2f7;
  --text: #162032;
  --muted: #5f6b7a;
  --heading: #0f172a;
  --soft-accent: #9f7a36;
  --white: #ffffff;
  --line: rgba(15, 23, 42, 0.08);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: var(--offwhite);
}

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

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

button,
input {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}

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

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

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a:not(.button) {
  color: var(--muted);
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

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

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(249, 115, 96, 0.24);
}

.button-primary:hover {
  background: var(--coral-dark);
}

.button-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(15, 23, 42, 0.12);
}

.button-secondary.inverted {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
}

.hero-section,
.section,
.quote-section {
  padding: 80px 0;
}

.hero-section {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 96, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.hero-grid,
.quote-shell,
.pricing-layout,
.usp-grid,
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.75);
}

h1,
h2,
h3,
strong {
  font-family: "Montserrat", sans-serif;
  color: var(--heading);
}

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

.hero-copy h1,
.section-heading h2,
.pricing-copy h2,
.final-cta-card h2,
.narrow-copy h2,
.usp-copy h2 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  font-size: clamp(3rem, 6vw, 4.6rem);
  max-width: 9ch;
}

.hero-title-wide {
  max-width: 100% !important;
  white-space: nowrap;
  font-size: clamp(3.2rem, 6.3vw, 5.6rem);
  line-height: 0.98;
}

.tone-accent {
  color: var(--coral);
}

.hero-text,
.section-heading p,
.service-card p,
.fleet-body p,
.why-card p,
.pricing-card p,
.route-card p,
.review-card p,
.footer-text,
.footer-links li,
.quote-side-card p,
.form-note,
.narrow-copy p,
.usp-copy p,
.micro-line {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-proof-row article {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 247, 0.75));
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
}

.hero-proof-row strong {
  display: block;
  margin-bottom: 6px;
}

.hero-proof-row span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.hero-mini-form {
  max-width: 380px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef2e6, #f7f8f2);
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow);
}

.hero-mini-form h3 {
  margin-bottom: 14px;
}

.mini-form-grid {
  display: grid;
  gap: 10px;
}

.mini-form-grid input {
  height: 46px;
  background: #ffffff;
}

.mini-form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pills span,
.tag-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.84rem;
  color: var(--navy);
}

.micro-line {
  margin-top: 18px;
  font-weight: 500;
}

.hero-media-card,
.hero-carousel-card,
.quote-form,
.quote-side-card,
.service-card,
.fleet-card,
.why-card,
.pricing-card,
.premium-step,
.route-card,
.review-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-media-card,
.hero-carousel-card {
  position: relative;
  overflow: hidden;
  padding: 16px;
}

.hero-media-card img {
  width: 100%;
  border-radius: 18px;
}

.hero-carousel-card {
  min-height: 610px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.hero-carousel-track {
  position: relative;
  min-height: 510px;
}

.hero-vehicle-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-vehicle-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.hero-vehicle-media {
  position: absolute;
  inset: 64px 0 86px 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0 24px;
  background: linear-gradient(180deg, #ffffff, #ffffff);
}

.hero-vehicle-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-vehicle-media img {
  max-height: 320px;
  width: min(100%, 560px);
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(15, 23, 42, 0.12));
}

.hero-vehicle-info {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  max-width: 290px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.16);
}

.hero-vehicle-kicker {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-vehicle-info h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.45rem;
}

.hero-vehicle-info p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  font-size: 0.88rem;
  margin-bottom: 0;
}

.hero-vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.hero-vehicle-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.76rem;
}

.hero-stage-glow {
  position: absolute;
  left: 50%;
  bottom: 68px;
  width: min(70%, 360px);
  height: 74px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(249, 115, 96, 0.28), rgba(249, 115, 96, 0.02) 72%);
  filter: blur(10px);
  z-index: 1;
}

.hero-shape-panel {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: min(100%, 360px);
  min-height: 360px;
  padding: 28px 28px 26px 36px;
  border-radius: 28px 28px 28px 110px;
  background:
    linear-gradient(135deg, rgba(86, 53, 33, 0.82), rgba(58, 34, 17, 0.74)),
    linear-gradient(180deg, rgba(249, 115, 96, 0.12), transparent);
}

.hero-shape-kicker {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.hero-shape-panel h3 {
  margin-bottom: 18px;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.9);
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.hero-shape-points {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.hero-shape-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.hero-shape-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--coral);
  font-size: 1.2rem;
}

.hero-carousel-nav {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: var(--coral);
}

/* Hero showroom override */
.hero-copy {
  position: relative;
  z-index: 3;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-carousel-card {
  min-height: 560px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.hero-carousel-track {
  min-height: 500px;
  background: transparent;
}

.hero-vehicle-slide {
  transform: translateX(18px);
}

.hero-vehicle-media {
  inset: 0 -110px 72px -140px;
  z-index: 3;
  padding: 0;
  background: transparent;
  position: absolute;
}

.hero-vehicle-media img {
  max-height: 430px;
  width: min(100%, 780px);
  filter: drop-shadow(0 26px 28px rgba(15, 23, 42, 0.12));
}

.hero-vehicle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 14%, rgba(255, 255, 255, 0) 86%, #ffffff 100%),
    linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 16%, rgba(255, 255, 255, 0) 84%, #ffffff 100%);
}

.hero-vehicle-line {
  position: absolute;
  left: 38px;
  right: 30px;
  bottom: 8px;
  z-index: 4;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.hero-vehicle-line strong {
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-vehicle-line span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-stage-glow {
  left: 52%;
  bottom: 28px;
  width: min(76%, 440px);
  height: 88px;
}

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

.hero-steps-strip {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 30px;
  color: var(--navy);
  font-weight: 600;
}

.hero-steps-strip p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-steps-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(249, 115, 96, 0.12);
  color: var(--coral);
  font-weight: 700;
}

.section-heading.center,
.narrow-copy {
  text-align: center;
}

.quote-section {
  background: var(--white);
}

.quote-shell {
  align-items: stretch;
}

.quote-form,
.quote-side-card {
  padding: 28px;
}

.quote-side-card {
  background: linear-gradient(180deg, var(--light), var(--white));
  border: 1px solid rgba(15, 23, 42, 0.05);
}

.quote-logo {
  width: min(100%, 320px);
  margin: 0 auto 20px;
}

.route-preview-card {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
  color: var(--white);
}

.route-preview-title {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.route-preview-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.3rem;
  line-height: 1.35;
}

.route-preview-subtitle {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.route-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.route-meta-grid div {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.route-meta-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.route-meta-grid strong {
  color: var(--white);
  font-size: 0.95rem;
}

.route-stop {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.route-stop:first-of-type {
  border-top: 0;
}

.route-stop strong {
  color: var(--gold);
}

.route-stop span {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.route-stop small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.route-stop a {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 700;
}

.route-preview-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.quote-section {
  background:
    radial-gradient(circle at top right, rgba(212, 160, 23, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fffaf3 100%);
}

.quote-side-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(212, 160, 23, 0.16), transparent 30%),
    linear-gradient(155deg, #0f172a 0%, #162033 48%, #231608 100%);
  border: 1px solid rgba(212, 160, 23, 0.2);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.16);
}

.quote-side-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(249, 115, 96, 0.14), transparent 26%);
  pointer-events: none;
}

.quote-logo-orbit {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.quote-logo-orbit::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.3) 0%, rgba(212, 160, 23, 0.08) 45%, transparent 72%);
  filter: blur(10px);
  opacity: 0.95;
  animation: logoPulse 3.8s ease-in-out infinite;
}

.quote-trust-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.quote-trust-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.quote-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 300px);
  margin: 0 auto;
  transform-origin: center;
  filter:
    drop-shadow(0 0 10px rgba(212, 160, 23, 0.34))
    drop-shadow(0 12px 30px rgba(15, 23, 42, 0.28));
  animation: logoPulse 3.8s ease-in-out infinite;
}

.quote-side-intro {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 248, 235, 0.86);
  line-height: 1.75;
}

.route-preview-card {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(140deg, #111827 0%, #192438 50%, #24180b 100%);
  border: 1px solid rgba(212, 160, 23, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 45px rgba(15, 23, 42, 0.24);
  color: var(--white);
}

.route-preview-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.12);
  border: 1px solid rgba(212, 160, 23, 0.16);
  color: #f7d98a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.route-preview-card h3 {
  margin-bottom: 10px;
  color: #fff8eb;
  font-size: 1.36rem;
  line-height: 1.35;
}

.route-preview-subtitle {
  margin-bottom: 18px;
  color: rgba(248, 225, 177, 0.82);
  font-size: 0.93rem;
  letter-spacing: 0.02em;
}

.route-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.route-meta-grid div {
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.route-meta-grid span {
  display: block;
  margin-bottom: 6px;
  color: rgba(248, 225, 177, 0.66);
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-meta-grid strong {
  color: #fffaf0;
  font-size: 0.95rem;
}

.route-stop {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.route-stop strong {
  color: #f7d98a;
  font-size: 0.92rem;
}

.route-stop span {
  color: rgba(255, 248, 235, 0.94);
  line-height: 1.6;
}

.route-stop small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 241, 214, 0.72);
  font-size: 0.82rem;
}

.route-stop small em {
  display: inline-block;
  color: rgba(255, 230, 173, 0.88);
  font-style: italic;
}

.route-stop a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  color: #f7d98a;
  font-weight: 700;
}

.route-preview-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 241, 214, 0.74);
  font-size: 0.9rem;
}

.quote-trust-list {
  position: relative;
  z-index: 1;
}

.quote-trust-list li {
  color: rgba(255, 248, 235, 0.86);
}

.quote-trust-list li::before {
  background: linear-gradient(180deg, #f7d98a 0%, #d4a017 100%);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.88;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.field-grid {
  display: grid;
  gap: 18px;
}

.field-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

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

label span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 600;
}

input {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fbfcfe;
}

.quote-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.services-section {
  background: var(--offwhite);
}

.services-grid,
.fleet-grid-cards,
.how-grid,
.reviews-grid {
  display: grid;
  gap: 20px;
}

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

.service-card,
.premium-step,
.pricing-card,
.review-card {
  padding: 26px;
}

.service-card:hover,
.fleet-card:hover,
.route-card:hover {
  transform: translateY(-3px);
}

.section-cta {
  margin-top: 28px;
}

.fleet-section {
  background:
    radial-gradient(circle at top center, rgba(249, 115, 96, 0.08), transparent 22%),
    linear-gradient(180deg, #0f172a, #162033 55%, #0f172a);
}

.fleet-section .section-heading h2,
.fleet-section .section-heading p,
.fleet-section-intro p {
  color: var(--white);
}

.fleet-section-intro {
  max-width: 760px;
  margin-bottom: 26px;
}

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

.fleet-dark-grid {
  gap: 24px;
}

.fleet-card {
  overflow: hidden;
}

.fleet-dark-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

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

.fleet-body {
  padding: 22px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
}

.fleet-section .button-secondary {
  border-color: rgba(15, 23, 42, 0.12);
}

.why-section {
  background: var(--navy);
}

.light-text h2,
.final-cta-card h2 {
  color: var(--white);
}

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

.why-card {
  padding: 26px;
}

.pricing-section {
  background: var(--light);
}

.pricing-grid {
  display: grid;
  gap: 16px;
}

.how-section {
  background: var(--white);
}

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

.premium-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--coral);
  color: var(--white);
}

.trustwall-section {
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.trustwall-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.trustwall-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.trustwall-card.feature-card,
.trustwall-card.stats-card,
.trustwall-card.quote-card-premium {
  padding: 28px;
  background: var(--white);
}

.trustwall-kicker {
  color: var(--soft-accent);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.trustwall-card.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 82%;
  transform: scale(1.12);
}

.stats-card {
  display: grid;
  gap: 16px;
}

.stats-card div {
  padding: 16px 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.stats-card div:first-child {
  border-top: 0;
  padding-top: 0;
}

.stats-card strong {
  display: block;
  margin-bottom: 6px;
}

.stats-card span {
  color: var(--muted);
  line-height: 1.6;
}

.quote-card-premium {
  background: linear-gradient(135deg, rgba(249, 115, 96, 0.1), rgba(15, 23, 42, 0.04));
}

.quote-card-premium p {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
}

.routes-section {
  background: var(--offwhite);
}

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

.faq-section {
  background:
    radial-gradient(circle at top center, rgba(212, 160, 23, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
}

.faq-intro {
  max-width: 820px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 28px auto 0;
}

.faq-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(212, 160, 23, 0.24);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 62px 22px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--heading);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 96, 0.1);
  color: var(--coral-dark);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
  background: rgba(212, 160, 23, 0.14);
  color: var(--soft-accent);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.75;
}

.route-card {
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.route-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--coral);
  font-weight: 700;
}

.reviews-section {
  background: var(--white);
}

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

.stars {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.reviews-note {
  margin-top: 24px;
  text-align: center;
  color: var(--muted);
}

.final-cta-section {
  background: var(--navy);
}

.final-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--navy), var(--charcoal));
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.75);
}

.about-micro-section {
  background: var(--white);
}

.narrow-copy {
  max-width: 760px;
}

.site-footer {
  padding: 48px 0 20px;
  background: var(--charcoal);
  color: var(--white);
}

.footer-grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: 250px;
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1fa855, #188b46);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(31, 168, 85, 0.28);
}

.floating-whatsapp span,
.floating-whatsapp strong {
  display: block;
}

.floating-whatsapp span {
  font-size: 0.8rem;
  opacity: 0.9;
}

@media (max-width: 1080px) {
  .hero-grid,
  .quote-shell,
  .pricing-layout,
  .footer-grid,
  .services-grid,
  .fleet-grid-cards,
  .how-grid,
  .trustwall-grid,
  .routes-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
  }

  .nav-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand img {
    width: 104px;
    flex-shrink: 0;
  }

  .brand-text strong {
    font-size: 0.92rem;
    line-height: 1.2;
  }

  .brand-text small {
    font-size: 0.76rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    z-index: 70;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    box-shadow: 0 24px 44px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(14px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.button) {
    padding: 8px 4px;
    font-size: 1.08rem;
  }

  .site-nav .button {
    margin-top: 8px;
  }

  .hero-section,
  .section,
  .quote-section {
    padding: 40px 0;
  }

  .hero-grid,
  .quote-shell,
  .pricing-layout,
  .footer-grid,
  .services-grid,
  .fleet-grid-cards,
  .why-grid-cards,
  .how-grid,
  .trustwall-grid,
  .routes-grid,
  .reviews-grid,
  .field-grid.four,
  .field-grid.two {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 2.2rem;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-visual {
    order: 3;
    margin-top: -4px;
    width: 100%;
  }

  .hero-title-wide {
    white-space: normal;
    max-width: none !important;
    font-size: clamp(2.7rem, 10vw, 3.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 8px 0 0;
  }

  .hero-copy .eyebrow {
    order: 1;
    margin-bottom: 2px;
  }

  .hero-title-wide {
    order: 2;
  }

  .hero-title-wide .tone-accent {
    display: block;
  }

  .hero-actions {
    order: 2;
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    margin-top: 8px;
  }

  .hero-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding: 14px 10px;
    font-size: 0.96rem;
  }

  .hero-text {
    order: 4;
    font-size: 1.04rem;
    line-height: 1.75;
    margin-top: 8px;
  }

  .trust-pills {
    order: 5;
  }

  .hero-mini-form {
    order: 6;
  }

  .hero-carousel-track {
    min-height: 320px;
    width: 100%;
  }

  .hero-vehicle-media {
    inset: 0 -10px 38px -10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .hero-vehicle-media img {
    max-height: 300px;
    width: min(100%, 95vw);
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(15, 23, 42, 0.1));
  }

  .hero-vehicle-line {
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0 18px;
    text-align: center;
    white-space: normal;
  }

  .hero-vehicle-line strong,
  .hero-vehicle-line span {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-vehicle-line strong {
    font-size: 1.18rem;
    margin-bottom: 6px;
  }

  .hero-vehicle-line span {
    font-size: 0.88rem;
    line-height: 1.5;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero-carousel-nav {
    bottom: -18px;
  }

  .hero-proof-row,
  .micro-line {
    display: none;
  }

  .hero-mini-form {
    margin-top: 16px;
  }

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

  .hero-proof-row {
    grid-template-columns: 1fr;
  }

  .mini-form-split,
  .hero-steps-strip {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .route-stop {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .final-cta-card {
    padding: 28px;
  }

  .floating-whatsapp {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
