/* ============================================================
   WORLDWIDE DISPATCH — style.css
   Dark premium logistics. Blue used strictly as accent.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #05070d;
  --bg-2: #0a0f18;
  --surface: #101725;
  --surface-2: #151e2e;
  --line: rgba(245, 247, 250, 0.09);
  --line-strong: rgba(245, 247, 250, 0.16);
  --text: #f5f7fa;
  --muted: #9aa3af;
  --muted-2: #6b7480;
  --accent: #2563eb;
  --accent-deep: #1d4ed8;
  --accent-bright: #4d8dff;
  --accent-soft: rgba(77, 141, 255, 0.12);
  --steel: #8fa3b8;
  --wa: #25d366;
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 14px;
  --radius-lg: 20px;
  --nav-h: 84px;
  --container: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -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;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Subtle film grain across the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

.skip-link {
  position: fixed;
  top: -60px;
  left: 16px;
  z-index: 10000;
  padding: 10px 18px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Layout utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}

.section {
  position: relative;
  padding-block: clamp(80px, 11vw, 150px);
}

.section-tight {
  padding-block: clamp(56px, 7vw, 96px);
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-bright);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-title {
  margin-top: 18px;
  font-size: clamp(30px, 4.2vw, 52px);
}

.section-lead {
  margin-top: 18px;
  max-width: 600px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 17px);
}

.accent {
  color: var(--accent-bright);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 10px;
  border: 1px solid transparent;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn svg {
  transition: transform 0.25s var(--ease);
}

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

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}
.btn-primary:hover {
  background: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(77, 141, 255, 0.45);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(245, 247, 250, 0.02);
}
.btn-ghost:hover {
  border-color: rgba(77, 141, 255, 0.55);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 32px;
  font-size: 14px;
}

.btn-sm {
  padding: 11px 20px;
  font-size: 12px;
}

.btn-wa {
  border-color: rgba(37, 211, 102, 0.35);
  color: var(--wa);
}
.btn-wa:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: var(--wa);
  transform: translateY(-2px);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.site-nav.is-scrolled {
  background: rgba(5, 7, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--nav-h);
  transition: height 0.35s var(--ease);
}

.site-nav.is-scrolled .nav-inner {
  height: 66px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 42px;
}

.brand-mark img {
  display: block;
  height: 100%;
  width: auto;
  /* Logo is a transparent WebP — no blending needed on dark backgrounds. */
  transition: filter 0.25s var(--ease);
}

.brand:hover .brand-mark img {
  filter: brightness(1.15);
}

.brand-word {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.25;
  display: flex;
  flex-direction: column;
}
.brand-word b {
  font-weight: 700;
  color: var(--accent-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
}

.nav-link {
  position: relative;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.25s var(--ease);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover {
  color: var(--text);
}
.nav-link.is-active {
  color: var(--text);
}
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-cta .btn {
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.nav-phone svg {
  color: var(--accent-bright);
  flex-shrink: 0;
}
.nav-phone small {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.nav-phone b {
  display: block;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.25s var(--ease);
}
.nav-phone:hover b {
  color: var(--accent-bright);
}

.nav-burger {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
}
.nav-burger span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.6px;
  background: var(--text);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-burger span:nth-child(1) {
  top: 17px;
}
.nav-burger span:nth-child(2) {
  top: 25px;
}
.menu-open .nav-burger span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.menu-open .nav-burger span:nth-child(2) {
  top: 21px;
  transform: rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(5, 7, 13, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: calc(var(--nav-h) + 24px) clamp(24px, 6vw, 48px) 48px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open {
  opacity: 1;
  transform: none;
}

.mobile-menu[hidden] {
  display: none;
}

.mm-brand {
  padding-top: 24px;
  padding-bottom: 8px;
}

.mm-brand .brand-mark {
  height: 38px;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a.mm-link {
  font-family: var(--font-display);
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), color 0.25s;
  transition-delay: var(--d, 0s);
}
.mobile-menu.is-open a.mm-link {
  opacity: 1;
  transform: none;
}
.mobile-menu a.mm-link:hover {
  color: var(--accent-bright);
}
.mobile-menu a.mm-link span {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--accent-bright);
  letter-spacing: 0.2em;
}

.mm-footer {
  margin-top: auto;
  padding-top: 32px;
  display: grid;
  gap: 12px;
}
.mm-footer .js-phone {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
  display: inline-block;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  /* Clear the fixed transparent header even when the viewport is short
     (small window heights / browser zoom) and content stacks tall. */
  padding-top: var(--nav-h);
  padding-bottom: clamp(72px, 10vh, 120px);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: -6% 0 0 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
  animation: heroDrift 26s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.09) translateX(-1.4%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.62) 0%, rgba(5, 7, 13, 0.25) 34%, rgba(5, 7, 13, 0.88) 78%, #05070d 100%),
    linear-gradient(100deg, rgba(5, 7, 13, 0.88) 0%, rgba(5, 7, 13, 0.45) 46%, rgba(5, 7, 13, 0.12) 70%);
}

.hero-sheen {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 42%, rgba(77, 141, 255, 0.05) 50%, transparent 58%);
  background-size: 260% 100%;
  animation: sheen 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes sheen {
  0%,
  100% {
    background-position: 120% 0;
  }
  50% {
    background-position: -20% 0;
  }
}

.hero-route {
  position: absolute;
  z-index: -1;
  right: 4vw;
  top: 18vh;
  width: min(46vw, 560px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-route path {
  stroke-dasharray: 7 9;
  animation: routeDash 30s linear infinite;
}
@keyframes routeDash {
  to {
    stroke-dashoffset: -640;
  }
}

.hero-inner {
  position: relative;
  width: 100%;
}

.hero-eyebrow {
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(42px, 7.2vw, 96px);
  letter-spacing: -0.025em;
  line-height: 1.02;
  max-width: 12ch;
}

.h-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.h-in {
  display: block;
  transform: translateY(110%);
  animation: lineUp 0.9s var(--ease) forwards;
  animation-delay: calc(0.12s + var(--i) * 0.13s);
}

@keyframes lineUp {
  to {
    transform: none;
  }
}

.hero-sub {
  margin-top: 26px;
  max-width: 560px;
  color: #c6cdd6;
  font-size: clamp(16px, 1.5vw, 18px);
}

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

.hero-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: var(--wa);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.hero-wa:hover {
  background: rgba(37, 211, 102, 0.12);
  border-color: var(--wa);
  transform: translateY(-2px);
}

/* Floating dispatch panel — glass used deliberately here */
.hero-panel {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(72px, 10vh, 120px);
  width: min(360px, 30vw);
  z-index: 2;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background: rgba(10, 15, 24, 0.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}

.hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.pill {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-bright);
  border: 1px solid rgba(77, 141, 255, 0.4);
  background: var(--accent-soft);
  padding: 4px 8px;
  border-radius: 999px;
}

.hero-panel ul {
  padding: 8px 10px 12px;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 12px;
  padding: 9px 8px;
  border-radius: 8px;
  transition: background 0.25s;
}
.hero-panel li:hover {
  background: rgba(245, 247, 250, 0.04);
}
.hero-panel li + li {
  margin-top: 2px;
}

.hp-lane {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.hp-meta {
  grid-column: 1;
  font-size: 11.5px;
  color: var(--muted);
}
.hp-rpm {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--accent-bright);
}

.hp-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 7px;
  background: var(--steel);
}
.hp-dot.is-booked {
  background: #4ade80;
}
.hp-dot.is-neg {
  background: var(--accent);
}

.hero-panel-foot {
  padding: 10px 18px;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--muted-2);
}
.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--accent), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0% {
    transform: scaleY(0);
  }
  55% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

/* ---------- Trust strip ---------- */
.trust {
  border-block: 1px solid var(--line);
  background: var(--bg-2);
}

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

.trust-item {
  padding: 34px 28px;
  border-left: 1px solid var(--line);
}
.trust-item:first-child {
  border-left: 0;
}

.trust-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-bright);
}

.trust-item h3 {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-item p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Services (accordion index) ---------- */
.services {
  background: var(--bg);
}

.svc-wrap {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.svc-intro {
  position: sticky;
  top: calc(var(--nav-h) + 40px);
}

.svc-intro .btn {
  margin-top: 32px;
}

.svc-list {
  display: grid;
  gap: 10px;
}

.svc-item {
  --pad: 22px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  overflow: hidden;
  transition:
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

/* Blue bar that draws down the left edge of the open card */
.svc-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(77, 141, 255, 0.12));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s var(--ease);
}

.svc-item.is-open::before {
  transform: scaleY(1);
}

.svc-item.is-open {
  background: var(--surface);
  border-color: var(--line-strong);
  box-shadow: 0 24px 48px -28px rgba(0, 0, 0, 0.75);
}

.svc-head {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 58px;
  padding: 17px var(--pad);
  background: none;
  border: 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.svc-head:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius);
}

.svc-num {
  width: 24px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  transition: color 0.35s;
}

.svc-item.is-open .svc-num {
  color: var(--accent-bright);
}

.svc-name {
  flex: 1;
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: transform 0.35s var(--ease);
}

/* Chevron that flips when the row opens */
.svc-x {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  transition:
    transform 0.5s var(--ease),
    border-color 0.35s,
    background 0.35s,
    color 0.35s;
}

.svc-item.is-open .svc-x {
  transform: rotate(180deg);
  border-color: rgba(77, 141, 255, 0.5);
  background: var(--accent-soft);
  color: var(--accent-bright);
}

/* Hover polish — pointer devices only */
@media (hover: hover) {
  .svc-item:not(.is-open):hover {
    background: rgba(21, 26, 33, 0.55);
    border-color: var(--line-strong);
  }
  .svc-item:not(.is-open):hover .svc-name {
    transform: translateX(4px);
  }
  .svc-item:not(.is-open):hover .svc-x {
    border-color: var(--accent-bright);
    color: var(--text);
  }
}

/* Smooth expand via grid rows + staggered text reveal */
.svc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}

.svc-item.is-open .svc-body {
  grid-template-rows: 1fr;
}

.svc-body-in {
  overflow: hidden;
}

.svc-body p {
  padding: 0 24px 21px calc(var(--pad) + 40px);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 58ch;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.35s var(--ease);
}

.svc-item.is-open .svc-body p {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease 0.12s, transform 0.55s var(--ease) 0.1s;
}

/* ---------- How it works ---------- */
.how {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.steps-track {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-strong);
  overflow: hidden;
}

.steps-track i {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--accent), rgba(77, 141, 255, 0.15));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s var(--ease) 0.2s;
}

.steps.is-in .steps-track i {
  transform: scaleX(1);
}

.step {
  position: relative;
  padding-top: 64px;
}

.step-dot {
  position: absolute;
  top: 14px;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(77, 141, 255, 0.5);
  background: var(--bg-2);
  display: grid;
  place-items: center;
}
.step-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.4s var(--ease) calc(0.3s + var(--i) * 0.3s);
}

.steps.is-in .step-dot::after {
  transform: scale(1);
}

.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent-bright);
}

.step h3 {
  margin-top: 10px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 24ch;
}

.step p {
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 30ch;
}

/* ---------- Equipment carousel ---------- */
.equip-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 8px 34px;
  margin: -8px -8px 0;
  scroll-padding-left: 8px;
  scrollbar-width: none;
}

.equip-track::-webkit-scrollbar {
  display: none;
}

.equip-track:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  border-radius: var(--radius);
}

.equip-card {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.equip-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 28px 52px -24px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(77, 141, 255, 0.07);
}

.equip-card-media {
  position: relative;
  overflow: hidden;
}

.equip-card-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: 50% 58%;
  transition: transform 0.7s var(--ease);
}

.equip-card-media .equip-alt {
  position: absolute;
  inset: 0;
  height: 100%;
  aspect-ratio: auto;
  opacity: 0;
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}

.equip-card.is-alt .equip-alt {
  opacity: 1;
}

.equip-card:hover .equip-card-media img {
  transform: scale(1.05);
}

.equip-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(5, 7, 13, 0) 50%, rgba(5, 7, 13, 0.62));
  pointer-events: none;
}

.equip-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  background: rgba(5, 7, 13, 0.72);
  border: 1px solid rgba(77, 141, 255, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 13px;
  border-radius: 10px;
}

.equip-spec {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 24px -10px rgba(77, 141, 255, 0.55);
}

/* Trailer-type dropdown on flatbed / step deck cards */
.equip-select {
  position: relative;
  margin-top: 18px;
}

.equip-select-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.equip-select-btn:hover,
.equip-select.is-open .equip-select-btn {
  border-color: rgba(77, 141, 255, 0.55);
  background: var(--accent-soft);
}

.equip-select-btn:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 2px;
}

.equip-select-tag {
  flex: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 8px;
}

.equip-select-label {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.equip-select-caret {
  flex: none;
  color: var(--steel);
  transition: transform 0.3s var(--ease);
}

.equip-select.is-open .equip-select-caret {
  transform: rotate(180deg);
}

.equip-select-menu {
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(100% + 8px);
  z-index: 30;
  list-style: none;
  margin: 0;
  padding: 8px;
  display: grid;
  gap: 2px;
  background: rgba(13, 17, 28, 0.97);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  box-shadow: 0 26px 50px -18px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease),
    visibility 0.25s;
}

.equip-select.is-open .equip-select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.equip-select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.equip-select-option:hover {
  background: rgba(77, 141, 255, 0.09);
  color: var(--text);
}

.equip-select-option.is-selected {
  color: var(--text);
  font-weight: 600;
}

.equip-radio {
  flex: none;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  position: relative;
  transition: border-color 0.2s;
}

.equip-select-option.is-selected .equip-radio {
  border-color: var(--accent-bright);
}

.equip-select-option.is-selected .equip-radio::after {
  content: "";
  position: absolute;
  inset: 3.5px;
  border-radius: 50%;
  background: var(--accent-bright);
}

.equip-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 24px 26px;
}

.equip-card-body h3 {
  font-family: var(--font-display);
  font-size: 23px;
}

.equip-card-body > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14.5px;
}

.equip-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.equip-tags li {
  font-size: 12px;
  font-weight: 600;
  color: var(--steel);
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-2);
}

.equip-link {
  margin-top: auto;
  padding-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-bright);
  transition: color 0.3s var(--ease);
}

.equip-link svg {
  transition: transform 0.3s var(--ease);
}

.equip-link:hover {
  color: #7fb0ff;
}

.equip-link:hover svg {
  transform: translateX(4px);
}

.equip-ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 2px;
}

.equip-arrow {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.equip-arrow.is-prev svg {
  transform: rotate(180deg);
}

.equip-arrow:hover:not(:disabled) {
  border-color: var(--accent-bright);
  color: var(--accent-bright);
  background: var(--accent-soft);
}

.equip-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.equip-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.equip-dots {
  display: flex;
  gap: 9px;
  align-items: center;
}

.equip-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--muted-2);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}

.equip-dot:hover {
  background: var(--muted);
}

.equip-dot.is-active {
  width: 28px;
  background: var(--accent);
}

.equip-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Dispatch desk board ---------- */
.desk {
  background: var(--bg);
  overflow: hidden;
}

.desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.board {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: rgba(21, 26, 33, 0.66);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
}

.board-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.board-dots {
  display: flex;
  gap: 6px;
}
.board-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}
.board-dots i:first-child {
  background: var(--accent);
}

.board-cols,
.board-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.7fr 0.9fr;
  gap: 14px;
  align-items: center;
}

.board-cols {
  padding: 12px 22px 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  text-transform: uppercase;
}

.board-body {
  padding: 4px 12px 14px;
}

.board-row {
  padding: 14px 10px;
  border-radius: 10px;
  font-size: 14px;
  transition: background 0.25s;
}
.board-row:hover {
  background: rgba(245, 247, 250, 0.04);
}
.board-row + .board-row {
  margin-top: 2px;
}

.br-lane {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.br-lane svg {
  color: var(--accent-bright);
  flex-shrink: 0;
}

.br-equip,
.br-rpm {
  color: var(--muted);
  font-size: 13px;
}
.br-rpm {
  color: var(--text);
  font-weight: 600;
  font-family: var(--font-display);
}

.br-status {
  justify-self: start;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--steel);
}
.br-status.is-booked {
  border-color: rgba(74, 222, 128, 0.4);
  color: #4ade80;
}
.br-status.is-neg {
  border-color: rgba(77, 141, 255, 0.45);
  color: var(--accent-bright);
}

.board-foot {
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.desk-copy .section-lead {
  max-width: 460px;
}

.desk-points {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.desk-points li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 15px;
  color: #c6cdd6;
}

.desk-points i {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 0.16em;
  flex-shrink: 0;
}

/* ---------- For carriers ---------- */
.carriers {
  background:
    radial-gradient(60% 90% at 85% 10%, rgba(77, 141, 255, 0.06), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}

.carriers-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
}

.carriers-copy .section-title {
  max-width: 14ch;
}

.carriers-body {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 17px);
  max-width: 520px;
}

.carriers-cta {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.carry-list {
  border-top: 1px solid var(--line);
}

.carry-list li {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s;
}
.carry-list li:hover {
  background: rgba(245, 247, 250, 0.025);
}

/* Blue accent bar that wipes in on hover */
.carry-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: -1px;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.25s var(--ease);
}
.carry-list li:hover::before {
  transform: scaleY(1);
}

.carry-list i {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 0.14em;
  line-height: 2;
  transition: color 0.25s var(--ease);
}
.carry-list li:hover i {
  color: var(--text);
}

.carry-list b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.carry-list span {
  display: block;
  margin-top: 5px;
  max-width: 48ch;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}

/* ---------- Why ---------- */
.why-list {
  border-top: 1px solid var(--line);
}

.why-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(16px, 3vw, 44px);
  align-items: baseline;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s;
}
.why-row:hover {
  background: rgba(245, 247, 250, 0.02);
}

.why-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-bright);
  letter-spacing: 0.2em;
}

.why-row h3 {
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.why-row p {
  color: var(--muted);
  font-size: 15px;
  max-width: 52ch;
}

/* ---------- Onboarding ---------- */
.onboard {
  background: var(--bg-2);
  border-block: 1px solid var(--line);
}

.onboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}

.onboard-copy p {
  margin-top: 18px;
  color: var(--muted);
  max-width: 440px;
}

.onboard-note {
  margin-top: 26px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.onboard-note svg {
  color: var(--accent-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.oform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.field label em {
  font-style: normal;
  color: var(--accent-bright);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa3af' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(77, 141, 255, 0.6);
  background: var(--surface-2);
}

.oform-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}

.oform-hint {
  font-size: 12.5px;
  color: var(--muted-2);
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.08);
  color: #86efac;
  font-size: 14px;
}
.form-status.is-error {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.08);
  color: #fca5a5;
}
.form-status:not(:empty) {
  display: block;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
  object-position: 50% 40%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(5, 7, 13, 0) 55%, rgba(5, 7, 13, 0.65));
  pointer-events: none;
}

.about-tag {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(5, 7, 13, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.about-body .section-title {
  max-width: 16ch;
}

.about-body p {
  margin-top: 20px;
  color: var(--muted);
  max-width: 560px;
}

.about-body p strong {
  color: var(--text);
  font-weight: 600;
}

.about-facts {
  margin-top: 32px;
  display: grid;
  gap: 12px;
  max-width: 560px;
}

.about-facts li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  font-size: 14.5px;
}

.about-facts i {
  font-style: normal;
  color: var(--accent-bright);
  flex-shrink: 0;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 860px;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  color: var(--text);
  transition: color 0.25s;
}

.faq-q:hover {
  color: var(--accent-bright);
}

.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: border-color 0.3s, background 0.3s, transform 0.4s var(--ease);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.6px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon {
  background: var(--accent-soft);
  border-color: rgba(77, 141, 255, 0.5);
}
.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.is-open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a > div {
  overflow: hidden;
}

.faq-a p {
  padding: 0 60px 26px 4px;
  color: var(--muted);
  font-size: 15px;
  max-width: 68ch;
}

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(110px, 15vw, 200px);
  text-align: center;
}

.cta-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(70% 90% at 50% 100%, rgba(77, 141, 255, 0.1), transparent 60%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.92), rgba(5, 7, 13, 0.72) 45%, rgba(5, 7, 13, 0.95));
}

.cta-inner {
  max-width: 880px;
  margin-inline: auto;
}

.cta-title {
  font-size: clamp(38px, 6vw, 76px);
  letter-spacing: -0.02em;
}

.cta-sub {
  margin-top: 22px;
  color: #c6cdd6;
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 560px;
  margin-inline: auto;
}

.cta-actions {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--bg);
}

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

.contact-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-card:hover {
  border-color: rgba(77, 141, 255, 0.4);
  background: var(--surface-2);
  transform: translateY(-3px);
}

.contact-card svg {
  color: var(--accent-bright);
}

.contact-card span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-card b {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  overflow-wrap: anywhere;
}

.contact-card {
  min-width: 0;
}

.contact-card small {
  color: var(--muted-2);
  font-size: 12.5px;
}

.contact-card.wa:hover {
  border-color: rgba(37, 211, 102, 0.45);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: clamp(56px, 7vw, 90px) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 56px;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 10px;
}

.footer-col a {
  color: var(--muted);
  font-size: 14.5px;
  transition: color 0.25s;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted-2);
}

/* ---------- Floating actions ---------- */
.fabs {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.fabs.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.fab {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10, 15, 24, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px -10px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}
.fab:hover {
  transform: translateY(-3px);
}
.fab.wa {
  color: var(--wa);
}
.fab.wa:hover {
  border-color: var(--wa);
}
.fab.tel {
  color: var(--accent-bright);
}
.fab.tel:hover {
  border-color: var(--accent-bright);
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: none;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 1px;
  background: rgba(10, 15, 24, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  padding-bottom: env(safe-area-inset-bottom, 0);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-bar.is-visible {
  transform: none;
}

.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 58px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-bar a svg {
  color: var(--accent-bright);
}
.mobile-bar a.wa svg {
  color: var(--wa);
}
.mobile-bar a.mb-cta {
  background: var(--accent);
  color: #ffffff;
}
.mobile-bar a.mb-cta svg {
  color: #ffffff;
}

/* ---------- Reveal system ---------- */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}

.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* Hero load-in */
.js .hero-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: none;
  }
}

.js .hero-panel {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s var(--ease) forwards;
  animation-delay: 1s;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .js [data-reveal],
  .js .hero-fade,
  .js .hero-panel {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-media img,
  .hero-sheen,
  .hero-route path,
  .hero-scroll-line {
    animation: none !important;
  }
}

/* ---------- Responsive ---------- */
/* Tight desktop range: drop the phone number so nav links never crowd/wrap */
@media (max-width: 1360px) and (min-width: 1081px) {
  .nav-phone {
    display: none;
  }
}

@media (max-width: 1080px) {
  .nav-links,
  .nav-phone {
    display: none;
  }
  .nav-burger {
    display: block;
    margin-left: auto;
  }
  .nav-inner {
    height: 68px;
  }
  .hero-panel {
    display: none;
  }
  .svc-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .svc-intro {
    position: static;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
  .steps-track {
    display: none;
  }
  .desk-grid,
  .carriers-grid,
  .onboard-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .equip-card {
    flex-basis: calc((100% - 22px) / 2);
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1081px) {
  .hero-scroll {
    display: flex;
  }
}

@media (max-width: 720px) {
  :root {
    --nav-h: 64px;
  }
  .nav-inner {
    gap: 12px;
  }
  .brand-word {
    font-size: 13px;
  }
  .brand-mark {
    height: 34px;
  }
  .nav-cta .btn {
    padding: 9px 14px;
    font-size: 11px;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 24px 4px;
  }
  .trust-item:first-child {
    border-top: 0;
  }
  .svc-wrap {
    gap: 30px;
  }
  .svc-list {
    gap: 8px;
  }
  .svc-item {
    --pad: 16px;
  }
  .svc-head {
    gap: 12px;
    min-height: 52px;
    padding: 14px var(--pad);
  }
  .svc-num {
    width: 20px;
    font-size: 10px;
  }
  .svc-name {
    font-size: 13.5px;
  }
  .svc-x {
    width: 30px;
    height: 30px;
  }
  .svc-body p {
    padding: 0 16px 16px 48px;
    font-size: 14px;
  }
  .equip-card {
    flex-basis: 86%;
  }
  .equip-ctrl {
    gap: 16px;
  }
  .equip-arrow {
    width: 42px;
    height: 42px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .steps-track {
    display: block;
    top: 0;
    bottom: 0;
    left: 13px;
    right: auto;
    width: 1px;
    height: auto;
  }
  .steps-track i {
    background: linear-gradient(180deg, var(--accent), rgba(77, 141, 255, 0.15));
    transform: scaleY(0);
    transform-origin: top;
  }
  .steps.is-in .steps-track i {
    transform: scaleY(1);
  }
  .step {
    padding: 0 0 44px 56px;
  }
  .step-dot {
    top: 2px;
  }
  .step:last-child {
    padding-bottom: 8px;
  }
  .why-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .oform {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero {
    align-items: flex-start;
    padding-top: calc(var(--nav-h) + 8vh);
    padding-bottom: 96px;
  }
  .hero-title {
    font-size: clamp(38px, 11.5vw, 52px);
  }
  .hero-cta .btn {
    flex: 1 1 auto;
    min-height: 54px;
  }
  .fabs {
    display: none;
  }
  .mobile-bar {
    display: grid;
  }
  body {
    padding-bottom: 58px;
  }
  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .nav-cta .btn {
    display: none;
  }
}

