:root {
  --navy: #062650;
  --navy-2: #0b376f;
  --red: #e21b2d;
  --blue: #1268d6;
  --ink: #172033;
  --muted: #697386;
  --line: #dce3ec;
  --paper: #f3f6fa;
  --white: #ffffff;
  --soft-blue: #eaf1f9;
  --shadow: 0 22px 55px rgba(6, 38, 80, 0.14);
  --radius: 8px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.enhanced .reveal {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 1.05s var(--ease-out),
    filter 1.05s var(--ease-out),
    transform 1.05s var(--ease-out);
}

body.enhanced .reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(220, 227, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(6, 38, 80, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  animation: headerSettle 0.9s var(--ease-out) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 246px;
}

.brand img {
  width: 238px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  color: #33415c;
  font-size: 14px;
  font-weight: 600;
  min-width: 0;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 clamp(9px, 1vw, 16px);
}

.main-nav a + a {
  border-left: 1px solid rgba(6, 38, 80, 0.13);
}

.main-nav a::after {
  position: absolute;
  right: clamp(9px, 1vw, 16px);
  bottom: 6px;
  left: clamp(9px, 1vw, 16px);
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s var(--ease-out);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-phone {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  padding: 0 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav .nav-phone-mobile {
  display: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
  pointer-events: none;
}

.nav-toggle-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  transition:
    stroke 0.35s var(--ease-out),
    opacity 0.35s var(--ease-out);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroDrift 30s ease-in-out infinite alternate;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 16, 36, 0.92) 0%, rgba(2, 16, 36, 0.78) 38%, rgba(2, 16, 36, 0.18) 76%),
    linear-gradient(180deg, rgba(2, 16, 36, 0.16) 0%, rgba(2, 16, 36, 0.24) 48%, rgba(2, 16, 36, 0.78) 100%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 710px) minmax(280px, 370px);
  gap: 58px;
  align-items: end;
  padding: 136px 0 48px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.045) translate3d(-12px, 0, 0);
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: #ffced3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--red);
}

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

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 640;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.hero-actions .btn {
  min-width: 184px;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.45s var(--ease-out),
    background 0.45s var(--ease-out),
    color 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.btn::after {
  position: absolute;
  inset: -1px;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 45%, transparent 60%);
  opacity: 0;
  transform: translateX(-80%);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.75s var(--ease-out);
}

.btn:hover {
  box-shadow: 0 12px 28px rgba(6, 38, 80, 0.14);
  transform: translateY(-1px);
}

.btn:hover::after {
  opacity: 1;
  transform: translateX(80%);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
}

.btn-primary:hover {
  background: #c91525;
}

.btn-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.btn-light {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.btn-light:hover {
  background: var(--white);
}

.hero-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-weight: 640;
  font-size: 30px;
  line-height: 1;
}

.hero-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.hero-copy > * {
  animation: heroTextIn 1.05s var(--ease-out) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 0.08s;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 0.16s;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-card {
  animation: heroCardIn 1.15s var(--ease-out) 0.22s both;
}

@keyframes headerSettle {
  from {
    opacity: 0;
    transform: translate(-50%, -12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes heroCardIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.facts {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.facts .container {
  width: 100%;
}

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

.facts-grid div {
  position: relative;
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: clamp(22px, 2.5vw, 40px);
  background: var(--white);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition:
    background 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.facts-grid div:hover {
  z-index: 1;
  background: #f8fbff;
  transform: translateY(-1px);
}

.facts-grid strong {
  color: var(--navy);
  font-size: 28px;
  font-weight: 640;
  line-height: 1.1;
}

.facts-grid span {
  color: var(--muted);
}

.section {
  padding: clamp(56px, 7vw, 84px) 0;
}

.facts + .section {
  padding-top: clamp(26px, 3.5vw, 42px);
}

.section-title {
  max-width: 790px;
  margin-bottom: 30px;
}

.services-title {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 40px;
  align-items: center;
}

.section-title p:not(.eyebrow),
.route-copy p,
.process-layout > div > p,
.quote-copy p,
.carriers-layout > div > p,
.contacts-layout p,
.extra-layout p {
  color: var(--muted);
  font-size: 18px;
}

.services-visual {
  margin: 0;
  align-self: center;
}

.vehicle-showcase {
  position: relative;
  width: min(100%, 420px);
  margin-left: auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(6, 38, 80, 0.1);
  animation: visualFloat 10s ease-in-out infinite alternate;
}

.vehicle-showcase img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 1.2s var(--ease-out);
}

.vehicle-showcase:hover img {
  transform: scale(1.055);
}

.vehicle-showcase::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 42%;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, rgba(3, 22, 47, 0.18), transparent 56%);
}

.vehicle-showcase-copy {
  position: relative;
  z-index: 1;
  padding: 18px 20px 12px;
  background: var(--white);
}

.vehicle-showcase-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.vehicle-showcase-copy strong {
  display: block;
  color: var(--navy);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.1;
}

.vehicle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 20px;
  background: var(--white);
}

.vehicle-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 11px;
  color: var(--navy);
  background: #f6f9fc;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
}

@keyframes visualFloat {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -8px, 0);
  }
}

.section-title.split,
.extra-layout {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 216px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(6, 38, 80, 0.05);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(6, 38, 80, 0.1);
}

.service-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card.featured h3,
.service-card.featured p {
  color: var(--white);
}

.service-card span {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.service-card.featured span {
  color: #ffced3;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.advantages {
  background:
    linear-gradient(180deg, var(--white) 0%, rgba(243, 246, 250, 0.94) 100%),
    radial-gradient(circle at 12% 18%, rgba(18, 104, 214, 0.08), transparent 34%);
}

.advantages-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: 54px;
  align-items: center;
  margin-bottom: 28px;
}

.advantages-head h2 {
  margin-bottom: 0;
}

.company-proof {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 38, 80, 0.06);
}

.company-proof > span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.company-proof strong {
  display: block;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 650;
  line-height: 1.12;
}

.company-proof dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.company-proof div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.company-proof dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.company-proof dd {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
  font-weight: 760;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.advantage-card {
  position: relative;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 38, 80, 0.06);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    background 0.55s var(--ease-out);
}

.advantage-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--red), var(--navy-2));
  opacity: 0.8;
}

.advantage-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px rgba(6, 38, 80, 0.11);
}

.advantage-card strong {
  display: block;
  margin: auto 0 8px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.advantage-card span {
  color: var(--muted);
}

.advantage-index {
  width: fit-content;
  margin-bottom: 28px;
  color: var(--red) !important;
  font-size: 13px;
  font-weight: 800;
}

.fleet {
  background: var(--white);
}

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

.fleet-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 38, 80, 0.08);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out);
}

.fleet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(6, 38, 80, 0.13);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.fleet-card div {
  padding: 22px;
}

.fleet-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.fleet-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.route-section {
  color: var(--ink);
  background:
    linear-gradient(180deg, #edf4fb 0%, #f4f8fc 56%, #f4f8fc 100%);
  border-top: 1px solid var(--line);
  border-bottom: 0;
  padding: clamp(42px, 5vw, 62px) 0 clamp(8px, 1.4vw, 16px);
}

.process {
  background: linear-gradient(180deg, #f4f8fc 0%, #edf4fb 100%);
  border-bottom: 1px solid var(--line);
  padding: clamp(8px, 1.4vw, 16px) 0 clamp(54px, 6vw, 76px);
}

.route-section h2 {
  color: var(--navy);
}

.route-layout,
.process-layout,
.quote-layout,
.carriers-layout,
.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.process-layout {
  align-items: center;
}

.route-copy p {
  color: var(--muted);
}

.route-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.route-list div {
  min-height: 112px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 227, 236, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(6, 38, 80, 0.05);
  transition:
    transform 0.5s var(--ease-out),
    background 0.5s var(--ease-out),
    box-shadow 0.5s var(--ease-out);
}

.route-list div:hover {
  transform: translateX(6px);
  background: var(--white);
}

.route-list strong {
  color: var(--navy);
  font-size: 20px;
}

.route-list span {
  color: var(--muted);
}

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

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    border-color 0.55s var(--ease-out);
}

.steps li:hover {
  transform: translateX(5px);
  box-shadow: 0 16px 34px rgba(6, 38, 80, 0.08);
}

.steps span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 6px;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 19px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote-section {
  background: var(--soft-blue);
  padding: clamp(52px, 6vw, 74px) 0;
}

.quote-info {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.quote-info article {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quote-info strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
}

.quote-info span {
  color: var(--muted);
}

.quote-panel {
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-switch {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.quote-switch button {
  min-height: 44px;
  color: var(--navy);
  background: #f3f6fa;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 750;
  transition:
    background 0.45s var(--ease-out),
    color 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.quote-switch button.is-active {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 12px;
  background: var(--white);
  border-radius: var(--radius);
}

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

.quote-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 3px rgba(11, 55, 111, 0.14);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.extra {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: clamp(58px, 7vw, 86px) 0;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.extra::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(90deg, rgba(3, 22, 47, 0.95) 0%, rgba(3, 22, 47, 0.8) 44%, rgba(3, 22, 47, 0.28) 100%),
    url("assets/larger-transport-bg-v2.png");
  background-position:
    center,
    center 56%;
  background-repeat: no-repeat;
  background-size:
    cover,
    cover;
  opacity: 0.86;
  transform: scale(1.035);
}

.extra .container {
  position: relative;
  z-index: 1;
}

.extra-layout {
  margin-bottom: 0;
  align-items: center;
}

.extra-layout h2 {
  color: var(--white);
  margin-bottom: 0;
}

.extra-layout p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.carriers {
  background: var(--white);
}

.carrier-list {
  display: grid;
  gap: 12px;
}

.carrier-list article {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 0.55s var(--ease-out),
    box-shadow 0.55s var(--ease-out),
    background 0.55s var(--ease-out);
}

.carrier-list article:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(6, 38, 80, 0.08);
}

.carrier-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 18px;
}

.carrier-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.carrier-cta {
  width: fit-content;
  margin-top: 20px;
}

.carrier-note {
  margin: 16px 0 0;
  color: var(--navy) !important;
  font-size: 15px !important;
  font-weight: 650;
}

.contacts {
  padding-bottom: 92px;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  font-style: normal;
}

.contact-card a {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 750;
  line-height: 1.1;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #03162f;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-layout img {
  width: 190px;
  padding: 8px;
  background: var(--white);
  border-radius: 6px;
}

.footer-layout a {
  color: var(--white);
  font-weight: 750;
}

.to-top {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transition:
    background 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.to-top:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.to-top span {
  transform: translateY(-1px);
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 210px;
  }

  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    justify-self: end;
    padding: 0;
    color: var(--white);
    background: var(--navy);
    border: 0;
    border-radius: 6px;
    transition:
      background 0.35s var(--ease-out),
      transform 0.35s var(--ease-out);
  }

  .nav-toggle:hover {
    background: var(--navy-2);
  }

  body.nav-open .nav-toggle {
    background: var(--navy-2);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-height: calc(100svh - 96px);
    overflow: auto;
  }

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

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .main-nav .nav-phone-mobile {
    display: flex !important;
    min-height: 48px;
    justify-content: center;
    margin-top: 8px;
    color: var(--white);
    background: var(--navy);
    border-radius: 6px;
    font-weight: 760;
  }

  .main-nav a + a {
    border-top: 1px solid rgba(6, 38, 80, 0.1);
    border-left: 0;
  }

  .hero-layout,
  .services-title,
  .advantages-head,
  .route-layout,
  .process-layout,
  .quote-layout,
  .carriers-layout,
  .contacts-layout,
  .section-title.split,
  .extra-layout {
    grid-template-columns: 1fr;
  }

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

  .advantages-head {
    gap: 28px;
  }

  .hero-layout {
    align-items: start;
    gap: 34px;
  }

  .hero-card {
    width: min(100%, 460px);
    justify-self: start;
  }

  .services-visual {
    justify-self: start;
    width: 100%;
  }

  .vehicle-showcase {
    width: min(100%, 500px);
    margin-left: 0;
  }

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

  .quote-panel,
  .contact-card {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 82px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 54px;
    padding: 7px 8px;
  }

  .brand img {
    width: min(148px, 50vw);
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 5px;
  }

  .nav-toggle-icon {
    width: 20px;
    height: 20px;
  }

  .main-nav {
    top: calc(100% + 7px);
    padding: 7px;
  }

  .main-nav a {
    min-height: 48px;
    font-size: 15px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 16, 36, 0.95) 0%, rgba(2, 16, 36, 0.86) 56%, rgba(2, 16, 36, 0.42) 100%),
      linear-gradient(180deg, rgba(2, 16, 36, 0.4) 0%, rgba(2, 16, 36, 0.22) 44%, rgba(2, 16, 36, 0.82) 100%);
  }

  .hero-layout {
    gap: 22px;
    padding: 104px 0 30px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(34px, 10.8vw, 46px);
    line-height: 1.06;
  }

  h2 {
    margin-bottom: 14px;
    font-size: clamp(28px, 8.5vw, 34px);
    line-height: 1.14;
  }

  h3 {
    font-size: 21px;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    min-width: 0;
  }

  .hero-card {
    padding: 18px;
  }

  .hero-card strong {
    font-size: 24px;
  }

  .hero-card p {
    font-size: 15px;
  }

  .service-grid,
  .fleet-grid,
  .advantages-grid,
  .route-list,
  .quote-form {
    grid-template-columns: 1fr;
  }

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

  .advantages-head,
  .company-proof dl {
    grid-template-columns: 1fr;
  }

  .facts-grid div {
    min-height: 92px;
    padding: 16px;
  }

  .facts-grid strong {
    font-size: 22px;
  }

  .facts-grid span {
    font-size: 13px;
    line-height: 1.35;
  }

  .section {
    padding: 54px 0;
  }

  .facts + .section {
    padding-top: 34px;
  }

  .services-title,
  .section-title.split,
  .advantages-head,
  .route-layout,
  .process-layout,
  .quote-layout,
  .carriers-layout,
  .contacts-layout,
  .extra-layout {
    gap: 24px;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title p:not(.eyebrow),
  .route-copy p,
  .process-layout > div > p,
  .quote-copy p,
  .carriers-layout > div > p,
  .contacts-layout p,
  .extra-layout p {
    font-size: 16px;
  }

  .vehicle-showcase img {
    aspect-ratio: 16 / 11;
  }

  .vehicle-showcase-copy {
    padding: 16px 16px 10px;
  }

  .vehicle-showcase-copy strong {
    font-size: 20px;
  }

  .vehicle-tags {
    padding: 0 16px 16px;
  }

  .service-card {
    min-height: 0;
    padding: 18px;
  }

  .service-card span {
    margin-bottom: 16px;
  }

  .advantages-grid,
  .service-grid,
  .fleet-grid {
    gap: 12px;
  }

  .company-proof {
    padding: 18px;
  }

  .company-proof strong {
    font-size: 25px;
  }

  .company-proof div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    padding: 12px;
  }

  .advantage-card {
    min-height: 0;
    padding: 18px;
  }

  .advantage-index {
    margin-bottom: 16px;
  }

  .fleet-card img {
    aspect-ratio: 16 / 10;
  }

  .fleet-card div {
    padding: 18px;
  }

  .route-section {
    padding: 48px 0 10px;
  }

  .process {
    padding: 10px 0 52px;
  }

  .route-list div {
    min-height: 0;
    padding: 18px;
  }

  .route-list strong {
    font-size: 19px;
  }

  .steps li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .steps span {
    width: 44px;
    height: 44px;
  }

  .quote-form {
    gap: 11px;
    padding: 12px;
  }

  .quote-panel {
    padding: 7px;
  }

  .quote-switch {
    gap: 7px;
  }

  .quote-switch button,
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 48px;
  }

  .quote-info article {
    padding: 14px;
  }

  .extra {
    min-height: 450px;
    padding: 58px 0;
  }

  .extra::before {
    background-position:
      center,
      center 56%;
    background-size:
      cover,
      cover;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }

  .carrier-cta {
    width: 100%;
  }

  .carrier-list article {
    padding: 16px;
  }

  .contacts {
    padding-bottom: 62px;
  }

  .contact-card {
    gap: 12px;
    padding: 20px;
  }

  .contact-card a,
  .contact-card span {
    overflow-wrap: anywhere;
  }

  .footer-layout img {
    width: 166px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .brand img {
    width: min(148px, 52vw);
  }

  h1 {
    font-size: clamp(31px, 10.2vw, 38px);
  }

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

  .hero-layout {
    padding-top: 94px;
  }

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

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