:root {
  --bg: #f7f8fb;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-dark: #0b0c10;
  --surface-dark-2: #151821;
  --text: #111216;
  --muted: #5d6472;
  --line: rgba(17, 18, 22, 0.08);
  --yellow: #f5c400;
  --yellow-soft: #fff1a1;
  --yellow-strong: #ffcc12;
  --call-red: #ff3b2f;
  --call-orange: #ff7a00;
  --call-yellow: #ffd84d;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(17, 18, 22, 0.12);
  --shadow-heavy: 0 30px 90px rgba(7, 8, 12, 0.18);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1240px;
  --scroll-offset: 0px;
  --hero-shift: 0px;
  --parallax: 0px;
  --ticker-gap: clamp(1.45rem, 2vw, 2.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(245, 196, 0, 0.14), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(17, 18, 22, 0.05), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  inset: 0;
  z-index: -2;
}

body::before {
  top: -8rem;
  height: 35rem;
  background: radial-gradient(circle at center, rgba(245, 196, 0, 0.18), transparent 65%);
  transform: translateY(calc(var(--scroll-offset) * -0.06));
}

body::after {
  top: auto;
  bottom: -6rem;
  height: 26rem;
  background: repeating-linear-gradient(90deg, rgba(245, 196, 0, 0.12) 0 3.2rem, transparent 3.2rem 8.4rem);
  opacity: 0.42;
  transform: skewY(-7deg) translateY(calc(var(--scroll-offset) * -0.08));
}

::selection {
  background: rgba(245, 196, 0, 0.3);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: var(--surface-dark);
  color: var(--white);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.page-shell {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.1rem 0;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(17, 18, 22, 0.06);
}

.logo-block {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.logo-mark {
  position: relative;
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #191b21, #090a0d);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 18px 35px rgba(7, 8, 12, 0.2);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.logo-kicker,
.eyebrow,
.service-index {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.logo-kicker,
.eyebrow {
  color: var(--yellow-strong);
}

.logo-title {
  display: block;
  margin-top: 0.22rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 700;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-call {
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0d0f15, #1b1f29);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(7, 8, 12, 0.2);
}

.section-anchor {
  scroll-margin-top: 6rem;
}

.hero,
.benefits,
.services,
.workflow,
.geography,
.fleet,
.faq,
.cta,
.metrics {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.8rem, 4vw, 3.8rem);
  align-items: center;
  min-height: calc(100svh - 6.25rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 1.6rem auto;
  width: min(40rem, 60%);
  height: 0.75rem;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 3.7rem, transparent 3.7rem 7rem);
  opacity: 0.5;
  transform: skewX(-24deg);
  animation: laneShift 8s linear infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1,
.section-heading h2,
.cta-inner h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.3rem, 8vw, 6.4rem);
}

.hero-lead,
.section-heading p,
.hero-search-copy p,
.service-card p,
.glass-card p,
.step-card p,
.geo-description,
.cta-inner p,
.faq-item p,
.metric-card p,
.fleet-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-lead {
  margin-top: 1.35rem;
  max-width: 38rem;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
  margin-top: 2rem;
}

.phone-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 0.95rem;
}

.btn,
.phone-badge,
.sticky-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.8rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.btn:hover,
.btn:focus-visible,
.phone-badge:hover,
.phone-badge:focus-visible,
.sticky-call:hover,
.sticky-call:focus-visible {
  transform: translateY(-3px);
}

.btn-primary {
  color: #1c0d09;
}

.btn-secondary {
  color: #1c0d09;
}

.phone-badge {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 18, 22, 0.08);
  box-shadow: var(--shadow);
  white-space: nowrap;
}

.phone-badge--light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-points {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 0.92rem;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #fff6be 0 25%, var(--yellow) 26% 100%);
  box-shadow: 0 0 0 5px rgba(245, 196, 0, 0.15);
}

.hero-search-copy {
  max-width: 40rem;
  margin-top: 2rem;
  padding: 1.35rem 1.45rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 18, 22, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  min-height: 34rem;
  padding: 1.1rem 0 5rem;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 35rem);
  aspect-ratio: 0.96;
  object-fit: cover;
  object-position: center 26%;
  border-radius: 2.3rem;
  box-shadow: var(--shadow-heavy);
  transform: translateY(calc(var(--hero-shift) * -1));
  filter: saturate(1.02) contrast(1.02);
  margin-left: auto;
}

.hero-road {
  position: absolute;
  inset: auto 4% 9% 8%;
  height: 12rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(245, 196, 0, 0.3), transparent 58%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  filter: blur(18px);
}

.hero-card {
  position: absolute;
  z-index: 3;
  width: min(15rem, 42%);
  padding: 1.1rem 1.15rem;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card strong {
  display: block;
  margin-top: 0.45rem;
  line-height: 1.35;
}

.hero-card--top {
  top: 0;
  right: 0;
  background: rgba(14, 16, 22, 0.84);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-callout {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0.95rem;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border-radius: 999px;
  color: #111217;
  background: linear-gradient(135deg, var(--yellow), #ffe072);
  box-shadow: 0 24px 44px rgba(245, 196, 0, 0.26), 0 18px 36px rgba(7, 8, 12, 0.18);
}

.hero-callout__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-callout__phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem 1.15rem;
}

.hero-callout__phones a {
  font-weight: 800;
  white-space: nowrap;
}

.nav-call,
.btn-primary,
.btn-secondary,
.sticky-call {
  position: relative;
  overflow: hidden;
  color: #1c0d09;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, var(--call-red) 0%, var(--call-orange) 48%, var(--call-yellow) 100%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.08) 58%, transparent 100%);
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, 140% 0;
  box-shadow: 0 20px 42px rgba(255, 98, 37, 0.3), 0 14px 32px rgba(122, 18, 8, 0.16);
  animation: callSheen 3.6s linear infinite;
}

.hero-callout {
  overflow: hidden;
  color: #1c0d09;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(135deg, var(--call-red) 0%, var(--call-orange) 48%, var(--call-yellow) 100%),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.08) 58%, transparent 100%);
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, 140% 0;
  box-shadow: 0 20px 42px rgba(255, 98, 37, 0.3), 0 14px 32px rgba(122, 18, 8, 0.16);
  animation: callSheen 3.6s linear infinite;
}

.nav-call:hover,
.nav-call:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.sticky-call:hover,
.sticky-call:focus-visible,
.hero-callout:hover,
.hero-callout:focus-within {
  box-shadow: 0 24px 52px rgba(255, 98, 37, 0.36), 0 18px 38px rgba(122, 18, 8, 0.18);
}

.card-label {
  display: inline-block;
  color: var(--yellow-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ticker {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 1.25rem 0;
  background: linear-gradient(135deg, #0b0c10, #141824);
  color: var(--white);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-strip {
  display: flex;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: marquee 24s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: var(--ticker-gap);
  flex: 0 0 auto;
  padding-right: var(--ticker-gap);
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.95rem, 1.4vw, 1.4rem);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.ticker-item::after {
  content: "";
  width: clamp(2.3rem, 4vw, 3.5rem);
  height: 0.38rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric-card,
.glass-card,
.step-card,
.faq-item,
.fleet-card {
  background: var(--surface-strong);
  border: 1px solid rgba(17, 18, 22, 0.08);
  box-shadow: var(--shadow);
}

.metric-card {
  position: relative;
  overflow: hidden;
  padding: 1.65rem;
  border-radius: 1.8rem;
}

.metric-card::before {
  content: "";
  position: absolute;
  left: 1.65rem;
  top: 0;
  width: 4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--yellow);
}

.metric-value {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  margin-top: 0.85rem;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.section-heading p {
  margin-top: 1.2rem;
}

.benefit-grid,
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.glass-card::after {
  content: "";
  position: absolute;
  width: 11rem;
  height: 11rem;
  right: -3.5rem;
  bottom: -4rem;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.26), transparent 70%);
}

.glass-card:hover,
.service-card:hover,
.fleet-card:hover {
  transform: translateY(-0.45rem);
}

.glass-card h3,
.service-card h3,
.step-card h3,
.faq-item summary,
.fleet-card strong {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.35;
}

.glass-card p,
.service-card p,
.step-card p {
  margin-top: 0.85rem;
}

.icon-badge,
.step-num {
  display: grid;
  place-items: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.icon-badge {
  margin-bottom: 1.15rem;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-soft));
  color: #111217;
}

.services {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding-inline: max(1rem, calc((100vw - var(--container)) / 2));
  background:
    radial-gradient(circle at 18% 12%, rgba(245, 196, 0, 0.16), transparent 24%),
    radial-gradient(circle at 88% 85%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(145deg, #0a0b10 0%, #111520 100%);
  color: var(--white);
}

.services .section-heading,
.workflow .section-heading,
.geography .section-heading,
.fleet .section-heading,
.faq .section-heading {
  margin-bottom: 1.5rem;
}

.services .section-heading p,
.services .scroll-hint,
.services .service-card p {
  color: rgba(255, 255, 255, 0.74);
}

.scroll-hint {
  margin: 0 0 1rem;
  font-weight: 700;
}

.services-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--yellow) rgba(255, 255, 255, 0.08);
}

.services-track::-webkit-scrollbar {
  height: 0.7rem;
}

.services-track::-webkit-scrollbar-thumb {
  background: var(--yellow);
  border-radius: 999px;
}

.services-track::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-width: min(24rem, 84vw);
  max-width: 26rem;
  padding: 1.9rem;
  border-radius: var(--radius-lg);
  scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(245, 196, 0, 0.16), transparent 38%),
    repeating-linear-gradient(90deg, transparent 0 6.4rem, rgba(255, 255, 255, 0.06) 6.4rem 6.8rem);
  opacity: 0.85;
  animation: laneShift 11s linear infinite;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-index {
  color: var(--yellow-strong);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--yellow-soft);
}

.text-link::after {
  content: "→";
}

.workflow-grid {
  position: relative;
}

.step-card {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
}

.step-card::before {
  content: "";
  position: absolute;
  top: 3rem;
  right: -0.9rem;
  width: 1.8rem;
  height: 0.26rem;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 0.7rem, transparent 0.7rem 1.2rem);
}

.step-card:last-child::before {
  display: none;
}

.step-num {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0c0d12, #191e2a);
  color: var(--white);
}

.geography {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: center;
}

.geo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

.geo-tags span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 18, 22, 0.08);
  box-shadow: var(--shadow);
  font-weight: 800;
}

.geo-description {
  max-width: 38rem;
  margin: 0 0 1.4rem;
}

.geo-map {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 0.7rem;
  background: linear-gradient(180deg, #090b10 0%, #141925 100%);
  box-shadow: var(--shadow-heavy);
}

.geo-map-shell {
  position: relative;
  width: 100%;
  min-height: 29.6rem;
  height: 100%;
  border-radius: calc(var(--radius-xl) - 0.45rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0f1728;
}

.geo-map-toolbar {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  pointer-events: none;
}

.geo-map-badge,
.geo-map-link {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.geo-map-badge {
  color: #0f1218;
  background: linear-gradient(135deg, var(--yellow), #ffe37d);
  box-shadow: 0 14px 30px rgba(245, 196, 0, 0.35);
}

.geo-map-link {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 14, 20, 0.72);
  backdrop-filter: blur(8px);
}

.geo-map iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 29.6rem;
  display: block;
  filter: saturate(1.02) contrast(1.02);
}

.geo-map-fallback {
  display: block;
  margin: 0;
  padding: 0.8rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.45;
  background: rgba(10, 14, 22, 0.7);
}

.geo-map-fallback a {
  color: var(--yellow-soft);
  text-decoration: underline;
}

.fleet {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(243, 245, 249, 0.95));
  border-radius: var(--radius-xl);
}

.fleet-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 1rem;
}

.fleet-stack {
  display: grid;
  gap: 1rem;
}

.fleet-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fleet-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 8, 12, 0.02), rgba(7, 8, 12, 0.18) 62%, rgba(7, 8, 12, 0.76));
  pointer-events: none;
}

.fleet-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  color: var(--white);
}

.fleet-card figcaption p {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
}

.fleet-card--large figcaption {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
}

.fleet-card--large span {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  padding: 0 1.45rem;
  border-radius: 1.6rem;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--yellow);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 0 1.45rem;
}

.cta {
  padding-bottom: 7.5rem;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 6vw, 4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 196, 0, 0.22), transparent 18%),
    linear-gradient(145deg, #0a0c11 0%, #141925 100%);
  color: var(--white);
  box-shadow: var(--shadow-heavy);
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 196, 0, 0.18), transparent 40%),
    repeating-linear-gradient(90deg, transparent 0 4.5rem, rgba(255, 255, 255, 0.06) 4.5rem 4.9rem);
  opacity: 0.55;
  animation: laneShift 10s linear infinite;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  margin-top: 0.9rem;
  max-width: 12ch;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}

.cta-inner p {
  margin-top: 1.25rem;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0 0 3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1.2rem;
}

.site-footer a {
  display: inline-flex;
  font-weight: 800;
  color: var(--text);
}

.sticky-call {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  min-height: auto;
  padding: 1rem 1.25rem;
  color: #1c0d09;
}

.sticky-call span {
  font-size: 0.92rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.9, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pulse {
  animation: pulseGlow 2.8s infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 98, 37, 0.32), 0 20px 42px rgba(122, 18, 8, 0.16);
  }

  70% {
    box-shadow: 0 0 0 1.2rem rgba(255, 98, 37, 0), 0 24px 52px rgba(122, 18, 8, 0.2);
  }
}

@keyframes callSheen {
  0% {
    background-position: 0 0, 140% 0;
  }

  100% {
    background-position: 0 0, -80% 0;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes laneShift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 0 0, 7rem 0;
  }
}

@media (max-width: 1100px) {
  .hero,
  .geography,
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .metrics,
  .benefit-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(var(--container), calc(100% - 1rem));
  }

  .site-header {
    padding: 0.9rem 0;
    gap: 0.75rem;
  }

  .site-nav {
    gap: 0.8rem;
    font-size: 0.95rem;
  }

  .site-nav a:not(.nav-call) {
    display: none;
  }

  .hero-card {
    width: min(14rem, 48%);
  }

  .hero-card--top {
    right: 0;
  }

  .hero-visual {
    justify-content: center;
    min-height: 31rem;
    padding-top: 0.7rem;
  }

  .hero-visual img {
    width: min(100%, 33rem);
  }

  .hero-callout {
    left: 0.8rem;
    right: 0.8rem;
  }

  .step-card::before {
    display: none;
  }

  .fleet {
    border-radius: 2rem;
  }
}

@media (max-width: 640px) {
  :root {
    --hero-mobile-tile-height: 14.6rem;
  }

  .section-heading h2,
  .cta-inner h2 {
    line-height: 1.02;
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .page-shell {
    width: min(var(--container), calc(100% - 0.5rem));
  }

  .site-header {
    padding: 0.75rem 0;
    gap: 0.65rem;
  }

  .logo-block {
    gap: 0.7rem;
  }

  .logo-mark {
    width: 2.7rem;
    height: 2.7rem;
    flex-basis: 2.7rem;
  }

  .logo-kicker,
  .eyebrow,
  .service-index {
    font-size: 0.64rem;
    letter-spacing: 0.14em;
  }

  .logo-title {
    font-size: 0.78rem;
  }

  .nav-call {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .hero-actions .phone-stack,
  .hero-actions .phone-badge {
    width: 100%;
  }

  .phone-stack {
    grid-template-columns: 1fr;
  }

  .metrics,
  .benefit-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0.7rem;
    min-height: auto;
    padding: 0.55rem 0 0;
  }

  .hero-road {
    display: none;
  }

  .hero-card {
    position: static;
    width: auto;
    margin: 0;
  }

  .hero-card--top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    min-height: var(--hero-mobile-tile-height);
    height: var(--hero-mobile-tile-height);
    padding: 1rem 0.95rem;
    border-radius: 1.65rem;
  }

  .hero-card strong {
    font-size: 0.98rem;
  }

  .card-label {
    font-size: 0.68rem;
  }

  .hero-points li {
    align-items: flex-start;
  }

  .hero-points li::before {
    margin-top: 0.45rem;
  }

  .hero-visual img {
    width: 100%;
    align-self: stretch;
    min-height: var(--hero-mobile-tile-height);
    height: var(--hero-mobile-tile-height);
    margin: 0;
    aspect-ratio: auto;
    object-position: center center;
    border-radius: 1.65rem;
  }

  .hero-callout {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    column-gap: 1rem;
    row-gap: 0.2rem;
    text-align: left;
    width: 100%;
    max-width: none;
    margin: 0.35rem auto 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1.8rem;
    box-shadow:
      0 14px 0 rgba(99, 55, 39, 0.72),
      0 24px 34px rgba(122, 18, 8, 0.22);
  }

  .hero-callout__label {
    grid-row: 1 / span 2;
    font-size: 0.78rem;
    line-height: 1.1;
    letter-spacing: 0.08em;
  }

  .hero-callout__phones {
    display: grid;
    min-width: 0;
    justify-items: end;
    gap: 0.15rem;
  }

  .hero-callout__phones a:first-child {
    display: none;
  }

  .hero-callout__phones a {
    display: block;
    max-width: 8.9rem;
    font-size: 0.8rem;
    line-height: 1.15;
    white-space: normal;
    text-align: right;
  }

  .geo-map {
    min-height: 24rem;
  }

  .geo-map-shell,
  .geo-map iframe {
    min-height: 23rem;
  }

  .geo-map-toolbar {
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
  }

  .geo-map-badge,
  .geo-map-link {
    min-height: 2.05rem;
    padding: 0.45rem 0.75rem;
    font-size: 0.66rem;
  }

  .fleet-grid,
  .fleet-stack {
    gap: 1.2rem;
  }

  .fleet-card {
    background: var(--surface-strong);
    box-shadow: var(--shadow);
  }

  .fleet-card::after {
    display: none;
  }

  .fleet-card img {
    aspect-ratio: 1.24;
    height: auto;
    object-position: center 38%;
  }

  .fleet-card figcaption {
    position: static;
    display: block;
    padding: 1rem 1.1rem 1.15rem;
    color: var(--text);
    background: var(--surface-strong);
  }

  .fleet-card strong {
    font-size: 1.02rem;
    line-height: 1.35;
  }

  .fleet-card figcaption p {
    margin-top: 0.45rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .fleet-card--large figcaption {
    background: var(--surface-strong);
  }

  .fleet-card--large span {
    display: inline-flex;
    margin-top: 0.8rem;
    padding: 0.55rem 0.85rem;
    background: rgba(245, 196, 0, 0.14);
    border-color: rgba(17, 18, 22, 0.08);
    color: var(--text);
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 6rem;
  }

  .footer-phones {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.65rem;
  }

  .sticky-call {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    align-items: center;
    text-align: center;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
