:root {
  --ink: #06101f;
  --ink-2: #0a1729;
  --ink-3: #10213a;
  --blue: #1269ff;
  --blue-deep: #013298;
  --blue-bright: #5da3ff;
  --blue-soft: #eaf2ff;
  --white: #ffffff;
  --paper: #f5f7fb;
  --line: #d9e1ee;
  --line-dark: rgba(164, 187, 223, 0.2);
  --text: #0b1730;
  --muted: #5e6a7d;
  --muted-dark: #aebbd0;
  --success: #52d69c;
  --shadow: 0 24px 70px rgba(5, 18, 42, 0.14);
  --header-height: 94px;
  --shell: min(92vw, 1560px);
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

p,
h1,
h2,
h3,
figure,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--blue);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid #78aaff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.dark-grid {
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(104, 144, 202, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 144, 202, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 86% 4%, rgba(18, 105, 255, 0.19), transparent 34%);
  background-size: 72px 72px, 72px 72px, auto;
}

.accent {
  display: block;
  color: var(--blue);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(169, 188, 219, 0.17);
  background: rgba(5, 15, 29, 0.91);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 15, 29, 0.98);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: clamp(18px, 2.8vw, 48px);
}

.brand {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 158px;
  height: 72px;
  padding: 5px 15px;
  border-radius: var(--radius);
  background: var(--white);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: #cbd5e6;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-current {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-switch {
  display: flex;
  padding: 3px;
  border: 1px solid rgba(173, 196, 232, 0.28);
  border-radius: 999px;
}

.language-button {
  min-width: 35px;
  padding: 5px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #aab8ce;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.language-button.is-active {
  background: var(--blue);
  color: var(--white);
}

.dispatch-link {
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  border-left: 1px solid rgba(166, 190, 226, 0.24);
  line-height: 1.2;
}

.dispatch-link span {
  color: #56a0ff;
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.dispatch-link strong {
  margin-top: 5px;
  font-size: 0.86rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid var(--blue);
  border-radius: 2px;
  background: var(--blue);
  color: var(--white);
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), box-shadow 200ms var(--ease), background-color 200ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #2d7cff;
  box-shadow: 0 12px 30px rgba(18, 105, 255, 0.3);
}

.button svg {
  width: 21px;
  margin-left: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button--small {
  min-height: 44px;
  padding: 10px 15px;
  font-size: 0.62rem;
}

.button--ghost {
  border-color: rgba(188, 205, 232, 0.38);
  background: transparent;
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(370px, 0.78fr) minmax(580px, 1.22fr);
  align-items: center;
  min-height: min(790px, calc(100vh - var(--header-height)));
  padding-block: clamp(64px, 7vw, 104px);
  gap: clamp(42px, 5vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index,
.card-kicker {
  color: var(--blue-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--dark .section-index,
.section--ink .section-index,
.quote .section-index {
  color: var(--blue-bright);
}

.eyebrow::before {
  display: inline-block;
  width: 36px;
  height: 1px;
  margin-right: 14px;
  content: "";
  vertical-align: middle;
  background: var(--blue);
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(3.3rem, 5.2vw, 6.5rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero h1 .accent {
  margin-top: 8px;
  font-weight: 470;
}

.hero-lede {
  max-width: 660px;
  margin-top: 34px;
  color: #bdc8d9;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  line-height: 1.72;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 13px;
}

.authority-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  color: #8c9bb1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.63rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  gap: 14px 24px;
}

.authority-list li::before {
  margin-right: 10px;
  color: var(--blue);
  content: "•";
}

.hero-visual {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(151, 178, 220, 0.23);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.32);
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.hero-visual::before {
  inset: -24px 42% 45% -24px;
  border-top: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  opacity: 0.7;
}

.hero-visual::after {
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(18, 105, 255, 0.27), transparent 70%);
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
}

.hero-visual img {
  height: auto;
  object-fit: contain;
}

.hero-visual figcaption {
  position: absolute;
  right: -18px;
  bottom: -20px;
  max-width: 330px;
  padding: 17px 22px;
  border-left: 3px solid var(--blue);
  background: var(--ink);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
}

.metric-strip {
  position: relative;
  z-index: 5;
  border-top: 1px solid rgba(143, 174, 220, 0.2);
  border-bottom: 1px solid rgba(143, 174, 220, 0.2);
  background: #0c1c34;
  color: var(--white);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.metric-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 116px;
  padding: 22px clamp(18px, 2vw, 36px);
  border-right: 1px solid var(--line-dark);
  gap: 18px;
}

.metric-grid article:first-child {
  border-left: 1px solid var(--line-dark);
}

.metric-grid strong {
  color: var(--blue);
  font-size: clamp(2rem, 3vw, 3.1rem);
  letter-spacing: -0.07em;
  line-height: 1;
}

.metric-grid span {
  color: #c0ccdc;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding-block: clamp(86px, 9vw, 150px);
}

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

.section--dark,
.section--ink {
  color: var(--white);
}

.section--ink {
  background: #091426;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.6fr);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 86px);
  gap: 64px;
}

.section-heading h2,
.coverage-copy h2,
.story-intro h2 {
  margin-top: 20px;
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-wrap: balance;
}

.section-heading > p,
.story-intro > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.8;
}

.section-heading--dark > p {
  color: var(--muted-dark);
}

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

.featured-service {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 680px;
  margin-bottom: 24px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 30px 90px rgba(5, 18, 42, 0.2);
}

.featured-service figure {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #101b2c;
}

.featured-service figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent 55%, rgba(6, 16, 31, 0.82)),
    linear-gradient(180deg, transparent 68%, rgba(6, 16, 31, 0.72));
}

.featured-service figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-service figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  left: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.featured-service__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 78px);
  background:
    linear-gradient(rgba(104, 144, 202, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 144, 202, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 100% 0, rgba(18, 105, 255, 0.28), transparent 44%),
    var(--ink);
  background-size: 52px 52px, 52px 52px, auto, auto;
}

.featured-service__copy h3 {
  margin-top: 17px;
  font-size: clamp(2.7rem, 4.5vw, 5.2rem);
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.featured-service__copy h3 span {
  display: block;
}

.featured-service__copy h3 span:last-child {
  color: var(--blue-bright);
}

.featured-service__copy > p:not(.card-kicker, .service-availability) {
  margin-top: 28px;
  color: #c3cee0;
  font-size: 1rem;
  line-height: 1.8;
}

.service-number {
  position: static;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(18, 105, 255, 0.48);
  background: var(--blue);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(18, 105, 255, 0.2);
}

.service-points {
  display: grid;
  margin-top: 26px;
  gap: 11px;
}

.service-points li {
  position: relative;
  padding-left: 23px;
  color: #dce5f2;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.5;
}

.service-points li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 2px;
  background: var(--blue-bright);
  content: "";
}

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

.service-phone {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.service-phone span {
  color: var(--blue-bright);
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-phone strong {
  margin-top: 5px;
  font-size: 1.05rem;
}

.service-availability {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  color: #93a3ba;
  font-size: 0.7rem;
  line-height: 1.65;
}

.service-grid--offers .service-card {
  min-height: 650px;
}

.service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 18, 34, 0.02);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  grid-template-rows: 1fr;
}

.service-card--emergency {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  border-color: rgba(18, 105, 255, 0.72);
  background:
    linear-gradient(rgba(104, 144, 202, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(104, 144, 202, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 100% 0, rgba(18, 105, 255, 0.3), transparent 45%),
    var(--ink);
  background-size: 52px 52px, 52px 52px, auto, auto;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(5, 18, 42, 0.2);
}

.service-card--emergency .card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card--emergency .card-copy h3 span {
  display: block;
}

.service-card--emergency .card-copy h3 span:last-child,
.service-card--emergency .card-kicker,
.service-card--emergency .service-phone span {
  color: var(--blue-bright);
}

.service-card--emergency .card-copy > p:not(.card-kicker, .service-availability) {
  color: #c3cee0;
}

.service-card--emergency .service-points--compact li {
  color: #dce5f2;
}

.service-card--emergency .service-points--compact li::before {
  background: var(--blue-bright);
}

.service-card--emergency .service-availability {
  border-top-color: var(--line-dark);
  color: #93a3ba;
}

.service-card figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #dfe6f0;
}

.service-card figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 65%, rgba(4, 13, 25, 0.3));
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.service-card:hover img {
  transform: scale(1.025);
}

.card-copy {
  padding: clamp(28px, 3.2vw, 48px);
}

.card-copy h3 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  letter-spacing: -0.045em;
  line-height: 1.03;
}

.card-copy > p:not(.card-kicker) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.service-points--compact {
  margin-top: 24px;
}

.service-points--compact li {
  color: #344158;
  font-size: 0.78rem;
}

.service-points--compact li::before {
  background: var(--blue);
}

.service-equipment-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(rgba(93, 163, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 163, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 82% 22%, rgba(18, 105, 255, 0.42), transparent 34%),
    #071426;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.dry-van-mark {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: min(75%, 460px);
  aspect-ratio: 2.9 / 1;
  padding: 24px 28px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  border-radius: 2px 8px 8px 2px;
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(18, 105, 255, 0.35), 0 28px 60px rgba(0, 0, 0, 0.25);
}

.dry-van-mark::before {
  position: absolute;
  right: -18px;
  bottom: -19px;
  width: 58px;
  height: 18px;
  border-top: 3px solid var(--blue-bright);
  border-right: 3px solid var(--blue-bright);
  content: "";
}

.dry-van-mark span {
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.dry-van-mark strong {
  font-size: clamp(0.82rem, 1.4vw, 1.2rem);
  letter-spacing: 0.16em;
}

.dry-van-mark i {
  position: absolute;
  bottom: -21px;
  width: 31px;
  height: 31px;
  border: 5px solid #071426;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 5px var(--blue);
}

.dry-van-mark i:first-of-type {
  right: 36px;
}

.dry-van-mark i:last-of-type {
  right: 2px;
}

.freight-types {
  display: flex;
  align-items: center;
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  gap: 30px;
}

.freight-types > span {
  flex: 0 0 auto;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.freight-types ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.freight-types li {
  padding: 8px 13px;
  border: 1px solid #c9d6e9;
  background: #f8faff;
  color: #344158;
  font-size: 0.74rem;
  font-weight: 750;
}

.service-support {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-support > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px;
  border-right: 1px solid var(--line);
  background: var(--blue);
  color: var(--white);
}

.service-support > div span {
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-support > div strong {
  margin-top: 8px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.service-support > ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-support li {
  display: flex;
  flex-direction: column;
  min-height: 130px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-support li:nth-child(even) {
  border-right: 0;
}

.service-support li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-support li strong {
  color: var(--blue-deep);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-support li span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.services-conversion {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  margin-top: 24px;
  padding: clamp(34px, 4.5vw, 64px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(18, 105, 255, 0.97), rgba(1, 50, 152, 0.98)),
    var(--blue);
  box-shadow: 0 26px 68px rgba(18, 105, 255, 0.22);
  gap: 52px;
}

.services-conversion h3 {
  margin-top: 10px;
  font-size: clamp(2.2rem, 3.7vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.services-conversion > div:first-child > p:last-child {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.services-conversion .card-kicker {
  color: var(--white);
}

.services-conversion__actions {
  display: flex;
  flex-direction: column;
  min-width: 280px;
  gap: 10px;
}

.services-conversion .button {
  width: 100%;
  background: var(--white);
  color: var(--blue-deep);
}

.services-conversion .button--ghost {
  border-color: rgba(255, 255, 255, 0.62);
  background: transparent;
  color: var(--white);
}

.fleet-figure {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.fleet-figure img {
  width: 100%;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
}

.fleet-figure::after {
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  content: "";
  pointer-events: none;
  background: linear-gradient(transparent, rgba(3, 12, 24, 0.72));
}

.fleet-figure figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 20px;
  max-width: 390px;
  color: #d3deed;
  font-size: 0.76rem;
  text-align: right;
}

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

.continuity-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.continuity-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(3, 10, 20, 0.04) 32%, rgba(3, 10, 20, 0.95) 88%);
}

.continuity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease);
}

.continuity-card:hover img {
  transform: scale(1.035);
}

.continuity-card > div {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px;
}

.continuity-card > div > p {
  color: var(--blue-bright);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.continuity-card h3 {
  margin-top: 8px;
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.continuity-card span {
  display: block;
  margin-top: 13px;
  color: #bdc9da;
  font-size: 0.9rem;
  line-height: 1.65;
}

.coverage {
  padding-bottom: 0;
  overflow: hidden;
}

.coverage-intro {
  margin-bottom: clamp(48px, 5vw, 82px);
}

.coverage-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(42px, 7vw, 110px);
}

.coverage-copy .section-index {
  grid-column: 1 / -1;
}

.coverage-copy h2 {
  margin-top: 20px;
}

.coverage-copy > p:not(.section-index) {
  max-width: 620px;
  margin: 0 0 8px;
  color: var(--muted-dark);
  font-size: 1.08rem;
  line-height: 1.8;
}

.coverage-facts {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 70px);
  bottom: clamp(22px, 4vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(570px, 52vw);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: rgba(4, 13, 26, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.coverage-facts div {
  padding: clamp(18px, 2.1vw, 30px) clamp(14px, 1.7vw, 24px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.coverage-facts strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.coverage-facts span {
  display: block;
  margin-top: 8px;
  color: #aab9cf;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.map-panel {
  position: relative;
  width: 100%;
  margin: 0;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #071525;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.map-canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1140 / 620;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 59%, rgba(27, 112, 255, 0.16), transparent 25%),
    #071525;
}

.map-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-origin-card {
  position: absolute;
  z-index: 2;
  bottom: clamp(22px, 4vw, 60px);
  left: clamp(22px, 4vw, 70px);
  width: min(360px, 30vw);
  padding: clamp(20px, 2.5vw, 36px);
  border-left: 3px solid var(--blue);
  background: rgba(4, 13, 26, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.map-origin-card span,
.map-origin-card small {
  display: block;
}

.map-origin-card span {
  color: #67aaff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-origin-card strong {
  display: block;
  margin-top: 9px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.3vw, 2.45rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.map-origin-card small {
  margin-top: 12px;
  color: #aebdd2;
  font-size: 0.75rem;
  line-height: 1.55;
}

.map-panel figcaption {
  padding: 18px clamp(22px, 4vw, 70px) 22px;
  color: #8fa0b9;
  font-size: 0.72rem;
  line-height: 1.5;
}

.safety {
  --safety-beam-shift: -24vw;
  --safety-grid-shift: -54px;
  --safety-glow-shift: -42px;
  --safety-progress-pos: 4%;
  --safety-progress-scale: 0.04;
  isolation: isolate;
  overflow: hidden;
  overflow: clip;
  background:
    radial-gradient(circle at 18% 34%, rgba(18, 105, 255, 0.14), transparent 34%),
    linear-gradient(145deg, #06101f 0%, #08172b 52%, #040a14 100%);
}

.safety-content {
  position: relative;
  z-index: 2;
}

.safety-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.safety-atmosphere__grid {
  position: absolute;
  top: -52%;
  left: -12%;
  width: 124%;
  height: 150%;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(92, 158, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(92, 158, 255, 0.15) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent 5%, #000 38%, #000 68%, transparent 95%);
  transform: perspective(900px) rotateX(64deg) translate3d(0, var(--safety-grid-shift), 0);
  transform-origin: 50% 100%;
  will-change: transform;
}

.safety-atmosphere__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.34;
  will-change: transform;
}

.safety-atmosphere__glow--one {
  top: 4%;
  right: -8%;
  width: min(46vw, 720px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(18, 105, 255, 0.52), transparent 68%);
  transform: translate3d(0, var(--safety-glow-shift), 0);
}

.safety-atmosphere__glow--two {
  bottom: -24%;
  left: -10%;
  width: min(40vw, 620px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(93, 163, 255, 0.24), transparent 70%);
  transform: translate3d(0, calc(0px - var(--safety-glow-shift)), 0);
}

.safety-atmosphere__beam {
  position: absolute;
  top: -28%;
  left: 0;
  width: 15vw;
  min-width: 160px;
  height: 158%;
  opacity: 0.2;
  background: linear-gradient(90deg, transparent, rgba(103, 170, 255, 0.5), transparent);
  filter: blur(8px);
  transform: translate3d(var(--safety-beam-shift), 0, 0) rotate(12deg);
  will-change: transform;
}

.safety-route-signal {
  position: absolute;
  top: 56%;
  right: 5%;
  left: 5%;
  height: 1px;
  background: rgba(93, 163, 255, 0.14);
}

.safety-route-signal i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue), #79b2ff);
  box-shadow: 0 0 22px rgba(93, 163, 255, 0.55);
  transform: scaleX(var(--safety-progress-scale));
  transform-origin: left;
  will-change: transform;
}

.safety-route-signal span {
  position: absolute;
  top: 50%;
  left: var(--safety-progress-pos);
  width: 9px;
  height: 9px;
  border: 2px solid #b7d7ff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(18, 105, 255, 0.1), 0 0 26px #5da3ff;
  transform: translate(-50%, -50%);
  will-change: left;
}

.safety .section-heading {
  position: relative;
  z-index: 2;
}

.safety-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(164, 187, 223, 0.3);
  border-left: 1px solid rgba(164, 187, 223, 0.3);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.2);
  perspective: 900px;
}

.safety-grid article {
  position: relative;
  min-height: 330px;
  padding: clamp(28px, 3vw, 48px);
  border-right: 1px solid rgba(164, 187, 223, 0.3);
  border-bottom: 1px solid rgba(164, 187, 223, 0.3);
  overflow: hidden;
  background: linear-gradient(145deg, rgba(14, 36, 69, 0.72), rgba(5, 16, 32, 0.86));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform-origin: 50% 0;
  transition: background-color 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.safety-grid.reveal article {
  opacity: 0;
  transform: translate3d(0, 42px, 0) rotateX(5deg);
  transition:
    opacity 650ms var(--ease),
    transform 760ms var(--ease),
    background-color 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
}

.safety-grid.reveal.is-visible article {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0);
}

.safety-grid.reveal.is-visible article:nth-child(2) {
  transition-delay: 90ms;
}

.safety-grid.reveal.is-visible article:nth-child(3) {
  transition-delay: 180ms;
}

.safety-grid.reveal.is-visible article:nth-child(4) {
  transition-delay: 270ms;
}

.safety-grid article::before,
.safety-grid article::after {
  position: absolute;
  right: 0;
  left: 0;
  content: "";
  pointer-events: none;
}

.safety-grid article::before {
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #8bc1ff);
  transform: scaleX(0.14);
  transform-origin: left;
  transition: transform 360ms var(--ease);
}

.safety-grid article::after {
  top: -70%;
  height: 55%;
  opacity: 0;
  background: linear-gradient(to bottom, transparent, rgba(113, 177, 255, 0.14), transparent);
  transform: translateY(0);
  transition: opacity 260ms ease, transform 600ms var(--ease);
}

.safety-grid article:hover {
  border-color: rgba(118, 177, 255, 0.52);
  background: linear-gradient(145deg, rgba(19, 50, 96, 0.86), rgba(6, 19, 38, 0.94));
  box-shadow: inset 0 0 55px rgba(18, 105, 255, 0.1);
}

.safety-grid article:hover::before {
  transform: scaleX(1);
}

.safety-grid article:hover::after {
  opacity: 1;
  transform: translateY(310%);
}

.safety-grid span {
  display: block;
  color: #75b2ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.safety-grid strong {
  display: block;
  margin-top: 58px;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.safety-grid article p {
  margin-top: 18px;
  color: #b8c5d8;
  font-size: 0.86rem;
  line-height: 1.7;
}

.safety-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(164, 187, 223, 0.22);
}

.safety-action p {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #aebbd0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.safety-action p i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(82, 214, 156, 0.48);
  animation: safety-status-pulse 2.2s ease-out infinite;
}

.safety-action .button {
  min-width: 230px;
}

@supports (animation-timeline: view()) {
  .safety--native-motion .safety-atmosphere__grid {
    animation: safety-grid-depth linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .safety--native-motion .safety-atmosphere__glow--one {
    animation: safety-glow-depth linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .safety--native-motion .safety-atmosphere__beam {
    animation: safety-beam-crossing linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .safety--native-motion .safety-route-signal i {
    animation: safety-route-progress linear both;
    animation-timeline: view();
    animation-range: entry 10% exit 85%;
  }

  .safety--native-motion .safety-route-signal span {
    animation: safety-route-position linear both;
    animation-timeline: view();
    animation-range: entry 10% exit 85%;
  }
}

@keyframes safety-grid-depth {
  from { transform: perspective(900px) rotateX(64deg) translate3d(0, -82px, 0); }
  to { transform: perspective(900px) rotateX(64deg) translate3d(0, 92px, 0); }
}

@keyframes safety-glow-depth {
  from { transform: translate3d(0, -70px, 0) scale(0.92); }
  to { transform: translate3d(0, 90px, 0) scale(1.08); }
}

@keyframes safety-beam-crossing {
  from { transform: translate3d(-24vw, 0, 0) rotate(12deg); }
  to { transform: translate3d(108vw, 0, 0) rotate(12deg); }
}

@keyframes safety-route-progress {
  from { transform: scaleX(0.04); }
  to { transform: scaleX(1); }
}

@keyframes safety-route-position {
  from { left: 4%; }
  to { left: 100%; }
}

@keyframes safety-status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(82, 214, 156, 0.48); }
  75%, 100% { box-shadow: 0 0 0 12px rgba(82, 214, 156, 0); }
}

.story-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.58fr);
  align-items: end;
  margin-bottom: 64px;
  gap: 64px;
}

.story-gallery {
  display: grid;
  grid-template-columns: minmax(320px, 0.55fr) minmax(580px, 1.45fr);
  align-items: end;
  gap: 24px;
}

.story-gallery.story-gallery--team-only {
  grid-template-columns: 1fr;
}

.story-gallery figure {
  position: relative;
  overflow: hidden;
  background: #dfe5ef;
}

.story-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-founder {
  aspect-ratio: 4 / 4.7;
}

.story-team {
  aspect-ratio: 16 / 9;
}

.story-gallery--team-only .story-team {
  aspect-ratio: 16 / 8.35;
}

.story-gallery figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 17px 20px;
  border-left: 3px solid var(--blue);
  background: rgba(5, 15, 29, 0.9);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.story-gallery figcaption strong,
.story-gallery figcaption span {
  display: block;
}

.story-gallery figcaption strong {
  font-size: 1rem;
}

.story-gallery figcaption span,
.story-team figcaption {
  color: #c4cede;
  font-size: 0.75rem;
}

.drivers {
  --drivers-image-shift: 0px;
  --drivers-signal-progress: 0.08;
  position: relative;
  isolation: isolate;
  min-height: 980px;
  padding-block: clamp(86px, 8vw, 128px);
  overflow: hidden;
  color: var(--white);
  background: #030a14;
}

.drivers-media,
.drivers-media picture,
.drivers-media img,
.drivers-media__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.drivers-media {
  z-index: -2;
  overflow: hidden;
  background: #06101f;
}

.drivers-media img {
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--drivers-image-shift), 0) scale(1.055);
  transform-origin: 50% 50%;
  will-change: transform;
}

.drivers-media__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 8, 17, 0.3) 0%, rgba(2, 8, 17, 0.16) 44%, rgba(2, 8, 17, 0.8) 72%, rgba(2, 8, 17, 0.97) 100%),
    linear-gradient(180deg, rgba(2, 8, 17, 0.22) 0%, rgba(2, 8, 17, 0.1) 46%, rgba(2, 8, 17, 0.88) 100%);
}

.drivers-media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(118, 172, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 172, 255, 0.11) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 72%, #000 100%);
}

.drivers-road-signal {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 42px;
  left: 4%;
  height: 1px;
  background: rgba(106, 169, 255, 0.2);
}

.drivers-road-signal i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--blue), #8ec4ff);
  box-shadow: 0 0 22px rgba(69, 145, 255, 0.65);
  transform: scaleX(var(--drivers-signal-progress));
  transform-origin: left;
}

.drivers-road-signal span {
  position: absolute;
  top: 50%;
  left: calc(var(--drivers-signal-progress) * 100%);
  width: 10px;
  height: 10px;
  border: 2px solid #c9e1ff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 9px rgba(18, 105, 255, 0.12), 0 0 28px #5da3ff;
  transform: translate(-50%, -50%);
}

.drivers-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.78fr);
  align-items: center;
  gap: clamp(38px, 5vw, 84px);
}

.drivers-copy {
  align-self: end;
  padding: clamp(30px, 4vw, 58px);
  border-left: 3px solid var(--blue);
  background: linear-gradient(135deg, rgba(3, 12, 25, 0.88), rgba(3, 12, 25, 0.58));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.drivers-copy h2 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(3.5rem, 5.6vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.drivers-copy h2 span {
  display: block;
}

.drivers-copy > p:not(.section-index) {
  max-width: 660px;
  margin-top: 24px;
  color: #c5d0df;
  font-size: 1rem;
  line-height: 1.75;
}

.driver-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  border-top: 1px solid rgba(161, 187, 226, 0.25);
  border-left: 1px solid rgba(161, 187, 226, 0.25);
}

.driver-values article {
  min-height: 152px;
  padding: 22px;
  border-right: 1px solid rgba(161, 187, 226, 0.25);
  border-bottom: 1px solid rgba(161, 187, 226, 0.25);
  background: rgba(5, 18, 37, 0.62);
}

.driver-values article > span {
  color: #65a9ff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  font-weight: 800;
}

.driver-values strong {
  display: block;
  margin-top: 20px;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.driver-values p {
  margin-top: 8px;
  color: #9facbf;
  font-size: 0.74rem;
  line-height: 1.55;
}

.driver-application {
  min-width: 0;
  padding: clamp(28px, 3.3vw, 48px);
  border: 1px solid rgba(164, 190, 228, 0.28);
  background: rgba(5, 16, 32, 0.93);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.driver-form-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.driver-form-heading p,
.driver-form-heading > span {
  color: #67aaff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.driver-form-heading strong {
  display: block;
  max-width: 430px;
  margin-top: 9px;
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.driver-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 28px 0 34px;
  gap: 8px;
}

.driver-progress i {
  height: 3px;
  background: rgba(151, 178, 218, 0.2);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.driver-progress i.is-active,
.driver-progress i.is-complete {
  background: var(--blue);
  box-shadow: 0 0 14px rgba(57, 137, 255, 0.52);
}

.driver-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.driver-step {
  margin: 0;
  padding: 0;
  border: 0;
}

.driver-step[hidden] {
  display: none;
}

.driver-step.is-active {
  animation: driver-step-enter 360ms var(--ease) both;
}

.driver-step legend {
  width: 100%;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

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

.driver-form-grid > label,
.driver-question {
  display: grid;
  align-content: start;
  gap: 9px;
}

.driver-form-grid > label > span,
.driver-question > span {
  color: #c5d0df;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1.35;
  text-transform: uppercase;
}

.driver-form-grid input:not([type="radio"]):not([type="checkbox"]),
.driver-form-grid select,
.driver-form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 11px 14px;
  border: 1px solid rgba(169, 191, 226, 0.27);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  color-scheme: dark;
  font: inherit;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.driver-form-grid textarea {
  min-height: 116px;
  resize: vertical;
}

.driver-form-grid input:focus,
.driver-form-grid select:focus,
.driver-form-grid textarea:focus {
  border-color: #68a8ff;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(18, 105, 255, 0.14);
}

.driver-form-grid .is-invalid,
.driver-question.is-invalid {
  border-color: #ff7d7d !important;
  box-shadow: 0 0 0 2px rgba(255, 87, 87, 0.1);
}

.driver-wide {
  grid-column: 1 / -1;
}

.choice-row,
.choice-grid {
  display: grid;
  gap: 8px;
}

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

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

.choice-row label,
.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-row input,
.choice-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-row label > span,
.choice-grid label > span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 9px 10px;
  border: 1px solid rgba(169, 191, 226, 0.24);
  color: #b8c6d9;
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.choice-row input:focus-visible + span,
.choice-grid input:focus-visible + span {
  outline: 2px solid #8fc2ff;
  outline-offset: 2px;
}

.choice-row input:checked + span,
.choice-grid input:checked + span {
  border-color: var(--blue);
  background: rgba(18, 105, 255, 0.22);
  color: var(--white);
}

.driver-consent {
  position: relative;
  grid-template-columns: 22px 1fr;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(169, 191, 226, 0.2);
  cursor: pointer;
}

.driver-consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.driver-consent > span {
  color: #aab9ce !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.55 !important;
  text-transform: none !important;
}

.driver-consent a {
  color: #8fc2ff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.driver-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
  gap: 10px;
}

.driver-form-actions .button {
  min-width: 160px;
}

.driver-form-actions .driver-back {
  margin-right: auto;
}

.driver-form-actions [hidden] {
  display: none;
}

.driver-form-status {
  min-height: 21px;
  margin-top: 16px;
  color: #7bb7ff;
  font-size: 0.78rem;
  line-height: 1.5;
}

.driver-form-status.is-error {
  color: #ff9696;
}

.driver-privacy {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(154, 181, 219, 0.16);
  color: #8291a7;
  font-size: 0.67rem;
  line-height: 1.55;
}

.driver-success {
  display: grid;
  min-height: 480px;
  place-content: center;
  text-align: center;
}

.driver-success[hidden] {
  display: none;
}

.driver-success > span {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  place-content: center;
  border: 1px solid #6fb0ff;
  border-radius: 50%;
  background: rgba(18, 105, 255, 0.16);
  color: #8fc2ff;
  font-size: 2rem;
  box-shadow: 0 0 42px rgba(18, 105, 255, 0.22);
}

.driver-success strong {
  font-size: clamp(2rem, 3vw, 3.3rem);
  letter-spacing: -0.055em;
}

.driver-success p {
  max-width: 500px;
  margin: 18px auto 0;
  color: #aab8cc;
  line-height: 1.7;
}

@supports (animation-timeline: view()) {
  .drivers--native-motion .drivers-media img {
    animation: drivers-image-depth linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }

  .drivers--native-motion .drivers-road-signal i {
    animation: drivers-signal-progress linear both;
    animation-timeline: view();
    animation-range: entry 15% exit 80%;
  }

  .drivers--native-motion .drivers-road-signal span {
    animation: drivers-signal-position linear both;
    animation-timeline: view();
    animation-range: entry 15% exit 80%;
  }
}

@keyframes drivers-image-depth {
  from { transform: translate3d(0, -36px, 0) scale(1.07); }
  to { transform: translate3d(0, 36px, 0) scale(1.07); }
}

@keyframes drivers-signal-progress {
  from { transform: scaleX(0.05); }
  to { transform: scaleX(1); }
}

@keyframes drivers-signal-position {
  from { left: 5%; }
  to { left: 100%; }
}

@keyframes driver-step-enter {
  from { opacity: 0; transform: translate3d(18px, 0, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.quote {
  padding-block: clamp(80px, 8vw, 130px);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(560px, 1.3fr);
  align-items: stretch;
  gap: 28px;
}

.quote-portrait {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
}

.quote-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(3, 11, 23, 0.92) 100%);
}

.quote-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-portrait > div {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}

.quote-portrait span {
  color: #57a1ff;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-portrait strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.8rem, 2.5vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.quote-panel {
  padding: clamp(34px, 5vw, 76px);
  border: 1px solid var(--line-dark);
  background: rgba(7, 18, 34, 0.86);
}

.quote-panel h2 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 4vw, 4.7rem);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.quote-panel > p:not(.section-index) {
  max-width: 760px;
  margin-top: 20px;
  color: var(--muted-dark);
}

.quote-panel form {
  margin-top: 40px;
}

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

.form-grid label {
  display: grid;
  gap: 8px;
}

.form-grid label > span {
  color: #c5d0df;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(169, 191, 226, 0.26);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.form-grid input {
  min-height: 52px;
  padding: 11px 14px;
}

.form-grid select {
  min-height: 52px;
  padding: 11px 38px 11px 14px;
  color-scheme: dark;
}

.form-grid textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #71829b;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #5b9cff;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
}

.form-grid input.is-invalid,
.form-grid select.is-invalid,
.form-grid textarea.is-invalid {
  border-color: #ff7777;
}

.form-wide {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  margin-top: 22px;
  gap: 20px;
}

.form-status {
  color: var(--success);
  font-size: 0.82rem;
}

.form-status.is-error {
  color: #ff8b8b;
}

.direct-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line-dark);
  gap: 18px;
}

.direct-contact a {
  min-width: 0;
}

.direct-contact span,
.direct-contact strong {
  display: block;
}

.direct-contact span {
  color: #7490b5;
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.direct-contact strong {
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 0.94rem;
}

.site-footer {
  padding-block: 58px 24px;
  border-top: 1px solid rgba(143, 174, 220, 0.18);
  background: #030a14;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) 0.55fr 0.9fr 0.72fr;
  align-items: start;
  gap: 60px;
}

.footer-brand img {
  width: 188px;
  height: 92px;
  padding: 8px 15px;
  border-radius: 2px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 18px;
  color: #8f9db1;
  font-size: 0.85rem;
}

.footer-grid nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-grid nav a,
.footer-contact a {
  color: #c2cede;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-grid nav a:hover,
.footer-contact a:hover {
  color: var(--blue);
}

.footer-contact span {
  color: #718198;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
}

.footer-social > span {
  display: block;
  margin-bottom: 15px;
  color: #718198;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(143, 174, 220, 0.25);
  color: #c9d6e8;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: #5da3ff;
  outline: none;
  background: rgba(18, 105, 255, 0.16);
  color: var(--white);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links .social-fill {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(143, 174, 220, 0.14);
  color: #65758d;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #8fc2ff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal--delay {
  transition-delay: 120ms;
}

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

@media (max-width: 1360px) {
  :root {
    --header-height: 86px;
  }

  .brand {
    width: 138px;
    height: 65px;
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.65rem;
  }

  .header-actions > .button {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(360px, 0.8fr) minmax(500px, 1.2fr);
    gap: 44px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid rgba(173, 196, 232, 0.3);
    background: transparent;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    align-content: start;
    padding: 30px 5vw;
    overflow-y: auto;
    background: rgba(4, 13, 26, 0.99);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1.2rem;
    font-weight: 750;
  }

  .mobile-menu a:last-child {
    color: var(--blue-bright);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 72px 88px;
    gap: 58px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero h1 {
    font-size: clamp(4rem, 10vw, 6.6rem);
  }

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

  .metric-grid article:nth-child(4),
  .metric-grid article:nth-child(5) {
    border-top: 1px solid var(--line-dark);
  }

  .section-heading,
  .story-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .section-heading > p,
  .story-intro > p {
    max-width: 760px;
  }

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

  .featured-service figure {
    min-height: 520px;
  }

  .featured-service figure::after {
    background: linear-gradient(180deg, transparent 60%, rgba(6, 16, 31, 0.84));
  }

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

  .service-support > div {
    border-right: 0;
  }

  .services-conversion {
    grid-template-columns: 1fr;
  }

  .services-conversion__actions {
    width: min(100%, 460px);
  }

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

  .continuity-card:last-child {
    grid-column: 1 / -1;
  }

  .coverage-copy {
    grid-template-columns: 1fr;
    max-width: 800px;
  }

  .coverage-copy .section-index {
    grid-column: auto;
  }

  .coverage-copy > p:not(.section-index) {
    margin-top: 0;
  }

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

  .story-gallery {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .story-gallery.story-gallery--team-only {
    grid-template-columns: 1fr;
  }

  .drivers {
    min-height: 0;
  }

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

  .drivers-copy,
  .driver-application {
    width: min(100%, 780px);
  }

  .driver-application {
    margin-left: auto;
  }

  .quote-grid {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .quote-portrait {
    min-height: 760px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 78px;
    --shell: min(90vw, 680px);
  }

  .brand {
    width: 118px;
    height: 58px;
    padding: 3px 10px;
  }

  .language-button {
    min-width: 32px;
    padding-inline: 6px;
  }

  .dispatch-link {
    display: none;
  }

  .hero-grid {
    padding-block: 58px 70px;
    gap: 46px;
  }

  .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .eyebrow::before {
    width: 24px;
    margin-right: 9px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.25rem);
    line-height: 0.9;
  }

  .hero-lede {
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .button-row .button {
    min-height: 56px;
  }

  .authority-list {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    padding: 7px;
  }

  .hero-visual figcaption {
    right: 8px;
    bottom: -24px;
    left: 8px;
    max-width: none;
    font-size: 0.64rem;
  }

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

  .metric-grid article {
    min-height: 108px;
    padding: 18px;
  }

  .metric-grid article:nth-child(3) {
    border-top: 1px solid var(--line-dark);
  }

  .metric-grid article:last-child {
    grid-column: 1 / -1;
  }

  .metric-grid strong {
    font-size: 2.15rem;
  }

  .section {
    padding-block: 82px;
  }

  .section-heading h2,
  .coverage-copy h2,
  .story-intro h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .service-grid,
  .service-card--wide {
    grid-template-columns: 1fr;
  }

  .featured-service {
    min-height: 0;
  }

  .featured-service figure {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .featured-service figure::after {
    display: none;
  }

  .featured-service figure img {
    height: auto;
    object-fit: contain;
  }

  .featured-service figcaption {
    position: static;
    padding: 15px 18px;
    background: #071426;
  }

  .featured-service__copy {
    padding: 36px 24px 42px;
  }

  .featured-service__copy h3 {
    font-size: clamp(2.65rem, 12vw, 4.15rem);
  }

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

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

  .service-equipment-visual {
    min-height: 260px;
  }

  .dry-van-mark {
    width: 78%;
    padding: 19px;
  }

  .service-support > ul {
    grid-template-columns: 1fr;
  }

  .service-support li,
  .service-support li:nth-child(even),
  .service-support li:nth-last-child(-n + 2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-support li:last-child {
    border-bottom: 0;
  }

  .services-conversion {
    padding: 34px 24px 38px;
    gap: 30px;
  }

  .services-conversion__actions {
    width: 100%;
    min-width: 0;
  }

  .service-card--wide {
    grid-column: auto;
  }

  .service-card figure {
    aspect-ratio: auto;
  }

  .service-card figure::after {
    display: none;
  }

  .service-card figure img {
    height: auto;
    object-fit: contain;
  }

  .card-copy {
    padding: 28px 24px 32px;
  }

  .freight-types {
    display: block;
    padding: 23px;
  }

  .freight-types ul {
    margin-top: 16px;
  }

  .fleet-figure {
    display: flex;
    flex-direction: column;
  }

  .fleet-figure::after {
    display: none;
  }

  .fleet-figure img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .fleet-figure figcaption {
    position: static;
    max-width: none;
    padding: 16px 18px;
    background: #071426;
    text-align: left;
  }

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

  .continuity-card,
  .continuity-card:last-child {
    grid-column: auto;
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .continuity-card::after {
    display: none;
  }

  .continuity-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .continuity-card > div {
    position: static;
    padding: 26px;
    background: var(--ink);
  }

  .map-panel {
    width: 100%;
  }

  .map-canvas {
    min-height: 560px;
    aspect-ratio: auto;
  }

  .map-panel img {
    object-fit: contain;
  }

  .map-origin-card {
    top: 18px;
    right: 18px;
    bottom: auto;
    left: 18px;
    width: auto;
    padding: 18px 20px;
  }

  .coverage-facts {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: repeat(3, 1fr);
    width: auto;
  }

  .coverage-facts div {
    padding: 16px 10px;
  }

  .coverage-facts strong {
    font-size: 1.55rem;
  }

  .coverage-facts span {
    font-size: 0.55rem;
  }

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

  .safety-grid article {
    min-height: 0;
    padding: 28px;
  }

  .safety-grid strong {
    margin-top: 20px;
  }

  .safety-action {
    align-items: stretch;
    flex-direction: column;
  }

  .safety-action .button {
    width: 100%;
  }

  .safety-atmosphere__grid {
    left: -35%;
    width: 170%;
    background-size: 52px 52px;
  }

  .safety-route-signal {
    top: 62%;
  }

  .story-gallery {
    grid-template-columns: 1fr;
  }

  .story-founder,
  .story-team {
    aspect-ratio: auto;
  }

  .story-gallery--team-only .story-team {
    aspect-ratio: auto;
  }

  .story-gallery img {
    height: auto;
  }

  .drivers {
    padding: 0 0 78px;
  }

  .drivers-media {
    right: 0;
    bottom: auto;
    left: 0;
    height: 690px;
  }

  .drivers-media img {
    object-position: center top;
    transform: none;
  }

  .drivers-media__shade {
    background: linear-gradient(180deg, rgba(3, 10, 20, 0.06) 0%, rgba(3, 10, 20, 0.15) 48%, #030a14 100%);
  }

  .drivers-media::after,
  .drivers-road-signal {
    display: none;
  }

  .drivers-layout {
    display: block;
    padding-top: 540px;
  }

  .drivers-copy {
    width: 100%;
    padding: 28px 23px;
    background: rgba(3, 12, 25, 0.9);
  }

  .drivers-copy h2 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .driver-values {
    grid-template-columns: 1fr;
  }

  .driver-values article {
    min-height: 0;
  }

  .driver-application {
    width: 100%;
    margin-top: 22px;
    padding: 29px 20px;
  }

  .driver-form-heading {
    gap: 14px;
  }

  .driver-form-grid,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .driver-wide {
    grid-column: auto;
  }

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

  .driver-form-actions {
    flex-wrap: wrap;
  }

  .driver-form-actions .button {
    width: 100%;
  }

  .driver-form-actions .driver-back {
    order: 2;
  }

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

  .quote-portrait {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .quote-panel {
    padding: 32px 22px;
  }

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

  .form-wide {
    grid-column: auto;
  }

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

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

  .direct-contact {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .safety-atmosphere {
    display: none;
  }

  .safety-grid.reveal article,
  .safety-grid.reveal.is-visible article {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .safety-action p i {
    animation: none;
  }

  .drivers-media img {
    transform: none !important;
  }

  .drivers-road-signal {
    display: none;
  }

  .driver-step.is-active {
    animation: none;
  }
}
