:root {
  --navy-950: #06131d;
  --navy-900: #071927;
  --navy-800: #0b273b;
  --navy-700: #123a55;
  --blue-600: #118dcc;
  --blue-500: #2ea6e0;
  --blue-300: #91d9f7;
  --cyan-100: #e9f7fd;
  --ink: #101820;
  --slate: #53616c;
  --slate-2: #75838d;
  --surface: #ffffff;
  --surface-soft: #f5f8fa;
  --line: #dfe7ec;
  --green: #25d366;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shadow-sm: 0 10px 30px rgba(8, 28, 42, .08);
  --shadow-md: 0 24px 60px rgba(8, 28, 42, .13);
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 106px; }
body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { border: 0; }
svg { display: block; }
::selection { background: var(--blue-300); color: var(--navy-950); }

.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: -100px; left: 18px; z-index: 9999; background: #fff; color: var(--ink); padding: 10px 14px; border-radius: 8px; box-shadow: var(--shadow-sm); }
.skip-link:focus { top: 18px; }

.utility-bar { background: var(--navy-950); color: rgba(255,255,255,.78); font-size: 11px; letter-spacing: .2px; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-left { font-weight: 600; }
.utility-right { display: flex; align-items: center; gap: 24px; }
.utility-right a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s ease; }
.utility-right a:hover { color: #fff; }
.utility-right svg { width: 14px; height: 14px; fill: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7,25,39,.08);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: 0 10px 34px rgba(6,19,29,.10); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 152px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 25px; font-size: 12px; font-weight: 700; color: #28343d; }
.main-nav > a:not(.btn) { position: relative; padding: 29px 0; }
.main-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.main-nav > a:not(.btn):hover::after,
.main-nav > a:not(.btn).active::after { transform: scaleX(1); transform-origin: left; }
.main-nav > a.active { color: var(--blue-600); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 10px; background: transparent; cursor: pointer; border-radius: 10px; }
.menu-toggle span { display: block; width: 25px; height: 2px; margin: 5px auto; background: var(--navy-950); transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid var(--blue-600);
  border-radius: 8px;
  background: var(--blue-600);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17,141,204,.18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); background: #087bb6; border-color: #087bb6; box-shadow: 0 14px 32px rgba(17,141,204,.25); }
.btn:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, button:focus-visible { outline: 3px solid rgba(46,166,224,.35); outline-offset: 3px; }
.btn-small { min-height: 42px; padding: 0 17px; border-radius: 7px; }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.35); box-shadow: none; }
.btn-ghost:hover { background: #fff; color: var(--navy-950); border-color: #fff; }
.btn-light { background: #fff; color: var(--navy-900); border-color: #fff; box-shadow: none; }
.btn-light:hover { background: var(--cyan-100); color: var(--navy-900); border-color: var(--cyan-100); }
.btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow { display: inline-block; margin-bottom: 15px; color: var(--blue-600); font-size: 11px; font-weight: 800; letter-spacing: 2.2px; text-transform: uppercase; }
.eyebrow-light { color: var(--blue-300); }
h1, h2, h3 { margin-top: 0; }
h1, h2 { letter-spacing: -2.2px; }
h2 { margin-bottom: 18px; font-size: clamp(36px, 4vw, 58px); line-height: 1.06; }
h3 { line-height: 1.18; }
p { margin: 0 0 18px; color: var(--slate); }
.lead { font-size: 18px; line-height: 1.75; color: #34444f; }
.section { padding: 112px 0; }
.section-head { display: grid; grid-template-columns: 1.15fr .7fr; gap: 90px; align-items: end; margin-bottom: 52px; }
.section-head > div { max-width: 720px; }
.section-head > p { margin: 0 0 6px; font-size: 15px; }

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: radial-gradient(circle at 17% 20%, rgba(46,166,224,.20), transparent 30%), linear-gradient(120deg, var(--navy-950), #0a263a 65%, #0b3049);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  left: -360px;
  bottom: -420px;
  border: 1px solid rgba(145,217,247,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(145,217,247,.03), 0 0 0 160px rgba(145,217,247,.02);
}
.hero-grid { position: relative; z-index: 3; min-height: 690px; display: grid; grid-template-columns: 48% 52%; align-items: center; }
.hero-copy { padding: 72px 46px 72px 0; }
.hero h1 { max-width: 670px; margin-bottom: 25px; font-size: clamp(48px, 5.3vw, 78px); line-height: .98; text-transform: uppercase; }
.hero h1 span { display: block; color: var(--blue-300); }
.hero-lead { max-width: 625px; margin-bottom: 30px; color: rgba(255,255,255,.79); font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 590px; border-top: 1px solid rgba(255,255,255,.14); padding-top: 23px; }
.hero-trust div { min-width: 0; padding-right: 18px; }
.hero-trust div + div { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.14); }
.hero-trust strong { display: block; color: #fff; font-size: 25px; line-height: 1; }
.hero-trust span { display: block; margin-top: 7px; color: rgba(255,255,255,.56); font-size: 10px; line-height: 1.35; text-transform: uppercase; letter-spacing: .7px; }
.hero-media {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 52.5%;
  height: 100%;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
  overflow: hidden;
}
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,25,39,.28), transparent 40%); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 47% center; }
.hero-media-label {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 28px;
  width: min(330px, calc(100% - 64px));
  padding: 17px 20px;
  background: rgba(6,19,29,.84);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  color: #fff;
}
.hero-media-label span { display: block; color: var(--blue-300); font-size: 10px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.hero-media-label strong { display: block; margin-top: 4px; font-size: 15px; }
.hero-wave { position: absolute; z-index: 1; left: 43%; bottom: -70px; width: 440px; height: 170px; border-top: 28px solid rgba(46,166,224,.09); border-radius: 50%; transform: rotate(-7deg); }

.proof-strip { position: relative; z-index: 5; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 15px 35px rgba(6,19,29,.04); }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-item { display: flex; align-items: center; gap: 17px; min-height: 112px; padding: 24px 34px; border-right: 1px solid var(--line); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-icon { width: 50px; height: 50px; flex: 0 0 50px; display: grid; place-items: center; border-radius: 14px; background: var(--cyan-100); color: var(--blue-600); }
.proof-icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.proof-item strong { display: block; color: var(--navy-900); font-size: 13px; }
.proof-item span:not(.proof-icon) { display: block; margin-top: 3px; color: var(--slate-2); font-size: 11px; }

.about-layout { display: grid; grid-template-columns: 1.15fr .75fr; gap: 90px; align-items: center; }
.about-main { max-width: 700px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 12px; color: var(--blue-600); font-size: 13px; font-weight: 800; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.about-panel { position: relative; overflow: hidden; padding: 32px; border-radius: var(--radius-lg); background: var(--navy-900); color: #fff; box-shadow: var(--shadow-md); }
.about-panel::before { content: ""; position: absolute; top: -130px; right: -130px; width: 280px; height: 280px; border: 38px solid rgba(46,166,224,.12); border-radius: 50%; }
.panel-kicker { position: relative; z-index: 1; display: block; margin-bottom: 20px; color: var(--blue-300); font-size: 10px; font-weight: 800; letter-spacing: 1.8px; text-transform: uppercase; }
.metrics-list { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.11); border-radius: 14px; overflow: hidden; }
.metrics-list div { min-height: 118px; padding: 19px; background: rgba(255,255,255,.035); }
.metrics-list strong { display: block; color: #fff; font-size: 30px; line-height: 1; }
.metrics-list span { display: block; margin-top: 7px; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.4; text-transform: uppercase; letter-spacing: .6px; }
.about-panel blockquote { position: relative; z-index: 1; margin: 22px 0 0; padding-left: 17px; border-left: 3px solid var(--blue-500); color: rgba(255,255,255,.88); font-size: 14px; font-weight: 700; }

.solutions-section { position: relative; overflow: hidden; background: var(--surface-soft); }
.solutions-section::after { content: ""; position: absolute; right: -90px; top: 70px; width: 320px; height: 320px; border: 44px solid rgba(17,141,204,.04); border-radius: 50%; }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; min-height: 390px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #c8dce7; box-shadow: var(--shadow-md); }
.service-card.featured { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.service-topline { display: flex; justify-content: space-between; gap: 20px; color: var(--slate-2); font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.featured .service-topline { color: rgba(255,255,255,.55); }
.service-topline span:first-child { color: var(--blue-600); }
.featured .service-topline span:first-child { color: var(--blue-300); }
.service-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 52px 0 28px; border-radius: 18px; background: var(--cyan-100); color: var(--blue-600); }
.featured .service-icon { background: rgba(255,255,255,.08); color: var(--blue-300); }
.service-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin-bottom: 13px; font-size: 27px; text-transform: uppercase; letter-spacing: -.8px; }
.service-card p { margin: 0; font-size: 13px; }
.featured p { color: rgba(255,255,255,.66); }
.service-line { position: absolute; left: 30px; right: 30px; bottom: 0; height: 4px; background: var(--blue-500); transform: scaleX(.16); transform-origin: left; transition: transform .25s ease; }
.service-card:hover .service-line { transform: scaleX(1); }

.routes-section { background: var(--navy-900); color: #fff; }
.routes-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.routes-intro { position: sticky; top: 120px; padding-top: 8px; }
.routes-intro h2 { max-width: 510px; }
.routes-intro > p { max-width: 500px; color: rgba(255,255,255,.64); }
.region-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 34px; }
.region-list span { padding: 8px 11px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; }
.routes-card { overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius-lg); background: #fff; color: var(--ink); box-shadow: 0 30px 80px rgba(0,0,0,.18); }
.routes-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px; border-bottom: 1px solid var(--line); }
.toolbar-label { display: block; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.routes-toolbar strong { display: block; margin-top: 3px; font-size: 15px; }
.route-search { min-width: 250px; height: 44px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface-soft); }
.route-search svg { width: 17px; height: 17px; fill: none; stroke: var(--slate-2); stroke-width: 2; stroke-linecap: round; }
.route-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 12px; }
.route-table-wrap { max-height: 610px; overflow: auto; }
.route-table { width: 100%; border-collapse: collapse; }
.route-table thead { position: sticky; top: 0; z-index: 1; }
.route-table th { padding: 14px 22px; background: #edf6fa; color: #47606f; text-align: left; font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.route-table td { padding: 13px 22px; border-bottom: 1px solid #edf1f4; font-size: 12px; }
.route-table td:first-child { font-weight: 700; color: #22333e; }
.route-table tbody tr:hover { background: #f5fbfe; }
.route-empty { padding: 26px; text-align: center; }

.infra-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.infra-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.infra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.infra-image { position: relative; height: 270px; overflow: hidden; background: #e9eef2; }
.infra-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.infra-card:hover .infra-image img { transform: scale(1.035); }
.infra-badge { position: absolute; left: 20px; top: 20px; padding: 8px 12px; border-radius: 999px; background: rgba(6,19,29,.84); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .9px; text-transform: uppercase; backdrop-filter: blur(9px); }
.infra-content { padding: 30px; }
.card-index { color: var(--blue-600); font-size: 10px; font-weight: 800; letter-spacing: 1.5px; }
.infra-content h3 { margin: 8px 0 13px; font-size: 28px; }
.infra-content p { margin: 0; font-size: 13px; }
.temporary-note { max-width: 780px; margin: 22px 0 0; color: #87939c; font-size: 10px; }

.fleet-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #071927, #0b3048); color: #fff; }
.fleet-section::before { content: ""; position: absolute; right: -130px; bottom: -210px; width: 620px; height: 360px; border-top: 46px solid rgba(46,166,224,.10); border-radius: 50%; transform: rotate(-8deg); }
.fleet-heading { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .6fr; gap: 70px; align-items: end; margin-bottom: 47px; }
.fleet-heading p { margin: 0 0 8px; color: rgba(255,255,255,.62); }
.fleet-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fleet-card { overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-md); background: rgba(255,255,255,.05); transition: transform .25s ease, background .25s ease; }
.fleet-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.08); }
.fleet-image { height: 230px; overflow: hidden; background: #112e41; }
.fleet-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.fleet-card:hover .fleet-image img { transform: scale(1.035); }
.fleet-meta { display: flex; align-items: center; gap: 17px; padding: 22px 24px; }
.fleet-meta span { color: var(--blue-300); font-size: 12px; font-weight: 800; }
.fleet-meta h3 { margin: 0; font-size: 17px; }
.fleet-subsection { position: relative; z-index: 1; margin-bottom: 20px; }
.fleet-subsection h3 { margin: 6px 0 0; font-size: 26px; color: #fff; }
.fleet-subsection-road { margin-top: 46px; }
.fleet-label { display: inline-block; color: var(--blue-300); font-size: 11px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.road-fleet-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 0;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  box-shadow: 0 26px 60px rgba(4, 16, 24, .18);
}
.road-fleet-image { min-height: 340px; background: #0d2435; }
.road-fleet-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.road-fleet-content { padding: 34px 34px 32px; align-self: center; }
.road-fleet-content h3 { margin: 8px 0 14px; font-size: 32px; color: #fff; }
.road-fleet-content p { margin: 0 0 18px; color: rgba(255,255,255,.74); }
.road-fleet-list { margin: 0; padding-left: 18px; color: rgba(255,255,255,.82); }
.road-fleet-list li + li { margin-top: 9px; }

.differentiators-section { background: var(--surface-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.feature-card { min-height: 245px; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; transition: transform .22s ease, border-color .22s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: #bfdbe9; }
.feature-number { display: inline-grid; place-items: center; width: 35px; height: 35px; margin-bottom: 36px; border-radius: 9px; background: var(--cyan-100); color: var(--blue-600); font-size: 10px; font-weight: 800; }
.feature-card h3 { margin-bottom: 12px; color: var(--navy-900); font-size: 17px; }
.feature-card p { margin: 0; font-size: 12px; }

.references-section { padding: 82px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.references-inner { display: grid; grid-template-columns: .42fr 1fr; gap: 70px; align-items: center; }
.references-copy h2 { margin: 0; font-size: 32px; }
.logo-cloud { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.logo-cloud span { min-height: 58px; display: grid; place-items: center; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: #fbfcfd; color: #61707b; font-size: 11px; font-weight: 700; text-align: center; }

.quote-section { position: relative; overflow: hidden; padding: 110px 0; background: linear-gradient(115deg, #096896, #0e8ac3); color: #fff; }
.quote-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,19,29,.22), transparent 55%); }
.quote-section::after { content: ""; position: absolute; width: 560px; height: 560px; right: -300px; top: -300px; border: 70px solid rgba(255,255,255,.06); border-radius: 50%; }
.quote-layout { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; align-items: center; }
.quote-copy h2 { max-width: 560px; }
.quote-copy h2 span { color: #b9eaff; }
.quote-copy > p { max-width: 520px; color: rgba(255,255,255,.74); }
.quote-contact-list { display: grid; gap: 10px; margin-top: 30px; }
.quote-contact-list a { display: grid; gap: 2px; width: fit-content; }
.quote-contact-list span { color: rgba(255,255,255,.56); font-size: 9px; font-weight: 800; letter-spacing: 1.1px; text-transform: uppercase; }
.quote-contact-list strong { font-size: 13px; }
.quote-form { padding: 30px; border-radius: var(--radius-lg); background: #fff; color: var(--ink); box-shadow: 0 34px 80px rgba(0,0,0,.2); }
.form-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; padding-bottom: 20px; margin-bottom: 22px; border-bottom: 1px solid var(--line); }
.form-heading span { color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.form-heading strong { font-size: 17px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: grid; gap: 7px; color: #43515b; font-size: 9px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.form-grid input, .form-grid textarea { width: 100%; border: 1px solid #d8e1e6; border-radius: 9px; background: #fbfcfd; color: var(--ink); outline: 0; padding: 12px 13px; font-size: 12px; font-weight: 500; text-transform: none; transition: border-color .2s ease, box-shadow .2s ease; }
.form-grid input { height: 46px; }
.form-grid textarea { resize: vertical; min-height: 105px; }
.form-grid input:focus, .form-grid textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(17,141,204,.10); }
.form-full { grid-column: 1 / -1; }
.quote-form .btn { width: 100%; border-radius: 9px; }
.form-note { margin: 11px 0 0; color: #8a969e; font-size: 9px; text-align: center; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1.15fr; gap: 18px; }
.contact-card { min-height: 210px; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.contact-card-dark { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.contact-label { display: block; margin-bottom: 31px; color: var(--blue-600); font-size: 9px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.contact-card-dark .contact-label { color: var(--blue-300); }
.contact-card h3 { margin-bottom: 11px; font-size: 20px; }
.contact-card p { margin: 0; font-size: 12px; }
.contact-card a { display: block; margin-top: 7px; color: var(--blue-600); font-size: 12px; font-weight: 700; word-break: break-word; }
.contact-card-dark a { color: rgba(255,255,255,.78); }

.whatsapp-float { position: fixed; z-index: 900; right: 21px; bottom: 21px; display: inline-flex; align-items: center; gap: 9px; min-height: 50px; padding: 0 17px; border-radius: 999px; background: var(--green); color: #fff; box-shadow: 0 15px 38px rgba(0,0,0,.22); font-size: 11px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 23px; height: 23px; fill: currentColor; }

.site-footer { background: var(--navy-950); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1.1fr .65fr .9fr; gap: 70px; padding-top: 65px; padding-bottom: 45px; }
.footer-brand img { width: 165px; height: auto; padding: 8px; background: #fff; border-radius: 8px; }
.footer-brand p { margin: 16px 0 0; color: rgba(255,255,255,.50); font-size: 11px; }
.footer-nav { display: grid; align-content: start; gap: 8px; }
.footer-nav strong { margin-bottom: 8px; color: var(--blue-300); font-size: 9px; letter-spacing: 1.2px; text-transform: uppercase; }
.footer-nav a, .footer-nav span { color: rgba(255,255,255,.57); font-size: 11px; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 18px; padding-bottom: 24px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.40); font-size: 9px; }
.footer-bottom a:hover { color: #fff; }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .main-nav { gap: 17px; font-size: 11px; }
  .main-nav a:nth-child(6) { display: none; }
  .hero-grid { grid-template-columns: 52% 48%; }
  .hero-media { width: 49%; }
  .hero h1 { font-size: clamp(44px, 5.8vw, 68px); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 930px) {
  html { scroll-padding-top: 80px; }
  .utility-bar { display: none; }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 132px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 92px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a:nth-child(6) { display: block; }
  .main-nav > a:not(.btn) { padding: 12px 13px; }
  .main-nav > a:not(.btn)::after { display: none; }
  .main-nav .btn { margin-top: 7px; }

  .hero { min-height: auto; }
  .hero-grid { min-height: 730px; grid-template-columns: 1fr; align-items: end; }
  .hero-copy { width: 68%; padding: 85px 0 66px; }
  .hero-media { width: 55%; opacity: .72; clip-path: polygon(22% 0,100% 0,100% 100%,0 100%); }
  .hero-media::after { background: linear-gradient(90deg, rgba(7,25,39,.88) 0%, rgba(7,25,39,.18) 62%); }
  .hero-media-label { display: none; }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-item, .proof-item:first-child { min-height: 86px; padding: 17px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-item:last-child { border-bottom: 0; }

  .section, .quote-section { padding: 88px 0; }
  .section-head, .fleet-heading { grid-template-columns: 1fr; gap: 14px; }
  .road-fleet-card { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-panel { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .service-icon { margin-top: 34px; }
  .routes-layout { grid-template-columns: 1fr; gap: 42px; }
  .routes-intro { position: static; }
  .infra-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr 1fr; }
  .road-fleet-image { min-height: 280px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .references-inner { grid-template-columns: 1fr; gap: 30px; }
  .logo-cloud { grid-template-columns: repeat(3, 1fr); }
  .quote-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-card-dark { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  h2 { font-size: clamp(32px, 10vw, 45px); letter-spacing: -1.5px; }
  .section { padding: 72px 0; }
  .hero-grid { min-height: 700px; align-items: end; }
  .hero-copy { width: 100%; padding: 190px 0 54px; }
  .hero-media { width: 100%; height: 47%; clip-path: none; opacity: .72; }
  .hero-media::after { background: linear-gradient(180deg, rgba(7,25,39,.05), var(--navy-900) 94%); }
  .hero h1 { font-size: clamp(41px, 13vw, 58px); letter-spacing: -1.6px; }
  .hero-lead { font-size: 14px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; margin-bottom: 34px; }
  .hero-actions .btn { width: 100%; }
  .hero-trust div { padding-right: 8px; }
  .hero-trust div + div { padding-left: 10px; }
  .hero-trust strong { font-size: 22px; }
  .hero-trust span { font-size: 8px; }

  .about-panel { padding: 22px; }
  .metrics-list div { min-height: 105px; padding: 15px; }
  .service-card { padding: 24px; }
  .service-line { left: 24px; right: 24px; }
  .routes-toolbar { align-items: stretch; flex-direction: column; }
  .route-search { min-width: 0; width: 100%; }
  .route-table-wrap { max-height: 520px; }
  .route-table { min-width: 540px; }
  .infra-image { height: 215px; }
  .infra-content { padding: 24px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-image { height: 220px; }
  .road-fleet-content { padding: 26px 22px 24px; }
  .road-fleet-content h3 { font-size: 26px; }
  .road-fleet-image { min-height: 230px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 190px; }
  .logo-cloud { grid-template-columns: 1fr 1fr; }
  .quote-section { padding: 75px 0; }
  .quote-form { padding: 22px; }
  .form-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card-dark { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding-top: 48px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 50px; height: 50px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

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

/* Rastreamento */
.tracking-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(17,141,204,.11), transparent 31%),
    linear-gradient(135deg, #f8fbfd 0%, #eef6fa 100%);
  border-bottom: 1px solid var(--line);
}
.tracking-section::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 420px;
  height: 420px;
  border: 55px solid rgba(17,141,204,.055);
  border-radius: 50%;
  pointer-events: none;
}
.tracking-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.tracking-copy h2 {
  max-width: 650px;
  margin-bottom: 18px;
}
.tracking-copy > p {
  max-width: 650px;
  margin: 0;
  font-size: 15px;
}
.tracking-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 620px;
  margin-top: 28px;
  padding: 16px 18px;
  border-left: 3px solid var(--blue-500);
  background: rgba(255,255,255,.72);
  color: #445864;
  font-size: 12px;
  font-weight: 600;
}
.tracking-note svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--blue-600);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tracking-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-900), #0b2b3e);
  color: #fff;
  box-shadow: 0 28px 65px rgba(6,19,29,.2);
}
.tracking-card-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  border-radius: 20px;
  background: rgba(255,255,255,.08);
  color: var(--blue-300);
}
.tracking-card-icon svg {
  width: 43px;
  height: 43px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tracking-card-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-300);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.tracking-card h3 {
  margin: 0 0 12px;
  font-size: 29px;
  letter-spacing: -.8px;
}
.tracking-card p {
  max-width: 490px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}
.tracking-btn {
  gap: 10px;
  width: 100%;
}
.tracking-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tracking-card small {
  display: block;
  margin-top: 13px;
  color: rgba(255,255,255,.48);
  text-align: center;
  font-size: 9px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

@media (max-width: 930px) {
  .tracking-shell { grid-template-columns: 1fr; gap: 38px; }
  .tracking-card { max-width: 660px; }
}

@media (max-width: 640px) {
  .tracking-section { padding: 68px 0; }
  .tracking-card { padding: 28px 22px; }
  .tracking-card h3 { font-size: 24px; }
}


/* Finalização técnica */
:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }
.form-note a, .footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom-links { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.legal-hero { padding: 82px 0 58px; background: linear-gradient(135deg, var(--navy-950), var(--navy-800)); color: #fff; }
.legal-hero .eyebrow { color: var(--blue-300); }
.legal-hero h1 { max-width: 820px; margin: 0; font-size: clamp(40px, 6vw, 72px); line-height: 1.03; letter-spacing: -2.4px; }
.legal-hero p { max-width: 720px; color: rgba(255,255,255,.72); }
.legal-content { padding: 72px 0 92px; }
.legal-content article { max-width: 900px; }
.legal-content h2 { margin: 42px 0 12px; font-size: 28px; letter-spacing: -.7px; }
.legal-content p, .legal-content li { color: var(--slate); }
.legal-content ul { padding-left: 22px; }
.legal-update { display: inline-block; margin-top: 12px; padding: 8px 12px; border-radius: 999px; background: var(--surface-soft); color: var(--slate); font-size: 12px; font-weight: 700; }
.error-page { min-height: 64vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.error-page strong { display: block; color: var(--blue-600); font-size: clamp(72px, 12vw, 140px); line-height: .9; }
.error-page h1 { margin: 18px 0 10px; font-size: clamp(32px, 5vw, 58px); }
.error-page p { max-width: 620px; margin: 0 auto 26px; color: var(--slate); }
@media (max-width: 700px) { .footer-bottom-links { gap: 12px; } .legal-content { padding: 54px 0 72px; } }
