:root {
  --black: #020509;
  --black-2: #070b10;
  --ink: #101318;
  --muted: #60656d;
  --line: rgba(255, 255, 255, 0.13);
  --paper: #f5f5f2;
  --white: #ffffff;
  --yellow: #ffc51d;
  --yellow-2: #f0ae00;
  --green: #24d466;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

section,
footer {
  scroll-margin-top: 92px;
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

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

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 92px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  height: 82px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 170px;
  padding: 7px 0;
}

.brand-logo {
  width: 168px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.38));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 29px;
  flex: 1;
  color: #f4f4f4;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--yellow);
}

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

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  flex: 0 0 auto;
  padding: 0 23px;
  color: var(--yellow);
  border: 1px solid var(--yellow);
}

.header-cta svg,
.btn svg {
  width: 20px;
  height: 20px;
}

.icon-whatsapp {
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.icon-whatsapp path {
  fill: currentColor;
  stroke: none;
}

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

.header-cta:hover {
  color: var(--black);
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 197, 29, 0.28);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 630px;
  padding-top: 92px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 33%, rgba(0, 0, 0, 0.16) 66%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 83% 16%, rgba(0, 145, 255, 0.45), transparent 28%),
    linear-gradient(180deg, #091018 0%, #04070b 53%, #090b0e 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 92px 0 0;
  opacity: 0.44;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 70%, #030507 100%),
    repeating-linear-gradient(90deg, transparent 0 64px, rgba(255, 255, 255, 0.06) 65px 66px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -95px;
  width: 72%;
  height: 190px;
  background:
    linear-gradient(176deg, transparent 0 35%, rgba(255, 255, 255, 0.3) 36% 37%, transparent 38%),
    linear-gradient(170deg, transparent 0 54%, rgba(255, 255, 255, 0.16) 55% 56%, transparent 57%);
  opacity: 0.55;
  transform: rotate(-1deg);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 41%;
  background:
    linear-gradient(178deg, transparent 0 20%, rgba(255, 255, 255, 0.16) 21% 22%, transparent 23%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44% 56%;
  align-items: end;
  min-height: 538px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 510px;
  padding: 38px 0 105px;
}

.hero h1 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 62px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.55);
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--yellow);
  font-weight: 900;
}

.hero p {
  max-width: 350px;
  margin: 28px 0 0;
  color: #f2f2ed;
  font-size: 16px;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  padding: 0 25px;
  border: 1px solid transparent;
}

.btn-primary {
  color: #050505;
  background: linear-gradient(180deg, var(--yellow), #f5b70d);
  box-shadow: 0 16px 34px rgba(255, 197, 29, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(255, 197, 29, 0.32);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.18);
}

.btn-outline:hover {
  color: var(--black);
  background: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 538px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -5%;
  z-index: 2;
  width: 33%;
  background: linear-gradient(90deg, #04070b 0%, rgba(4, 7, 11, 0.86) 38%, transparent 100%);
  pointer-events: none;
}

.hero-visual img {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 760px;
  max-width: none;
  height: 538px;
  object-fit: cover;
  object-position: center bottom;
  filter: saturate(1.08) contrast(1.04);
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 100%);
}

.proof-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  color: var(--white);
  background: var(--black);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background: rgba(0, 0, 0, 0.74);
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.4);
}

.proof-grid article {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  padding: 27px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.proof-grid article:last-child {
  border-right: 0;
}

.proof-grid svg {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  color: var(--yellow);
}

.proof-grid span {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 18px;
  line-height: 1.15;
  text-transform: uppercase;
}

.section-light {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.03), transparent 35%, rgba(0, 0, 0, 0.03)),
    var(--paper);
}

.services {
  position: relative;
  padding: 64px 0 55px;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(255, 197, 29, 0.14) 58% 58.2%, transparent 58.2%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 88px 88px;
  opacity: 0.7;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.services .section-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.services .section-copy h2,
.services .section-copy p {
  max-width: 720px;
}

.section-copy {
  min-width: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--yellow-2);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.section-copy h2 {
  margin: 0;
  max-width: 520px;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-copy p {
  max-width: 450px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 16px;
}

.section-copy .btn {
  margin-top: 28px;
}

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

.service-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 286px;
  padding: 23px;
  overflow: hidden;
  border: 1px solid rgba(10, 14, 20, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 248, 0.88)),
    #ffffff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.075);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 197, 29, 0.18), transparent 38%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: auto, 58px 58px;
  opacity: 0;
  transition: opacity 190ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 20px;
  width: 96px;
  height: 1px;
  background: rgba(255, 197, 29, 0.72);
  transform: rotate(-35deg);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 197, 29, 0.72);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.14);
}

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

.service-card svg {
  width: 46px;
  height: 46px;
  color: var(--yellow-2);
  margin-bottom: 18px;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(16, 19, 24, 0.16);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.service-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  color: var(--yellow-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 320px;
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 24px;
  line-height: 1.04;
  text-transform: uppercase;
}

.service-card p {
  max-width: 360px;
  margin: 14px 0 0;
  color: #2e3339;
  font-size: 14px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px;
  color: var(--ink);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  transition: gap 180ms ease, color 180ms ease;
}

.service-link::after {
  content: ">";
  color: var(--yellow-2);
}

.service-link:hover {
  gap: 12px;
  color: var(--yellow-2);
}

.service-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: auto;
  width: 100%;
  padding: 0 14px;
  color: var(--black);
  background: linear-gradient(180deg, var(--yellow), #f5b70d);
  border-radius: 999px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(255, 197, 29, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 197, 29, 0.3);
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 197, 29, 0.12), transparent 24%),
    linear-gradient(115deg, #04070c 0%, #080e16 51%, #05080d 100%);
}

.about {
  position: relative;
  padding: 64px 0 70px;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.13;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 49% 51%;
  gap: 44px;
  align-items: center;
}

.section-copy-dark p {
  color: #ecf0f2;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: #f4f5f5;
  font-size: 15px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(-45deg);
}

.truck-frame {
  position: relative;
  width: min(100%, 520px);
  margin: 0 0 0 auto;
  padding: 0;
}

.truck-frame::before {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -32px;
  width: 82%;
  height: 88%;
  border-radius: 8px;
  background: var(--yellow);
}

.truck-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.43;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats {
  color: var(--black);
  background: var(--paper);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  min-height: 132px;
}

.stats-grid article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  min-width: 0;
  padding: 26px 22px;
  border-right: 1px solid rgba(0, 0, 0, 0.22);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid svg {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  color: var(--yellow-2);
}

.stats-grid strong {
  display: block;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 36px;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}

.coverage {
  position: relative;
  overflow: hidden;
  padding: 54px 0 46px;
}

.coverage-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 66% 53%, rgba(255, 197, 29, 0.24), transparent 13%),
    radial-gradient(circle at 92% 20%, rgba(0, 138, 255, 0.18), transparent 24%);
  pointer-events: none;
}

.coverage-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 31% 69%;
  gap: 18px;
  align-items: center;
}

.coverage .section-copy h2 {
  max-width: 360px;
}

.coverage .section-copy p {
  max-width: 300px;
}

.map-visual {
  margin: 0;
}

.map-visual img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
  filter: saturate(1.16) contrast(1.08) drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
}

.contact-band {
  color: var(--black);
  background: linear-gradient(180deg, #ffd02b, #f7bd10);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-band-grid {
  display: grid;
  grid-template-columns: 120px minmax(275px, 1fr) 540px;
  gap: 30px;
  align-items: center;
  min-height: 150px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  color: var(--white);
  background: #030405;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.04), 0 18px 34px rgba(0, 0, 0, 0.25);
}

.contact-icon svg {
  width: 56px;
  height: 56px;
  color: var(--green);
  fill: rgba(36, 212, 102, 0.1);
}

.contact-copy h2 {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 33px;
  line-height: 0.98;
  text-transform: uppercase;
}

.contact-copy p {
  max-width: 390px;
  margin: 13px 0 0;
  color: #151515;
  font-size: 16px;
  font-weight: 700;
}

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

.contact-actions a {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 13px;
  align-items: center;
  min-height: 78px;
  padding: 12px 20px 12px 14px;
  color: var(--white);
  background: #030405;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-actions a:hover {
  transform: translateY(-3px);
  box-shadow: 0 21px 40px rgba(0, 0, 0, 0.34);
}

.contact-actions svg {
  grid-row: span 2;
  width: 49px;
  height: 49px;
  color: var(--green);
  fill: rgba(36, 212, 102, 0.12);
}

.contact-actions span {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.contact-actions small {
  color: var(--yellow);
  font-size: 16px;
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 197, 29, 0.1), transparent 18%),
    #030609;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 52px;
  padding: 58px 0 46px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h3 {
  margin: 0 0 13px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  color: #cfd3d7;
  font-size: 16px;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-contact a,
.footer-contact span {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.footer-bottom {
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 12px;
  padding: 24px 0 27px;
  color: #a9afb6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
}

.webmax-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #cfd3d7;
}

.webmax-credit img {
  width: 92px;
  height: 30px;
  object-fit: contain;
  padding: 3px 6px;
  background: #ffffff;
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.webmax-credit:hover img {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 118, 255, 0.22);
}

[data-reveal] {
  --reveal-delay: 0ms;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 820ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay);
  filter: blur(4px);
}

[data-reveal="left"] {
  transform: translate3d(-38px, 14px, 0);
}

[data-reveal="right"] {
  transform: translate3d(38px, 14px, 0);
}

[data-reveal="zoom"] {
  transform: translateY(10px) scale(0.92);
}

[data-reveal="up"] {
  transform: translateY(34px);
}

[data-reveal="tilt"] {
  transform: perspective(900px) rotateX(8deg) translateY(28px);
  transform-origin: center top;
}

[data-reveal="float"] {
  transform: translateY(26px) scale(0.985);
}

[data-reveal="pop"] {
  transform: scale(0.88);
}

[data-reveal="fade"] {
  transform: none;
  filter: blur(7px);
}

[data-reveal="wipe"] {
  clip-path: inset(0 100% 0 0);
  transform: none;
  filter: none;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0 0 0 0);
  filter: blur(0);
}

.service-card:nth-child(2),
.stats-grid article:nth-child(2),
.detail-grid .detail-card:nth-child(2),
.info-grid .info-card:nth-child(2),
.service-feature:nth-child(2),
.advantage-row:nth-child(2),
.footer-grid .footer-col:nth-child(2) {
  --reveal-delay: 110ms;
}

.service-card:nth-child(3),
.stats-grid article:nth-child(3),
.detail-grid .detail-card:nth-child(3),
.info-grid .info-card:nth-child(3),
.service-feature:nth-child(3),
.advantage-row:nth-child(3),
.footer-grid .footer-col:nth-child(3) {
  --reveal-delay: 220ms;
}

.stats-grid article:nth-child(4),
.detail-grid .detail-card:nth-child(4),
.info-grid .info-card:nth-child(4),
.service-feature:nth-child(4),
.advantage-row:nth-child(4) {
  --reveal-delay: 330ms;
}

.detail-grid .detail-card:nth-child(2n)[data-reveal="up"],
.info-grid .info-card:nth-child(2n)[data-reveal="up"],
.service-feature:nth-child(2n)[data-reveal="up"] {
  transform: translate3d(0, 28px, 0) rotate(-1.3deg);
}

.detail-grid .detail-card:nth-child(3n)[data-reveal="up"],
.info-grid .info-card:nth-child(3n)[data-reveal="up"],
.service-feature:nth-child(3n)[data-reveal="up"] {
  transform: translate3d(24px, 20px, 0);
}

.detail-grid .detail-card.is-visible,
.info-grid .info-card.is-visible,
.service-feature.is-visible {
  transform: none;
}

.page-main {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 197, 29, 0.11), transparent 22%),
    #05090e;
}

.page-hero {
  position: relative;
  padding: 160px 0 76px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55)),
    linear-gradient(135deg, #05080d, #101823 68%, #05080d);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 92px 0 0;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 92px 92px;
}

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

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 58px;
  line-height: 0.98;
  text-transform: uppercase;
}

.page-hero p {
  max-width: 610px;
  margin: 22px 0 0;
  color: #e8edf2;
  font-size: 18px;
  font-weight: 700;
}

.detail-section {
  padding: 72px 0;
}

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

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

.detail-card,
.info-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.mini-metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.mini-metric strong {
  display: block;
  color: var(--yellow);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 28px;
}

.mini-metric span {
  display: block;
  margin-top: 4px;
  color: #d9dee3;
  font-size: 13px;
}

.service-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 18px;
}

.service-feature {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.service-feature::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 197, 29, 0.5);
  border-radius: 50%;
}

.service-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 197, 29, 0.72);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.13);
}

.service-feature.featured {
  grid-row: span 2;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 197, 29, 0.16), transparent 52%),
    #05080d;
  border-color: rgba(255, 197, 29, 0.38);
}

.service-feature.wide {
  grid-column: span 2;
  min-height: 210px;
}

.service-feature.compact {
  min-height: 220px;
}

.service-feature.accent {
  grid-column: span 2;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(255, 197, 29, 0.14), transparent 48%),
    #10151b;
  border-color: rgba(255, 197, 29, 0.3);
}

.service-feature h2 {
  margin: 22px 0 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 30px;
  line-height: 1.04;
  text-transform: uppercase;
}

.service-feature p {
  margin: 14px 0 0;
  opacity: 0.78;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 20px;
}

.service-lines-section {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035), transparent 42%, rgba(0, 0, 0, 0.025)),
    var(--paper);
}

.service-lines {
  display: grid;
}

.service-line {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 28px;
  padding: 34px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.13);
}

.service-line:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}

.service-line::before {
  content: "";
  position: absolute;
  left: 46px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 197, 29, 0), rgba(255, 197, 29, 0.62), rgba(255, 197, 29, 0));
}

.service-line-index {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 23px;
  box-shadow: 0 16px 32px rgba(255, 197, 29, 0.25);
}

.service-line-content {
  max-width: 830px;
}

.service-line-kicker {
  display: inline-flex;
  margin-bottom: 9px;
  color: var(--yellow-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-line h2 {
  max-width: 650px;
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 36px;
  line-height: 1.02;
  text-transform: uppercase;
}

.service-line p {
  max-width: 720px;
  margin: 13px 0 0;
  color: #333941;
  font-size: 16px;
}

.service-line-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 16px;
}

.service-line-meta span {
  padding: 7px 10px;
  color: #22272e;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-line .btn {
  width: fit-content;
  margin-top: 20px;
}

.route-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 197, 29, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.045);
}

.route-panel h2,
.split-section h2 {
  max-width: 620px;
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 42px;
  line-height: 1.02;
  text-transform: uppercase;
}

.route-panel p,
.split-section p {
  max-width: 560px;
  color: #e2e7ed;
  font-size: 16px;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.region-list span {
  padding: 9px 13px;
  color: var(--yellow);
  border: 1px solid rgba(255, 197, 29, 0.42);
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.route-map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 197, 29, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow);
}

.route-map-card img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
}

.route-note {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  color: var(--black);
  background: rgba(255, 197, 29, 0.94);
  border-radius: 8px;
}

.route-note strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 26px;
  text-transform: uppercase;
}

.route-note span {
  max-width: 230px;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.advantage-stack {
  display: grid;
  gap: 18px;
}

.advantage-row {
  display: grid;
  grid-template-columns: 74px 1fr minmax(170px, 0.38fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.06);
}

.advantage-row:nth-child(even) {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 197, 29, 0.13), transparent 52%),
    #070b10;
  border-color: rgba(255, 197, 29, 0.24);
}

.advantage-row strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 24px;
}

.advantage-row h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 27px;
  line-height: 1.06;
  text-transform: uppercase;
}

.advantage-row p {
  margin: 6px 0 0;
  opacity: 0.74;
}

.advantage-row em {
  color: #6b7178;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
}

.advantage-row:nth-child(even) em {
  color: rgba(255, 197, 29, 0.86);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  padding: 30px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 197, 29, 0.12), transparent 46%),
    #05080d;
  box-shadow: var(--shadow);
}

.contact-card.alt {
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 32px;
  text-transform: uppercase;
}

.contact-card p {
  margin: 14px 0 24px;
  opacity: 0.78;
}

.contact-card .eyebrow {
  color: var(--yellow);
}

.contact-card.alt .eyebrow {
  color: var(--yellow-2);
}

.contact-card-actions {
  display: grid;
  gap: 13px;
  max-width: 310px;
}

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

.quote-list li {
  position: relative;
  padding-left: 22px;
  color: #333941;
}

.quote-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

.page-cta {
  padding: 44px 0;
  color: var(--black);
  background: linear-gradient(180deg, #ffd02b, #f6bd0f);
}

.page-cta.dark {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 197, 29, 0.16), transparent 22%),
    #05080d;
}

.page-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.page-cta h2 {
  max-width: 620px;
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 34px;
  line-height: 1.02;
  text-transform: uppercase;
}

.page-cta p {
  margin: 10px 0 0;
  font-weight: 700;
  opacity: 0.78;
}

.page-cta .btn-outline {
  color: var(--black);
  border-color: rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.page-cta .btn-outline:hover {
  color: var(--white);
  background: var(--black);
}

.light .detail-card,
.light .info-card {
  border-color: rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.detail-card h2,
.detail-card h3,
.info-card h2,
.info-card h3 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 28px;
  line-height: 1.08;
  text-transform: uppercase;
}

.detail-card p,
.info-card p {
  margin: 16px 0 0;
  color: inherit;
  opacity: 0.82;
}

.split-section {
  display: grid;
  grid-template-columns: 47% 53%;
  gap: 48px;
  align-items: center;
}

.split-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.process-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.process-item strong {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: var(--yellow);
  border-radius: 50%;
  font-family: Impact, "Arial Narrow", sans-serif;
}

.process-item h3 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.process-item p {
  margin: 6px 0 0;
  color: #dfe5ea;
}

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

  .brand {
    min-width: 152px;
  }

  .brand-logo {
    width: 154px;
    height: 70px;
  }

  .main-nav {
    gap: 20px;
    font-size: 12px;
  }

  .hero {
    min-height: 610px;
  }

  .hero-inner {
    min-height: 518px;
    grid-template-columns: 43% 57%;
  }

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

  .hero-visual img {
    width: 680px;
    height: 518px;
  }

  .proof-grid article {
    padding: 25px 20px;
  }

  .section-copy h2 {
    font-size: 38px;
  }

  .service-card {
    padding: 26px 24px;
  }

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

  .contact-band-grid {
    grid-template-columns: 100px minmax(260px, 1fr) 470px;
  }

  .contact-actions span {
    font-size: 19px;
  }

  .page-hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 980px) {
  .site-header {
    height: 78px;
  }

  .site-header.is-scrolled {
    height: 76px;
  }

  .brand {
    min-width: 134px;
  }

  .brand-logo {
    width: 132px;
    height: 60px;
  }

  section,
  footer {
    scroll-margin-top: 78px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: grid;
    align-content: center;
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  }

  .main-nav {
    position: fixed;
    z-index: 1001;
    top: 78px;
    left: 23px;
    right: 23px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    overflow: hidden;
    padding: 6px 0;
    background:
      linear-gradient(180deg, rgba(12, 15, 18, 0.98), rgba(3, 5, 8, 0.98)),
      #05070a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
    backdrop-filter: blur(18px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 220ms ease, transform 240ms ease, visibility 220ms ease;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    color: #f7f8f8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 16px;
    letter-spacing: 0;
    background: linear-gradient(90deg, rgba(255, 197, 29, 0.07), transparent 40%);
  }

  .main-nav a::after {
    content: "";
    position: static;
    display: block;
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    margin-left: 18px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    background: transparent;
    opacity: 0.55;
    transform: rotate(45deg);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--yellow);
    background: linear-gradient(90deg, rgba(255, 197, 29, 0.12), transparent 46%);
  }

  .main-nav a:hover::after,
  .main-nav a.active::after {
    opacity: 1;
    transform: translateX(2px) rotate(45deg);
  }

  body.menu-open .main-nav,
  html.menu-open .main-nav,
  .main-nav.is-open {
    display: grid;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
  }

  .hero::before {
    inset: 78px 0 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 34px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: 590px;
    padding: 44px 0 28px;
  }

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

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

  .hero-visual {
    min-height: 360px;
    margin: 0 -23px;
  }

  .hero-visual::before {
    inset: 0;
    width: 50%;
  }

  .hero-visual img {
    right: 0;
    width: 100%;
    height: 380px;
    object-position: center bottom;
  }

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

  .proof-grid article:nth-child(2) {
    border-right: 0;
  }

  .proof-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .services-grid,
  .about-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 56px 0 48px;
  }

  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 0;
  }

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

  .service-card {
    scroll-snap-align: none;
  }

  .service-line {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px;
  }

  .service-line::before {
    left: 37px;
  }

  .truck-frame {
    margin: 28px auto 0;
  }

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

  .stats-grid article:nth-child(2) {
    border-right: 0;
  }

  .stats-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }

  .coverage {
    padding: 58px 0 42px;
  }

  .map-visual img {
    max-height: 280px;
    margin-top: 10px;
  }

  .contact-band-grid {
    grid-template-columns: 92px 1fr;
    padding: 30px 0;
  }

  .contact-actions {
    grid-column: 1 / -1;
  }

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

  .detail-grid,
  .info-grid,
  .service-feature-grid,
  .route-panel,
  .contact-panel,
  .split-section {
    grid-template-columns: 1fr;
  }

  .service-feature.featured,
  .service-feature.wide,
  .service-feature.accent {
    grid-column: auto;
    grid-row: auto;
  }

  .page-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .advantage-row {
    grid-template-columns: 64px 1fr;
  }

  .advantage-row em {
    grid-column: 2;
  }

  .page-hero {
    padding: 132px 0 58px;
  }

  .page-hero h1 {
    font-size: 44px;
  }
}

@media (max-width: 820px) {
  .service-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    height: 72px;
  }

  section,
  footer {
    scroll-margin-top: 72px;
  }

  .brand {
    min-width: 112px;
  }

  .brand-logo {
    width: 110px;
    height: 50px;
  }

  .main-nav {
    top: 72px;
    left: 16px;
    right: 16px;
    border-radius: 0 0 12px 12px;
  }

  .main-nav a {
    min-height: 52px;
    padding: 0 16px;
    font-size: 15px;
  }

  .hero {
    padding-top: 72px;
  }

  .hero::before {
    inset: 72px 0 0;
  }

  .hero-copy {
    padding-top: 34px;
  }

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

  .hero p {
    max-width: 310px;
    margin-top: 20px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 23px;
  }

  .btn {
    min-height: 44px;
    padding: 0 17px;
    font-size: 12px;
  }

  .hero-visual {
    min-height: 300px;
    margin: 0 -16px;
  }

  .hero-visual img {
    height: 320px;
    object-position: 58% bottom;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 0;
  }

  .proof-grid article,
  .proof-grid article:nth-child(2) {
    min-height: 86px;
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .proof-grid article:last-child {
    border-bottom: 0;
  }

  .proof-grid svg {
    width: 38px;
    height: 38px;
  }

  .proof-grid span {
    font-size: 17px;
  }

  .services {
    padding: 38px 0 22px;
  }

  .section-copy h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .section-copy p {
    margin-top: 17px;
    font-size: 15px;
  }

  .service-cards {
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 12px;
  }

  .service-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .service-card svg {
    width: 48px;
    height: 48px;
  }

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

  .service-quote {
    width: 100%;
    margin-top: 20px;
  }

  .service-number {
    top: 22px;
    right: 22px;
    font-size: 36px;
  }

  .about {
    padding: 38px 0 58px;
  }

  .truck-frame::before {
    right: -15px;
    bottom: -17px;
  }

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

  .stats-grid article,
  .stats-grid article:nth-child(2) {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .stats-grid strong {
    font-size: 36px;
  }

  .coverage .section-copy h2 {
    max-width: 310px;
  }

  .map-visual {
    margin: 8px -16px 0;
  }

  .map-visual img {
    width: 100%;
    max-height: none;
  }

  .contact-band-grid {
    grid-template-columns: 72px 1fr;
    gap: 18px;
  }

  .contact-icon {
    width: 68px;
    height: 68px;
  }

  .contact-icon svg {
    width: 42px;
    height: 42px;
  }

  .contact-copy h2 {
    font-size: 27px;
  }

  .contact-copy p {
    font-size: 14px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 48px 0 38px;
  }

  .footer-bottom {
    display: grid;
    justify-content: center;
    justify-items: center;
    gap: 12px;
    text-align: center;
  }

  .webmax-credit {
    gap: 9px;
    font-size: 12px;
  }

  .webmax-credit img {
    width: 76px;
    height: 25px;
  }

  .page-hero {
    padding: 116px 0 48px;
  }

  .page-hero h1 {
    font-size: 35px;
  }

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

  .detail-section {
    padding: 48px 0;
  }

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

  .service-feature {
    min-height: auto;
    padding: 24px;
  }

  .service-feature h2 {
    font-size: 25px;
  }

  .service-line {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 28px 0;
  }

  .service-line::before {
    display: none;
  }

  .service-line-index {
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .service-line h2 {
    font-size: 29px;
  }

  .service-line p {
    font-size: 15px;
  }

  .service-line .btn {
    width: 100%;
  }

  .route-panel {
    padding: 22px;
  }

  .route-panel h2,
  .split-section h2 {
    font-size: 31px;
  }

  .route-panel p,
  .split-section p {
    font-size: 15px;
  }

  .route-map-card img {
    min-height: 260px;
  }

  .route-note {
    position: static;
    display: grid;
    border-radius: 0;
  }

  .route-note span {
    max-width: none;
    text-align: left;
  }

  .advantage-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }

  .advantage-row em {
    grid-column: auto;
  }

  .advantage-row h2 {
    font-size: 24px;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card h2 {
    font-size: 27px;
  }

  .contact-card-actions {
    max-width: none;
  }

  .page-cta {
    padding: 36px 0;
  }

  .page-cta h2 {
    font-size: 27px;
  }

  .page-cta .btn {
    width: 100%;
  }

  .detail-card,
  .info-card {
    min-height: auto;
    padding: 24px;
  }

  .detail-card h2,
  .detail-card h3,
  .info-card h2,
  .info-card h3 {
    font-size: 24px;
  }
}

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 230px;
  }

  .btn {
    width: 100%;
  }

  .section-copy h2 {
    font-size: 28px;
  }

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

  .contact-icon {
    margin: 0 auto;
  }

  .contact-copy {
    text-align: center;
  }
}
