:root {
  --navy: #082f5f;
  --navy-dark: #06192d;
  --ink: #071426;
  --muted: #5d6878;
  --line: #e2e8f0;
  --red: #e11626;
  --red-dark: #b90e1b;
  --white: #ffffff;
  --soft: #f5f7fb;
  --shadow: 0 24px 60px rgba(8, 19, 34, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand__text,
.btn,
.nav-menu {
  font-family: "Space Grotesk", "Inter", Arial, sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.18;
  transform: translate3d(0, 0, 0);
  animation: driftGlow 12s ease-in-out infinite alternate;
}

body::before {
  top: 12%;
  left: -120px;
  background: #0d77b8;
}

body::after {
  right: -140px;
  bottom: 16%;
  background: #e11626;
  animation-delay: -4s;
}

body.page-leaving main,
body.page-leaving .site-footer {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 30px, 0);
  transition: opacity 0.42s ease, filter 0.42s ease, transform 0.42s ease;
}

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

img,
svg {
  display: block;
}

.site-shell {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: none;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(13, 119, 184, 0.22), transparent 34%),
    #06192d;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  visibility: hidden;
}

.preloader__mark {
  width: min(310px, calc(100vw - 52px));
  text-align: center;
}

.preloader__truck {
  position: relative;
  display: block;
  width: 70px;
  height: 34px;
  margin: 0 0 18px;
  border: 3px solid var(--white);
  border-radius: 6px 10px 6px 6px;
  transform: translate3d(0, 0, 0);
}

.preloader__truck::before,
.preloader__truck::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(225, 22, 38, 0.65);
}

.preloader__truck::before {
  left: 8px;
}

.preloader__truck::after {
  right: 8px;
}

.preloader__mark strong {
  display: block;
  margin-bottom: 18px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.preloader__mark i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #ffffff);
  transform: scaleX(0);
  transform-origin: left;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6470);
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  z-index: 9997;
  left: 0;
  top: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 22, 38, 0.16), transparent 68%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: multiply;
  will-change: transform;
}

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

.particle-field span {
  position: absolute;
  left: var(--x);
  bottom: -30px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: rgba(18, 206, 255, 0.42);
  box-shadow: 0 0 18px rgba(18, 206, 255, 0.48);
  animation: particleRise 13s linear infinite;
  animation-delay: var(--delay);
}

.particle-field span:nth-child(3n) {
  background: rgba(217, 178, 92, 0.35);
  box-shadow: 0 0 18px rgba(217, 178, 92, 0.36);
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
}

.topbar__inner,
.topbar__group,
.topbar a,
.topbar__location {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 42px;
  justify-content: space-between;
  gap: 18px;
}

.topbar__group {
  gap: 30px;
  flex-wrap: wrap;
}

.topbar a,
.topbar__location {
  gap: 9px;
  white-space: nowrap;
}

.topbar svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid rgba(7, 20, 38, 0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(7, 20, 38, 0.11);
}

.navbar__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  transition: min-height 0.3s ease;
}

.navbar.is-scrolled .navbar__inner {
  min-height: 76px;
}

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

.brand__mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: var(--ink);
}

.brand__mark svg {
  width: 46px;
  height: 46px;
  fill: currentColor;
}

.brand__text {
  font-size: 23px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding: 30px 0;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
}

.nav-menu a:not(.quote-link)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.nav-menu a:not(.quote-link):hover::after,
.nav-menu a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.quote-link,
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: 180ms ease;
  transform: translate3d(0, 0, 0);
}

.quote-link::before,
.btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.44) 42%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.quote-link span,
.btn span {
  transition: transform 0.3s ease;
}

.quote-link:hover::before,
.btn:hover::before {
  transform: translateX(120%);
}

.quote-link:hover span,
.btn:hover span {
  transform: translateX(4px);
}

.quote-link {
  min-height: 50px;
  padding: 0 28px !important;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 26px rgba(225, 22, 38, 0.22);
}

.quote-link::after {
  display: none;
}

.quote-link:hover,
.btn--primary:hover {
  color: var(--white);
  background: var(--red-dark);
  transform: translate3d(0, -2px, 0) scale(1.015);
  box-shadow: 0 18px 34px rgba(225, 22, 38, 0.32);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  pointer-events: none;
  background:
    linear-gradient(rgba(18, 206, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 206, 255, 0.04) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 44%, transparent 62%);
  background-size: 72px 72px, 72px 72px, auto;
  transform: translate3d(-120%, 0, 0);
  animation: heroLightSweep 4.8s ease-in-out infinite, heroGridMove 18s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(225, 22, 38, 0.12));
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: #06192d;
  background-image:
    radial-gradient(circle at 50% 22%, rgba(24, 149, 239, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.46) 0%, rgba(2, 8, 23, 0.62) 54%, rgba(2, 8, 23, 0.92) 100%),
    linear-gradient(90deg, rgba(2, 8, 23, 0.66), rgba(2, 8, 23, 0.08), rgba(2, 8, 23, 0.7)),
    url("assets/hero-perfect-truck.png");
  background-position: center, center, center, center;
  background-repeat: no-repeat;
  background-size: auto, auto, auto, cover;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.01);
  transition: transform 0.35s ease-out;
  will-change: transform;
  animation: heroFloat 7s ease-in-out infinite alternate;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 0%, rgba(2, 8, 23, 0.22) 52%, rgba(2, 8, 23, 0.78) 100%),
    linear-gradient(180deg, rgba(2, 8, 23, 0.18), rgba(2, 8, 23, 0.92));
}

.hero__content {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 30px;
}

.hero__text {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-heading p {
  margin: 0 0 13px;
  color: #ff4050;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--red);
}

.hero__copy {
  max-width: 500px;
  margin: 18px 0 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 0 26px;
  font-size: 14px;
}

.btn--primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 22px rgba(225, 22, 38, 0.24);
}

.btn--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.05);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translate3d(0, -2px, 0) scale(1.015);
}

.hero__points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100%;
  margin-top: clamp(38px, 6vw, 70px);
  padding: 0;
  border-radius: 20px 20px 0 0;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.point {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: start;
  gap: 8px;
  min-height: 132px;
  padding: 24px 16px;
  color: var(--ink);
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  text-align: center;
  transition: transform 0.28s ease, color 0.28s ease;
}

.point:last-child {
  border-right: 0;
}

.point:hover {
  color: var(--navy);
  background: #f7fbff;
  transform: translate3d(0, -4px, 0);
}

.point__icon,
.mini-icon,
.stat__icon {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 31px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.point:hover .point__icon,
.trust-item:hover .mini-icon,
.stat:hover .stat__icon {
  transform: rotate(8deg) scale(1.04);
}

.point strong {
  display: block;
  font-size: 16px;
}

.point small {
  color: var(--muted);
  font-size: 12px;
}

.pin::before,
.clock::before,
.gear::before,
.support::before,
.truck::before,
.lock::before,
.team::before,
.coin::before,
.people::before,
.warehouse::before,
.medal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.pin::before {
  inset: 8px 10px 10px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.clock::before {
  inset: 7px;
  border-radius: 50%;
  border-top-color: transparent;
}

.gear::before {
  inset: 8px;
  border-radius: 50%;
}

.support::before {
  inset: 8px 6px;
  border-radius: 8px 8px 3px 3px;
}

.trust-strip {
  background: var(--white);
  box-shadow: 0 8px 32px rgba(16, 31, 52, 0.06);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 112px;
}

.trust-strip__lead {
  margin: 0;
  padding-left: 20px;
  border-left: 3px solid var(--red);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.trust-item {
  display: grid;
  grid-template-columns: 33px 1fr;
  align-items: center;
  column-gap: 10px;
  font-size: 13px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item small {
  color: var(--muted);
}

.mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 0;
  border-color: transparent;
  color: var(--ink);
}

.truck::before {
  inset: 9px 2px 8px;
  border-radius: 2px;
}

.lock::before {
  inset: 10px 7px 6px;
  border-radius: 2px;
}

.team::before,
.people::before {
  inset: 7px 4px 10px;
  border-radius: 50% 50% 8px 8px;
}

.coin::before {
  inset: 5px;
  border-radius: 50%;
}

.services {
  padding: 58px 0 38px;
  background: var(--white);
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 40px);
  line-height: 1.15;
}

.section-heading span {
  display: block;
  width: 72px;
  height: 3px;
  margin: 10px auto 14px;
  background: var(--red);
}

.section-heading small {
  display: block;
  max-width: 570px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 16px;
}

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

.service-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 23, 39, 0.06);
  transform-style: preserve-3d;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  will-change: transform;
}

.service-card::after,
.process-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(225, 22, 38, 0.16), transparent 34%);
  transition: opacity 0.3s ease;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.95 / 1;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card__icon {
  position: absolute;
  left: 26px;
  top: 128px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 22px rgba(225, 22, 38, 0.22);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card__icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.service-card__body {
  padding: 62px 24px 26px;
}

.service-card h3 {
  margin: 0 0 9px;
  font-size: 20px;
  line-height: 1.2;
}

.service-card p {
  min-height: 66px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.service-card a {
  color: var(--red-dark);
  font-size: 14px;
  font-weight: 900;
}

.service-card:hover {
  border-color: rgba(225, 22, 38, 0.28);
  box-shadow: 0 22px 48px rgba(6, 23, 39, 0.14);
}

.service-card:hover::after,
.process-card:hover::after,
.testimonial-card:hover::after {
  opacity: 1;
}

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

.service-card:hover .service-card__icon {
  transform: rotate(8deg) scale(1.04);
  box-shadow: 0 14px 28px rgba(225, 22, 38, 0.34);
}

.stats {
  color: var(--white);
  background:
    linear-gradient(rgba(5, 34, 66, 0.94), rgba(5, 34, 66, 0.94)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=75") center / cover;
}

.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  min-height: 152px;
  align-items: center;
}

.stat {
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  column-gap: 15px;
}

.stat__icon {
  width: 58px;
  height: 58px;
  color: var(--white);
  border: 0;
  background: var(--red);
}

.stat__icon::before {
  border-color: currentColor;
}

.warehouse::before {
  inset: 14px 13px 12px;
}

.medal::before {
  inset: 12px;
  border-radius: 50%;
}

.stat strong {
  display: block;
  font-size: 31px;
  line-height: 1.05;
}

.stat small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.cta {
  padding: 0 0 34px;
  background: var(--navy);
}

.cta__box {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-10px);
}

.cta__icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
}

.cta__icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.cta h2 {
  margin: 0 0 7px;
  font-size: 24px;
}

.cta p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(100deg, rgba(6, 19, 35, 0.94), rgba(8, 47, 95, 0.78)),
    var(--page-image) center / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 58px 58px;
}

.page-hero__inner {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 62px 0;
}

.breadcrumb {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--white);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 670px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.service-detail {
  padding: 64px 0;
  background: var(--white);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;
}

.service-detail__main h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
}

.service-detail__main p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 16px 16px 16px 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 800;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 13px;
  height: 8px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

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

.process-card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 23, 39, 0.05);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  will-change: transform;
}

.process-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.process-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.process-card p {
  margin: 0;
  font-size: 14px;
}

.service-sidebar {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 23, 39, 0.08);
}

.service-sidebar img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.service-sidebar__body {
  padding: 24px;
}

.service-sidebar h2 {
  margin: 0 0 10px;
  font-size: 23px;
}

.service-sidebar p {
  margin: 0 0 20px;
  color: var(--muted);
}

.service-links {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.service-links a {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font-weight: 900;
  background: var(--soft);
}

.service-links a:hover,
.service-links a.active {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
}

.related-services {
  padding: 52px 0 64px;
  background: var(--soft);
}

.related-services .service-grid {
  margin-top: 26px;
}

.testimonials {
  overflow: hidden;
  padding: 60px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(225, 22, 38, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 6px 0 14px;
  animation: testimonialSlide 26s linear infinite;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  width: min(360px, calc(100vw - 52px));
  flex: 0 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(6, 23, 39, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.testimonial-card:hover {
  box-shadow: 0 24px 52px rgba(6, 23, 39, 0.16);
}

.testimonial-card p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.about-section,
.contact-section {
  padding: 64px 0;
  background: var(--white);
}

.quote-section,
.faq-section {
  padding: 52px 0;
  background: var(--white);
}

.quote-section--dark {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(24, 149, 239, 0.14), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(225, 22, 38, 0.18), transparent 30%),
    linear-gradient(135deg, #061024 0%, #071b38 55%, #05152b 100%);
}

.quote-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, #000 14%, #000 86%, transparent);
}

.quote-section--dark .contact-panel,
.quote-section--dark .contact-info {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(5, 16, 35, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.quote-grid {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: start;
}

.quote-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.quote-card.contact-panel {
  padding: clamp(22px, 3vw, 34px);
}

.quote-card form {
  gap: 14px 16px;
}

.quote-card .btn {
  min-height: 56px;
  margin-top: 2px;
  border-radius: 10px;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--red), #ff7a84 45%, #1895ef);
}

.quote-intro {
  max-width: 720px;
  margin: -8px 0 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.quote-steps span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.quote-steps b {
  display: inline-grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 12px;
}

.quote-section--dark .contact-panel h2,
.quote-section--dark .contact-info h2,
.quote-section--dark .contact-panel label,
.quote-section--dark .service-detail__main h2 {
  color: var(--white);
}

.quote-section--dark .contact-panel input,
.quote-section--dark .contact-panel select,
.quote-section--dark .contact-panel textarea {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.quote-section--dark .contact-panel input:focus,
.quote-section--dark .contact-panel select:focus,
.quote-section--dark .contact-panel textarea:focus {
  outline: none;
  border-color: rgba(24, 149, 239, 0.72);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(24, 149, 239, 0.13);
}

.quote-section--dark .contact-panel input::placeholder,
.quote-section--dark .contact-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.quote-section--dark .contact-panel select option {
  color: #111827;
}

.quote-section--dark .feature-list li {
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.quote-section--dark .service-detail__main p,
.quote-section--dark .contact-info p {
  color: rgba(255, 255, 255, 0.76);
}

.distance-field {
  grid-column: 1 / -1;
  padding: 14px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(24, 149, 239, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
}

.distance-field span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 10px;
  color: var(--white);
  font-size: 17px;
  line-height: 1;
}

.distance-field b {
  color: var(--white);
  font-size: 32px;
}

.distance-field input[type="range"] {
  height: 24px;
  padding: 0;
  accent-color: #1895ef;
  cursor: pointer;
}

.human-check {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 14px;
  width: min(460px, 100%);
  padding: 12px 15px;
  border: 1px solid rgba(2, 6, 23, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  cursor: pointer;
}

.human-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.human-check span {
  position: relative;
  width: 32px;
  height: 32px;
  border: 3px solid #5b6068;
  background: #fff;
}

.human-check span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 15px;
  height: 8px;
  border-left: 4px solid #1895ef;
  border-bottom: 4px solid #1895ef;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.human-check input:checked + span::after {
  opacity: 1;
  transform: rotate(-45deg) scale(1);
}

.human-check strong {
  color: #111827;
  font-size: 18px;
  font-weight: 700;
}

.human-check small {
  color: #6b7280;
  font-size: 12px;
  text-align: right;
}

.quote-aside {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(225, 22, 38, 0.2), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(8, 24, 48, 0.72);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.quote-aside h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.08;
}

.quote-benefits {
  display: grid;
  gap: 10px;
}

.quote-benefits div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 64px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.quote-benefits div:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 22, 38, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.quote-benefits span {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(225, 22, 38, 0.14);
}

.quote-benefits span::before {
  content: "";
  width: 14px;
  height: 8px;
  border-left: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  transform: rotate(-45deg) translate(1px, -1px);
}

.quote-benefits strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

.quote-contact-card {
  position: sticky;
  top: 110px;
}

.faq-section {
  background: var(--white);
}

.mega-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(4, 14, 31, 0.68), rgba(4, 14, 31, 0.8)),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.mega-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 34%);
  animation: heroLightSweep 5.6s ease-in-out infinite;
}

.mega-cta__inner {
  padding: 80px 0;
}

.mega-cta h2 {
  max-width: 1050px;
  margin: 0 auto 20px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
}

.mega-cta p {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 24px;
  font-weight: 600;
}

.mega-cta .btn {
  min-height: 74px;
  padding: 0 42px;
  font-size: 21px;
  border-radius: 8px;
}

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

.faq-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 12px 28px rgba(6, 23, 39, 0.05);
}

.faq-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.faq-grid p {
  margin: 0;
  color: var(--muted);
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: center;
}

.about-grid h2,
.contact-panel h2,
.contact-info h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
}

.about-grid p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.about-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(6, 23, 39, 0.14);
}

.about-highlights {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.about-highlights div {
  padding: 18px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--soft);
}

.about-highlights strong,
.about-highlights span {
  display: block;
}

.about-highlights span {
  margin-top: 4px;
  color: var(--muted);
}

.values-section {
  padding: 58px 0 70px;
  background: var(--soft);
}

.contact-grid {
  align-items: start;
}

.contact-panel,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 34px rgba(6, 23, 39, 0.07);
}

.contact-panel {
  padding: 26px;
}

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

.contact-panel label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.contact-panel .full,
.contact-panel button {
  grid-column: 1 / -1;
}

.contact-panel input,
.contact-panel select,
.contact-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--soft);
  font: inherit;
}

.contact-panel textarea {
  resize: vertical;
}

.contact-info {
  padding: 26px;
}

.contact-info div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.contact-info strong,
.contact-info a,
.contact-info p {
  display: block;
}

.contact-info strong {
  margin-bottom: 6px;
}

.contact-info a {
  color: var(--red-dark);
  font-weight: 900;
}

.contact-info p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background: #06192d;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 52px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(225, 22, 38, 0.8), transparent);
  transform: translateX(-50%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1.1fr;
  gap: 34px;
  padding: 52px 0 38px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 18px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer a:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(225, 22, 38, 0.34);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 18px;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__mark {
  color: var(--white);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

.brand__text {
  max-width: 270px;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.05;
}

.site-shell {
  background:
    radial-gradient(circle at 12% 8%, rgba(30, 144, 255, 0.12), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(225, 22, 38, 0.11), transparent 28%),
    #ffffff;
}

.topbar {
  background: linear-gradient(90deg, #020817, #071c3a 50%, #020817);
}

.navbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.navbar.is-scrolled {
  background: rgba(2, 8, 23, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar.is-scrolled .brand,
.navbar.is-scrolled .nav-menu a:not(.quote-link) {
  color: var(--white);
}

.navbar.is-scrolled .nav-toggle span {
  background: var(--white);
}

.hero {
  min-height: calc(100vh - 42px);
  background:
    radial-gradient(circle at 52% 18%, rgba(24, 149, 239, 0.22), transparent 30%),
    radial-gradient(circle at 72% 72%, rgba(225, 22, 38, 0.16), transparent 32%),
    #020817;
}

.hero__content {
  min-height: calc(100vh - 128px);
  align-items: center;
  padding: clamp(82px, 10vw, 132px) 0 0;
  text-align: center;
}

.hero h1 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.hero h1::first-line {
  color: var(--white);
  background: none;
}

.hero__copy {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.5vw, 22px);
  color: rgba(255, 255, 255, 0.84);
}

.hero__actions {
  justify-content: center;
}

.hero-dashboard {
  position: relative;
  right: auto;
  top: auto;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: min(560px, 100%);
  margin: clamp(34px, 5vw, 58px) auto 0;
  transform: none;
  pointer-events: none;
}

.hero-dashboard__card {
  overflow: hidden;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(2, 8, 23, 0.62);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
  animation: floatCard 5.4s ease-in-out infinite alternate;
}

.hero-dashboard__card:nth-child(3) {
  animation-delay: -2s;
}

.hero-dashboard__card--main {
  grid-column: 1 / -1;
}

.hero-dashboard__card span,
.hero-dashboard__card small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-dashboard__card strong {
  display: block;
  margin: 5px 0;
  font-size: 22px;
  line-height: 1.1;
}

.hero-dashboard__card--main i {
  display: block;
  height: 5px;
  margin: 14px 0 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red) 0 68%, rgba(255, 255, 255, 0.2) 68% 100%);
  box-shadow: 0 0 22px rgba(225, 22, 38, 0.42);
}

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn::after {
  content: "";
  position: absolute;
  left: var(--ripple-x, 50%);
  top: var(--ripple-y, 50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn.is-rippling::after {
  animation: buttonRipple 0.6s ease-out;
}

.btn span {
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}

.btn:hover span {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, #ff1529, #b90e1b);
  box-shadow: 0 18px 34px rgba(225, 22, 38, 0.34), 0 0 32px rgba(225, 22, 38, 0.18);
}

.trust-strip,
.brand-strip {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.brand-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
}

.brand-strip span {
  display: grid;
  min-height: 48px;
  place-items: center;
  border: 1px solid rgba(8, 47, 95, 0.08);
  border-radius: 999px;
  color: #233047;
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.brand-strip span:hover {
  border-color: rgba(18, 206, 255, 0.32);
  box-shadow: 0 16px 34px rgba(18, 206, 255, 0.12);
  transform: translate3d(0, -4px, 0);
}

.services,
.about-section,
.faq-section,
.testimonials {
  background:
    radial-gradient(circle at 10% 0%, rgba(24, 149, 239, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.service-card {
  border-radius: 18px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(24, 149, 239, 0.24), rgba(225, 22, 38, 0.22)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 22px 48px rgba(8, 19, 34, 0.08);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(18, 206, 255, 0.14), transparent 32%, rgba(225, 22, 38, 0.09));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  z-index: 2;
  background: linear-gradient(135deg, var(--red), #ff4c5a);
  box-shadow: 0 18px 34px rgba(225, 22, 38, 0.3);
}

.service-card__body {
  position: relative;
  z-index: 2;
}

.tracking-showcase {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(24, 149, 239, 0.2), transparent 30%),
    linear-gradient(135deg, #020817, #071b38 52%, #110f24);
}

.tracking-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.tracking-grid h2 {
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
}

.tracking-grid p {
  max-width: 540px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.tracking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tracking-panel {
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(2, 8, 23, 0.66);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.tracking-panel__top,
.tracking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tracking-panel__top {
  margin-bottom: 26px;
}

.tracking-panel__top strong {
  font-size: 24px;
}

.tracking-panel__top span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #93f5ff;
  background: rgba(24, 149, 239, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.route-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 10px 8px 28px;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #1895ef);
  transform: translateY(-50%);
  transform-origin: left center;
  animation: routePulse 3.2s ease-in-out infinite;
}

.route-line i {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: var(--red);
}

.route-line i:nth-child(2) {
  justify-self: center;
  background: #1895ef;
}

.route-line i:nth-child(3) {
  justify-self: end;
}

.tracking-row {
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.tracking-row span {
  color: rgba(255, 255, 255, 0.74);
}

.tracking-row strong {
  color: var(--white);
}

.testimonials {
  padding: 70px 0;
}

.testimonial-card {
  border-radius: 18px;
}

.site-footer {
  background:
    radial-gradient(circle at 80% 10%, rgba(225, 22, 38, 0.18), transparent 28%),
    linear-gradient(135deg, #020817, #07172e 58%, #020817);
}

.hero {
  min-height: calc(100vh - 42px);
}

.hero__text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #bdefff;
  background: rgba(8, 47, 95, 0.45);
  backdrop-filter: blur(12px);
}

.hero-dashboard__card {
  text-align: left;
}

.hero__points {
  max-width: 1120px;
}

.quote-section--dark {
  padding: clamp(70px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 206, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(73, 112, 255, 0.16), transparent 26%),
    radial-gradient(circle at 52% 100%, rgba(217, 178, 92, 0.12), transparent 30%),
    linear-gradient(135deg, #060816 0%, #0b1120 48%, #050713 100%);
}

.quote-section--dark::after {
  content: "";
  position: absolute;
  inset: 5% 3%;
  pointer-events: none;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 30%, rgba(18, 206, 255, 0.12), transparent 18%),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.08), transparent 16%);
  filter: blur(10px);
  opacity: 0.72;
}

.quote-section--dark::before {
  opacity: 0.85;
  background:
    linear-gradient(rgba(18, 206, 255, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 206, 255, 0.065) 1px, transparent 1px);
  background-size: 74px 74px;
  animation: quoteGridDrift 18s linear infinite;
}

.quote-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
}

.quote-aside--premium,
.quote-card--premium {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 231, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(6, 8, 22, 0.7);
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 80px rgba(18, 206, 255, 0.08);
  backdrop-filter: blur(22px);
}

.quote-aside--premium::before,
.quote-card--premium::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(18, 206, 255, 0.65), transparent 34%, rgba(217, 178, 92, 0.44), transparent 70%);
  opacity: 0.5;
  filter: blur(18px);
  animation: quoteGlowPulse 5s ease-in-out infinite alternate;
}

.quote-aside--premium {
  position: relative;
  top: auto;
  align-content: start;
  gap: 22px;
  padding: clamp(26px, 4vw, 42px);
}

.quote-aside--premium h2 {
  max-width: 620px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  background: linear-gradient(90deg, #ffffff, #bdefff 62%, #d9b25c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-aside--premium .quote-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(238, 247, 255, 0.76);
  font-size: 17px;
}

.quote-orbit {
  position: absolute;
  right: -72px;
  top: -74px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(18, 206, 255, 0.18);
  border-radius: 50%;
  opacity: 0.8;
  animation: quoteSpin 18s linear infinite;
}

.quote-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #12ceff;
  box-shadow: 0 0 28px rgba(18, 206, 255, 0.9);
}

.quote-orbit i:nth-child(1) {
  left: 18px;
  top: 42px;
}

.quote-orbit i:nth-child(2) {
  right: 28px;
  top: 92px;
  background: #d9b25c;
}

.quote-orbit i:nth-child(3) {
  left: 96px;
  bottom: 16px;
}

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

.quote-metrics div {
  min-height: 104px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background:
    radial-gradient(circle at 85% 0%, rgba(18, 206, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.07);
}

.quote-metrics strong {
  display: block;
  color: var(--white);
  font-size: clamp(27px, 3vw, 40px);
  line-height: 1;
}

.quote-metrics span {
  display: block;
  margin-top: 8px;
  color: rgba(238, 247, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.quote-aside--premium .quote-benefits div {
  min-height: 58px;
  border-color: rgba(18, 206, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.quote-aside--premium .quote-benefits span {
  background: rgba(18, 206, 255, 0.13);
}

.quote-aside--premium .quote-benefits span::before {
  border-color: #12ceff;
}

.quote-mini-dashboard {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(217, 178, 92, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(217, 178, 92, 0.12), rgba(18, 206, 255, 0.06)),
    rgba(255, 255, 255, 0.055);
}

.quote-mini-dashboard__top,
.quote-signal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.quote-mini-dashboard__top strong {
  color: var(--white);
}

.quote-mini-dashboard__top em {
  padding: 6px 10px;
  border-radius: 999px;
  color: #12ceff;
  background: rgba(18, 206, 255, 0.12);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 8px 5px;
}

.quote-route::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, #12ceff, #d9b25c);
  transform: translateY(-50%);
  transform-origin: left center;
  animation: routePulse 3s ease-in-out infinite;
}

.quote-route span {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: #12ceff;
}

.quote-route span:nth-child(2) {
  justify-self: center;
  background: #4970ff;
}

.quote-route span:nth-child(3) {
  justify-self: end;
  background: #d9b25c;
}

.quote-signal {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(238, 247, 255, 0.68);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
}

.quote-signal b {
  color: var(--white);
}

.quote-card--premium.contact-panel {
  padding: clamp(22px, 3vw, 34px);
}

.quote-card--premium::before {
  height: 0;
}

.quote-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.quote-card__header h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
}

.quote-status {
  position: relative;
  flex: 0 0 auto;
  padding: 8px 12px 8px 26px;
  border: 1px solid rgba(18, 206, 255, 0.2);
  border-radius: 999px;
  color: #baf2ff;
  background: rgba(18, 206, 255, 0.1);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-status::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #12ceff;
  box-shadow: 0 0 16px rgba(18, 206, 255, 0.9);
  transform: translateY(-50%);
}

.quote-card--premium .quote-steps span {
  border-color: rgba(18, 206, 255, 0.14);
  color: rgba(238, 247, 255, 0.78);
  background: rgba(255, 255, 255, 0.065);
}

.quote-card--premium .quote-steps b {
  background: linear-gradient(135deg, #12ceff, #4970ff);
  box-shadow: 0 0 20px rgba(18, 206, 255, 0.28);
}

.quote-card--premium form {
  gap: 14px;
}

.quote-card--premium label {
  color: rgba(238, 247, 255, 0.86);
  letter-spacing: 0;
}

.quote-section--dark .quote-card--premium input,
.quote-section--dark .quote-card--premium select {
  min-height: 58px;
  border-color: rgba(148, 231, 255, 0.16);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.055)),
    rgba(6, 8, 22, 0.48);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.quote-section--dark .quote-card--premium input:focus,
.quote-section--dark .quote-card--premium select:focus {
  border-color: rgba(18, 206, 255, 0.72);
  box-shadow:
    0 0 0 4px rgba(18, 206, 255, 0.1),
    0 0 28px rgba(18, 206, 255, 0.16);
  transform: scale(1.01);
}

.quote-card--premium .distance-field {
  border-color: rgba(18, 206, 255, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(18, 206, 255, 0.12), rgba(217, 178, 92, 0.08)),
    rgba(255, 255, 255, 0.055);
}

.quote-card--premium .distance-field input[type="range"] {
  accent-color: #12ceff;
}

.quote-card--premium .human-check {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
}

.quote-submit {
  min-height: 62px;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #12ceff, #4970ff 52%, #d9b25c) !important;
  box-shadow:
    0 18px 42px rgba(18, 206, 255, 0.22),
    0 0 48px rgba(73, 112, 255, 0.18) !important;
  color: #04111f;
  font-size: 16px;
}

.quote-submit:hover {
  transform: translate3d(0, -3px, 0) scale(1.01);
  box-shadow:
    0 24px 54px rgba(18, 206, 255, 0.3),
    0 0 62px rgba(217, 178, 92, 0.2) !important;
}

.quote-section--dark {
  padding: clamp(62px, 8vw, 104px) 0;
  color: #071426;
  background:
    radial-gradient(circle at 16% 18%, rgba(24, 149, 239, 0.2), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(225, 22, 38, 0.16), transparent 28%),
    linear-gradient(135deg, #020817 0%, #06192d 52%, #082f5f 100%);
}

.quote-section--dark::before,
.quote-section--dark::after {
  opacity: 0;
}

.quote-modal {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(310px, 0.9fr) minmax(420px, 1.15fr);
  min-height: 650px;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 30px;
  background: #f8fafc;
  box-shadow:
    0 36px 90px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(24, 149, 239, 0.18) inset;
}

.quote-modal::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 25%, rgba(225, 22, 38, 0.12), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(8, 47, 95, 0.1), transparent 30%);
}

.quote-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.05), rgba(2, 8, 23, 0.84)),
    linear-gradient(135deg, #082f5f, #06192d);
}

.quote-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.08) 0%, rgba(2, 8, 23, 0.32) 52%, rgba(2, 8, 23, 0.86) 100%),
    url("assets/hero-perfect-truck.png") center / cover no-repeat;
  filter: saturate(1.04) contrast(1.04);
}

.quote-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 85%);
}

.quote-visual__content {
  position: relative;
  z-index: 1;
  max-width: 430px;
  width: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(2, 8, 23, 0.76), rgba(8, 47, 95, 0.48));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.quote-visual h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.quote-visual p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.quote-visual__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.quote-visual__badges span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 900;
}

.quote-card--premium.contact-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  border: 0;
  border-radius: 0;
  background: #f8fafc;
  box-shadow: none;
  backdrop-filter: none;
}

.quote-card--premium::after {
  display: none;
}

.quote-card__header {
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.quote-card__header .eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 24px;
  border-radius: 999px;
  color: #082f5f;
  background: #eaf4ff;
  box-shadow: 0 12px 28px rgba(8, 47, 95, 0.08);
  text-transform: none;
}

.quote-card__header h2 {
  color: #101828;
  font-size: clamp(28px, 3vw, 38px);
  text-shadow: none;
}

.quote-status {
  display: none;
}

.quote-card--premium form {
  grid-template-columns: 1fr 1fr;
  gap: 24px 26px;
}

.quote-card--premium label {
  gap: 5px;
  color: #777f8d !important;
  font-size: 13px;
  font-weight: 800;
}

.quote-section--dark .quote-card--premium input,
.quote-section--dark .quote-card--premium select {
  min-height: 38px;
  padding: 6px 0 12px;
  border: 0;
  border-bottom: 1.5px solid rgba(16, 24, 40, 0.32);
  border-radius: 0;
  color: #101828;
  background: transparent;
  box-shadow: none;
}

.quote-section--dark .quote-card--premium input::placeholder {
  color: #98a2b3;
}

.quote-section--dark .quote-card--premium input:focus,
.quote-section--dark .quote-card--premium select:focus {
  border-color: #082f5f;
  background: transparent;
  box-shadow: 0 10px 18px -18px rgba(8, 47, 95, 0.7);
  transform: none;
}

.quote-section--dark .quote-card--premium select option {
  color: #101828;
}

.quote-card--premium .distance-field {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.quote-card--premium .distance-field span {
  margin: 5px 0 8px;
  color: #101828;
}

.quote-card--premium .distance-field b {
  color: #082f5f;
  font-size: 28px;
}

.quote-card--premium .distance-field input[type="range"] {
  accent-color: #082f5f;
}

.quote-card--premium .human-check {
  width: 100%;
  min-height: 70px;
  border: 1px solid #e4e7ec;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
}

.quote-submit {
  min-height: 54px;
  border-radius: 999px !important;
  color: var(--white);
  background: linear-gradient(135deg, #082f5f, #2337a8) !important;
  box-shadow: 0 16px 34px rgba(8, 47, 95, 0.24) !important;
}

.quote-submit:hover {
  box-shadow: 0 22px 44px rgba(8, 47, 95, 0.32) !important;
}

@keyframes quoteGridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 74px 74px, 74px 74px;
  }
}

@keyframes quoteGlowPulse {
  from {
    opacity: 0.28;
    transform: scale(0.98);
  }
  to {
    opacity: 0.65;
    transform: scale(1.02);
  }
}

@keyframes quoteSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatCard {
  from {
    transform: translate3d(0, -8px, 0);
  }
  to {
    transform: translate3d(0, 8px, 0);
  }
}

@keyframes particleRise {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.7);
  }
  15%,
  82% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(24px, -110vh, 0) scale(1.1);
  }
}

@keyframes heroGridMove {
  from {
    background-position: 0 0, 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px, 0 0;
  }
}

@keyframes buttonRipple {
  0% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(28);
  }
}

@keyframes routePulse {
  0%,
  100% {
    opacity: 0.52;
    transform: translateY(-50%) scaleX(0.72);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
}

@keyframes driftGlow {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(40px, -24px, 0) scale(1.08);
  }
}

@keyframes heroFloat {
  from {
    transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.01);
  }
  to {
    transform: translate3d(calc(var(--hero-shift-x) - 8px), calc(var(--hero-shift-y) - 10px), 0) scale(1.025);
  }
}

@keyframes heroLightSweep {
  0%,
  42% {
    transform: translate3d(-120%, 0, 0);
  }
  72%,
  100% {
    transform: translate3d(120%, 0, 0);
  }
}

@keyframes testimonialSlide {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 1100px) {
  .nav-menu {
    gap: 18px;
    font-size: 14px;
  }

  .hero-dashboard {
    position: relative;
    right: auto;
    top: auto;
    width: min(560px, 100%);
    margin-top: 30px;
    transform: none;
  }

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

  .hero__content {
    gap: 30px;
  }

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

  .service-card__icon {
    top: clamp(110px, 18vw, 150px);
  }
}

@media (max-width: 940px) {
  .site-shell {
    width: 100%;
    margin: 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 24px;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 16px 25px rgba(7, 17, 31, 0.12);
  }

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

  .nav-menu a {
    padding: 14px 0;
  }

  .nav-menu a.active::after {
    bottom: 8px;
    width: 42px;
  }

  .quote-link {
    margin-top: 8px;
    padding: 0 22px !important;
  }

  .hero__points,
  .trust-strip__inner,
  .service-grid,
  .stats__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-strip__lead {
    grid-column: 1 / -1;
  }

  .cta__box {
    grid-template-columns: 72px 1fr;
  }

  .cta .btn {
    grid-column: 2;
    width: fit-content;
  }

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

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

  .quote-modal {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .quote-visual {
    min-height: 390px;
  }

  .quote-aside--premium {
    position: relative;
  }

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

  .quote-aside,
  .quote-contact-card {
    position: static;
  }

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

  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .service-card__icon {
    top: clamp(118px, 28vw, 160px);
  }
}

@media (max-width: 640px) {
  .brand__text {
    max-width: 190px;
    font-size: 17px;
  }

  .hero {
    min-height: auto;
  }

  .hero-dashboard {
    grid-template-columns: 1fr;
  }

  .brand-strip__inner {
    grid-template-columns: 1fr;
  }

  .tracking-showcase {
    padding: 48px 0;
  }

  .tracking-panel {
    padding: 20px;
  }

  .quote-section--dark {
    padding: 46px 0;
  }

  .quote-modal {
    border-width: 4px;
    border-radius: 22px;
  }

  .quote-visual {
    min-height: 340px;
    padding: 22px;
  }

  .quote-aside--premium,
  .quote-card--premium.contact-panel {
    border-radius: 22px;
    padding: 20px;
  }

  .quote-card--premium.contact-panel {
    border-radius: 0;
    padding: 26px 20px;
  }

  .quote-card--premium form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quote-aside--premium h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

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

  .quote-card__header {
    display: grid;
  }

  .quote-status {
    width: fit-content;
  }

  .quote-section--dark .quote-card--premium input,
  .quote-section--dark .quote-card--premium select {
    min-height: 54px;
  }

  body::before,
  body::after,
  .cursor-glow,
  .particle-field {
    display: none;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .topbar {
    font-size: 12px;
  }

  .topbar__inner,
  .topbar__group {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    padding: 7px 0;
  }

  .topbar__location {
    display: none;
  }

  .topbar a {
    white-space: normal;
  }

  .navbar {
    position: sticky;
    top: 0;
    box-shadow: 0 8px 24px rgba(7, 20, 38, 0.08);
  }

  .navbar__inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__mark svg {
    width: 37px;
    height: 37px;
  }

  .brand__text {
    font-size: 16px;
    line-height: 1.08;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-color: rgba(8, 47, 95, 0.18);
    box-shadow: 0 8px 18px rgba(7, 20, 38, 0.08);
  }

  .nav-menu {
    padding: 10px 14px 18px;
  }

  .nav-menu a {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    border-radius: 7px;
  }

  .nav-menu a.active::after {
    display: none;
  }

  .nav-menu a.active {
    background: var(--soft);
  }

  .quote-link {
    width: 100%;
    margin-top: 12px;
    border-bottom: 0 !important;
  }

  .hero__content {
    min-height: auto;
    padding: 52px 0 26px;
  }

  .hero__media {
    background-image:
      linear-gradient(180deg, rgba(5, 18, 34, 0.88) 0%, rgba(5, 18, 34, 0.78) 44%, rgba(5, 18, 34, 0.96) 100%),
      url("assets/hero-perfect-truck.png");
    background-position: center, center bottom;
    background-repeat: no-repeat;
    background-size: auto, 118% auto;
    animation: none;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.08;
  }

  .hero__copy {
    max-width: 350px;
    font-size: 16px;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .btn,
  .quote-link {
    min-height: 52px;
  }

  .hero__points {
    gap: 10px;
    margin-top: 30px;
    padding-top: 0;
  }

  .point {
    min-height: 62px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
  }

  .hero__points,
  .trust-strip__inner,
  .service-grid,
  .stats__inner,
  .service-grid--five,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__inner {
    gap: 12px;
    padding: 22px 0;
  }

  .trust-strip__lead {
    padding: 0 0 0 14px;
    font-size: 17px;
  }

  .trust-item {
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
  }

  .services {
    padding: 44px 0 28px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .section-heading small {
    font-size: 15px;
  }

  .service-card__icon {
    top: clamp(98px, 31vw, 132px);
    width: 58px;
    height: 58px;
  }

  .service-card__body {
    padding: 58px 20px 24px;
  }

  .service-card p {
    min-height: 0;
  }

  .stats__inner {
    gap: 14px;
    padding: 28px 0 42px;
  }

  .stat {
    grid-template-columns: 58px 1fr;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
  }

  .stat__icon {
    width: 50px;
    height: 50px;
  }

  .stat strong {
    font-size: 27px;
  }

  .cta__box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: center;
  }

  .cta__icon {
    margin: 0 auto;
  }

  .cta .btn {
    grid-column: auto;
    width: 100%;
  }

  .page-hero__inner {
    min-height: 280px;
    padding: 42px 0;
  }

  .page-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .page-hero p:last-child {
    font-size: 16px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .about-section,
  .contact-section,
  .quote-section,
  .faq-section {
    padding: 42px 0;
  }

  .mega-cta {
    min-height: 360px;
  }

  .mega-cta__inner {
    padding: 58px 0;
  }

  .mega-cta h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .mega-cta p {
    font-size: 18px;
  }

  .mega-cta .btn {
    width: 100%;
    min-height: 58px;
    padding: 0 22px;
    font-size: 16px;
  }

  .service-detail {
    padding: 42px 0;
  }

  .service-detail__main h2,
  .about-grid h2,
  .contact-panel h2,
  .contact-info h2 {
    font-size: 28px;
  }

  .about-grid,
  .contact-grid,
  .contact-panel form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .human-check {
    grid-template-columns: 32px 1fr;
  }

  .human-check small {
    grid-column: 2;
    text-align: left;
  }

  .contact-panel {
    padding: 20px;
  }

  .contact-panel input,
  .contact-panel select,
  .contact-panel textarea {
    min-height: 50px;
    font-size: 15px;
  }

  .contact-info {
    padding: 22px;
  }

  .footer-grid {
    gap: 22px;
    padding: 40px 0 26px;
  }

  .brand--footer .brand__text {
    font-size: 18px;
  }

  .footer-bottom {
    padding: 16px 0 22px;
  }
}

@media (max-width: 640px) {
  .hero__content {
    padding: 58px 0 0;
    text-align: center;
  }

  .hero__media {
    background-image:
      radial-gradient(circle at 50% 22%, rgba(24, 149, 239, 0.18), transparent 30%),
      linear-gradient(180deg, rgba(2, 8, 23, 0.52), rgba(2, 8, 23, 0.96)),
      url("assets/hero-perfect-truck.png");
    background-position: center, center, center;
    background-size: auto, auto, cover;
  }

  .hero h1 {
    max-width: 420px;
    margin-inline: auto;
    font-size: clamp(36px, 12vw, 52px);
    line-height: 0.98;
  }

  .hero-dashboard {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero__points {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
    border-radius: 18px 18px 0 0;
    background: rgba(255, 255, 255, 0.95);
  }

  .point {
    min-height: 104px;
    padding: 20px 14px;
    color: var(--ink);
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .point:last-child {
    border-bottom: 0;
  }

  .point small {
    color: var(--muted);
  }
}

/* Final homepage reset: clean logistics hero with visible image */
.hero {
  min-height: auto;
  background:
    radial-gradient(circle at 72% 22%, rgba(24, 149, 239, 0.18), transparent 30%),
    linear-gradient(135deg, #06192d 0%, #071426 58%, #020817 100%);
}

.hero::before {
  opacity: 0.22;
}

.hero__media {
  display: none;
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  min-height: 650px;
  padding: clamp(70px, 8vw, 110px) 0 0;
  text-align: left;
}

.hero__text {
  max-width: 640px;
  margin: 0;
  text-align: left;
}

.hero .eyebrow {
  color: #ff4050;
  background: rgba(255, 255, 255, 0.06);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero h1::first-line {
  color: inherit;
}

.hero h1 span {
  color: var(--red);
}

.hero__copy {
  max-width: 560px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.4vw, 20px);
}

.hero__actions {
  justify-content: flex-start;
}

.hero__visual {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 0 0 8%;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(225, 22, 38, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.hero__visual img {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.34),
    0 0 0 8px rgba(255, 255, 255, 0.035);
  transform: none;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.26), transparent 34%, rgba(2, 8, 23, 0.08)),
    linear-gradient(180deg, transparent 62%, rgba(2, 8, 23, 0.25));
  width: min(650px, 100%);
  aspect-ratio: 1.55 / 1;
  justify-self: center;
}

.hero__visual .hero-dashboard {
  position: absolute;
  right: 0;
  bottom: 34px;
  z-index: 2;
  width: min(390px, 92%);
  margin: 0;
  grid-template-columns: 1fr 1fr;
  text-align: left;
}

.hero__points {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(28px, 5vw, 54px);
  border-radius: 18px 18px 0 0;
}

@media (max-width: 940px) {
  .hero__content {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 0 0;
  }

  .hero__text {
    max-width: 720px;
  }

  .hero__visual {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero__content,
  .hero__text {
    text-align: left;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual {
    min-height: 300px;
  }

  .hero__visual::before,
  .hero__visual img,
  .hero__visual::after {
    transform: none;
  }

  .hero__visual img {
    width: 100%;
    border-radius: 20px;
  }

  .hero__visual .hero-dashboard {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    grid-template-columns: 1fr;
  }
}

/* Service card fix: prevent icon/title overlap */
.brand-strip {
  display: none;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
  background: #ffffff;
}

.services {
  padding-top: 74px;
}

.hero__points {
  margin-bottom: 44px;
  border-radius: 18px;
}

.trust-strip__inner {
  min-height: auto;
  padding: 0;
}

/* Mobile navigation fix */
@media (max-width: 940px) {
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar__inner {
    min-height: 68px;
    gap: 12px;
  }

  .nav-toggle {
    position: relative;
    display: inline-grid;
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(8, 47, 95, 0.18);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(7, 20, 38, 0.1);
    cursor: pointer;
  }

  .nav-toggle span {
    position: absolute;
    left: 12px;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease;
  }

  .nav-toggle span:nth-child(1) {
    top: 15px;
  }

  .nav-toggle span:nth-child(2) {
    top: 22px;
  }

  .nav-toggle span:nth-child(3) {
    top: 29px;
  }

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

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

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

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(8, 47, 95, 0.1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 50px rgba(7, 20, 38, 0.18);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 12px 14px;
    border-radius: 10px;
    border-bottom: 0;
  }

  .nav-menu a.active {
    color: var(--red);
    background: var(--soft);
  }

  .nav-menu a::after {
    display: none !important;
  }

  .quote-link {
    width: 100%;
    margin-top: 6px;
  }
}

.service-card {
  overflow: visible;
}

.service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.9 / 1;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}

.service-card__icon {
  left: 28px;
  top: clamp(118px, 8.7vw, 150px);
  width: 58px;
  height: 58px;
  border-width: 4px;
  z-index: 3;
}

.service-card__icon svg {
  width: 30px;
  height: 30px;
}

.service-card__body {
  position: relative;
  z-index: 2;
  padding: 78px 24px 26px;
}

.service-card h3 {
  margin-top: 0;
  line-height: 1.18;
}

@media (max-width: 1100px) {
  .service-card__icon {
    top: clamp(112px, 18vw, 150px);
  }
}

@media (max-width: 640px) {
  .service-card__icon {
    left: 24px;
    top: clamp(128px, 43vw, 190px);
  }

  .service-card__body {
    padding-top: 76px;
  }
}

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

  .preloader {
    display: none;
  }

  .particle-field {
    display: none;
  }
}

@media (max-width: 390px) {
  .brand__text {
    font-size: 14px;
  }

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

  .topbar__group {
    gap: 6px;
  }

  .topbar a {
    font-size: 11px;
  }

}
