@font-face {
    font-family: "Zona";
    src: url("../fonts/ZonaPro-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zona";
    src: url("../fonts/ZonaPro-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zona";
    src: url("../fonts/ZonaPro-Black.woff2") format("woff2");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --ink: #0a0d0f;
    --ink-soft: #11171b;
    --paper: #f1efe9;
    --paper-2: #e7e4dc;
    --white: #fff;
    --blue: #1264ff;
    --blue-bright: #2c7bff;
    --blue-soft: #a5c8ff;
    --muted: #6b7175;
    --line: rgba(10, 13, 15, .18);
    --line-light: rgba(255, 255, 255, .16);
    --success: #43ec9b;
    --header-h: 82px;
    --shell: min(1480px, calc(100% - 64px));
    --radius: 3px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Zona", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}
body.menu-open { overflow: hidden; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
h1, h2, h3, p, dl, dd, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
::selection { color: var(--white); background: var(--blue); }
:focus-visible { outline: 3px solid var(--blue-bright); outline-offset: 4px; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0, 0, 0, 0); overflow: hidden; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 12px 16px; color: var(--white); background: var(--blue); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    background: rgba(241, 239, 233, .94);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: background-color .35s ease, border-color .35s ease, color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled, .site-header.is-menu-open {
    background: rgba(241, 239, 233, .985);
    border-bottom-color: var(--line);
    box-shadow: 0 12px 35px rgba(10, 13, 15, .07);
    backdrop-filter: blur(18px);
}
.site-header__inner { min-height: var(--header-h); display: flex; align-items: center; gap: 44px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 10px; }
.brand img { width: 49px; height: auto; }
.brand__text { display: grid; font-size: 11px; font-weight: 900; line-height: .92; letter-spacing: -.03em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 37px); margin-left: auto; }
.desktop-nav a { position: relative; padding: 28px 0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 22px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-header__actions { display: flex; align-items: center; gap: 12px; }
.language { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 900; }
.language span { color: var(--blue); }
.language a { color: var(--muted); }
.language a:hover { color: var(--ink); }
.icon-link { display: grid; place-items: center; width: 44px; height: 44px; }
.icon-link svg { width: 20px; height: 20px; }
.menu-toggle { display: none; position: relative; width: 46px; height: 46px; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
.menu-toggle svg { position: absolute; inset: 12px; width: 22px; height: 22px; transition: opacity .2s ease, transform .3s var(--ease); }
.menu-toggle__close { opacity: 0; transform: rotate(-90deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__open { opacity: 0; transform: rotate(90deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__close { opacity: 1; transform: rotate(0); }
.mobile-menu { display: none; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 13px 21px;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .3s var(--ease), color .3s ease, background-color .3s ease, box-shadow .3s ease;
}
.button svg { width: 19px; height: 19px; transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover svg { transform: translateX(4px); }
.button--blue { color: var(--white); border-color: var(--blue); background: var(--blue); box-shadow: 0 0 0 0 rgba(18, 100, 255, .25); }
.button--blue:hover { color: var(--white); background: #0756ed; box-shadow: 0 10px 28px rgba(18, 100, 255, .24); }
.button--ghost { color: var(--ink); border-color: rgba(10, 13, 15, .42); background: rgba(241, 239, 233, .45); backdrop-filter: blur(8px); }
.button--ghost:hover { color: var(--white); border-color: var(--ink); background: var(--ink); }
.button--header { min-height: 44px; padding-inline: 17px; }

.hero { position: relative; min-height: min(900px, 100svh); display: grid; align-items: center; isolation: isolate; overflow: hidden; background: #d8d7d2; }
.hero__media, .hero__media img { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: center; }
.hero__wash { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(241,239,233,.25) 0%, rgba(241,239,233,.04) 43%, rgba(0,0,0,.08) 100%); }
.hero__wash::after { content: ""; position: absolute; inset: 0; opacity: .18; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }
.hero__inner { min-height: inherit; display: flex; align-items: center; padding-top: calc(var(--header-h) + 36px); padding-bottom: 90px; }
.hero__content { width: min(660px, 47vw); }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 26px; font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.eyebrow span { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); }
.eyebrow span::before { content: ""; width: 7px; height: 7px; background: currentColor; box-shadow: 0 0 12px currentColor; }
.eyebrow--light { color: rgba(255,255,255,.62); }
.hero h1, .section-heading h2, .route-section h2, .case-study h2, .seo-hub h2, .final-cta h2 {
    font-weight: 900;
    line-height: .84;
    text-transform: uppercase;
    letter-spacing: -.065em;
}
.hero h1 { max-width: 650px; font-size: clamp(66px, 6.15vw, 118px); }
.hero h1 > span { display: block; white-space: nowrap; }
.hero h1 em, .final-cta h2 em { color: var(--blue); font-style: normal; }
.hero__lead { max-width: 470px; margin-top: 30px; font-size: clamp(16px, 1.25vw, 20px); line-height: 1.45; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__note { display: flex; align-items: center; gap: 10px; margin-top: 27px; font-size: 11px; font-weight: 700; text-transform: uppercase; }
.hero__note span { width: 7px; height: 7px; border: 2px solid var(--blue); border-radius: 50%; box-shadow: 0 0 12px var(--blue); }
.hero__scroll { position: absolute; bottom: 24px; left: 50%; display: flex; align-items: center; gap: 12px; font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; transform: translateX(-50%) rotate(-90deg); transform-origin: center; }
.hero__scroll i { display: block; width: 46px; height: 1px; background: var(--ink); }
.hero__route { position: absolute; right: 8%; bottom: 16%; z-index: -1; width: 9px; height: 9px; }
.hero__route i { position: absolute; inset: 0; border: 1px solid var(--blue); border-radius: 50%; animation: route-pulse 2.6s infinite; }
.hero__route i:nth-child(2) { animation-delay: .8s; }.hero__route i:nth-child(3) { animation-delay: 1.6s; }
@keyframes route-pulse { 0% { opacity: .8; transform: scale(1); } 85%,100% { opacity: 0; transform: scale(9); } }

.metrics { color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.1); }
.metrics__inner { min-height: 132px; display: grid; grid-template-columns: 1fr minmax(650px, 960px) 1fr; align-items: stretch; }
.metrics__signal { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.metrics__signal span, .site-footer__bottom i { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.metrics__signal--right { justify-content: flex-end; }
.metrics__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-inline: 1px solid var(--line-light); }
.metrics__grid div { display: grid; place-content: center; padding: 20px 30px; text-align: center; border-right: 1px solid var(--line-light); }
.metrics__grid div:last-child { border-right: 0; }
.metrics dt { font-size: clamp(31px, 3vw, 54px); font-weight: 900; line-height: 1; letter-spacing: -.05em; }
.metrics dd { margin-top: 7px; color: rgba(255,255,255,.56); font-size: 10px; font-weight: 700; text-transform: uppercase; }

.section-dark { position: relative; color: var(--white); background: var(--ink); }
.directions { padding: clamp(90px, 10vw, 170px) 0 clamp(100px, 11vw, 190px); overflow: hidden; }
.directions::before, .process::before, .trust::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent); }
.section-heading { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(400px, 1.45fr) minmax(260px, .55fr); align-items: end; gap: 90px; margin-bottom: 66px; }
.section-heading h2 { font-size: clamp(55px, 6.4vw, 105px); }
.section-heading > p { max-width: 510px; padding-bottom: 8px; color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.65; }
.section-heading--dark > p { color: var(--muted); }
.section-heading--compact { margin-bottom: 70px; }
.section-heading--compact h2 { font-size: clamp(50px, 5vw, 88px); }
.route-rail { position: absolute; top: 0; left: 50%; width: min(26vw, 420px); height: 100%; transform: translateX(-10%); border-inline: 1px solid rgba(255,255,255,.08); background: linear-gradient(90deg, transparent 49.7%, rgba(255,255,255,.12) 49.8%, rgba(255,255,255,.12) 50.2%, transparent 50.3%); }
.route-rail span { position: absolute; top: 4%; left: 50%; width: 4px; height: 92%; transform: translateX(-50%); background: linear-gradient(to bottom, transparent, var(--blue) 12%, var(--blue) 88%, transparent); box-shadow: 0 0 18px rgba(18,100,255,.75); }
.direction-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.direction-card { position: relative; min-height: 420px; display: flex; flex-direction: column; padding: 26px; overflow: hidden; border: 1px solid rgba(255,255,255,.25); background: linear-gradient(155deg, rgba(24,38,46,.96), rgba(7,10,12,.92)); transition: border-color .35s ease, transform .45s var(--ease), background .35s ease; }
.direction-card::before { content: ""; position: absolute; right: -30%; bottom: -37%; width: 110%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.11); border-radius: 48% 52% 47% 53%; transform: rotate(24deg); transition: border-color .35s ease, transform .7s var(--ease); }
.direction-card::after { content: ""; position: absolute; right: -30%; bottom: -37%; width: 110%; aspect-ratio: 1; border: 4px solid transparent; border-top-color: var(--blue); border-radius: 48% 52% 47% 53%; filter: drop-shadow(0 0 7px var(--blue)); transform: rotate(24deg); opacity: .7; }
.direction-card:hover { border-color: var(--blue); transform: translateY(-9px); background: linear-gradient(155deg, rgba(20,53,74,.98), rgba(7,10,12,.94)); }
.direction-card:hover::before { border-color: rgba(44,123,255,.55); transform: rotate(12deg) scale(1.04); }
.direction-card__code { align-self: flex-start; padding: 5px 7px; color: var(--blue-soft); border: 1px solid var(--blue); border-radius: 2px; background: rgba(18,100,255,.12); font-size: 9px; font-weight: 900; letter-spacing: .08em; }
.direction-card__line { width: 1px; height: 76px; margin: 24px 0 auto 7px; background: linear-gradient(var(--blue), transparent); box-shadow: 0 0 9px var(--blue); }
.direction-card h3 { position: relative; z-index: 1; font-size: clamp(28px, 2.7vw, 46px); font-weight: 900; line-height: .92; text-transform: uppercase; letter-spacing: -.045em; }
.direction-card p { position: relative; z-index: 1; max-width: 270px; margin-top: 14px; color: rgba(255,255,255,.62); font-size: 14px; }
.direction-card__meta { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; margin-top: 27px; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.15); font-size: 10px; font-weight: 900; text-transform: uppercase; }
.direction-card__meta svg { width: 21px; height: 21px; transform: rotate(45deg); }

.route-section { position: relative; padding: clamp(100px, 11vw, 190px) 0; overflow: hidden; background: var(--paper); }
.route-section::before { content: ""; position: absolute; top: 0; left: 50%; width: 5px; height: 100%; background: var(--blue); box-shadow: 0 0 18px rgba(18,100,255,.6); }
.route-section__grid { position: relative; display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(70px, 9vw, 160px); }
.route-section h2 { font-size: clamp(58px, 6.7vw, 112px); }
.route-section__copy > p:not(.eyebrow) { max-width: 540px; margin-top: 27px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.compact-proof { display: grid; gap: 12px; margin-top: 34px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.compact-proof li { display: flex; align-items: center; gap: 10px; }
.compact-proof svg { width: 18px; height: 18px; color: var(--blue); }
.route-section__gate { position: absolute; top: 50%; left: 50%; z-index: 2; width: 67px; height: 96px; display: grid; place-content: start center; padding-top: 13px; color: #f4a942; border: 1px solid #50575a; background: linear-gradient(90deg, #24282a, #61686b 50%, #1a1d1f); box-shadow: 0 18px 30px rgba(0,0,0,.24); transform: translate(-47%, -50%); font-family: monospace; font-size: 9px; }
.route-section__gate::after { content: "↓"; margin-top: 23px; color: var(--success); font-size: 20px; text-shadow: 0 0 9px var(--success); }
.route-form { position: relative; z-index: 3; padding: clamp(26px, 3vw, 48px); border: 1px solid var(--ink); background: rgba(249,248,244,.95); box-shadow: 18px 24px 0 rgba(10,13,15,.06), 0 28px 80px rgba(10,13,15,.15); }
.route-form__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 34px; padding-bottom: 18px; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.route-form__status { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.route-form__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 9px var(--success); }
.route-form__fields { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
.route-form__fields label:first-child, .route-form__fields label:nth-child(2) { grid-column: span 1; }
.route-form label, .quick-form label, .quote-dialog label { display: grid; gap: 8px; }
.route-form label > span, .quick-form label > span, .quote-dialog label > span { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.route-form input, .route-form select, .quick-form input, .quote-dialog input {
    width: 100%;
    min-height: 53px;
    padding: 13px 15px;
    color: var(--ink);
    border: 1px solid rgba(10,13,15,.32);
    border-radius: 0;
    background: rgba(255,255,255,.45);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.route-form input:focus, .route-form select:focus, .quick-form input:focus, .quote-dialog input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(18,100,255,.12); }
.route-form input[aria-invalid="true"], .route-form select[aria-invalid="true"] { border-color: #cf2f2f; }
.field-unit { position: relative; }
.field-unit b { position: absolute; top: 50%; right: 15px; color: var(--muted); transform: translateY(-50%); }
.field-unit input { padding-right: 37px; }
.route-form__submit { width: 100%; margin-top: 24px; }
.route-form__privacy { margin-top: 13px; color: var(--muted); font-size: 9px; text-align: center; }

.process { padding: clamp(100px, 10vw, 160px) 0; }
.process-line { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(5, 1fr); }
.process-line::before { content: ""; position: absolute; top: 58px; right: 10%; left: 10%; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,.2), var(--blue)); }
.process-line li { position: relative; padding: 0 clamp(15px, 2vw, 32px); text-align: center; }
.process-line li > span { color: var(--blue-soft); font-family: monospace; font-size: 10px; }
.process-line li i { position: relative; z-index: 1; width: 18px; height: 18px; display: block; margin: 29px auto 35px; border: 4px solid var(--ink); border-radius: 50%; background: var(--white); box-shadow: 0 0 0 1px rgba(255,255,255,.45); }
.process-line li:last-child i { background: var(--blue); box-shadow: 0 0 17px var(--blue), 0 0 0 1px var(--blue); }
.process-line h3 { font-size: 19px; font-weight: 900; text-transform: uppercase; }
.process-line p { max-width: 210px; margin: 10px auto 0; color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.6; }

.case-study { position: relative; padding: clamp(100px, 10vw, 170px) 0; color: var(--white); overflow: hidden; background: #0d1216; }
.case-study::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 55%, rgba(18,100,255,.13), transparent 35%), linear-gradient(130deg, transparent 55%, rgba(255,255,255,.025)); }
.case-study__grid { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: clamp(70px, 9vw, 150px); }
.case-study h2 { font-size: clamp(62px, 7vw, 118px); }
.case-data { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.case-data div { padding-right: 16px; border-right: 1px solid var(--line-light); }
.case-data div:last-child { border-right: 0; }
.case-data dt { font-size: 16px; font-weight: 900; text-transform: uppercase; }
.case-data dd { margin-top: 7px; color: rgba(255,255,255,.48); font-size: 9px; text-transform: uppercase; }
.case-study blockquote { max-width: 550px; margin-top: 42px; padding-left: 20px; color: rgba(255,255,255,.63); border-left: 2px solid var(--blue); font-size: 14px; line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 33px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.text-link svg { width: 20px; height: 20px; }
.case-map { position: relative; min-width: 0; }
.case-map svg { width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(0,0,0,.45)); }
.map-land { fill: #181f24; stroke: #56616a; stroke-width: 1; }
.map-grid { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 1; }
.map-route { fill: none; stroke: var(--blue-bright); stroke-width: 4; filter: url(#route-glow); stroke-dasharray: 1; stroke-dashoffset: 1; }
.map-route--glow { stroke-width: 13; opacity: .2; }
.is-visible .map-route { animation: draw-route 2.3s .25s var(--ease) forwards; }
@keyframes draw-route { to { stroke-dashoffset: 0; } }
.map-pin { fill: var(--white); stroke: var(--blue); stroke-width: 5; }
.case-map text { fill: var(--white); stroke: none; font-family: "Zona", sans-serif; font-size: 17px; font-weight: 900; }
.case-map__truck { position: absolute; left: 53%; top: 50%; width: 42px; height: 17px; color: var(--white); transform: rotate(-14deg); }
.case-map__truck span { position: absolute; inset: 1px 11px 4px 0; background: currentColor; }.case-map__truck i { position: absolute; right: 1px; bottom: 4px; width: 12px; height: 10px; background: currentColor; }.case-map__truck b::before, .case-map__truck b::after { content: ""; position: absolute; bottom: 0; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 7px var(--blue); }.case-map__truck b::before { left: 5px; }.case-map__truck b::after { right: 5px; }

.fleet { padding: clamp(100px, 10vw, 170px) 0; background: var(--paper); }
.fleet-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.fleet-card { position: relative; min-width: 0; padding: 28px 24px 31px; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); overflow: hidden; }
.fleet-card::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.fleet-card:hover::after { transform: scaleX(1); }
.fleet-card__index { display: block; color: var(--blue); font-family: monospace; font-size: 10px; }
.fleet-card img { width: 100%; height: 145px; margin: 24px 0 17px; object-fit: contain; filter: saturate(.7) contrast(1.05); transition: transform .45s var(--ease); }
.fleet-card:hover img { transform: translateX(8px); }
.fleet-card h3 { font-size: 25px; font-weight: 900; text-transform: uppercase; letter-spacing: -.04em; }
.fleet-card p { margin-top: 7px; font-size: 12px; font-weight: 700; }
.fleet-card > span:last-child { display: block; margin-top: 18px; padding-top: 15px; color: var(--muted); border-top: 1px solid var(--line); font-size: 9px; text-transform: uppercase; }

.trust { padding: clamp(100px, 10vw, 170px) 0; }
.trust-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-card { position: relative; min-height: 310px; padding: 28px; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.025); }
.trust-card > svg { width: 34px; height: 34px; color: var(--blue-bright); }
.trust-card > span { position: absolute; top: 28px; right: 28px; color: rgba(255,255,255,.3); font-family: monospace; font-size: 10px; }
.trust-card h3 { margin-top: 76px; font-size: 23px; font-weight: 900; line-height: 1.05; text-transform: uppercase; }
.trust-card p { margin-top: 17px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.65; }

.seo-hub { padding: clamp(90px, 9vw, 150px) 0; background: var(--paper-2); }
.seo-hub__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(70px, 10vw, 170px); }
.seo-hub h2 { max-width: 650px; font-size: clamp(51px, 5.3vw, 91px); }
.seo-hub__copy > p:last-child { max-width: 520px; margin-top: 29px; color: var(--muted); line-height: 1.7; }
.link-accordions { border-top: 1px solid var(--ink); }
.link-accordions details { border-bottom: 1px solid var(--ink); }
.link-accordions summary { min-height: 79px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; font-size: 18px; font-weight: 900; text-transform: uppercase; cursor: pointer; list-style: none; }
.link-accordions summary::-webkit-details-marker { display: none; }
.link-accordions summary::after { content: "+"; grid-column: 3; color: var(--blue); font-size: 27px; font-weight: 400; }
.link-accordions details[open] summary::after { content: "−"; }
.link-accordions summary span { color: var(--muted); font-family: monospace; font-size: 10px; }
.link-accordions details > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; padding: 0 0 27px; }
.link-accordions a { min-height: 44px; display: flex; align-items: center; color: #51575b; font-size: 13px; }
.link-accordions a::before { content: "↗"; width: 24px; color: var(--blue); opacity: 0; transform: translateX(-6px); transition: opacity .2s ease, transform .2s ease; }
.link-accordions a:hover { color: var(--ink); }.link-accordions a:hover::before { opacity: 1; transform: translateX(0); }

.final-cta { position: relative; min-height: 740px; display: grid; align-items: center; color: var(--white); overflow: hidden; isolation: isolate; background: var(--ink); }
.final-cta__media, .final-cta__media img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; }
.final-cta__media img { object-fit: cover; object-position: right center; filter: brightness(.37) saturate(.72) contrast(1.1); transform: scaleX(-1); }
.final-cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(3,5,6,.95) 0%, rgba(3,5,6,.75) 45%, rgba(3,5,6,.26) 100%); }
.final-cta__inner { display: grid; grid-template-columns: 1fr minmax(380px, 520px); align-items: center; gap: 90px; padding-block: 110px; }
.final-cta h2 { font-size: clamp(61px, 7vw, 120px); }
.final-cta__panel { padding: 34px; border: 1px solid rgba(255,255,255,.35); background: rgba(7,10,12,.68); backdrop-filter: blur(13px); }
.final-cta__panel > p { color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.65; }
.quick-form { display: grid; gap: 16px; margin-top: 27px; }
.quick-form input { color: var(--white); border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.quick-form input:focus { color: var(--white); background: rgba(255,255,255,.08); }
.quick-form input::placeholder { color: rgba(255,255,255,.42); }
.quick-form .button { margin-top: 5px; }
.final-cta__contacts { display: grid; gap: 6px; margin-top: 25px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); font-size: 12px; }

.site-footer { color: var(--white); background: #050708; }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 60px; padding-block: 72px; }
.brand--footer img { filter: invert(1); }.brand--footer .brand__text { color: var(--white); }
.site-footer__brand p { max-width: 340px; margin-top: 24px; color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-links h2 { margin-bottom: 10px; color: rgba(255,255,255,.4); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.72); font-size: 12px; }
.footer-links a:hover { color: var(--blue-soft); }
.site-footer__bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.12); font-size: 9px; text-transform: uppercase; }
.site-footer__bottom span:nth-child(2) { display: flex; align-items: center; gap: 8px; }
.mobile-dock { display: none; }

.quote-dialog { width: min(620px, calc(100% - 32px)); padding: 38px; color: var(--ink); border: 1px solid var(--ink); border-radius: 0; background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.quote-dialog::backdrop { background: rgba(4,7,9,.78); backdrop-filter: blur(5px); }
.quote-dialog__close { position: absolute; top: 15px; right: 15px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; background: transparent; cursor: pointer; }
.quote-dialog__close svg { width: 22px; height: 22px; }
.quote-dialog__signal { display: flex; align-items: center; gap: 9px; color: var(--blue); font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.quote-dialog__signal i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 9px var(--success); }
.quote-dialog h2 { max-width: 470px; margin-top: 22px; font-size: clamp(39px, 6vw, 64px); font-weight: 900; line-height: .9; text-transform: uppercase; letter-spacing: -.055em; }
.quote-dialog > p { margin-top: 22px; color: var(--muted); line-height: 1.6; }
.quote-dialog__route { padding: 14px; color: var(--ink) !important; border-left: 3px solid var(--blue); background: rgba(18,100,255,.08); font-weight: 900; }
.quote-dialog form { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-top: 25px; }
.quote-dialog form button { grid-column: 1 / -1; }
.quote-dialog small { display: block; margin-top: 14px; color: var(--muted); font-size: 9px; }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 200; max-width: 360px; padding: 16px 20px; color: var(--white); border-left: 4px solid var(--success); background: var(--ink); box-shadow: 0 15px 50px rgba(0,0,0,.3); font-size: 12px; visibility: hidden; opacity: 0; transform: translateY(180%); transition: transform .45s var(--ease), opacity .25s ease, visibility .45s; }
.toast.is-visible { visibility: visible; opacity: 1; transform: translateY(0); }

.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.direction-grid .reveal:nth-child(2), .fleet-grid .reveal:nth-child(2), .trust-grid .reveal:nth-child(2) { transition-delay: .08s; }
.direction-grid .reveal:nth-child(3), .fleet-grid .reveal:nth-child(3), .trust-grid .reveal:nth-child(3) { transition-delay: .16s; }
.direction-grid .reveal:nth-child(4), .fleet-grid .reveal:nth-child(4), .trust-grid .reveal:nth-child(4) { transition-delay: .24s; }
.process-line .reveal:nth-child(2) { transition-delay: .07s; }.process-line .reveal:nth-child(3) { transition-delay: .14s; }.process-line .reveal:nth-child(4) { transition-delay: .21s; }.process-line .reveal:nth-child(5) { transition-delay: .28s; }

@media (max-width: 1240px) {
    :root { --shell: min(1180px, calc(100% - 44px)); }
    .desktop-nav { gap: 17px; }
    .desktop-nav a { font-size: 10px; }
    .language { display: none; }
    .hero__content { width: 50vw; }
    .metrics__inner { grid-template-columns: minmax(90px, 1fr) minmax(620px, 850px) minmax(90px, 1fr); }
    .direction-card { min-height: 380px; padding: 22px; }
    .route-section__grid { gap: 100px; }
    .section-heading { gap: 60px; }
}

@media (max-width: 980px) {
    :root { --header-h: 72px; --shell: calc(100% - 36px); }
    .desktop-nav, .button--header { display: none; }
    .site-header__inner { gap: 16px; }
    .site-header__actions { margin-left: auto; }
    .language { display: flex; }
    .menu-toggle { display: block; }
    .mobile-menu { position: fixed; inset: var(--header-h) 0 0; display: grid; align-content: space-between; padding: 35px 18px 32px; color: var(--white); background: rgba(7,10,12,.98); visibility: hidden; opacity: 0; transform: translateY(-14px); transition: opacity .3s ease, transform .35s var(--ease), visibility .35s; }
    .mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
    .mobile-menu__links { border-top: 1px solid rgba(255,255,255,.2); }
    .mobile-menu__links a { min-height: 68px; display: flex; align-items: center; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 24px; font-weight: 900; text-transform: uppercase; }
    .mobile-menu__links span { color: var(--blue); font-family: monospace; font-size: 10px; }
    .mobile-menu__phone { font-size: 24px; font-weight: 900; }
    .hero { min-height: 820px; align-items: start; }
    .hero__media img { object-position: 65% center; }
    .hero__content { width: 53vw; }
    .metrics__inner { grid-template-columns: 1fr; }
    .metrics__signal { display: none; }
    .direction-grid, .fleet-grid, .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .direction-card { min-height: 390px; }
    .route-section__grid { grid-template-columns: 1fr; gap: 75px; }
    .route-section::before, .route-section__gate { display: none; }
    .route-section__copy { max-width: 650px; }
    .process-line { grid-template-columns: 1fr; gap: 0; padding-left: 34px; }
    .process-line::before { top: 14px; bottom: 30px; left: 8px; width: 1px; height: auto; background: linear-gradient(var(--blue), rgba(255,255,255,.2)); }
    .process-line li { min-height: 135px; display: grid; grid-template-columns: 56px 1fr; grid-template-rows: auto auto; column-gap: 15px; align-content: start; padding: 0 0 28px; text-align: left; }
    .process-line li > span { grid-column: 1; grid-row: 1 / 3; }
    .process-line li i { position: absolute; top: 5px; left: -34px; width: 15px; height: 15px; margin: 0; }
    .process-line h3 { grid-column: 2; grid-row: 1; }
    .process-line p { grid-column: 2; grid-row: 2; max-width: 440px; margin: 8px 0 0; }
    .case-study__grid, .seo-hub__grid { grid-template-columns: 1fr; }
    .case-map { max-width: 780px; }
    .fleet-grid { border-left: 1px solid var(--ink); }
    .final-cta__inner { grid-template-columns: 1fr 420px; gap: 45px; }
    .site-footer__grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
    .site-footer__grid address { grid-column: 2; }
}

@media (max-width: 700px) {
    :root { --shell: calc(100% - 28px); --header-h: 66px; }
    body { padding-bottom: 66px; }
    .site-header { background: rgba(241,239,233,.9); border-bottom: 1px solid rgba(10,13,15,.15); backdrop-filter: blur(15px); }
    .site-header__inner { min-height: var(--header-h); }
    .brand { gap: 7px; }.brand img { width: 42px; }.brand__text { font-size: 8px; }
    .site-header__actions { position: static; gap: 4px; }
    .language { position: fixed; top: 24px; right: 62px; z-index: 102; gap: 5px; margin-right: 0; font-size: 9px; }
    .icon-link { display: none; }
    .menu-toggle { position: fixed; top: 13px; right: 10px; z-index: 102; width: 40px; height: 40px; display: grid !important; background: rgba(241,239,233,.74); }.menu-toggle svg { inset: 10px; width: 20px; height: 20px; }
    .hero { min-height: 850px; align-items: start; background: #d7d6d2; }
    .hero__media, .hero__media img { height: 100%; }
    .hero__media img { object-position: center; }
    .hero__wash { background: linear-gradient(90deg, rgba(241,239,233,.68) 0, rgba(241,239,233,.3) 58%, rgba(241,239,233,.01) 100%), linear-gradient(180deg, rgba(241,239,233,.16) 0, rgba(241,239,233,.03) 58%, rgba(0,0,0,.13) 100%); }
    .hero__inner { align-items: start; padding-top: 105px; padding-bottom: 80px; }
    .hero__content { width: 100%; }
    .eyebrow { margin-bottom: 19px; font-size: 8px; }
    .hero h1 { max-width: 360px; font-size: clamp(40px, 10.7vw, 44px); line-height: .9; }
    .hero__lead { max-width: 320px; margin-top: 21px; padding: 9px 10px; font-size: 12px; line-height: 1.46; background: rgba(241,239,233,.74); backdrop-filter: blur(7px); }
    .hero__actions { width: min(320px, 100%); display: grid; gap: 8px; margin-top: 24px; }
    .hero__actions .button { width: 100%; }
    .button { min-height: 50px; }
    .hero__note { max-width: 310px; margin-top: 18px; font-size: 8px; line-height: 1.4; }
    .hero__scroll { display: none; }
    .hero__route { right: 16%; bottom: 20%; }
    .metrics__inner { width: 100%; }
    .metrics__grid { grid-template-columns: repeat(4, 1fr); border-inline: 0; }
    .metrics__grid div { min-width: 0; padding: 18px 5px; }
    .metrics dt { font-size: clamp(23px, 7.4vw, 32px); }
    .metrics dd { font-size: 7px; line-height: 1.25; }
    .directions, .route-section, .process, .case-study, .fleet, .trust, .seo-hub { padding-block: 82px; }
    .section-heading { grid-template-columns: minmax(0, 1fr); gap: 23px; margin-bottom: 38px; }
    .section-heading > * { min-width: 0; }
    .section-heading h2 { font-size: clamp(34px, 10vw, 54px); hyphens: none; overflow-wrap: break-word; }
    .section-heading > p { padding-bottom: 0; font-size: 13px; line-height: 1.55; }
    .route-rail { left: auto; right: 33px; width: 70px; transform: none; }
    .direction-grid { display: flex; width: calc(100% + 14px); gap: 10px; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: none; padding-right: 28px; }
    .direction-grid::-webkit-scrollbar { display: none; }
    .direction-card { flex: 0 0 min(82vw, 330px); min-height: 385px; scroll-snap-align: start; }
    .direction-card h3 { font-size: 36px; }
    .route-section__grid { gap: 44px; }
    .route-section h2 { font-size: clamp(51px, 14vw, 70px); }
    .route-section__copy > p:not(.eyebrow) { margin-top: 21px; font-size: 14px; line-height: 1.6; }
    .compact-proof { font-size: 9px; }
    .route-form { width: calc(100% + 8px); margin-left: -4px; padding: 20px 17px; box-shadow: 8px 10px 0 rgba(10,13,15,.07); }
    .route-form__head { margin-bottom: 23px; }
    .route-form__fields { grid-template-columns: 1fr; gap: 15px; }
    .route-form input, .route-form select { min-height: 50px; }
    .process-line { padding-left: 27px; }
    .process-line::before { left: 6px; }
    .process-line li { min-height: 122px; grid-template-columns: 40px 1fr; column-gap: 10px; }
    .process-line li i { left: -27px; }
    .process-line h3 { font-size: 17px; }
    .case-study__grid { gap: 54px; }
    .case-study h2 { font-size: clamp(53px, 15vw, 76px); }
    .case-data { gap: 9px; margin-top: 30px; }
    .case-data dt { font-size: 12px; }.case-data dd { font-size: 7px; }
    .case-study blockquote { margin-top: 30px; font-size: 12px; }
    .case-map { width: calc(100% + 28px); margin-left: -14px; }
    .case-map__truck { width: 32px; height: 13px; }
    .fleet-grid { display: flex; width: calc(100% + 14px); border: 0; overflow-x: auto; scroll-snap-type: inline mandatory; scrollbar-width: none; padding-right: 28px; }
    .fleet-grid::-webkit-scrollbar { display: none; }
    .fleet-card { flex: 0 0 min(78vw, 320px); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); scroll-snap-align: start; }
    .fleet-card img { height: 125px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-card { min-height: 230px; }.trust-card h3 { margin-top: 48px; }
    .seo-hub__grid { gap: 55px; }
    .seo-hub h2 { font-size: clamp(46px, 13.6vw, 65px); }
    .link-accordions summary { min-height: 68px; font-size: 14px; }
    .link-accordions details > div { grid-template-columns: 1fr; padding-bottom: 18px; }
    .final-cta { min-height: auto; }
    .final-cta__media img { object-position: 65% center; filter: brightness(.28) saturate(.6); transform: none; }
    .final-cta::after { background: linear-gradient(180deg, rgba(3,5,6,.7), rgba(3,5,6,.94)); }
    .final-cta__inner { grid-template-columns: 1fr; gap: 45px; padding-block: 83px; }
    .final-cta h2 { font-size: clamp(50px, 14.4vw, 72px); }
    .final-cta__panel { padding: 22px 17px; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 45px 25px; padding-block: 58px; }
    .site-footer__brand { grid-column: 1 / -1; }
    .site-footer__grid address { grid-column: 1 / -1; }
    .site-footer__bottom { min-height: 80px; gap: 15px; }.site-footer__bottom span:nth-child(2) { display: none; }
    .mobile-dock { position: fixed; right: 0; bottom: 0; left: 0; z-index: 150; height: 66px; display: grid; grid-template-columns: .9fr 1.1fr; padding: 7px; color: var(--ink); border-top: 1px solid rgba(10,13,15,.18); background: rgba(247,246,241,.94); backdrop-filter: blur(18px); }
    .mobile-dock a { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 9px; font-size: 10px; font-weight: 900; text-transform: uppercase; }
    .mobile-dock svg { width: 18px; height: 18px; }
    .mobile-dock__calc { color: var(--white); background: var(--blue); }.mobile-dock__calc svg { width: 16px; }
    .quote-dialog { padding: 28px 18px; }
    .quote-dialog form { grid-template-columns: 1fr; }
    .quote-dialog form button { grid-column: auto; }
    .toast { right: 12px; bottom: 78px; left: 12px; max-width: none; }
}

@media (max-width: 380px) {
    .site-header__actions { gap: 2px; }
    .language { display: none; }
    .hero__content { width: 88vw; }
    .metrics dt { font-size: 21px; }
}

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