@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #071522;
  --ink-2: #0b1e2f;
  --ink-3: #102b42;
  --paper: #f4f1e9;
  --paper-2: #ebe6da;
  --white: #ffffff;
  --signal: #d9ff43;
  --signal-dark: #b7dc20;
  --red: #ef4048;
  --blue: #54b4ff;
  --muted: #677480;
  --line: rgba(7, 21, 34, .13);
  --line-dark: rgba(255, 255, 255, .14);
  --shadow-sm: 0 10px 30px rgba(7, 21, 34, .08);
  --shadow-md: 0 24px 70px rgba(7, 21, 34, .14);
  --shadow-lg: 0 34px 100px rgba(7, 21, 34, .22);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: 1240px;
  --header: 78px;
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
::selection { color: var(--ink); background: var(--signal); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.section-compact { padding: 78px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-blue { color: var(--white); background: var(--ink-2); }
.section-white { background: var(--white); }
.section-signal { background: var(--signal); }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 {
  font-family: "Space Grotesk", "DM Sans", sans-serif;
  line-height: 1.03;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.6rem, 8.3vw, 8rem); }
h2 { font-size: clamp(2.45rem, 5.2vw, 5.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
p:last-child { margin-bottom: 0; }
.muted { color: var(--muted); }
.section-dark .muted, .section-blue .muted { color: rgba(255, 255, 255, .66); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: inherit;
  font-family: "Space Grotesk", sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--signal);
  border-radius: 10px;
}
.section-signal .eyebrow::before { background: var(--ink); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, .7fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 58px;
}
.section-head h2 { max-width: 900px; margin-bottom: 0; }
.section-head p { max-width: 480px; margin-bottom: 8px; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-head p, .section-blue .section-head p { color: rgba(255, 255, 255, .66); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--signal);
  border: 1px solid var(--signal);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217, 255, 67, .18); }
.btn:active { transform: translateY(0); }
.btn:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.btn-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.btn-dark:hover { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.btn-outline { color: inherit; background: transparent; border-color: currentColor; }
.btn-outline:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn-paper { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.btn-white { color: var(--ink); background: var(--white); border-color: var(--white); }
.btn-sm { min-height: 42px; padding-inline: 17px; font-size: .9rem; }
.btn-block { width: 100%; }
button:disabled { opacity: .65; cursor: wait; transform: none !important; }

.utility-bar {
  position: relative;
  z-index: 60;
  color: rgba(255, 255, 255, .82);
  background: #04101a;
  font-size: .78rem;
  font-weight: 600;
}
.utility-inner { display: flex; align-items: center; justify-content: space-between; min-height: 38px; gap: 20px; }
.utility-left, .utility-links { display: flex; align-items: center; gap: 22px; }
.utility-left span { display: inline-flex; align-items: center; gap: 8px; }
.utility-links a { transition: color .2s ease; }
.utility-links a:hover { color: var(--signal); }
.status-dot { width: 8px; height: 8px; background: var(--signal); border-radius: 50%; box-shadow: 0 0 0 5px rgba(217, 255, 67, .13); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: var(--white);
  background: rgba(7, 21, 34, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  backdrop-filter: blur(18px);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(7, 21, 34, .97); box-shadow: 0 14px 45px rgba(0, 0, 0, .18); }
.nav { display: flex; align-items: center; min-height: var(--header); gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 44px; height: 44px; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: "Space Grotesk", sans-serif; font-size: .96rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 5px; color: rgba(255, 255, 255, .56); font-size: .67rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; justify-content: center; gap: 28px; margin-left: auto; }
.nav-links a { position: relative; color: rgba(255, 255, 255, .75); font-size: .92rem; font-weight: 650; }
.nav-links a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--signal); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; margin-left: auto; color: var(--white); background: rgba(255, 255, 255, .08); border: 1px solid var(--line-dark); border-radius: 12px; cursor: pointer; }

.hero {
  position: relative;
  min-height: calc(100svh - 116px);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
.hero::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -320px;
  left: 28%;
  background: radial-gradient(circle, rgba(84, 180, 255, .18), transparent 68%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(40px, 7vw, 100px); min-height: calc(100svh - 116px); padding-block: 72px; }
.hero-copy { position: relative; z-index: 3; }
.hero-kicker { color: rgba(255, 255, 255, .78); }
.hero-title { max-width: 760px; margin: 0 0 28px; }
.hero-title .accent { display: inline-block; color: var(--signal); }
.hero-lead { max-width: 680px; margin-bottom: 34px; color: rgba(255, 255, 255, .7); font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 38px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; list-style: none; }
.hero-chips li { display: inline-flex; align-items: center; gap: 9px; padding: 10px 13px; color: rgba(255, 255, 255, .74); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); border-radius: 999px; font-size: .82rem; font-weight: 650; }
.hero-chips i { color: var(--signal); }

.hero-visual { position: relative; min-height: 650px; }
.hero-image { position: absolute; inset: 0 0 0 4%; overflow: hidden; border-radius: 48px 48px 48px 150px; box-shadow: var(--shadow-lg); }
.hero-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 21, 34, .02), rgba(7, 21, 34, .72)); }
.hero-image img { width: 100%; height: 112%; object-fit: cover; object-position: 54% 50%; }
.route-card {
  position: absolute;
  z-index: 4;
  right: -16px;
  bottom: 34px;
  width: min(390px, 90%);
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 24px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .3);
  backdrop-filter: blur(14px);
}
.route-card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.route-card-top span { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.route-live { display: inline-flex; align-items: center; gap: 7px; color: #13724d; }
.route-live::before { content: ""; width: 8px; height: 8px; background: #31c883; border-radius: 50%; box-shadow: 0 0 0 5px rgba(49, 200, 131, .15); }
.route-points { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; }
.route-point { display: grid; gap: 3px; }
.route-point:last-child { text-align: right; }
.route-point small { color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; }
.route-point strong { font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; }
.route-arrow { color: var(--red); font-size: 1.1rem; }
.route-svg { width: 100%; height: 70px; margin-top: 10px; overflow: visible; }
.route-line-bg { fill: none; stroke: #dfe4e6; stroke-width: 4; stroke-linecap: round; stroke-dasharray: 8 10; }
.route-line-progress { fill: none; stroke: var(--red); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.route-node { fill: var(--white); stroke: var(--ink); stroke-width: 3; }
.hero-badge { position: absolute; z-index: 5; top: 36px; left: -32px; display: grid; place-items: center; width: 128px; height: 128px; color: var(--ink); background: var(--signal); border-radius: 50%; transform: rotate(-10deg); box-shadow: 0 18px 40px rgba(0,0,0,.22); text-align: center; }
.hero-badge span { max-width: 86px; font-family: "Space Grotesk", sans-serif; font-size: .74rem; font-weight: 800; letter-spacing: .08em; line-height: 1.2; text-transform: uppercase; }
.hero-badge::after { content: "✦"; position: absolute; right: 14px; bottom: 11px; font-size: 1.15rem; }

.company-strip { color: var(--white); background: #04101a; border-top: 1px solid rgba(255, 255, 255, .08); }
.company-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.company-fact { min-height: 114px; padding: 24px 28px; border-right: 1px solid rgba(255, 255, 255, .1); }
.company-fact:first-child { border-left: 1px solid rgba(255, 255, 255, .1); }
.company-fact small { display: block; margin-bottom: 6px; color: rgba(255, 255, 255, .45); font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.company-fact strong { font-family: "Space Grotesk", sans-serif; font-size: clamp(1rem, 1.5vw, 1.25rem); letter-spacing: -.02em; }
.company-fact .copy-mini { margin-top: 10px; }
.copy-mini { display: inline-flex; align-items: center; gap: 7px; padding: 0; color: var(--signal); background: none; border: 0; font-size: .74rem; font-weight: 800; cursor: pointer; }

.ticker { overflow: hidden; color: var(--ink); background: var(--signal); border-block: 1px solid rgba(7, 21, 34, .15); }
.ticker-track { display: flex; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { display: inline-flex; align-items: center; gap: 28px; padding: 15px 14px; font-family: "Space Grotesk", sans-serif; font-size: .82rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.ticker-track i { font-size: .5rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transform-style: preserve-3d;
}
.service-card::after { content: attr(data-code); position: absolute; top: 22px; right: 24px; color: rgba(7, 21, 34, .08); font-family: "Space Grotesk", sans-serif; font-size: 4.2rem; font-weight: 700; line-height: 1; }
.service-card.featured { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); }
.service-card.featured::after { color: rgba(255, 255, 255, .08); }
.service-icon { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 62px; color: var(--ink); background: var(--signal); border-radius: 16px; font-size: 1.25rem; transform: translateZ(24px); }
.service-card h3 { position: relative; z-index: 2; margin-bottom: 14px; }
.service-card p { position: relative; z-index: 2; color: var(--muted); }
.service-card.featured p { color: rgba(255, 255, 255, .65); }
.text-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 12px; padding: 0; color: inherit; background: none; border: 0; font-size: .88rem; font-weight: 800; cursor: pointer; }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }
.service-card.featured .text-link { color: var(--signal); }

.editorial-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.editorial-media { position: relative; min-height: 650px; }
.editorial-media-main { position: absolute; inset: 0 12% 0 0; overflow: hidden; border-radius: 34px 90px 34px 34px; }
.editorial-media-main img { width: 100%; height: 100%; object-fit: cover; }
.editorial-media-small { position: absolute; right: 0; bottom: 44px; width: 48%; aspect-ratio: 1 / 1.2; padding: 9px; background: var(--white); border-radius: 26px; box-shadow: var(--shadow-md); transform: rotate(4deg); }
.editorial-media-small img { width: 100%; height: 100%; object-fit: cover; border-radius: 19px; }
.editorial-stamp { position: absolute; top: 36px; right: 0; display: grid; place-items: center; width: 120px; height: 120px; padding: 18px; background: var(--signal); border-radius: 50%; font-family: "Space Grotesk", sans-serif; font-size: .72rem; font-weight: 800; line-height: 1.15; text-align: center; text-transform: uppercase; }
.editorial-copy h2 { margin-bottom: 26px; }
.editorial-copy > p { max-width: 620px; color: var(--muted); font-size: 1.07rem; }
.check-list { display: grid; gap: 0; margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.check-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.check-list i { color: var(--red); margin-top: 5px; }
.check-list strong { display: block; margin-bottom: 3px; font-family: "Space Grotesk", sans-serif; }
.check-list span { color: var(--muted); font-size: .9rem; }

#loads { overflow: hidden; }
.loads-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.loads-toolbar p { max-width: 660px; margin: 0; color: rgba(255, 255, 255, .62); }
.slider-controls { display: flex; gap: 9px; }
.slider-btn { display: grid; place-items: center; width: 46px; height: 46px; color: var(--white); background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; cursor: pointer; transition: .2s ease; }
.slider-btn:hover { color: var(--ink); background: var(--signal); border-color: var(--signal); }
.loads-swiper { overflow: visible; }
.load-card { position: relative; min-height: 430px; background: var(--white); border-radius: 24px; overflow: hidden; }
.load-card-image { height: 210px; overflow: hidden; }
.load-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.load-card:hover .load-card-image img { transform: scale(1.06); }
.load-card-body { padding: 24px; color: var(--ink); }
.load-card-kicker { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.load-card h3 { margin-bottom: 10px; }
.load-card p { color: var(--muted); font-size: .92rem; }
.load-card .text-link { margin-top: 6px; }
.swiper-pagination { position: static !important; margin-top: 30px; }
.swiper-pagination-bullet { width: 9px; height: 9px; background: rgba(255, 255, 255, .45); opacity: 1; }
.swiper-pagination-bullet-active { width: 30px; background: var(--signal); border-radius: 10px; }

.process-wrap { position: relative; }
.process-line { position: absolute; top: 43px; right: 12%; left: 12%; height: 2px; background: rgba(7, 21, 34, .13); }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-step { position: relative; padding-top: 105px; }
.step-no { position: absolute; top: 0; left: 0; display: grid; place-items: center; width: 86px; height: 86px; color: var(--white); background: var(--ink); border: 10px solid var(--paper); border-radius: 50%; font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; font-weight: 800; box-shadow: 0 0 0 1px var(--line); }
.process-step:nth-child(2) .step-no, .process-step:nth-child(4) .step-no { color: var(--ink); background: var(--signal); }
.process-step h3 { margin-bottom: 12px; font-size: 1.3rem; }
.process-step p { color: var(--muted); font-size: .92rem; }

.company-panel { position: relative; color: var(--white); background: var(--ink-2); border-radius: 34px; overflow: hidden; }
.company-panel::before { content: ""; position: absolute; width: 500px; height: 500px; top: -280px; right: -100px; background: radial-gradient(circle, rgba(84, 180, 255, .24), transparent 68%); }
.company-panel-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1.2fr; gap: 70px; padding: clamp(32px, 6vw, 76px); }
.company-panel h2 { margin-bottom: 24px; }
.company-panel-copy p { max-width: 550px; color: rgba(255, 255, 255, .65); }
.company-record { display: grid; grid-template-columns: repeat(2, 1fr); align-self: start; border: 1px solid var(--line-dark); border-radius: 22px; overflow: hidden; }
.record-item { min-height: 126px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.record-item:nth-child(2n) { border-right: 0; }
.record-item:nth-last-child(-n+2) { border-bottom: 0; }
.record-item small { display: block; margin-bottom: 9px; color: rgba(255, 255, 255, .45); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.record-item strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; line-height: 1.25; }
.record-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; color: var(--signal); font-weight: 800; }

.area-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: stretch; gap: 34px; }
.area-copy { padding: 20px 30px 20px 0; }
.area-copy h2 { margin-bottom: 24px; }
.area-copy > p { max-width: 520px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0 0; padding: 0; list-style: none; }
.area-tags li { padding: 9px 12px; color: var(--ink); background: var(--paper-2); border-radius: 999px; font-size: .78rem; font-weight: 750; }
.map-shell { position: relative; min-height: 520px; background: #dfe4dc; border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-sm); }
.map-shell iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: saturate(.75) contrast(1.05); }
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; padding: 34px; background: radial-gradient(circle at 20% 10%, rgba(217,255,67,.34), transparent 35%), #dfe4dc; }
.map-placeholder::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(#60706b 1px, transparent 1px), linear-gradient(90deg, #60706b 1px, transparent 1px); background-size: 38px 38px; }
.map-placeholder-inner { position: relative; max-width: 440px; padding: 34px; background: rgba(255,255,255,.88); border: 1px solid rgba(255,255,255,.8); border-radius: 24px; box-shadow: var(--shadow-md); text-align: center; backdrop-filter: blur(12px); }
.map-placeholder i { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 20px; color: var(--white); background: var(--red); border-radius: 20px; font-size: 1.3rem; }
.map-placeholder h3 { margin-bottom: 12px; }
.map-placeholder p { margin-bottom: 22px; color: var(--muted); font-size: .9rem; }

.faq-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(45px, 9vw, 120px); }
.faq-intro { position: sticky; top: 120px; align-self: start; }
.faq-intro h2 { margin-bottom: 24px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; grid-template-columns: 1fr auto; align-items: center; width: 100%; padding: 25px 0; background: none; border: 0; text-align: left; cursor: pointer; }
.faq-question span:first-child { padding-right: 24px; font-family: "Space Grotesk", sans-serif; font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
.faq-plus { position: relative; display: grid; place-items: center; width: 34px; height: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 50%; font-size: 1.15rem; transition: transform .28s var(--ease), background .2s ease; }
.faq-item.open .faq-plus { color: var(--ink); background: var(--signal); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 780px; margin: 0 50px 0 0; padding: 0 0 25px; color: var(--muted); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.contact-section { overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 720px; height: 720px; right: -300px; bottom: -340px; background: radial-gradient(circle, rgba(217,255,67,.16), transparent 68%); }
.contact-grid { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy h2 { margin-bottom: 24px; }
.contact-copy > p { max-width: 540px; color: rgba(255, 255, 255, .65); font-size: 1.02rem; }
.contact-details { display: grid; gap: 12px; margin-top: 38px; }
.contact-detail { display: grid; grid-template-columns: 44px 1fr; align-items: start; gap: 14px; padding: 17px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; }
.contact-detail > i { display: grid; place-items: center; width: 44px; height: 44px; color: var(--ink); background: var(--signal); border-radius: 13px; }
.contact-detail strong { display: block; margin-bottom: 2px; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-detail span, .contact-detail a { color: rgba(255,255,255,.62); font-size: .9rem; }

.form-panel { padding: clamp(25px, 4vw, 42px); color: var(--ink); background: var(--white); border-radius: 28px; box-shadow: 0 35px 90px rgba(0, 0, 0, .25); }
.form-panel h3 { margin-bottom: 8px; font-size: 1.75rem; }
.form-panel > p { margin-bottom: 28px; color: var(--muted); font-size: .9rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .76rem; font-weight: 800; letter-spacing: .035em; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #f7f8f5;
  border: 1px solid #d9dedb;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 126px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #aeb8b3; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: var(--white); border-color: var(--ink); box-shadow: 0 0 0 4px rgba(84,180,255,.18); }
.form-consent { display: grid; grid-template-columns: 18px 1fr; gap: 11px; margin: 22px 0; color: var(--muted); font-size: .78rem; }
.form-consent input { width: 18px; height: 18px; accent-color: var(--ink); }
.form-consent a { color: var(--ink); text-decoration: underline; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: .84rem; }
.form-status.show { display: block; }
.form-status.loading { color: #1a5477; background: #e8f5fd; }
.form-status.success { color: #155d3e; background: #e6f7ee; }
.form-status.error { color: #8c2530; background: #fdebed; }

.site-footer { color: rgba(255,255,255,.68); background: #030d15; border-top: 1px solid rgba(255,255,255,.08); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, .7fr); gap: 54px; padding: 72px 0 54px; }
.footer-brand p { max-width: 430px; margin-top: 20px; color: rgba(255,255,255,.47); font-size: .9rem; }
.footer-title { margin-bottom: 18px; color: var(--white); font-family: "Space Grotesk", sans-serif; font-size: .78rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; font-size: .86rem; }
.footer-links a, .footer-links button { width: max-content; max-width: 100%; padding: 0; color: rgba(255,255,255,.56); background: none; border: 0; text-align: left; cursor: pointer; transition: color .2s ease; }
.footer-links a:hover, .footer-links button:hover { color: var(--signal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.08); font-size: .74rem; }

.modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 22px; background: rgba(2, 10, 17, .8); opacity: 0; backdrop-filter: blur(12px); transition: opacity .24s ease; overflow-y: auto; }
.modal.open { opacity: 1; }
.modal-dialog { width: min(100%, 780px); max-height: calc(100svh - 44px); padding: clamp(24px, 4vw, 40px); background: var(--paper); border: 1px solid rgba(255,255,255,.16); border-radius: 28px; box-shadow: 0 40px 120px rgba(0,0,0,.5); transform: translateY(18px) scale(.985); transition: transform .28s var(--ease); overflow-y: auto; }
.modal.open .modal-dialog { transform: none; }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.modal-head h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); }
.modal-close { flex: 0 0 auto; display: grid; place-items: center; width: 46px; height: 46px; background: var(--white); border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.modal .form-panel { padding: 0; background: transparent; box-shadow: none; }

.cookie-banner { position: fixed; z-index: 900; right: 18px; bottom: 18px; left: 18px; display: none; }
.cookie-banner.show { display: block; animation: cookieIn .45s var(--ease) both; }
@keyframes cookieIn { from { opacity: 0; transform: translateY(25px); } }
.cookie-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; width: min(100%, 1120px); margin: auto; padding: 22px; color: var(--white); background: rgba(7,21,34,.97); border: 1px solid rgba(255,255,255,.12); border-radius: 20px; box-shadow: 0 24px 80px rgba(0,0,0,.38); backdrop-filter: blur(18px); }
.cookie-inner h2 { margin-bottom: 5px; font-size: 1.15rem; letter-spacing: -.02em; }
.cookie-inner p { margin: 0; color: rgba(255,255,255,.6); font-size: .8rem; }
.cookie-inner a { text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions .btn { min-height: 42px; padding-inline: 16px; font-size: .78rem; }
.cookie-settings-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 25px; padding: 20px 0; border-top: 1px solid var(--line); }
.cookie-settings-row strong { font-family: "Space Grotesk", sans-serif; }
.cookie-settings-row p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }
.switch input { position: absolute; opacity: 0; pointer-events: none; }
.switch span { position: relative; display: block; width: 52px; height: 30px; background: #c9cecb; border-radius: 999px; cursor: pointer; transition: background .2s ease; }
.switch span::after { content: ""; position: absolute; top: 4px; left: 4px; width: 22px; height: 22px; background: var(--white); border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.2); transition: transform .22s var(--ease); }
.switch input:checked + span { background: var(--ink); }
.switch input:checked + span::after { transform: translateX(22px); }
.switch input:disabled + span { opacity: .55; cursor: not-allowed; }

/* Legal and utility pages */
.page-hero { position: relative; padding: 100px 0 76px; color: var(--white); background: var(--ink); overflow: hidden; }
.page-hero::after { content: ""; position: absolute; width: 580px; height: 580px; top: -320px; right: -120px; background: radial-gradient(circle, rgba(217,255,67,.2), transparent 68%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 960px; margin-bottom: 24px; font-size: clamp(3rem, 7vw, 6.3rem); }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 800px); justify-content: center; gap: 80px; }
.legal-toc { position: sticky; top: 112px; align-self: start; padding: 22px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.legal-toc strong { display: block; margin-bottom: 13px; font-family: "Space Grotesk", sans-serif; }
.legal-toc a { display: block; padding: 7px 0; color: var(--muted); font-size: .84rem; }
.legal-toc a:hover { color: var(--ink); }
.legal-content section { padding: 0 0 34px; margin-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border: 0; }
.legal-content h2 { margin-bottom: 18px; font-size: clamp(1.65rem, 3vw, 2.5rem); }
.legal-content h3 { margin-top: 28px; margin-bottom: 12px; font-size: 1.15rem; }
.legal-content p, .legal-content li { color: #46525c; }
.legal-content ul, .legal-content ol { padding-left: 22px; }
.legal-note { padding: 18px 20px; background: #e9f3f8; border-left: 4px solid var(--blue); border-radius: 0 12px 12px 0; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.legal-meta span { padding: 8px 11px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; font-size: .74rem; font-weight: 700; }

.utility-page { min-height: calc(100svh - 116px); display: grid; place-items: center; padding: 80px 0; color: var(--white); background: var(--ink); text-align: center; }
.utility-card { width: min(calc(100% - 40px), 760px); padding: clamp(32px, 7vw, 72px); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 32px; }
.utility-code { display: inline-grid; place-items: center; width: 90px; height: 90px; margin-bottom: 26px; color: var(--ink); background: var(--signal); border-radius: 24px; font-family: "Space Grotesk", sans-serif; font-size: 1.4rem; font-weight: 800; transform: rotate(-5deg); }
.utility-card h1 { margin-bottom: 20px; font-size: clamp(2.7rem, 7vw, 5.6rem); }
.utility-card p { max-width: 570px; margin: 0 auto 28px; color: rgba(255,255,255,.65); }

.js [data-reveal] { opacity: 0; }
[data-reveal].revealed { opacity: 1; }

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

@media (max-width: 1080px) {
  .nav .btn-sm { margin-left: auto; }
  .nav-toggle { display: grid; }
  .nav-links { position: absolute; top: calc(100% + 1px); right: 20px; left: 20px; display: grid; gap: 0; padding: 10px; margin: 0; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); opacity: 0; transform: translateY(-8px); pointer-events: none; transition: .22s var(--ease); }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 13px 14px; color: var(--ink); border-radius: 10px; }
  .nav-links a:hover { color: var(--ink); background: var(--paper); }
  .nav-links a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 82px; }
  .hero-copy { max-width: 860px; }
  .hero-visual { min-height: 620px; }
  .hero-image { left: 0; }
  .company-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .company-fact:nth-child(2) { border-right: 0; }
  .company-fact:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.1); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-media { min-height: 620px; }
  .company-panel-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1.3fr repeat(2, 1fr); }
  .footer-top > div:last-child { grid-column: 2; }
}

@media (max-width: 820px) {
  :root { --header: 70px; }
  .section { padding: 82px 0; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 42px; }
  .utility-links { display: none; }
  .hero { min-height: auto; }
  .hero-grid { min-height: auto; padding: 70px 0 78px; }
  .hero-visual { min-height: 520px; }
  .hero-image { border-radius: 28px 28px 28px 90px; }
  .hero-badge { top: 22px; left: -8px; width: 105px; height: 105px; }
  .route-card { right: 12px; bottom: 18px; }
  .process-line { display: none; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .area-grid, .faq-wrap, .contact-grid { grid-template-columns: 1fr; }
  .faq-intro, .contact-copy { position: static; }
  .area-copy { padding-right: 0; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-top > div:last-child { grid-column: auto; }
  .legal-layout { grid-template-columns: 1fr; gap: 38px; }
  .legal-toc { position: static; }
  .cookie-inner { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .utility-left span:last-child { display: none; }
  .nav { gap: 10px; }
  .nav .btn-sm { display: none; }
  .brand img { width: 40px; height: 40px; }
  .hero-grid { padding-top: 56px; }
  .hero-title { font-size: clamp(3.25rem, 16vw, 5rem); }
  .hero-actions .btn { width: 100%; }
  .hero-chips { display: grid; grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; margin-top: 5px; }
  .hero-image { border-radius: 22px 22px 22px 60px; }
  .hero-badge { display: none; }
  .route-card { right: 10px; left: 10px; width: auto; padding: 18px; }
  .route-svg { height: 54px; }
  .company-strip-grid { grid-template-columns: 1fr; }
  .company-fact, .company-fact:first-child { border-right: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 310px; }
  .editorial-media { min-height: 470px; }
  .editorial-media-main { right: 4%; border-radius: 24px 60px 24px 24px; }
  .editorial-media-small { width: 44%; bottom: 20px; }
  .editorial-stamp { width: 92px; height: 92px; top: 18px; font-size: .6rem; }
  .loads-toolbar { align-items: flex-end; }
  .loads-toolbar p { display: none; }
  .process-grid { grid-template-columns: 1fr; gap: 8px; }
  .process-step { min-height: 125px; padding: 6px 0 24px 108px; }
  .company-panel-grid { padding: 28px; }
  .company-record { grid-template-columns: 1fr; }
  .record-item, .record-item:nth-child(2n), .record-item:nth-last-child(-n+2) { border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .record-item:last-child { border-bottom: 0; }
  .map-shell, .map-shell iframe { min-height: 420px; }
  .map-placeholder { padding: 14px; }
  .map-placeholder-inner { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cookie-banner { right: 10px; bottom: 10px; left: 10px; }
  .cookie-actions .btn { flex: 1; }
  .modal { padding: 10px; }
  .modal-dialog { max-height: calc(100svh - 20px); border-radius: 20px; }
  .page-hero { padding: 72px 0 58px; }
}
