:root {
  color-scheme: light;
  --bg: #f6fbf7;
  --bg-strong: #edf7f2;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-soft: #f1f8f4;
  --line: rgba(18, 62, 48, 0.1);
  --line-strong: rgba(18, 62, 48, 0.16);
  --text: #15312c;
  --muted: #5f7a72;
  --accent: #14b86f;
  --accent-strong: #0c9a5a;
  --accent-soft: rgba(20, 184, 111, 0.1);
  --blue-soft: #cfe9ff;
  --shadow-lg: 0 32px 80px rgba(34, 76, 61, 0.12);
  --shadow-md: 0 18px 40px rgba(34, 76, 61, 0.08);
  --shadow-sm: 0 10px 24px rgba(34, 76, 61, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --gutter: clamp(14px, 1.8vw, 28px);
  --container: min(1320px, calc(100vw - (var(--gutter) * 2)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 118px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(20, 184, 111, 0.1), transparent 22%),
    radial-gradient(circle at top right, rgba(112, 180, 255, 0.12), transparent 20%),
    linear-gradient(180deg, #fbfefd 0%, #f4faf6 38%, #eef7f2 100%);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.scroll-progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress, 0));
  background: linear-gradient(90deg, var(--accent) 0%, #23b0f4 100%);
  box-shadow: 0 0 24px rgba(35, 176, 244, 0.28);
}

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

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

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.page-blob,
.page-grid {
  position: absolute;
}

.page-blob {
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.6;
}

.page-blob-one {
  top: -120px;
  left: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20, 184, 111, 0.18), rgba(20, 184, 111, 0));
  animation: drift 18s ease-in-out infinite;
}

.page-blob-two {
  right: -40px;
  top: 180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(97, 164, 255, 0.18), rgba(97, 164, 255, 0));
  animation: drift 22s ease-in-out infinite reverse;
}

.page-grid {
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(22, 55, 48, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 55, 48, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.45));
}

.page-shell {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 20px 0 32px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

.brand strong,
.brand small,
.section-heading h2,
.hero-content h1,
.hero-panel strong,
.contact-copy h2,
.experience-panel h2,
.intro-grid h2,
.story-copy strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7fe1ff 0%, #33d585 100%);
  color: #0c3026;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), #23b0f4);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a.is-active {
  color: var(--text);
}

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

.button:focus-visible,
.card-action:focus-visible,
.video-trigger:focus-visible,
.floating-request:focus-visible,
.nav-toggle:focus-visible,
.quick-request-close:focus-visible,
.video-close:focus-visible {
  outline: 3px solid rgba(35, 176, 244, 0.35);
  outline-offset: 2px;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: calc(100vw - (var(--gutter) * 2));
  margin-left: calc(50% - 50vw + var(--gutter));
  margin-right: calc(50% - 50vw + var(--gutter));
  min-height: calc(100svh - 108px);
  padding: clamp(32px, 4vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.94)),
    linear-gradient(135deg, rgba(20, 184, 111, 0.08), rgba(112, 180, 255, 0.09));
  box-shadow: var(--shadow-lg);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at var(--pointer-x, 50%) var(--pointer-y, 32%),
      rgba(255, 255, 255, 0.6),
      rgba(255, 255, 255, 0) 24%
    );
  opacity: 0.7;
  transition: opacity 180ms ease;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background:
    radial-gradient(circle at 20% 24%, rgba(20, 184, 111, 0.16), transparent 30%),
    radial-gradient(circle at 78% 16%, rgba(35, 176, 244, 0.14), transparent 28%);
  animation: heroSweep 16s ease-in-out infinite;
}

.hero-motion {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-shell {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.has-hero-video .hero-video-shell {
  opacity: 0.34;
}

.hero-radial,
.hero-light-beam,
.hero-road,
.hero-car-silhouette {
  position: absolute;
}

.hero-radial {
  border-radius: 999px;
  filter: blur(26px);
}

.hero-radial-one {
  top: -10%;
  left: -8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(20, 184, 111, 0.16), rgba(20, 184, 111, 0));
  animation: drift 18s ease-in-out infinite;
}

.hero-radial-two {
  top: 14%;
  right: 0;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(112, 180, 255, 0.18), rgba(112, 180, 255, 0));
  animation: drift 22s ease-in-out infinite reverse;
}

.hero-light-beam {
  inset: auto auto -12% 48%;
  width: 58%;
  height: 72%;
  transform: skewX(-28deg);
  translate: var(--hero-shift-x, 0px) var(--hero-shift-y, 0px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(111, 186, 255, 0.14));
  filter: blur(2px);
  transition: translate 220ms ease;
}

.hero-road {
  left: 56%;
  bottom: -8%;
  width: 64%;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%) rotate(-7deg);
  transform-origin: center bottom;
}

.hero-road-primary {
  height: 58%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(22, 55, 48, 0.08)),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0) 0 22px, rgba(20, 184, 111, 0.16) 22px 30px);
  opacity: 0.65;
  animation: roadPulse 11s linear infinite;
}

.hero-road-secondary {
  width: 40%;
  height: 44%;
  left: 62%;
  opacity: 0.25;
  animation: roadPulse 15s linear infinite;
}

.hero-car-silhouette {
  right: 10%;
  bottom: 18%;
  width: 360px;
  height: 160px;
  translate: var(--hero-shift-x, 0px) var(--hero-shift-y, 0px);
  background:
    radial-gradient(circle at 24% 54%, rgba(255, 255, 255, 0.8), transparent 14%),
    linear-gradient(135deg, rgba(15, 49, 43, 0.16), rgba(15, 49, 43, 0.7));
  clip-path: polygon(
    9% 72%,
    15% 50%,
    25% 40%,
    42% 32%,
    61% 34%,
    74% 42%,
    88% 53%,
    92% 64%,
    95% 72%,
    90% 76%,
    84% 76%,
    81% 84%,
    69% 84%,
    66% 76%,
    34% 76%,
    31% 84%,
    19% 84%,
    16% 76%,
    11% 76%
  );
  opacity: 0.72;
  filter: drop-shadow(0 22px 40px rgba(52, 87, 75, 0.12));
  animation: hoverFloat 7s ease-in-out infinite;
  transition: translate 220ms ease;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(24px, 2vw, 34px);
  align-items: end;
}

.hero-content {
  max-width: 860px;
}

.eyebrow,
.section-label,
.mini-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(20, 184, 111, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent-strong);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3.2rem, 5.2vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1vw, 1.12rem);
  line-height: 1.85;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
  position: relative;
  overflow: hidden;
  --mag-x: 0px;
  --mag-y: 0px;
  --mag-lift: 0px;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) + var(--mag-lift)), 0);
}

.button:hover,
.button:focus-visible {
  --mag-lift: -2px;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #23b0f4 100%);
  box-shadow: 0 18px 40px rgba(20, 184, 111, 0.22);
}

.button-primary::after,
.card-action::after,
.floating-request::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 90%;
  height: 100%;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transition: left 420ms ease;
}

.button-primary:hover::after,
.card-action:hover::after,
.floating-request:hover::after {
  left: 150%;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
  max-width: 920px;
}

.hero-highlights article,
.trust-band > div,
.policy-card,
.delivery-card,
.fleet-card,
.experience-panel,
.contact-form,
.contact-copy,
.hero-panel,
.story-card,
.story-points article {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.hero-highlights article,
.trust-band > div,
.story-points article {
  padding: 20px;
  border-radius: 22px;
}

.hero-highlights strong,
.contact-points strong,
.story-points strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
}

.hero-highlights span,
.contact-points span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.floating-card {
  animation: floatPanel 7.5s ease-in-out infinite;
}

.hero-panel {
  padding: 24px;
  border-radius: 28px;
  max-width: 430px;
  width: 100%;
  justify-self: end;
}

.hero-panel-top strong {
  font-size: 1.32rem;
  line-height: 1.05;
}

.hero-panel-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.hero-panel-grid article {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(244, 251, 247, 0.82);
}

.hero-stat {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-panel-grid p,
.hero-panel-footer,
.trust-band p,
.section-heading p,
.intro-copy p,
.feature-list p,
.policy-list,
.delivery-card li,
.delivery-note,
.contact-copy p,
#formStatus,
.site-footer p,
details p,
.story-copy p,
.story-points p,
.hero-panel-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-panel-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.hero-panel-footer a {
  color: var(--accent-strong);
  font-weight: 700;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.stat {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.06rem;
  font-weight: 800;
}

.section {
  padding: clamp(80px, 7vw, 118px) 0 0;
  position: relative;
}

main > .section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

main > .section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: min(180px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(20, 184, 111, 0.22), rgba(20, 184, 111, 0));
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-grid,
.experience-grid,
.contact-section,
.story-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-section {
  align-items: stretch;
}

.intro-grid h2,
.experience-panel h2,
.contact-copy h2,
.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.intro-copy {
  padding-top: 20px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 500px;
}

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

.price-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.price-mode-button {
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.price-mode-button:hover,
.price-mode-button:focus-visible {
  color: var(--text);
}

.price-mode-button.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, #23b0f4 100%);
  box-shadow: 0 10px 22px rgba(20, 184, 111, 0.22);
}

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

.rates-notes {
  margin-top: 18px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 28px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.fleet-card,
.rate-card,
.story-card,
.story-points article,
.experience-panel,
.policy-card,
.delivery-card,
.contact-copy,
.contact-form,
.trust-band > div {
  position: relative;
  overflow: hidden;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  --card-lift: 0px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  transform:
    perspective(1100px)
    rotateX(var(--card-tilt-x))
    rotateY(var(--card-tilt-y))
    translateY(var(--card-lift));
  transform-style: preserve-3d;
}

.fleet-card::before,
.rate-card::before,
.story-card::before,
.story-points article::before,
.experience-panel::before,
.policy-card::before,
.delivery-card::before,
.contact-copy::before,
.contact-form::before,
.trust-band > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(
      220px circle at var(--card-x, 50%) var(--card-y, 50%),
      rgba(255, 255, 255, 0.58),
      rgba(255, 255, 255, 0.16) 24%,
      rgba(255, 255, 255, 0) 58%
    );
  transition: opacity 220ms ease;
}

.rate-card:hover,
.story-card:hover,
.story-points article:hover,
.experience-panel:hover,
.policy-card:hover,
.delivery-card:hover,
.contact-copy:hover,
.contact-form:hover,
.trust-band > div:hover {
  --card-lift: -4px;
  box-shadow: var(--shadow-md);
}

.tilt-card:hover {
  --card-lift: -6px;
}

.fleet-card:hover::before,
.rate-card:hover::before,
.story-card:hover::before,
.story-points article:hover::before,
.experience-panel:hover::before,
.policy-card:hover::before,
.delivery-card:hover::before,
.contact-copy:hover::before,
.contact-form:hover::before,
.trust-band > div:hover::before {
  opacity: 1;
}

.fleet-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.64), transparent 14%),
    linear-gradient(135deg, rgba(173, 233, 201, 0.86), rgba(207, 233, 255, 0.92) 46%, rgba(237, 247, 242, 0.95) 100%);
}

.fleet-media::before {
  content: attr(data-model);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  max-width: 180px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.fleet-media::after {
  content: "";
  position: absolute;
  inset: auto 20px 26px;
  top: 92px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 22% 32%, rgba(255, 255, 255, 0.92), transparent 16%),
    linear-gradient(135deg, rgba(21, 49, 44, 0.1), rgba(21, 49, 44, 0.55));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  clip-path: polygon(
    9% 72%,
    14% 50%,
    23% 42%,
    40% 37%,
    56% 37%,
    67% 43%,
    81% 50%,
    89% 61%,
    92% 72%,
    88% 75%,
    84% 75%,
    81% 82%,
    71% 82%,
    68% 75%,
    31% 75%,
    28% 82%,
    18% 82%,
    15% 75%,
    11% 75%
  );
}

.fleet-media.sedan {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.7), transparent 15%),
    linear-gradient(135deg, rgba(184, 226, 255, 0.92), rgba(179, 238, 209, 0.82), rgba(248, 252, 250, 0.96));
}

.fleet-media.suv::after {
  clip-path: polygon(
    7% 72%,
    12% 49%,
    22% 41%,
    40% 35%,
    58% 35%,
    70% 41%,
    86% 50%,
    91% 60%,
    94% 72%,
    89% 75%,
    84% 75%,
    81% 84%,
    70% 84%,
    67% 75%,
    31% 75%,
    28% 84%,
    17% 84%,
    14% 75%,
    10% 75%
  );
}

.fleet-media.midsize::after {
  clip-path: polygon(
    7% 74%,
    12% 48%,
    21% 39%,
    39% 33%,
    59% 33%,
    71% 39%,
    87% 49%,
    92% 61%,
    94% 74%,
    89% 77%,
    84% 77%,
    81% 86%,
    69% 86%,
    66% 77%,
    32% 77%,
    29% 86%,
    17% 86%,
    14% 77%,
    10% 77%
  );
}

.fleet-media.truck::after {
  clip-path: polygon(
    9% 76%,
    11% 53%,
    22% 53%,
    30% 42%,
    48% 42%,
    58% 54%,
    80% 54%,
    89% 63%,
    92% 76%,
    88% 79%,
    83% 79%,
    80% 88%,
    69% 88%,
    66% 79%,
    33% 79%,
    30% 88%,
    18% 88%,
    15% 79%,
    10% 79%
  );
}

.fleet-body,
.experience-panel,
.policy-card,
.delivery-card,
.contact-form,
.contact-copy,
.story-card,
.rate-card {
  padding: 28px;
}

.fleet-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rate-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.rate-type {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rate-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.rate-card h3 span {
  color: var(--muted);
  font-size: 0.38em;
  font-weight: 700;
}

.rate-week {
  margin: 10px 0 14px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 700;
}

.rate-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.rate-card p:last-of-type {
  margin-bottom: 18px;
}

.rate-card .card-action {
  margin-top: auto;
  align-self: flex-start;
}

.fleet-type {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fleet-body h3,
.policy-card h3,
.delivery-card h3 {
  margin: 0 0 10px;
  font-size: 1.52rem;
}

.fleet-body h3 span {
  color: var(--muted);
  font-size: 0.85em;
  font-weight: 600;
}

.fleet-card-sedan {
  --price-accent: #1fae73;
}

.fleet-card-suv {
  --price-accent: #1e9fcc;
}

.fleet-card-suv6 {
  --price-accent: #3b9fe9;
}

.fleet-card-truck {
  --price-accent: #1d8f7e;
}

.fleet-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  margin: 0 0 14px;
}

.fleet-price.is-switching .price-value,
.fleet-price.is-switching .price-context {
  transform: translateY(2px);
  opacity: 0.5;
}

.price-pill {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--price-accent, var(--accent)) 24%, #ffffff);
  background:
    linear-gradient(
      130deg,
      color-mix(in srgb, var(--price-accent, var(--accent)) 14%, #ffffff) 0%,
      #ffffff 42%,
      color-mix(in srgb, var(--price-accent, var(--accent)) 9%, #ffffff) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 8px 18px color-mix(in srgb, var(--price-accent, var(--accent)) 20%, transparent);
  overflow: hidden;
}

.price-pill::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 30%;
  height: 100%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: priceShine 3.6s ease-in-out infinite;
}

.price-pill strong {
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.02em;
  transition: opacity 180ms ease, transform 180ms ease;
}

.price-pill small,
.price-context {
  color: color-mix(in srgb, var(--price-accent, var(--accent)) 72%, #17342e);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: opacity 180ms ease, transform 180ms ease;
}

.price-note {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--price-accent, var(--accent)) 12%, #ffffff);
  color: color-mix(in srgb, var(--price-accent, var(--accent)) 76%, #17342e);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fleet-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(20, 184, 111, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(20, 184, 111, 0.12), rgba(35, 176, 244, 0.08));
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  position: relative;
  overflow: hidden;
  --mag-x: 0px;
  --mag-y: 0px;
  --mag-lift: 0px;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) + var(--mag-lift)), 0);
}

.fleet-body .card-action {
  margin-top: auto;
}

.card-action:hover,
.card-action:focus-visible {
  --mag-lift: -2px;
  box-shadow: var(--shadow-sm);
  border-color: rgba(20, 184, 111, 0.3);
}

.fleet-body ul,
.policy-list,
.delivery-card ul {
  margin: 0;
  padding-left: 18px;
}

.fleet-body li,
.policy-list li,
.delivery-card li {
  margin-bottom: 10px;
}

.story-card,
.story-points {
  display: grid;
  gap: 18px;
}

.story-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(20, 184, 111, 0.16), rgba(112, 180, 255, 0.22)),
    linear-gradient(180deg, #ffffff, #eef8f3);
}

.story-wave {
  position: absolute;
  inset: auto auto 0 0;
  width: 120%;
  height: 58%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  filter: blur(8px);
}

.story-wave-one {
  transform: translate(-4%, 34%) rotate(-8deg);
}

.story-wave-two {
  width: 108%;
  height: 42%;
  left: 10%;
  bottom: 8%;
  background: rgba(20, 184, 111, 0.12);
  transform: rotate(4deg);
}

.video-trigger {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  --mag-x: 0px;
  --mag-y: 0px;
  --mag-lift: 0px;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) + var(--mag-lift)), 0);
}

.video-trigger:hover,
.video-trigger:focus-visible {
  --mag-lift: -2px;
}

.play-icon {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #3ba8ff 100%);
  position: relative;
  box-shadow: 0 16px 30px rgba(20, 184, 111, 0.18);
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
}

.story-copy {
  padding: 0 2px;
}

.story-points article {
  padding: 22px;
}

.feature-list {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.feature-list strong {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.policy-list {
  margin-top: 18px;
}

.delivery-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.map-frame {
  overflow: hidden;
  min-height: 460px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(1.02);
}

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

.delivery-card h4 {
  margin: 18px 0 10px;
  font-size: 1rem;
}

.delivery-note {
  margin-top: 22px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.faq-list details:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 34px;
  font-size: 1.04rem;
  font-weight: 700;
}

.faq-list summary::after,
.faq-list summary::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transition: transform 180ms ease;
}

.faq-list summary::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq-list summary::after {
  transform: translateY(-50%);
}

.faq-list details[open] summary::before {
  transform: translateY(-50%) rotate(0deg);
}

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

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

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-copy,
.contact-form {
  height: 100%;
}

.contact-points article {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.contact-points article:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 184, 111, 0.22);
  box-shadow: var(--shadow-sm);
}

.contact-points a {
  color: var(--accent-strong);
  font-weight: 700;
}

.form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.form-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(20, 184, 111, 0.14);
  border-radius: 999px;
  background: rgba(20, 184, 111, 0.06);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.form-grid label {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(21, 49, 44, 0.12);
  border-radius: 16px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(20, 184, 111, 0.5);
  box-shadow: 0 0 0 4px rgba(20, 184, 111, 0.12);
  transform: translateY(-1px);
}

textarea {
  resize: vertical;
}

.button[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

#formStatus {
  font-size: 0.92rem;
}

#formStatus.success,
#quickFormStatus.success {
  color: #0d7b4a;
}

#formStatus.error,
#quickFormStatus.error {
  color: #9f2f2f;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 92px;
  padding: 26px 0 12px;
  border-top: 1px solid var(--line);
}

.powered-by {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 62, 48, 0.08);
  color: color-mix(in srgb, var(--muted) 88%, #6c8a80);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}

.powered-by a {
  position: relative;
  color: var(--accent-strong);
  font-weight: 700;
  transition: color 180ms ease;
}

.powered-by a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), #23b0f4);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.powered-by a:hover,
.powered-by a:focus-visible {
  color: color-mix(in srgb, var(--accent-strong) 76%, #0d6750);
}

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

.site-toast {
  position: fixed;
  left: 50%;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 95;
  width: min(680px, calc(100vw - 24px));
  padding: 14px 16px;
  border: 1px solid rgba(20, 184, 111, 0.28);
  border-radius: 14px;
  background: rgba(12, 154, 90, 0.96);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  box-shadow: 0 16px 32px rgba(12, 154, 90, 0.28);
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.site-footer strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

.footer-note {
  color: var(--accent-strong);
  text-align: right;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 60;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.floating-request {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #23b0f4 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(20, 184, 111, 0.24);
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  overflow: hidden;
  --mag-x: 0px;
  --mag-y: 0px;
  --mag-lift: 0px;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) + var(--mag-lift)), 0);
}

.floating-request:hover,
.floating-request:focus-visible {
  --mag-lift: -3px;
}

.floating-request {
  animation: pulseFloat 3.8s ease-in-out infinite;
}

body.modal-open .floating-request {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.quick-request-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 65;
}

.quick-request-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quick-request-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 18, 0.48);
  backdrop-filter: blur(8px);
}

.quick-request-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: 20px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.quick-request-close {
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 12px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.quick-request-copy {
  margin-bottom: 18px;
}

.quick-request-copy h2 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.quick-request-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.quick-request-form {
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.quick-request-form .form-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 8px;
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: 16px;
  padding-top: 12px;
  padding-bottom: calc(2px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(18, 62, 48, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 30%);
}

.quick-request-form .form-actions .button {
  width: min(320px, 100%);
  margin: 0;
}

.quick-request-form #quickFormStatus {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 21, 18, 0.48);
  backdrop-filter: blur(8px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  padding: 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
}

.video-close {
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  cursor: pointer;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(20, 184, 111, 0.14), rgba(112, 180, 255, 0.18)),
    #eef7f2;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-help {
  margin: 14px 2px 4px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .hero-layout,
  .intro-grid,
  .experience-grid,
  .contact-section,
  .story-layout,
  .delivery-layout,
  .site-footer,
  .section-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
  }

  .hero-highlights,
  .trust-band,
  .fleet-grid,
  .rates-grid,
  .rates-notes,
  .delivery-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quick-request-panel {
    width: min(760px, 100%);
  }

  .form-meta {
    gap: 8px;
  }
}

@media (min-width: 1440px) {
  .hero-section {
    min-height: calc(100svh - 116px);
  }

  .hero-highlights article,
  .trust-band > div {
    padding: 22px;
  }
}

@media (max-width: 760px) {
  section[id] {
    scroll-margin-top: 18px;
  }

  .page-shell {
    padding-top: 10px;
  }

  .site-header {
    position: static;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 28px;
  }

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

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

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

  .site-nav a {
    width: 100%;
    padding: 10px 4px;
  }

  .hero-section {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 28px 22px;
    min-height: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .price-mode-toggle {
    width: 100%;
    justify-content: stretch;
  }

  .price-mode-button {
    flex: 1;
  }

  .floating-request {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .site-toast {
    bottom: calc(84px + env(safe-area-inset-bottom));
    font-size: 0.88rem;
  }

  .quick-request-modal {
    place-items: start center;
    padding: 10px;
  }

  .quick-request-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 14px;
    border-radius: 20px;
  }

  .quick-request-form {
    padding: 16px;
    border-radius: 18px;
  }

  .quick-request-form .form-actions {
    bottom: -16px;
    margin-top: 14px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 12px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
  }

  .quick-request-copy h2 {
    font-size: clamp(1.52rem, 7.5vw, 2rem);
    line-height: 1.05;
  }

  .form-meta span {
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .hero-car-silhouette {
    width: 250px;
    height: 112px;
    right: 2%;
    bottom: 16%;
  }

  .section {
    padding-top: 74px;
  }

  .fleet-body,
  .experience-panel,
  .policy-card,
  .delivery-card,
  .contact-form,
  .contact-copy,
  .story-card,
  .trust-band > div,
  .story-points article,
  .hero-panel {
    padding: 22px;
  }

  .story-visual {
    min-height: 260px;
  }

  .map-frame {
    min-height: 320px;
  }

  .site-footer {
    margin-top: 72px;
  }

  .footer-note {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .floating-request {
    transition: none !important;
    animation: none !important;
  }

  .hero-light-beam,
  .hero-car-silhouette {
    translate: 0 0 !important;
  }

  .hero-video-shell {
    opacity: 0.22;
  }

  .site-header {
    transform: none !important;
  }

  .site-toast {
    transition: none !important;
  }
}

@keyframes roadPulse {
  0% {
    background-position:
      center center,
      center 0;
  }

  100% {
    background-position:
      center center,
      center 220px;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -14px, 0) scale(1.06);
  }
}

@keyframes hoverFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseFloat {
  0%,
  100% {
    box-shadow: 0 20px 40px rgba(20, 184, 111, 0.24);
  }

  50% {
    box-shadow:
      0 24px 48px rgba(20, 184, 111, 0.28),
      0 0 0 10px rgba(20, 184, 111, 0.05);
  }
}

@keyframes priceShine {
  0%,
  100% {
    left: -40%;
  }

  55% {
    left: 130%;
  }
}

@keyframes heroSweep {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(10px, -8px, 0) scale(1.04);
  }
}
