:root {
  --navy: #061d36;
  --navy-2: #092949;
  --navy-3: #0c365f;
  --orange: #ff8a18;
  --orange-2: #ffae42;
  --ink: #0b2340;
  --muted: #68778b;
  --line: #e6edf5;
  --bg: #f6f9fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(6, 29, 54, 0.14);
  --soft-shadow: 0 10px 28px rgba(6, 29, 54, 0.09);
  --radius: 8px;
  --header-h: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.5;
}

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

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

.sr-only,
.icon-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

svg {
  width: 1em;
  height: 1em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #041a32, #061f3b 55%, #041a32);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
}

.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-logo {
  width: 246px;
  height: auto;
}

.brand-mark {
  width: 56px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
}

.mark-orange {
  fill: var(--orange);
}

.mark-white {
  fill: #ffffff;
}

.mark-blue {
  fill: #31506f;
}

.brand strong {
  display: block;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 900;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 32px 0 28px;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 3px;
  background: var(--orange);
  transform: translateX(-50%);
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 34px;
}

.btn {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-2px);
}

.quote-btn,
.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #ff9d25);
  box-shadow: 0 10px 24px rgba(255, 138, 24, 0.32);
}

.secondary {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 28px rgba(6, 29, 54, 0.14);
}

.header-quote {
  min-width: 106px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  display: none;
  place-items: center;
}

.menu-toggle svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 445px;
  overflow: hidden;
  background: #dce6f0;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 249, 252, 0.94) 0%, rgba(246, 249, 252, 0.78) 30%, rgba(246, 249, 252, 0.13) 62%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(6, 29, 54, 0.22));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 63px 0 84px;
}

.hero-eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  color: #061d36;
  font-size: 55px;
  line-height: 1.16;
  font-weight: 950;
}

.hero-subtitle {
  width: min(100%, 640px);
  margin: 20px 0 18px;
  color: #233a54;
  font-size: 18px;
  font-weight: 700;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 28px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding: 0 13px;
  color: #fff;
  background: rgba(6, 29, 54, 0.82);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(6, 29, 54, 0.18);
}

.hero-tags svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--orange);
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.hero-actions .btn {
  min-width: 150px;
  min-height: 52px;
  font-size: 16px;
}

.services {
  position: relative;
  z-index: 3;
  margin-top: -53px;
}

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

.service-card {
  min-height: 132px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.icon-ring {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 5px solid #f4f7fb;
  border-bottom-color: var(--orange);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.icon-ring svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.fleet-card h3,
.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.service-card p,
.fleet-card p,
.process-step p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.service-card i {
  display: block;
  width: 24px;
  height: 3px;
  margin-top: 14px;
  background: var(--orange);
  border-radius: 999px;
}

.route {
  padding: 18px 0 0;
}

.route-panel {
  min-height: 154px;
  display: grid;
  grid-template-columns: 330px 280px 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 28px 0 10px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 10%, rgba(42, 122, 188, 0.46), transparent 32%),
    linear-gradient(135deg, #061d36 0%, #092947 72%, #08223d 100%);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.route-map {
  position: relative;
  height: 154px;
  opacity: 0.98;
}

.route-map::before {
  content: "";
  position: absolute;
  inset: 6px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle, #000 46%, transparent 72%);
}

.route-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.route-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 3;
  stroke-dasharray: 7 8;
  stroke-linecap: round;
}

.route-line.glow {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 1 170;
  filter: drop-shadow(0 0 7px rgba(255, 138, 24, 0.8));
  animation: dash 4s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -180;
  }
}

.map-dot {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  background: #f45129;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 138, 24, 0.24);
}

.dot-cd {
  left: 70px;
  top: 44px;
}

.dot-gd {
  right: 42px;
  bottom: 28px;
}

.city {
  position: absolute;
  z-index: 2;
  font-size: 13px;
  font-weight: 900;
}

.city::before {
  content: "⚡";
  margin-right: 3px;
  color: var(--orange);
}

.city-cd {
  left: 54px;
  top: 65px;
}

.city-gd {
  right: 26px;
  bottom: 10px;
}

.moving-truck {
  position: absolute;
  left: 142px;
  top: 84px;
  z-index: 3;
  width: 48px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #fff;
  transform: rotate(16deg);
  animation: floatTruck 3.4s ease-in-out infinite;
}

.moving-truck svg {
  width: 46px;
  height: 46px;
  fill: var(--white);
  stroke: var(--navy);
  stroke-width: 1.5;
}

@keyframes floatTruck {
  50% {
    transform: translate(10px, 5px) rotate(16deg);
  }
}

.route-copy h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
}

.route-copy h2 span {
  color: var(--orange);
}

.route-copy p {
  margin: 13px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.route-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-benefits li {
  min-height: 96px;
  display: grid;
  justify-items: center;
  align-content: center;
  padding: 0 12px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.route-benefits svg {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  fill: none;
  stroke: #fff;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-benefits strong {
  font-size: 15px;
  font-weight: 900;
}

.route-benefits span {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
}

.metrics {
  padding: 18px 0 0;
}

.metrics-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.metrics-panel article {
  min-height: 118px;
  display: grid;
  grid-template-columns: 62px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-content: center;
  padding: 22px 40px;
  border-right: 1px solid var(--line);
}

.metrics-panel article:last-child {
  border-right: 0;
}

.metrics-panel svg {
  grid-row: 1 / 4;
  align-self: center;
  width: 48px;
  height: 48px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics-panel p {
  margin: 0;
  color: var(--orange);
  line-height: 1;
  font-weight: 900;
}

.metrics-panel p strong {
  font-size: 31px;
}

.metrics-panel p span {
  margin-left: 5px;
  color: var(--ink);
}

.metrics-panel h3 {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.metrics-panel small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.process {
  padding: 8px 0 0;
}

.section-title {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 68px;
  text-align: center;
}

.section-title span {
  position: absolute;
  color: rgba(6, 29, 54, 0.05);
  font-size: 58px;
  font-weight: 950;
  line-height: 1;
}

.section-title h2 {
  position: relative;
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 950;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 34px;
}

.process-step {
  position: relative;
  min-height: 96px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(6, 29, 54, 0.07);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  width: 22px;
  height: 16px;
  background: var(--orange);
  clip-path: polygon(0 35%, 65% 35%, 65% 0, 100% 50%, 65% 100%, 65% 65%, 0 65%);
  transform: translateY(-50%);
}

.process-step > span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--navy);
  border: 5px solid #f2f6fb;
  border-radius: 50%;
}

.process-step svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-step h3 {
  font-size: 15px;
}

.process-step p {
  margin-top: 3px;
  font-size: 12px;
}

.fleet {
  padding: 22px 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  margin-bottom: 20px;
}

.section-heading span {
  height: 1px;
  background: var(--line);
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  font-weight: 950;
}

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

.fleet-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

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

.fleet-card div {
  padding: 13px 16px 18px;
  text-align: center;
}

.fleet-card h3 {
  font-size: 17px;
}

.fleet-card p {
  margin-top: 4px;
  font-size: 13px;
}

.trust {
  padding: 20px 0 32px;
}

.trust h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.trust-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 18px;
  align-items: stretch;
}

.testimonial {
  position: relative;
  min-height: 105px;
  margin: 0;
  padding: 22px 24px 18px 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(6, 29, 54, 0.06);
}

.testimonial::before,
.testimonial::after {
  position: absolute;
  color: rgba(6, 29, 54, 0.2);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.testimonial::before {
  content: "“";
  left: 18px;
  top: 15px;
}

.testimonial::after {
  content: "”";
  right: 16px;
  bottom: 4px;
}

.testimonial blockquote {
  margin: 0;
  color: #56677d;
  font-size: 13px;
  font-weight: 700;
}

.testimonial figcaption {
  margin-top: 13px;
  color: var(--ink);
  text-align: right;
  font-size: 13px;
  font-weight: 900;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  min-height: 105px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(6, 29, 54, 0.06);
}

.logo-wall span {
  display: grid;
  place-items: center;
  height: 58px;
  color: #0757a7;
  font-size: 19px;
  font-weight: 950;
  border-right: 1px solid var(--line);
}

.logo-wall span:nth-child(3) {
  color: #d98b00;
}

.logo-wall span:nth-child(4) {
  color: #058b63;
}

.logo-wall span:nth-child(5) {
  color: #1584d1;
}

.logo-wall span:last-child {
  border-right: 0;
}

.logo-note {
  margin: 7px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  color: #d6e3f0;
  background:
    radial-gradient(circle at 10% 95%, rgba(255, 138, 24, 0.18), transparent 24%),
    linear-gradient(135deg, #041a32, #082844 82%, #061d36);
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 105px 150px 105px 1fr 132px;
  gap: 28px;
  padding: 31px 0 22px;
}

.footer-brand p {
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-truck-line {
  width: 180px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 0;
  opacity: 0.55;
  clip-path: polygon(0 77%, 24% 77%, 32% 40%, 54% 40%, 63% 77%, 100% 77%, 100% 100%, 0 100%);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-style: normal;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 700;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: #fff;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact b {
  color: var(--orange);
  font-size: 24px;
}

.qr-card {
  justify-self: end;
  width: 136px;
  padding: 10px 10px 12px;
  color: var(--ink);
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
}

.qr-img {
  width: 112px;
  height: 112px;
  margin: 0 auto 6px;
  object-fit: contain;
  border-radius: 4px;
}

.qr-card strong,
.qr-card small {
  display: block;
}

.qr-card strong {
  font-size: 14px;
  font-weight: 950;
}

.qr-card small {
  color: #546579;
  font-size: 12px;
  font-weight: 800;
}

.copyright {
  padding: 8px 24px 20px;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  font-size: 12px;
}

.float-quote {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  gap: 0;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 16px 35px rgba(255, 138, 24, 0.38);
}

.float-quote svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-quote span {
  margin-top: -12px;
  font-size: 12px;
  font-weight: 900;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 26, 0.68);
  backdrop-filter: blur(4px);
}

.quote-modal {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: #f0f4f8;
  border: 0;
  border-radius: 50%;
}

.modal-close svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
}

.quote-modal-copy {
  padding: 34px 40px 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
}

.quote-modal-copy span {
  color: var(--orange-2);
  font-weight: 900;
}

.quote-modal-copy h2 {
  margin: 7px 0;
  font-size: 30px;
  font-weight: 950;
}

.quote-modal-copy p {
  width: min(100%, 560px);
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px 40px 18px;
}

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

.quote-form .full {
  grid-column: 1 / -1;
}

.quote-form span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d7e1ec;
  border-radius: 8px;
  background: #f9fbfd;
  color: var(--ink);
  outline: 0;
}

.quote-form input,
.quote-form select {
  height: 46px;
  padding: 0 12px;
}

.quote-form textarea {
  resize: vertical;
  padding: 10px 12px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 138, 24, 0.16);
}

.quote-form button {
  min-height: 50px;
}

.quote-result {
  display: none;
  margin: 0 40px 34px;
  padding: 16px 18px;
  color: var(--ink);
  background: #f4f8fc;
  border: 1px solid #dfe9f3;
  border-radius: 8px;
}

.quote-result.is-visible {
  display: block;
}

.quote-result strong {
  color: var(--orange);
  font-size: 28px;
}

.quote-result p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

  .main-nav {
    gap: 24px;
  }

  .route-panel {
    grid-template-columns: 260px 230px 1fr;
  }

  .route-benefits span {
    display: none;
  }

  .metrics-panel article {
    padding: 20px 24px;
  }

  .process-row {
    gap: 20px;
  }

  .process-step:not(:last-child)::after {
    right: -18px;
  }

  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
  }

  .footer-contact {
    grid-column: span 2;
  }

  .qr-card {
    justify-self: start;
  }
}

@media (max-width: 960px) {
  :root {
    --header-h: 72px;
  }

  .container {
    width: min(100% - 32px, 760px);
  }

  .main-nav,
  .header-quote {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand strong {
    font-size: 23px;
  }

  .brand small {
    font-size: 11px;
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    z-index: 49;
    display: grid;
    gap: 0;
    padding: 14px 18px 20px;
    background: #061d36;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
    transform: translateY(-120%);
    transition: transform 0.22s ease;
  }

  .mobile-nav.is-open {
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 15px 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 900;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav .btn {
    margin-top: 18px;
  }

  .hero {
    min-height: 590px;
  }

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 29, 54, 0.94) 0%, rgba(6, 29, 54, 0.68) 48%, rgba(6, 29, 54, 0.22) 100%),
      linear-gradient(90deg, rgba(6, 29, 54, 0.85), rgba(6, 29, 54, 0.06));
  }

  .hero-content {
    padding: 50px 0 125px;
  }

  .hero-eyebrow,
  .hero h1,
  .hero-subtitle {
    color: #fff;
  }

  .hero-eyebrow {
    color: var(--orange-2);
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero-subtitle {
    width: 100%;
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
  }

  .services {
    margin-top: -78px;
  }

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

  .service-card {
    min-height: 126px;
  }

  .route-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .route-map {
    height: 126px;
    max-width: 360px;
    width: 100%;
  }

  .route-copy h2 {
    font-size: 25px;
  }

  .route-benefits {
    grid-template-columns: repeat(5, minmax(86px, 1fr));
    overflow-x: auto;
  }

  .route-benefits li:first-child {
    border-left: 0;
  }

  .metrics-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-panel article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-step {
    border-radius: 8px;
  }

  .process-step:not(:last-child)::after {
    right: auto;
    left: 44px;
    top: auto;
    bottom: -17px;
    width: 16px;
    height: 22px;
    transform: rotate(90deg);
  }

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

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 10px;
    padding: 14px;
  }

  .logo-wall span {
    border-right: 0;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 520px);
  }

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

  .brand-logo {
    width: 190px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .hero-tags {
    gap: 9px;
  }

  .hero-tags span {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 310px);
  }

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

  .service-grid,
  .fleet-grid,
  .metrics-panel,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 64px 1fr;
    gap: 16px;
    padding: 20px;
  }

  .icon-ring {
    width: 62px;
    height: 62px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .route {
    padding-top: 14px;
  }

  .route-panel {
    padding: 18px 14px;
  }

  .route-copy h2 {
    font-size: 23px;
  }

  .route-copy p {
    font-size: 18px;
  }

  .metrics-panel article {
    min-height: 108px;
    border-bottom: 1px solid var(--line);
  }

  .metrics-panel article:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metrics-panel article:last-child {
    border-bottom: 0;
  }

  .section-title span {
    font-size: 42px;
  }

  .section-title h2,
  .section-heading h2 {
    font-size: 20px;
  }

  .section-heading {
    gap: 14px;
  }

  .fleet-card img {
    aspect-ratio: 1.7 / 1;
  }

  .testimonial {
    padding-left: 42px;
  }

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

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

  .footer-contact {
    gap: 10px;
  }

  .footer-contact b {
    font-size: 20px;
  }

  .qr-card {
    justify-self: start;
  }

  .float-quote {
    display: none;
  }

  .modal {
    align-items: flex-end;
    padding: 0;
  }

  .quote-modal {
    width: 100%;
    max-height: 92vh;
    border-radius: 8px 8px 0 0;
  }

  .quote-modal-copy,
  .quote-form {
    padding-left: 20px;
    padding-right: 20px;
  }

  .quote-form .full {
    grid-column: auto;
  }

  .quote-result {
    margin: 0 20px 24px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 30px;
  }

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

  .process-step {
    grid-template-columns: 58px 1fr;
  }
}
