:root {
  --ink: #14211f;
  --muted: #5a6765;
  --line: #dde5e2;
  --paper: #f7faf8;
  --white: #ffffff;
  --forest: #123b35;
  --mint: #53d1a4;
  --aqua: #55c5d8;
  --amber: #f2b84b;
  --coral: #ef7e5d;
  --navy: #18273f;
  --shadow: 0 24px 70px rgba(20, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(20, 33, 31, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 56px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.18));
}

@media (min-width: 861px) {
  .site-header:not(.is-scrolled):not(.is-open) .brand-logo {
    filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  background: rgba(83, 209, 164, 0.14);
}

.nav-cta {
  color: #09251f;
  background: var(--mint);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle svg,
.btn svg,
.icon-btn svg,
.service-card svg,
.contact-points svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.section-dark {
  color: var(--white);
  background: #10231f;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 76px) 64px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(0deg, rgba(16, 35, 31, 0.96), rgba(16, 35, 31, 0));
  pointer-events: none;
}

.fleet-scene {
  position: absolute;
  inset: 0;
  opacity: 0.88;
}

.scene-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    #10231f;
  background-size: 42px 42px;
}

.scene-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 35, 31, 0.34), rgba(16, 35, 31, 0) 56%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
}

.ops-window {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(246, 250, 248, 0.12);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.ops-primary {
  right: clamp(18px, 6vw, 94px);
  top: 17%;
  width: min(47vw, 650px);
  min-width: 470px;
  height: 386px;
}

.ops-secondary {
  right: clamp(80px, 15vw, 235px);
  bottom: 11%;
  width: 318px;
  min-height: 216px;
  padding-bottom: 22px;
}

.window-top {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
}

.window-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
}

.window-top span:nth-child(2) {
  background: var(--amber);
}

.window-top span:nth-child(3) {
  background: var(--mint);
}

.window-top strong {
  margin-left: 8px;
  font-size: 0.86rem;
}

.window-top.compact strong {
  margin-left: 0;
}

.ops-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 16px;
  height: calc(100% - 46px);
  padding: 18px;
}

.load-board {
  display: grid;
  gap: 10px;
}

.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 54px;
  padding: 0 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.1);
}

.board-row.hot {
  border: 1px solid rgba(83, 209, 164, 0.7);
  background: rgba(83, 209, 164, 0.18);
}

.board-row span,
.board-row b,
.mini-metrics span,
.map-label {
  font-size: 0.82rem;
}

.board-row b {
  color: var(--mint);
}

.route-map {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.node {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--mint);
}

.node-a {
  left: 19%;
  top: 30%;
}

.node-b {
  left: 56%;
  top: 48%;
  background: var(--amber);
}

.node-c {
  right: 19%;
  bottom: 24%;
  background: var(--aqua);
}

.route {
  position: absolute;
  z-index: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--mint);
  transform-origin: left center;
}

.route-one {
  left: 24%;
  top: 37%;
  width: 38%;
  transform: rotate(24deg);
}

.route-two {
  left: 60%;
  top: 53%;
  width: 28%;
  background: var(--aqua);
  transform: rotate(35deg);
}

.map-label {
  position: absolute;
  padding: 5px 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(16, 35, 31, 0.7);
}

.label-a {
  left: 12%;
  top: 15%;
}

.label-b {
  right: 12%;
  bottom: 13%;
}

.mini-metrics {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.mini-metrics span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.09);
}

.mini-metrics b {
  color: var(--mint);
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 68px;
  padding: 0 16px;
}

.bar-chart span {
  flex: 1;
  min-width: 26px;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--aqua), rgba(85, 197, 216, 0.28));
}

.driver-chip {
  position: absolute;
  right: clamp(26px, 8vw, 120px);
  top: 58%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(83, 209, 164, 0.45);
  border-radius: 8px;
  color: var(--white);
  background: rgba(16, 35, 31, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
}

.driver-chip svg {
  width: 18px;
  height: 18px;
  color: var(--mint);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(630px, calc(100vw - 40px));
  min-width: 0;
}

.eyebrow,
.section-kicker,
.case-type {
  margin: 0 0 14px;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.comments-layout h2,
.contact-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(2.9rem, 5.4vw, 5rem);
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.03rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.btn-primary {
  color: #09251f;
  background: var(--mint);
  box-shadow: 0 16px 38px rgba(83, 209, 164, 0.22);
}

.btn-primary:hover {
  background: #6ee0b7;
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-proof div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.hero-proof dt {
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.proof-strip {
  padding: 20px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.logo-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.logo-band span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

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

.section {
  padding: 94px clamp(20px, 5vw, 76px);
}

.split-section,
.work-section,
.process-section {
  background: var(--paper);
}

.split-section {
  display: block;
  padding-bottom: 64px;
}

.section-kicker {
  color: var(--forest);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.58fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.section-heading h2,
.comments-layout h2,
.contact-copy h2 {
  font-size: clamp(2rem, 3.7vw, 3.8rem);
}

.section-heading p,
.comments-layout p,
.contact-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.compact-heading {
  display: block;
  max-width: 860px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1180px;
  margin: 42px auto 0;
}

.service-card,
.case-card,
.testimonial-panel,
.contact-form,
.process-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 236px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card svg {
  color: var(--forest);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 209, 164, 0.68);
  box-shadow: 0 18px 50px rgba(20, 33, 31, 0.1);
}

.service-card h3,
.case-card h3,
.process-list h3 {
  margin: 22px 0 10px;
  line-height: 1.12;
  font-size: 1.16rem;
}

.service-card p,
.case-card p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.board-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(83, 209, 164, 0.08), transparent 38%),
    #0f1d1a;
}

.board-copy h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 4.35rem);
  line-height: 1.02;
}

.board-copy p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

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

.compat-grid div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.compat-grid strong {
  display: block;
  color: var(--mint);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.compat-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 800;
}

.tms-board-preview {
  overflow: hidden;
  border: 1px solid rgba(83, 209, 164, 0.24);
  border-radius: 8px;
  background: #070c12;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
}

.board-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(96, 137, 176, 0.24);
  background: #0e131b;
}

.board-toolbar span,
.board-toolbar b,
.board-tabs span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(96, 137, 176, 0.5);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.board-toolbar span {
  padding: 0 10px;
}

.board-toolbar b {
  justify-content: center;
  min-width: 62px;
  color: var(--white);
  background: rgba(83, 209, 164, 0.12);
}

.board-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 12px;
  background: #0b1018;
}

.board-tabs span {
  min-width: 94px;
  justify-content: center;
}

.board-tabs .is-active {
  color: var(--white);
  border-color: rgba(83, 147, 216, 0.82);
  background: rgba(83, 147, 216, 0.2);
}

.board-table {
  padding: 12px;
  background:
    linear-gradient(90deg, rgba(83, 209, 164, 0.04) 1px, transparent 1px),
    #05080d;
  background-size: 84px 84px;
}

.board-head,
.dispatch-row {
  display: grid;
  grid-template-columns: 0.75fr 0.95fr repeat(3, minmax(86px, 1fr)) 1.15fr;
  gap: 4px;
  align-items: center;
}

.board-head {
  min-height: 38px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.driver-group {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  border: 1px solid rgba(83, 147, 216, 0.36);
  color: var(--white);
  background: rgba(83, 147, 216, 0.09);
  font-size: 0.72rem;
  font-weight: 900;
}

.driver-group b {
  color: rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.dispatch-row {
  min-height: 56px;
  border-bottom: 1px solid rgba(96, 137, 176, 0.16);
}

.dispatch-row > span {
  min-height: 42px;
  display: grid;
  align-content: center;
  padding: 6px 8px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
}

.dispatch-row b {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
}

.dispatch-row small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.dispatch-row.alert > span:first-child {
  border-left: 3px solid var(--coral);
}

.dispatch-row.good > span:first-child {
  border-left: 3px solid var(--mint);
}

.load-slot {
  border: 1px solid rgba(96, 137, 176, 0.34);
}

.load-slot.active {
  background: linear-gradient(90deg, rgba(83, 209, 164, 0.24), rgba(85, 197, 216, 0.12));
}

.time-pills {
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: transparent !important;
}

.time-pills i {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(83, 209, 164, 0.6);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.62rem;
  font-style: normal;
}

.work-section {
  padding-top: 76px;
}

.work-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  font-weight: 800;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: #09251f;
  border-color: rgba(83, 209, 164, 0.8);
  background: var(--mint);
}

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

.case-card {
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(20, 33, 31, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.case-card.is-hidden {
  display: none;
}

.case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(83, 209, 164, 0.72);
  box-shadow: 0 18px 50px rgba(20, 33, 31, 0.1);
}

.case-visual {
  position: relative;
  height: 230px;
  overflow: hidden;
  background: #163d36;
}

.case-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.dispatch-visual {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #163d36, #1e5147);
  background-size: 42px 42px, auto;
}

.lane {
  position: absolute;
  left: 34px;
  right: 34px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.lane-one {
  top: 58px;
}

.lane-two {
  top: 105px;
}

.lane-three {
  top: 152px;
}

.dock {
  position: absolute;
  width: 82px;
  height: 38px;
  border-radius: 8px;
  background: var(--mint);
  box-shadow: 0 14px 34px rgba(83, 209, 164, 0.18);
}

.dock-one {
  left: 56px;
  top: 50px;
}

.dock-two {
  right: 62px;
  top: 97px;
  background: var(--amber);
}

.dock-three {
  left: 43%;
  top: 144px;
  background: var(--aqua);
}

.integration-visual {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, var(--navy), #263b5d);
  background-size: 36px 36px, auto;
}

.hub-node,
.sat-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #09251f;
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

.hub-node {
  left: 50%;
  top: 50%;
  width: 82px;
  height: 58px;
  transform: translate(-50%, -50%);
}

.sat-node {
  width: 62px;
  height: 42px;
}

.sat-a {
  left: 48px;
  top: 48px;
  background: var(--aqua);
}

.sat-b {
  right: 58px;
  top: 58px;
  background: var(--amber);
}

.sat-c {
  right: 84px;
  bottom: 42px;
  background: var(--coral);
}

.wire {
  position: absolute;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transform-origin: left center;
}

.wire-a {
  left: 28%;
  top: 39%;
  width: 27%;
  transform: rotate(28deg);
}

.wire-b {
  right: 27%;
  top: 42%;
  width: 22%;
  transform: rotate(-22deg);
}

.wire-c {
  right: 31%;
  top: 59%;
  width: 24%;
  transform: rotate(34deg);
}

.automation-visual {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #18273f, #123b35);
  background-size: 38px 38px, auto;
}

.auto-step {
  position: absolute;
  display: grid;
  place-items: center;
  width: 104px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #09251f;
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.auto-step::after {
  content: "";
  position: absolute;
  right: -42px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.step-a {
  left: 34px;
  top: 44px;
}

.step-b {
  left: 178px;
  top: 86px;
  background: var(--aqua);
}

.step-c {
  right: 92px;
  top: 128px;
  background: var(--amber);
}

.step-d {
  right: 30px;
  bottom: 34px;
  background: var(--coral);
}

.step-d::after {
  display: none;
}

.case-body {
  padding: 24px;
}

.case-type {
  margin-bottom: 9px;
  color: var(--forest);
}

.case-card h3 {
  margin-top: 0;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.case-tags li {
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--forest);
  background: #e9f5ef;
  font-size: 0.78rem;
  font-weight: 800;
}

.comments-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(83, 209, 164, 0.09), transparent 36%),
    linear-gradient(180deg, #13231f, #0f1d1a);
}

.comments-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.comments-section .section-kicker {
  color: var(--mint);
}

.comments-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.comments-layout p {
  color: rgba(255, 255, 255, 0.68);
}

.comment-controls {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.icon-btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 209, 164, 0.58);
  background: rgba(83, 209, 164, 0.18);
}

.testimonial-panel {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(26px, 4vw, 46px);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 248, 0.98)),
    var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  transform: translateY(0);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.testimonial-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(83, 209, 164, 0.16), transparent 34%);
  opacity: 0;
  transform: translateX(-100%);
  pointer-events: none;
}

.testimonial-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
}

.testimonial-panel.is-changing {
  animation: testimonialLift 420ms ease both;
}

.testimonial-panel.is-changing::after {
  animation: testimonialSweep 420ms ease both;
}

.quote-mark {
  position: absolute;
  top: 18px;
  right: 28px;
  color: rgba(18, 59, 53, 0.08);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--amber);
}

.stars svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.comment-company {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin: 22px 0 0;
  padding: 0 12px;
  border: 1px solid rgba(83, 209, 164, 0.4);
  border-radius: 8px;
  color: var(--forest);
  background: #e9f5ef;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

blockquote {
  margin: 24px 0 30px;
  font-size: clamp(1.28rem, 2.6vw, 1.95rem);
  font-weight: 800;
  line-height: 1.2;
}

.comment-author {
  display: grid;
  gap: 4px;
}

.comment-author span {
  color: var(--muted);
}

.comment-progress {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.comment-progress span {
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: #d8e2df;
  transition: width 220ms ease, background 220ms ease;
}

.comment-progress span.is-active {
  width: 56px;
  background: var(--forest);
}

@keyframes testimonialLift {
  0% {
    opacity: 0.68;
    transform: translateY(10px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes testimonialSweep {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.process-list li {
  min-height: 260px;
  padding: 24px;
}

.process-list span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 38px;
  border-radius: 8px;
  color: #09251f;
  background: var(--mint);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 7vw, 95px);
  align-items: start;
  background: var(--white);
}

.contact-copy {
  position: sticky;
  top: 108px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-weight: 800;
}

.contact-points svg {
  color: var(--mint);
}

.contact-directory {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 30px;
}

.contact-directory a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7faf8;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-directory a:hover {
  transform: translateY(-2px);
  border-color: rgba(83, 209, 164, 0.72);
  box-shadow: 0 16px 40px rgba(20, 33, 31, 0.1);
}

.contact-directory svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--forest);
}

.contact-directory span {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
}

.contact-directory b {
  color: var(--ink);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 118px;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 4px rgba(83, 209, 164, 0.18);
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-note.is-success {
  color: var(--forest);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(430px, 1fr) auto;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  padding: 34px clamp(20px, 5vw, 76px);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f1d1a;
}

.footer-brand {
  margin-bottom: 12px;
  width: max-content;
}

.site-footer .brand-logo {
  filter: brightness(0) invert(1) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.site-footer p {
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 10px;
  margin: 0;
}

.footer-contact a {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
}

.footer-contact span {
  color: var(--mint);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--mint);
}

@media (max-width: 1120px) {
  .ops-primary {
    right: -130px;
    min-width: 430px;
    opacity: 0.72;
  }

  .ops-secondary {
    right: 24px;
    opacity: 0.8;
  }

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

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

  .board-showcase {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 35px rgba(20, 33, 31, 0.1);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    border-color: var(--line);
    background: var(--white);
  }

  .site-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 112px 20px 56px;
  }

  .fleet-scene {
    opacity: 0.34;
  }

  .ops-primary {
    left: 40%;
    right: auto;
    top: 18%;
    min-width: 420px;
    opacity: 0.26;
  }

  .ops-secondary,
  .driver-chip {
    display: none;
  }

  .hero-proof,
  .logo-band,
  .section-heading,
  .split-section,
  .board-showcase,
  .compat-grid,
  .comments-layout,
  .contact-section,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    max-width: none;
  }

  .logo-band span {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 72px 20px;
  }

  .split-section {
    gap: 16px;
  }

  .section-heading,
  .service-grid {
    grid-column: auto;
  }

  .contact-copy {
    position: static;
  }

  .tms-board-preview {
    overflow-x: auto;
  }

  .board-toolbar,
  .board-head,
  .dispatch-row {
    min-width: 760px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-height: 56px;
    padding: 4px 8px;
  }

  .brand-logo {
    height: 48px;
  }

  .hero-content {
    width: 82vw;
    max-width: 520px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10.5vw, 3.2rem);
    width: 82vw;
    max-width: 82vw;
  }

  .hero-copy,
  .hero-actions {
    width: 82vw;
    max-width: 82vw;
  }

  .hero-copy {
    max-width: 34ch;
  }

  .hero-actions,
  .work-toolbar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-items: start;
  }

  .hero-actions .btn {
    width: max-content;
    min-width: 210px;
  }

  .filter-btn {
    width: 100%;
  }

  .hero-proof,
  .service-grid,
  .case-grid,
  .process-list,
  .footer-contact {
    grid-template-columns: 1fr;
  }

  .hero-proof div {
    min-height: 82px;
  }

  .ops-primary {
    left: 34%;
    top: 19%;
    min-width: 360px;
    height: 312px;
    opacity: 0.2;
  }

  .ops-layout {
    grid-template-columns: 1fr;
  }

  .route-map {
    display: none;
  }

  .case-visual {
    height: 200px;
  }

  blockquote {
    margin: 24px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
