/* =========================================================
   UNILANE TRAFFIC MANAGEMENT
   Construction palette: safety orange, hi-vis yellow, asphalt
   ========================================================= */

:root {
  --orange: #FF6B00;
  --orange-2: #FF8A1F;
  --orange-dark: #E05500;
  --yellow: #FFD100;
  --yellow-2: #FFE24D;
  --asphalt: #121416;
  --asphalt-2: #1B1E22;
  --asphalt-3: #262A2F;
  --steel: #3A4048;
  --concrete: #F3F1EC;
  --paper: #FAF9F6;
  --ink: #15171A;
  --muted: #5E656E;
  --muted-light: #A7AEB6;
  --white: #FFFFFF;

  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,.35);
  --shadow-orange: 0 14px 34px -10px rgba(255,107,0,.55);
  --ease: cubic-bezier(.2,.8,.2,1);
  --header-h: 118px;

  --hazard: repeating-linear-gradient(-45deg, var(--yellow) 0 18px, var(--asphalt) 18px 36px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.02; margin: 0 0 .5em; letter-spacing: .01em; }
p { margin: 0 0 1em; }
svg { width: 1em; height: 1em; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding-inline: 24px; }
.section { padding-block: clamp(80px, 11vw, 140px); position: relative; }
.section--dark { background: var(--asphalt); color: #E8EAED; }
.section--asphalt {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,107,0,.12), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(255,209,0,.08), transparent 40%),
    var(--asphalt-2);
  color: #E8EAED;
}
.section--yellow { background: var(--yellow); }
.section--light { background: var(--concrete); }

.hl { color: var(--orange); font-style: normal; }
.section--yellow .hl { color: var(--asphalt); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  letter-spacing: .06em; text-transform: uppercase;
  border-radius: 8px;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s;
  white-space: nowrap;
}
.btn svg { fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: repeating-linear-gradient(-45deg, transparent 0 10px, rgba(255,255,255,.14) 10px 20px);
  background-size: 200% 100%;
  transform: translateX(-100%); transition: transform .5s var(--ease);
}
.btn--primary:hover { transform: translateY(-3px); background: var(--orange-dark); }
.btn--primary:hover::before { transform: translateX(0); animation: stripeMove 1s linear infinite; }
.btn--ghost { color: #fff; border: 2px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); background: rgba(255,255,255,.06); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); }
.btn--dark { background: var(--asphalt); color: #fff; }
.btn--dark:hover { background: var(--orange); transform: translateY(-3px); }
.btn--outline { border: 2px solid var(--steel); color: var(--ink); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }
.btn--sm { padding: 11px 18px; font-size: 1rem; }
.btn--lg { padding: 18px 32px; font-size: 1.2rem; }
.btn--block { width: 100%; }
@keyframes stripeMove { to { background-position: 40px 0; } }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: var(--font-display); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--orange);
}
.link-arrow svg { fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(6px); }

/* ---------- Eyebrow & titles ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 42px; height: 10px; border-radius: 2px;
  background: var(--hazard); background-size: 51px 51px;
}
.eyebrow--light { color: var(--yellow); }
.eyebrow--dark { color: var(--asphalt); }
.eyebrow--dark::before { background: repeating-linear-gradient(-45deg, var(--asphalt) 0 6px, transparent 6px 12px); }

.section-title { font-size: clamp(2.4rem, 5vw, 4.2rem); font-weight: 800; text-transform: uppercase; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; }
.section-head > div { max-width: 720px; }
.section-head__text { max-width: 440px; color: var(--muted-light); font-size: 1.05rem; margin: 0; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .section-title { max-width: 900px; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--asphalt);
  display: grid; place-content: center; justify-items: center; gap: 22px;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__cones { display: flex; gap: 14px; }
.preloader__cones span {
  width: 30px; height: 44px;
  background: linear-gradient(to bottom, var(--orange) 0 28%, #fff 28% 42%, var(--orange) 42% 64%, #fff 64% 78%, var(--orange) 78%);
  clip-path: polygon(38% 0, 62% 0, 100% 90%, 100% 100%, 0 100%, 0 90%);
  animation: coneBounce .9s var(--ease) infinite;
}
.preloader__cones span:nth-child(2) { animation-delay: .15s; }
.preloader__cones span:nth-child(3) { animation-delay: .3s; }
.preloader__text { font-family: var(--font-display); font-weight: 900; font-size: 1.6rem; letter-spacing: .5em; color: #fff; }
@keyframes coneBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 100%; z-index: 1001;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* =========================================================
   HEADER
   ========================================================= */
.header { position: fixed; inset: 0 0 auto; z-index: 1000; transition: transform .45s var(--ease); }
.topbar { background: var(--asphalt); color: #C9CDD2; font-size: .82rem; transition: margin .45s var(--ease); }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 40px; gap: 20px; }
.topbar__left { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.topbar__right { display: flex; gap: 26px; }
.topbar__right a { display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.topbar__right a:hover { color: var(--yellow); }
.topbar__right svg { fill: var(--orange); width: 15px; height: 15px; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #2BD46B; box-shadow: 0 0 0 0 rgba(43,212,107,.7); animation: pulse 1.8s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(43,212,107,0); } 100% { box-shadow: 0 0 0 0 rgba(43,212,107,0); } }

.hazard-strip { height: 8px; background: var(--hazard); background-size: 51px 51px; animation: hazardMove 2.5s linear infinite; }
.hazard-strip--thick { height: 14px; }
@keyframes hazardMove { to { background-position: 51px 0; } }

.nav { background: rgba(18,20,22,.55); backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%); border-bottom: 1px solid rgba(255,255,255,.06); transition: background .35s; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.header.is-scrolled .nav { background: rgba(18,20,22,.94); box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); }
.header.is-scrolled .topbar { margin-top: -40px; }

.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.logo__mark svg { width: 44px; height: 44px; transition: transform .5s var(--ease); }
.logo:hover .logo__mark svg { transform: rotate(-8deg) scale(1.08); }
.logo__text { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; letter-spacing: .06em; line-height: .9; display: flex; flex-direction: column; }
.logo__text b { color: var(--orange); font-weight: 900; display: contents; }
.logo__text small { font-family: var(--font-body); font-size: .6rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--yellow); margin-top: 4px; }

.nav__links { display: flex; list-style: none; margin: 0; padding: 0; gap: 6px; }
.nav__link {
  position: relative; display: block; padding: 10px 14px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: .08em; text-transform: uppercase;
  color: #E7E9EC; transition: color .25s;
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 3px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 8px, transparent 8px 13px);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--yellow); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__mobile-cta { display: none; }
.nav__actions { display: flex; align-items: center; gap: 14px; }

.burger { display: none; width: 46px; height: 46px; border-radius: 10px; background: var(--orange); position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 3px; background: #fff; border-radius: 3px; transition: transform .35s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 14px; } .burger span:nth-child(2) { top: 21.5px; } .burger span:nth-child(3) { top: 29px; }
.burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; color: #fff; overflow: hidden; background: var(--asphalt); padding-top: var(--header-h); }
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: -4%; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.6s ease, transform 8s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,13,15,.95) 0%, rgba(12,13,15,.78) 42%, rgba(12,13,15,.25) 100%),
    linear-gradient(0deg, rgba(12,13,15,.9) 0%, transparent 40%);
}
.hero__grid-lines {
  position: absolute; inset: 0; opacity: .08; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 70%);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.35fr .9fr; gap: 60px; align-items: center; padding-block: 80px 140px; }
.badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 8px; border-radius: 100px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(8px);
  font-size: .85rem; font-weight: 600; letter-spacing: .04em; margin-bottom: 28px;
}
.badge__stripe { width: 34px; height: 22px; border-radius: 100px; background: var(--hazard); background-size: 51px 51px; animation: hazardMove 2s linear infinite; }
.hero__title { font-size: clamp(3.4rem, 8.4vw, 7.4rem); font-weight: 900; text-transform: uppercase; line-height: .9; margin-bottom: 28px; }
.hero__title .line { display: block; }
.hero__title .hl { color: var(--orange); position: relative; }
.line--outline { color: transparent; -webkit-text-stroke: 2px var(--yellow); }
.hero__lead { font-size: clamp(1.02rem, 1.3vw, 1.2rem); color: #C9CED4; max-width: 580px; margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 28px; list-style: none; padding: 0; margin: 0; font-size: .92rem; color: #D6DADF; }
.hero__trust li { display: flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 20px; height: 20px; padding: 3px; border-radius: 50%; background: var(--yellow); stroke: var(--asphalt); stroke-width: 3.5; fill: none; }

/* VMS board */
.vms {
  position: relative; background: linear-gradient(160deg, #23272c, #121416);
  border-radius: var(--radius-lg); padding: 20px; border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.08);
  margin-bottom: 40px;
}
.vms__head { display: flex; justify-content: space-between; font-family: var(--font-display); font-weight: 700; letter-spacing: .18em; font-size: .85rem; color: var(--muted-light); margin-bottom: 14px; }
.vms__status { display: flex; align-items: center; gap: 8px; color: #2BD46B; }
.vms__status i { width: 8px; height: 8px; border-radius: 50%; background: #2BD46B; animation: pulse 1.8s infinite; }
.vms__board {
  background: #050505; border-radius: 12px; padding: 26px 20px; border: 6px solid #2a2d31;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px); background-size: 7px 7px;
  display: grid; gap: 20px; justify-items: center;
}
.vms__arrow { display: flex; gap: 6px; }
.vms__arrow span {
  width: 34px; height: 44px; background: var(--yellow);
  clip-path: polygon(0 0, 55% 0, 100% 50%, 55% 100%, 0 100%, 45% 50%);
  filter: drop-shadow(0 0 10px rgba(255,209,0,.9));
  opacity: .12; animation: chevron 1.4s infinite;
}
.vms__arrow span:nth-child(2) { animation-delay: .15s; } .vms__arrow span:nth-child(3) { animation-delay: .3s; }
.vms__arrow span:nth-child(4) { animation-delay: .45s; } .vms__arrow span:nth-child(5) { animation-delay: .6s; }
@keyframes chevron { 0%, 15% { opacity: .12; } 25%, 70% { opacity: 1; } 85%, 100% { opacity: .12; } }
.vms__msg {
  font-family: "Courier New", monospace; font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.8rem); letter-spacing: .12em;
  color: var(--orange-2); text-shadow: 0 0 8px rgba(255,138,31,.9), 0 0 22px rgba(255,107,0,.55);
  text-align: center; min-height: 1.4em; transition: opacity .3s;
}
.vms__msg.is-fading { opacity: 0; }
.vms__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.vms__stats div { background: rgba(255,255,255,.04); border-radius: 10px; padding: 12px; text-align: center; border: 1px solid rgba(255,255,255,.05); }
.vms__stats b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--yellow); line-height: 1; }
.vms__stats small { font-size: .72rem; color: var(--muted-light); line-height: 1.3; display: block; margin-top: 4px; }
.vms__legs { position: absolute; left: 0; right: 0; bottom: -40px; display: flex; justify-content: space-around; z-index: -1; }
.vms__legs span { width: 10px; height: 44px; background: linear-gradient(#2a2d31, #16181b); border-radius: 0 0 3px 3px; }

.hero__dots { position: absolute; z-index: 3; left: 50%; bottom: 58px; transform: translateX(-50%); display: flex; gap: 10px; }
.hero__dots button { width: 34px; height: 5px; border-radius: 3px; background: rgba(255,255,255,.3); transition: background .3s, width .3s; }
.hero__dots button.is-active { background: var(--orange); width: 56px; }

.scroll-cue { position: absolute; z-index: 3; right: 40px; bottom: 60px; display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--font-display); font-size: .75rem; letter-spacing: .3em; color: #aaa; }
.scroll-cue__mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-cue__mouse i { width: 4px; height: 8px; border-radius: 2px; background: var(--yellow); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(12px); opacity: 0; } }

.road-edge { position: absolute; left: 0; right: 0; bottom: 0; height: 34px; background: #0d0e10; z-index: 2; border-top: 3px solid var(--yellow); overflow: hidden; }
.road-edge__dash, .footer__road-dash {
  position: absolute; top: 50%; left: 0; width: 200%; height: 4px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, #fff 0 50px, transparent 50px 100px);
  animation: roadMove 1.6s linear infinite;
}
@keyframes roadMove { to { transform: translate(-100px, -50%); } }

/* =========================================================
   TICKER
   ========================================================= */
.ticker { background: var(--orange); color: #fff; overflow: hidden; padding: 20px 0; position: relative; z-index: 2; }
.ticker__track { display: flex; align-items: center; gap: 36px; width: max-content; animation: ticker 40s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; white-space: nowrap; }
.ticker__track i { font-style: normal; color: var(--yellow); font-size: 1.1rem; transform: rotate(90deg); }
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =========================================================
   STATS
   ========================================================= */
.stats { background: var(--asphalt); padding: 70px 0; color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { padding: 28px; border-radius: var(--radius); background: var(--asphalt-2); border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; transition: transform .4s var(--ease), border-color .4s; }
.stat:hover { transform: translateY(-6px); border-color: rgba(255,107,0,.5); }
.stat::before { content: ""; position: absolute; top: 0; left: 0; width: 60px; height: 6px; background: var(--hazard); background-size: 51px 51px; }
.stat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.8rem, 4.4vw, 4rem); line-height: 1; color: var(--yellow); }
.stat__label { font-weight: 600; color: #C3C8CE; margin: 6px 0 18px; }
.stat__bar { height: 5px; background: rgba(255,255,255,.08); border-radius: 3px; overflow: hidden; }
.stat__bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), var(--yellow)); border-radius: 3px; transition: width 1.8s var(--ease) .3s; }
.stat.is-visible .stat__bar i { width: var(--w); }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.about__media { position: relative; padding: 0 60px 80px 0; }
.about__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__img:hover img { transform: scale(1.06); }
.about__img--main { aspect-ratio: 4/5; }
.about__img--float { position: absolute; right: 0; bottom: 0; width: 52%; aspect-ratio: 1; border: 8px solid var(--paper); }
.about__badge {
  position: absolute; top: 30px; left: -24px; background: var(--orange); color: #fff;
  padding: 20px 24px; border-radius: var(--radius); display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-orange);
  animation: floaty 5s ease-in-out infinite;
}
.about__badge b { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; }
.about__badge span { font-family: var(--font-display); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; line-height: 1.1; }
@keyframes floaty { 50% { transform: translateY(-10px); } }
.cone-deco {
  position: absolute; left: 20px; bottom: 10px; width: 64px; height: 90px;
  background: linear-gradient(to bottom, var(--orange) 0 25%, #fff 25% 38%, var(--orange) 38% 60%, #fff 60% 73%, var(--orange) 73% 88%, #222 88%);
  clip-path: polygon(40% 0, 60% 0, 88% 88%, 100% 88%, 100% 100%, 0 100%, 0 88%, 12% 88%);
  filter: drop-shadow(0 10px 10px rgba(0,0,0,.25));
}
.about__content > p { color: var(--muted); font-size: 1.06rem; }
.about__features { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 36px 0 40px; }
.feature { display: flex; gap: 14px; }
.feature__icon { flex: 0 0 52px; height: 52px; border-radius: 12px; background: var(--asphalt); display: grid; place-items: center; transition: background .3s, transform .3s var(--ease); }
.feature:hover .feature__icon { background: var(--orange); transform: rotate(-6deg); }
.feature__icon svg { width: 24px; height: 24px; fill: none; stroke: var(--yellow); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature:hover .feature__icon svg { stroke: #fff; }
.feature h4 { font-size: 1.3rem; text-transform: uppercase; margin-bottom: 4px; }
.feature p { font-size: .92rem; color: var(--muted); margin: 0; }

/* =========================================================
   SERVICES
   ========================================================= */
.hazard-edge { position: absolute; top: 0; left: 0; right: 0; height: 14px; background: var(--hazard); background-size: 51px 51px; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--asphalt-2); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.06); display: flex; flex-direction: column;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .5s;
}
.service-card:hover { transform: translateY(-10px); border-color: rgba(255,107,0,.6); box-shadow: 0 30px 60px -30px rgba(255,107,0,.45); }
.service-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.service-card__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, var(--asphalt-2) 0%, transparent 60%); }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .6s; filter: saturate(.9); }
.service-card:hover .service-card__img img { transform: scale(1.1); filter: saturate(1.15); }
.service-card__body { padding: 8px 28px 30px; position: relative; flex: 1; display: flex; flex-direction: column; }
.service-card__num {
  position: absolute; top: -46px; right: 22px; z-index: 2;
  width: 64px; height: 64px; display: grid; place-items: center;
  background: var(--yellow); color: var(--asphalt);
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transition: transform .5s var(--ease), background .3s;
}
.service-card:hover .service-card__num { transform: rotate(90deg); background: var(--orange); color: #fff; }
.service-card h3 { font-size: 1.9rem; text-transform: uppercase; color: #fff; }
.service-card p { color: var(--muted-light); font-size: .95rem; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.service-card li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: #D5D9DE; }
.service-card li::before { content: ""; width: 8px; height: 8px; background: var(--orange); transform: rotate(45deg); flex: 0 0 8px; }
.service-card .link-arrow { margin-top: auto; }

/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--paper); overflow: hidden; }
.process__road { position: relative; padding-top: 70px; }
.process__line { position: absolute; top: 90px; left: 6%; right: 6%; height: 38px; background: var(--asphalt); border-radius: 6px; overflow: hidden; }
.process__line::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 4px; transform: translateY(-50%); background: repeating-linear-gradient(90deg, #fff 0 30px, transparent 30px 55px); opacity: .7; }
.process__line-fill { position: absolute; inset: 0 auto 0 0; width: 0; background: linear-gradient(90deg, rgba(255,107,0,.4), rgba(255,209,0,.4)); transition: width .15s linear; }
.process__truck { position: absolute; top: 58px; left: 6%; width: 110px; z-index: 3; transition: left .15s linear; filter: drop-shadow(0 8px 8px rgba(0,0,0,.3)); }
.process__truck svg { width: 100%; height: auto; }
.process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; padding-top: 70px; }
.step { background: #fff; border-radius: var(--radius-lg); padding: 60px 26px 30px; position: relative; box-shadow: 0 20px 40px -28px rgba(0,0,0,.35); border: 1px solid #ECE9E2; transition: transform .4s var(--ease), box-shadow .4s; }
.step:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(255,107,0,.5); }
.step__marker {
  position: absolute; top: -34px; left: 26px; width: 68px; height: 68px; border-radius: 50%;
  background: var(--orange); display: grid; place-items: center; border: 6px solid var(--paper);
  box-shadow: 0 0 0 3px var(--orange);
}
.step__marker span { font-family: var(--font-display); font-weight: 900; font-size: 1.8rem; color: #fff; }
.step h4 { font-size: 1.6rem; text-transform: uppercase; }
.step p { color: var(--muted); font-size: .95rem; margin: 0; }

/* =========================================================
   FLEET
   ========================================================= */
.fleet__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.fleet__tab {
  padding: 12px 22px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.15);
  font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #C9CED4;
  transition: all .3s var(--ease);
}
.fleet__tab:hover { border-color: var(--yellow); color: var(--yellow); }
.fleet__tab.is-active { background: var(--yellow); border-color: var(--yellow); color: var(--asphalt); }
.fleet__panels { position: relative; }
.fleet__panel { display: none; grid-template-columns: 1.3fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; background: var(--asphalt-3); border: 1px solid rgba(255,255,255,.06); }
.fleet__panel.is-active { display: grid; animation: panelIn .6s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.fleet__img { min-height: 420px; position: relative; overflow: hidden; }
.fleet__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.fleet__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, var(--asphalt-3)); }
.fleet__info { padding: clamp(28px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.fleet__info h3 { font-size: clamp(2rem, 3vw, 2.8rem); text-transform: uppercase; color: #fff; }
.fleet__info p { color: var(--muted-light); margin-bottom: 28px; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.spec-grid div { background: rgba(0,0,0,.25); border-left: 4px solid var(--orange); padding: 14px 16px; border-radius: 0 10px 10px 0; }
.spec-grid small { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-light); }
.spec-grid b { font-family: var(--font-display); font-size: 1.5rem; color: var(--yellow); }

/* =========================================================
   PARALLAX CTA
   ========================================================= */
.parallax {
  position: relative; padding: clamp(110px, 15vw, 190px) 0; color: #fff; text-align: center; overflow: hidden;
  background: var(--bg) center/cover fixed; background-color: var(--asphalt);
}
.parallax__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,20,22,.85), rgba(18,20,22,.55) 50%, rgba(18,20,22,.9)); }
.parallax__inner { position: relative; z-index: 2; }
.parallax h2 { font-size: clamp(2.6rem, 6vw, 5.2rem); font-weight: 900; text-transform: uppercase; max-width: 1000px; margin-inline: auto; }
.parallax h2 .hl { color: var(--yellow); display: block; }
.parallax p { font-size: 1.15rem; color: #D3D7DC; max-width: 620px; margin: 0 auto 38px; }
.parallax__ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.parallax .btn svg { fill: currentColor; stroke: none; }
.parallax .btn--ghost svg { display: none; }

/* =========================================================
   PROJECTS
   ========================================================= */
.projects { background: var(--paper); }
.filters { display: flex; flex-wrap: wrap; gap: 6px; background: #fff; border: 1px solid #E6E2DA; padding: 6px; border-radius: 100px; }
.filters button { padding: 10px 20px; border-radius: 100px; font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); transition: all .3s; }
.filters button:hover { color: var(--orange); }
.filters button.is-active { background: var(--asphalt); color: var(--yellow); }
.projects__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 250px; grid-auto-flow: dense; gap: 18px; }
.project { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.project--tall { grid-row: span 2; }
.project--wide { grid-column: span 2; }
.project.is-hidden { display: none; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.project::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(12,13,15,.92) 0%, rgba(12,13,15,.1) 55%, transparent); opacity: .85; transition: opacity .4s; }
.project:hover img { transform: scale(1.08); }
.project figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; z-index: 2; color: #fff; transform: translateY(18px); transition: transform .5s var(--ease); }
.project:hover figcaption { transform: none; }
.project figcaption span { display: inline-block; padding: 4px 10px; border-radius: 4px; background: var(--yellow); color: var(--asphalt); font-family: var(--font-display); font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.project figcaption h4 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 4px; }
.project figcaption p { font-size: .88rem; color: #C9CED4; margin: 0; opacity: 0; transition: opacity .4s .1s; }
.project:hover figcaption p { opacity: 1; }

/* =========================================================
   SAFETY
   ========================================================= */
.safety { overflow: hidden; }
.safety::before { content: ""; position: absolute; right: -120px; top: -120px; width: 460px; height: 460px; border-radius: 50%; border: 60px solid rgba(0,0,0,.05); }
.safety__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; position: relative; }
.safety .section-title u { text-decoration: none; background: linear-gradient(transparent 62%, rgba(255,107,0,.6) 62%); }
.safety__content > p { font-size: 1.08rem; color: #2E2A18; max-width: 580px; }
.safety__list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.check { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.55); padding: 14px 16px; border-radius: 12px; font-weight: 600; font-size: .95rem; transition: transform .3s var(--ease), background .3s; }
.check:hover { transform: translateX(6px); background: #fff; }
.check span { flex: 0 0 30px; height: 30px; border-radius: 8px; background: var(--asphalt); color: var(--yellow); display: grid; place-items: center; font-weight: 900; }
.safety__visual { position: relative; display: grid; justify-items: center; }
.safety__img { width: 80%; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 60px -30px rgba(0,0,0,.5); border: 8px solid var(--asphalt); }
.safety__img img { width: 100%; height: 100%; object-fit: cover; }
.gauge { position: absolute; left: -10px; bottom: -30px; width: 210px; height: 210px; background: var(--asphalt); border-radius: 50%; z-index: 2; box-shadow: 0 30px 50px -20px rgba(0,0,0,.6); }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge circle { fill: none; stroke-width: 12; }
.gauge__track { stroke: rgba(255,255,255,.08); }
.gauge__fill { stroke: var(--orange); stroke-linecap: round; stroke-dasharray: 540; stroke-dashoffset: 540; transition: stroke-dashoffset 2.2s var(--ease); }
.gauge__label { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; color: #fff; }
.gauge__label b { font-family: var(--font-display); font-size: 3.2rem; color: var(--yellow); line-height: 1; }
.gauge__label span { font-size: .75rem; color: var(--muted-light); line-height: 1.3; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.slider { max-width: 920px; margin: 0 auto; overflow: hidden; }
.slider__track { display: flex; transition: transform .7s var(--ease); }
.quote { flex: 0 0 100%; margin: 0; padding: clamp(30px, 5vw, 56px); background: var(--asphalt-2); border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,.06); position: relative; }
.quote::before { content: "\201C"; position: absolute; top: -20px; right: 40px; font-family: Georgia, serif; font-size: 12rem; line-height: 1; color: var(--orange); opacity: .25; }
.quote__stars { color: var(--yellow); letter-spacing: .2em; font-size: 1.2rem; margin-bottom: 18px; }
.quote p { font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.55; color: #F0F2F4; margin-bottom: 30px; }
.quote footer { display: flex; align-items: center; gap: 14px; }
.avatar { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--orange), var(--yellow)); font-family: var(--font-display); font-weight: 900; font-size: 1.3rem; color: var(--asphalt); }
.quote footer b { display: block; color: #fff; }
.quote footer small { color: var(--muted-light); }
.slider__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.slider__btn { width: 52px; height: 52px; border-radius: 50%; border: 2px solid rgba(255,255,255,.2); display: grid; place-items: center; transition: all .3s; }
.slider__btn svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2.5; }
.slider__btn:hover { background: var(--orange); border-color: var(--orange); }
.slider__dots { display: flex; gap: 8px; }
.slider__dots button { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.25); transition: all .3s; }
.slider__dots button.is-active { background: var(--yellow); width: 30px; border-radius: 5px; }
.clients { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; margin-top: 70px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,.08); }
.clients span { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); transition: color .3s; }
.clients span:hover { color: var(--yellow); }

/* =========================================================
   QUOTE FORM
   ========================================================= */
.quote-sec { background: var(--paper); overflow: hidden; }
.quote-sec::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 38%; background: var(--concrete); z-index: 0; }
.quote-sec__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: start; position: relative; z-index: 1; }
.quote-sec__info > p { color: var(--muted); font-size: 1.05rem; }
.contact-cards { display: grid; gap: 14px; margin-top: 30px; }
.contact-card { display: flex; align-items: center; gap: 16px; padding: 18px 20px; background: #fff; border-radius: var(--radius); border: 1px solid #E6E2DA; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.contact-card:hover { transform: translateX(8px); border-color: var(--orange); box-shadow: 0 16px 30px -18px rgba(255,107,0,.6); }
.contact-card__icon { flex: 0 0 50px; height: 50px; border-radius: 12px; background: var(--orange); display: grid; place-items: center; }
.contact-card__icon svg { width: 22px; height: 22px; fill: #fff; }
.contact-card small { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted); }
.contact-card b { font-family: var(--font-display); font-size: 1.35rem; word-break: break-word; }

.form { background: var(--asphalt); color: #fff; border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 46px); position: relative; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); }
.form::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--hazard); background-size: 51px 51px; }
.form__progress { display: flex; gap: 8px; margin-bottom: 30px; }
.form__progress span { flex: 1; padding-top: 12px; border-top: 4px solid rgba(255,255,255,.12); font-family: var(--font-display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .9rem; color: var(--muted-light); transition: all .4s; }
.form__progress span.is-active { border-color: var(--orange); color: #fff; }
.form__step { border: 0; padding: 0; margin: 0; display: none; min-width: 0; }
.form__step.is-active { display: block; animation: panelIn .5s var(--ease); }
.form__label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.chips input, .seg input { position: absolute; opacity: 0; pointer-events: none; }
.chips span { display: inline-block; padding: 10px 16px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.18); font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .25s; user-select: none; }
.chips span:hover { border-color: var(--yellow); }
.chips input:checked + span { background: var(--orange); border-color: var(--orange); }
.chips input:focus-visible + span, .seg input:focus-visible + span { outline: 2px solid var(--yellow); outline-offset: 2px; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(255,255,255,.06); border-radius: 12px; padding: 5px; margin-bottom: 30px; }
.seg span { display: block; text-align: center; padding: 11px 8px; border-radius: 9px; font-weight: 600; font-size: .9rem; cursor: pointer; transition: all .25s; }
.seg input:checked + span { background: var(--yellow); color: var(--asphalt); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { position: relative; margin-bottom: 16px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 26px 16px 10px; border-radius: 10px; border: 1.5px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05); color: #fff; font: inherit; font-size: .98rem; transition: border-color .25s, background .25s;
  color-scheme: dark;
}
.field select option { background: var(--asphalt-2); }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,107,0,.06); }
.field label { position: absolute; left: 17px; top: 18px; font-size: .95rem; color: var(--muted-light); pointer-events: none; transition: all .2s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label, .field label.is-fixed {
  top: 8px; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--yellow);
}
.field.is-invalid input { border-color: #ff4d4d; animation: shake .4s; }
@keyframes shake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
.form__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 10px; }
.form__nav .btn--outline { color: #fff; border-color: rgba(255,255,255,.25); }
.form__success { display: none; text-align: center; padding: 40px 10px; }
.form.is-sent .form__step, .form.is-sent .form__progress { display: none; }
.form.is-sent .form__success { display: block; animation: panelIn .6s var(--ease); }
.form__success-icon { width: 90px; height: 90px; border-radius: 50%; background: var(--orange); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: 0 0 0 12px rgba(255,107,0,.18); }
.form__success-icon svg { width: 44px; height: 44px; fill: none; stroke: #fff; stroke-width: 3; }
.form__success h3 { font-size: 2.4rem; text-transform: uppercase; }
.form__success p { color: var(--muted-light); }

/* =========================================================
   FAQ
   ========================================================= */
.faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq__grid > div:first-child > p { color: var(--muted); margin-bottom: 30px; }
.accordion { display: grid; gap: 14px; }
.acc { background: #fff; border-radius: var(--radius); border: 1px solid #E4E0D8; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.acc.is-open { border-color: var(--orange); box-shadow: 0 20px 40px -26px rgba(255,107,0,.6); }
.acc__head { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .02em; }
.acc__head i { flex: 0 0 34px; height: 34px; border-radius: 8px; background: var(--asphalt); position: relative; transition: background .3s, transform .4s var(--ease); }
.acc__head i::before, .acc__head i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 2.5px; background: var(--yellow); transform: translate(-50%, -50%); transition: transform .3s; }
.acc__head i::after { transform: translate(-50%, -50%) rotate(90deg); }
.acc.is-open .acc__head i { background: var(--orange); transform: rotate(180deg); }
.acc.is-open .acc__head i::before, .acc.is-open .acc__head i::after { background: #fff; }
.acc.is-open .acc__head i::after { transform: translate(-50%, -50%) rotate(0); }
.acc__body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.acc__body > p { overflow: hidden; margin: 0; padding: 0 26px; color: var(--muted); }
.acc.is-open .acc__body { grid-template-rows: 1fr; }
.acc.is-open .acc__body > p { padding-bottom: 24px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #0C0D0F; color: #AEB4BB; position: relative; }
.footer__cta { background: var(--orange); color: #fff; }
.footer__cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-block: 44px; flex-wrap: wrap; }
.footer__cta h3 { font-size: clamp(2rem, 3.6vw, 3rem); text-transform: uppercase; font-weight: 900; margin-bottom: 4px; }
.footer__cta p { margin: 0; font-weight: 500; opacity: .9; }
.footer__cta .btn--primary { background: var(--asphalt); box-shadow: 0 14px 30px -12px rgba(0,0,0,.5); }
.footer__cta .btn--primary:hover { background: #000; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 50px; padding-block: 80px 60px; }
.footer__brand p { margin: 22px 0 26px; max-width: 340px; font-size: .95rem; }
.footer h5 { font-size: 1.3rem; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 4px; background: var(--hazard); background-size: 51px 51px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a { font-size: .95rem; transition: color .25s, padding .25s var(--ease); }
.footer ul a:hover { color: var(--yellow); padding-left: 8px; }
.footer__phone { font-family: var(--font-display); font-weight: 900; font-size: 2.2rem; color: var(--orange); display: block; line-height: 1; margin-bottom: 12px; }
.footer__phone:hover { color: var(--yellow); }
.footer__small { font-size: .9rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,.06); display: grid; place-items: center; transition: all .3s var(--ease); }
.socials svg { width: 19px; height: 19px; fill: #fff; }
.socials a:hover { background: var(--orange); transform: translateY(-4px); }
.newsletter { display: flex; margin-top: 20px; background: rgba(255,255,255,.06); border-radius: 10px; padding: 5px; border: 1px solid rgba(255,255,255,.08); }
.newsletter input { flex: 1; min-width: 0; background: none; border: 0; color: #fff; padding: 10px 12px; font: inherit; font-size: .9rem; }
.newsletter input:focus { outline: none; }
.newsletter button { width: 44px; border-radius: 8px; background: var(--orange); display: grid; place-items: center; }
.newsletter button svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.5; }
.newsletter.is-done { border-color: #2BD46B; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.07); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 22px; font-size: .85rem; }
.footer__bottom a:hover { color: var(--yellow); }
.footer__road { height: 26px; background: #16181B; position: relative; overflow: hidden; border-top: 3px solid var(--yellow); }
.logo--light { color: #fff; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 900; width: 62px; height: 62px;
  border-radius: 50%; background: var(--asphalt); box-shadow: 0 16px 34px -10px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; transform: translateY(30px) scale(.8);
  transition: opacity .4s, visibility .4s, transform .5s var(--ease), background .3s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--orange); }
.to-top__ring { position: absolute; inset: 3px; width: calc(100% - 6px); height: calc(100% - 6px); transform: rotate(-90deg); }
.to-top__ring circle { fill: none; stroke-width: 3; }
.to-top__ring circle:first-child { stroke: rgba(255,255,255,.1); }
.to-top__ring circle:last-child { stroke: var(--yellow); stroke-linecap: round; stroke-dasharray: 157; stroke-dashoffset: 157; }
.to-top__cone { position: absolute; inset: 0; display: grid; place-items: center; }
.to-top__cone svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.to-top:hover .to-top__cone svg { transform: translateY(-4px); }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(8,9,10,.94); display: grid; place-items: center; padding: 30px; opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-height: 80vh; border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0,0,0,.6); transform: scale(.94); transition: transform .5s var(--ease); }
.lightbox.is-open img { transform: none; }
.lightbox__cap { color: #fff; font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; letter-spacing: .06em; margin-top: 16px; text-align: center; }
.lightbox__close { position: absolute; top: 20px; right: 24px; width: 52px; height: 52px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 2rem; line-height: 1; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .nav__links { gap: 0; }
  .nav__link { padding: 10px 9px; font-size: 1rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .vms { max-width: 520px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .projects__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  :root { --header-h: 116px; }
  .burger { display: block; }
  /* backdrop-filter would trap the fixed drawer inside the nav bar */
  .nav, .header.is-scrolled .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(18,20,22,.97); }
  .nav__actions .btn { display: none; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(360px, 88vw);
    flex-direction: column; gap: 4px; padding: 110px 28px 40px;
    background: var(--asphalt); border-left: 6px solid var(--orange);
    transform: translateX(100%); visibility: hidden; z-index: -1;
    transition: transform .5s var(--ease), visibility 0s linear .5s;
    box-shadow: -30px 0 60px rgba(0,0,0,.5);
  }
  .nav__links.is-open { transform: none; visibility: visible; transition: transform .5s var(--ease), visibility 0s; }
  .nav__link { font-size: 1.6rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__link::after { left: 0; right: auto; width: 60px; }
  .nav__mobile-cta { display: block; margin-top: 24px; }
  .nav__mobile-cta .btn { width: 100%; }
  .topbar__right a:last-child { display: none; }
  .about__grid, .safety__grid, .quote-sec__grid, .faq__grid { grid-template-columns: 1fr; }
  .quote-sec::before { display: none; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .process__line, .process__truck { display: none; }
  .process__steps { grid-template-columns: repeat(2, 1fr); row-gap: 60px; padding-top: 20px; }
  .process__road { padding-top: 20px; }
  .fleet__panel.is-active { grid-template-columns: 1fr; }
  .fleet__img { min-height: 280px; }
  .fleet__img::after { background: linear-gradient(0deg, var(--asphalt-3), transparent 50%); }
  .parallax { background-attachment: scroll; }
  .safety__visual { margin-top: 20px; }
  .scroll-cue { display: none; }
}

@media (max-width: 680px) {
  .container { padding-inline: 18px; }
  .topbar__left span:last-child { font-size: .74rem; }
  .topbar__right { display: none; }
  .hero__inner { padding-block: 50px 120px; }
  .hero__title { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero__ctas .btn { width: 100%; }
  .services__grid, .process__steps, .about__features, .safety__list, .form__row { grid-template-columns: 1fr; }
  .projects__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .project--wide { grid-column: span 2; }
  .project figcaption { padding: 14px; transform: none; }
  .project figcaption h4 { font-size: 1.1rem; }
  .project figcaption p { display: none; }
  .about__media { padding: 0 30px 60px 0; }
  .about__badge { left: -6px; padding: 14px 16px; }
  .about__badge b { font-size: 2.4rem; }
  .gauge { width: 160px; height: 160px; left: 0; }
  .gauge__label b { font-size: 2.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .ticker__track span { font-size: 1.4rem; }
  .vms__stats b { font-size: 1.5rem; }
  .vms__arrow span { width: 24px; height: 32px; }
  .to-top { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .seg { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 40px; }
}

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