:root {
    color-scheme: light;
    --font-sans: "Manrope", "Aptos", "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: "Exo 2", "Manrope", "Aptos Display", "Aptos", "Segoe UI Variable Display", "Segoe UI", Roboto, Arial, sans-serif;
    --ink: #07182c;
    --ink-soft: #193552;
    --muted: #60758b;
    --line: #d8e3ed;
    --surface: #ffffff;
    --surface-soft: #f3f8fc;
    --orange: #ff8a00;
    --orange-dark: #d46b00;
    --violet: #71459c;
    --violet-dark: #4f2f78;
    --green: #08a045;
    --blue: #0d5ad7;
    --shadow: 0 24px 70px rgba(7, 24, 44, 0.14);
    --max-width: 1180px;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4.25rem;
    --step-xs: 0.75rem;
    --step-sm: 0.875rem;
    --step-base: 1rem;
    --step-md: 1.125rem;
    --step-lg: 1.25rem;
    --step-xl: 1.55rem;
    --step-2xl: 2rem;
    --step-3xl: 2.65rem;
    --step-4xl: 4.1rem;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 84px;
    overflow-x: clip;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font-sans);
    font-size: var(--step-base);
    line-height: 1.55;
    letter-spacing: 0;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
}

svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

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

button,
input,
textarea {
    font: inherit;
    letter-spacing: 0;
}

button {
    border: 0;
}

p,
li {
    max-width: 66ch;
}

p {
    margin: 0;
    color: var(--muted);
}

ul,
ol {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-display);
    letter-spacing: 0;
    overflow-wrap: break-word;
    text-wrap: balance;
}

h1 {
    max-width: 14ch;
    font-size: var(--step-4xl);
    font-weight: 800;
    line-height: 1.04;
}

h2 {
    max-width: 24ch;
    font-size: var(--step-3xl);
    font-weight: 800;
    line-height: 1.12;
}

h3 {
    font-size: var(--step-lg);
    font-weight: 700;
    line-height: 1.25;
}

.container {
    width: min(calc(100% - 40px), var(--max-width));
    margin-inline: auto;
}

.sr-only,
.skip-link:not(:focus) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link:focus {
    position: fixed;
    z-index: 1000;
    top: 1rem;
    left: 1rem;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--ink);
    color: white;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: grid;
    grid-template-columns: minmax(max-content, 168px) minmax(0, 1fr) auto;
    gap: clamp(0.3rem, 0.75vw, 0.85rem);
    align-items: center;
    min-height: 78px;
    padding: 0 clamp(14px, 1.55vw, 24px);
    border-bottom: 1px solid rgba(216, 227, 237, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(7, 24, 44, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1;
}

.brand span {
    white-space: nowrap;
}

.site-nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(4.75rem, max-content);
    justify-content: center;
    align-items: center;
    gap: clamp(0.05rem, 0.25vw, 0.28rem);
    font-family: var(--font-sans);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.5rem 0.54rem;
    border-radius: 999px;
    color: var(--ink);
    text-align: center;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--orange-dark);
}

.site-nav a.is-active {
    background: var(--ink);
    color: white;
    box-shadow: 0 10px 24px rgba(7, 24, 44, 0.16);
}

.site-nav a.is-active::after {
    position: absolute;
    right: 0.72rem;
    bottom: 0.25rem;
    left: 0.72rem;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
    content: "";
}

.site-nav a.is-active:hover,
.site-nav a.is-active:focus-visible {
    color: white;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.language-switcher {
    display: inline-flex;
    padding: 0.25rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #f7fafc;
}

.language-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.95rem;
    min-height: 1.85rem;
    border-radius: 6px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 820;
}

.language-switcher a.is-active {
    color: white;
    background: var(--ink);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 46px;
    padding: 0.85rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: var(--step-sm);
    font-weight: 850;
    line-height: 1;
}

.header-cta,
.button--primary {
    color: white;
    background: var(--violet);
}

.header-cta:hover,
.header-cta:focus-visible,
.button--primary:hover,
.button--primary:focus-visible {
    background: var(--violet-dark);
}

.button--ghost {
    color: var(--ink);
    border: 1px solid rgba(7, 24, 44, 0.18);
    background: rgba(255, 255, 255, 0.82);
}

.button svg {
    width: 1rem;
    height: 1rem;
}

.button:disabled {
    cursor: progress;
    opacity: 0.66;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: var(--radius-sm);
    background: var(--ink);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 99px;
    background: white;
}

.hero {
    position: relative;
    min-height: min(790px, calc(100svh - 78px));
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
}

.hero__media,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__media {
    z-index: -4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.hero__shade {
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(7, 24, 44, 0.82) 0%, rgba(255, 138, 0, 0.34) 38%, rgba(7, 24, 44, 0.14) 100%),
        linear-gradient(180deg, rgba(7, 24, 44, 0.04), rgba(7, 24, 44, 0.52));
}

.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    gap: var(--space-5);
    align-items: center;
    min-height: min(650px, calc(100svh - 160px));
    padding-block: var(--space-7) var(--space-6);
}

.hero__content {
    max-width: 760px;
}

.hero h1,
.hero__subtitle,
.hero__lead {
    color: white;
    text-shadow: 0 2px 20px rgba(7, 24, 44, 0.18);
}

.hero-title {
    display: grid;
    gap: 0.08em;
}

.hero-title__brand,
.hero-title__rest {
    display: block;
    text-shadow:
        0 3px 22px rgba(7, 24, 44, 0.5),
        0 0 1px rgba(7, 24, 44, 0.55);
}

.hero-title__brand {
    color: #59c3ff;
}

.hero-title__rest {
    color: #ffd94a;
}

.hero__subtitle {
    margin-top: var(--space-4);
    font-size: var(--step-xl);
    font-weight: 820;
    line-height: 1.2;
}

.hero__lead {
    max-width: 64ch;
    margin-top: var(--space-3);
    font-size: var(--step-md);
    line-height: 1.58;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.request-card {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-5);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.request-card strong {
    font-size: var(--step-xl);
    line-height: 1.2;
}

.request-card ul {
    display: grid;
    gap: 0.75rem;
    list-style: none;
}

.request-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 44px;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #f8fbfd;
    color: var(--ink-soft);
    font-size: var(--step-sm);
    font-weight: 780;
}

.request-card li span {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 5px rgba(8, 160, 69, 0.12);
}

.route-overview {
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 138, 0, 0.12), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.route-overview__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: var(--space-6);
    align-items: center;
}

.route-overview__copy p {
    margin-top: var(--space-4);
    font-size: var(--step-md);
    line-height: 1.7;
}

.route-checks {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-5);
    list-style: none;
}

.route-checks li {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    min-height: 56px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink-soft);
    font-weight: 760;
}

.route-checks svg {
    flex: 0 0 1.15rem;
    color: var(--orange-dark);
}

.route-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--space-4);
    max-width: 66ch;
}

.route-countries > span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.25rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(7, 24, 44, 0.1);
    border-radius: 999px;
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.78);
    font-size: var(--step-sm);
    font-weight: 760;
    line-height: 1.2;
}

.country-chip__flag {
    position: relative;
    flex: 0 0 auto;
    width: 1.35rem;
    height: 0.95rem;
    overflow: hidden;
    border: 1px solid rgba(7, 24, 44, 0.16);
    border-radius: 2px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(7, 24, 44, 0.1);
}

.country-chip__flag--de { background: linear-gradient(#111 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%); }
.country-chip__flag--nl { background: linear-gradient(#ae1c28 0 33.33%, #fff 33.33% 66.66%, #21468b 66.66%); }
.country-chip__flag--fr { background: linear-gradient(90deg, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66%); }
.country-chip__flag--it { background: linear-gradient(90deg, #009246 0 33.33%, #fff 33.33% 66.66%, #ce2b37 66.66%); }
.country-chip__flag--be { background: linear-gradient(90deg, #111 0 33.33%, #fae042 33.33% 66.66%, #ed2939 66.66%); }
.country-chip__flag--ro { background: linear-gradient(90deg, #002b7f 0 33.33%, #fcd116 33.33% 66.66%, #ce1126 66.66%); }
.country-chip__flag--pl { background: linear-gradient(#fff 0 50%, #dc143c 50%); }
.country-chip__flag--es { background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%); }
.country-chip__flag--pt { background: linear-gradient(90deg, #006600 0 42%, #ff0000 42%); }
.country-chip__flag--si { background: linear-gradient(#fff 0 33.33%, #005da4 33.33% 66.66%, #ed1c24 66.66%); }
.country-chip__flag--cz { background: linear-gradient(#fff 0 50%, #d7141a 50%); }
.country-chip__flag--gr {
    background:
        linear-gradient(#0d5eaf 0 11.11%, #fff 11.11% 22.22%, #0d5eaf 22.22% 33.33%, #fff 33.33% 44.44%, #0d5eaf 44.44% 55.55%, #fff 55.55% 66.66%, #0d5eaf 66.66% 77.77%, #fff 77.77% 88.88%, #0d5eaf 88.88%);
}

.country-chip__flag--ch {
    background: #d52b1e;
}

.country-chip__flag--ch::before,
.country-chip__flag--ch::after,
.country-chip__flag--dk::before,
.country-chip__flag--dk::after {
    content: "";
    position: absolute;
    background: #fff;
}

.country-chip__flag--ch::before {
    inset: 24% 42%;
}

.country-chip__flag--ch::after {
    inset: 39% 25%;
}

.country-chip__flag--dk {
    background: #c8102e;
}

.country-chip__flag--dk::before {
    top: 0;
    bottom: 0;
    left: 34%;
    width: 14%;
}

.country-chip__flag--dk::after {
    top: 42%;
    right: 0;
    left: 0;
    height: 16%;
}

.route-truck-visual {
    position: relative;
    display: grid;
    align-items: center;
    min-height: clamp(300px, 34vw, 440px);
    overflow: visible;
}

.route-truck-visual::before {
    content: "";
    position: absolute;
    right: 9%;
    bottom: 12%;
    left: 18%;
    height: 0.38rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 138, 0, 0.22), rgba(113, 69, 156, 0.16), rgba(8, 160, 69, 0.24));
    filter: blur(1.5px);
}

.route-truck-visual::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 4%;
    width: min(86%, 640px);
    height: 44%;
    border-radius: 50%;
    background:
        radial-gradient(ellipse at 44% 48%, rgba(255, 138, 0, 0.12), transparent 42%),
        radial-gradient(ellipse at center, rgba(7, 24, 44, 0.11), transparent 72%);
    transform: translateX(2%);
}

.route-truck-visual__image {
    position: relative;
    z-index: 1;
    justify-self: end;
    width: min(100%, 660px);
    max-width: none;
    height: auto;
    border-radius: 0;
    filter: drop-shadow(0 28px 34px rgba(7, 24, 44, 0.22));
}

html.reveal-ready .route-truck-visual {
    opacity: 1;
    filter: none;
    transform: none;
}

html.reveal-ready .route-truck-visual__image {
    opacity: 1;
    transform: none;
}

html.reveal-ready .route-truck-visual.is-visible .route-truck-visual__image {
    animation: none;
}

@keyframes routeTruckStandaloneIn {
    0% {
        opacity: 0;
        transform: translate3d(42vw, 0, 0) scale(0.98);
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.section {
    padding-block: var(--space-7);
}

.section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: var(--space-5);
    margin-bottom: var(--space-5);
}

.section__header p {
    font-size: var(--step-md);
    line-height: 1.65;
}

.section__header--vertical {
    display: grid;
    align-items: start;
    margin-bottom: 0;
}

.section__header--center {
    justify-content: center;
    text-align: center;
}

.clients {
    background: var(--surface);
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--line);
    box-shadow: 0 18px 60px rgba(7, 24, 44, 0.06);
}

.client-logo {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-content: start;
    min-height: 178px;
    padding: var(--space-4);
    border: 0;
    background:
        radial-gradient(circle at 16% 10%, rgba(8, 160, 69, 0.08), transparent 34%),
        linear-gradient(135deg, #fff, #f7fbfe);
}

.client-logo__mark {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 74px;
    padding: 0.75rem;
    border: 1px solid rgba(7, 24, 44, 0.1);
    border-radius: 14px;
    color: var(--ink);
    background: #fff;
    box-shadow: 0 10px 28px rgba(7, 24, 44, 0.08);
}

.client-logo__mark img {
    display: block;
    width: 100%;
    max-width: 150px;
    height: 46px;
    object-fit: contain;
}

.client-logo__mark span {
    color: var(--ink);
    font-size: var(--step-sm);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
}

.client-logo strong {
    display: block;
    color: var(--ink);
    max-width: 22ch;
    font-size: var(--step-base);
    font-weight: 880;
    line-height: 1.22;
    overflow-wrap: anywhere;
}

.flow {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
    padding-top: var(--space-5);
}

.flow__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.48fr) minmax(0, 0.52fr);
    gap: var(--space-6);
    align-items: center;
}

.flow-visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 22% 30%, rgba(255, 204, 0, 0.16), transparent 26%),
        radial-gradient(circle at 74% 38%, rgba(255, 255, 255, 0.2), transparent 30%),
        linear-gradient(90deg, rgba(7, 24, 44, 0.22), rgba(7, 24, 44, 0.18)),
        linear-gradient(90deg, #003399 0%, #073c96 48%, transparent 48%),
        linear-gradient(180deg, #0057b8 0%, #0057b8 52%, #ffd700 52%, #ffd700 100%);
    box-shadow: var(--shadow);
}

.flow-visual::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: auto 8% 12% 8%;
    height: 36%;
    border-radius: 55% 55% 0 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(7, 24, 44, 0.08)),
        linear-gradient(90deg, rgba(255, 204, 0, 0.18), rgba(255, 255, 255, 0.08));
}

.flow-visual::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 24, 44, 0.16), transparent 36%, rgba(7, 24, 44, 0.18)),
        linear-gradient(90deg, transparent 0 47%, rgba(255, 255, 255, 0.14) 49%, transparent 52%);
    pointer-events: none;
}

.flow-visual__eu-stars {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 25%;
    width: clamp(110px, 17vw, 172px);
    aspect-ratio: 1;
    --star-radius: clamp(42px, 6.7vw, 70px);
    opacity: 0.92;
    pointer-events: none;
    transform: translateX(-50%);
}

.flow-visual__eu-stars span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(6px, 0.78vw, 9px);
    aspect-ratio: 1;
    background: #ffcc00;
    clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
    filter: drop-shadow(0 2px 4px rgba(7, 24, 44, 0.2));
    transform: translate(-50%, -50%) rotate(var(--star-rotation)) translateY(calc(-1 * var(--star-radius))) rotate(calc(-1 * var(--star-rotation)));
}

.flow-visual__eu-stars span:nth-child(1) { --star-rotation: 0deg; }
.flow-visual__eu-stars span:nth-child(2) { --star-rotation: 30deg; }
.flow-visual__eu-stars span:nth-child(3) { --star-rotation: 60deg; }
.flow-visual__eu-stars span:nth-child(4) { --star-rotation: 90deg; }
.flow-visual__eu-stars span:nth-child(5) { --star-rotation: 120deg; }
.flow-visual__eu-stars span:nth-child(6) { --star-rotation: 150deg; }
.flow-visual__eu-stars span:nth-child(7) { --star-rotation: 180deg; }
.flow-visual__eu-stars span:nth-child(8) { --star-rotation: 210deg; }
.flow-visual__eu-stars span:nth-child(9) { --star-rotation: 240deg; }
.flow-visual__eu-stars span:nth-child(10) { --star-rotation: 270deg; }
.flow-visual__eu-stars span:nth-child(11) { --star-rotation: 300deg; }
.flow-visual__eu-stars span:nth-child(12) { --star-rotation: 330deg; }

.flow-visual__route {
    position: absolute;
    z-index: 3;
    inset: 28% 13% 28% 13%;
}

.flow-visual__route::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 99px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)) 0 0 / 26% 100% no-repeat,
        linear-gradient(90deg, var(--orange), var(--violet), var(--blue), var(--green));
    box-shadow: 0 0 0 7px rgba(7, 24, 44, 0.18), 0 10px 26px rgba(7, 24, 44, 0.32);
    transform: translateY(-50%);
    animation: flowRouteSignal 7s ease-in-out infinite;
}

.flow-visual__arrows {
    position: absolute;
    z-index: 3;
    inset: 28% 13% 28% 13%;
    pointer-events: none;
}

.flow-visual__arrows span {
    position: absolute;
    top: calc(50% - 0.55rem);
    width: 1.1rem;
    height: 1.1rem;
    border-top: 4px solid rgba(255, 255, 255, 0.78);
    border-right: 4px solid rgba(255, 255, 255, 0.78);
}

.flow-visual__arrows span:first-child {
    left: 18%;
    transform: rotate(-135deg);
}

.flow-visual__arrows span:last-child {
    right: 18%;
    transform: rotate(45deg);
}

.flow-visual__route span {
    position: absolute;
    top: calc(50% - 0.6rem);
    width: 1.2rem;
    height: 1.2rem;
    border: 4px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 9px rgba(7, 24, 44, 0.2), 0 0 0 14px rgba(255, 255, 255, 0.1);
}

.flow-visual__route span:nth-child(1) { left: 0; }
.flow-visual__route span:nth-child(2) { left: 31%; background: var(--violet); }
.flow-visual__route span:nth-child(3) { left: 64%; background: var(--blue); }
.flow-visual__route span:nth-child(4) { right: 0; background: var(--green); }

.flow-visual__truck {
    position: absolute;
    z-index: 4;
    left: 18%;
    top: 50%;
    display: grid;
    place-items: center;
    width: 176px;
    height: 64px;
    border-radius: 999px;
    color: white;
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06) 54%, transparent 72%);
    filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.24));
    transform: translate(-50%, -50%);
    animation: flowTruckBidirectional 7s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

.flow-visual__truck svg {
    width: 168px;
    height: 50px;
    stroke-width: 2.5;
}

.flow-visual__truck img {
    display: block;
    width: 168px;
    height: 64px;
    object-fit: contain;
    filter: invert(1) brightness(1.12);
}

.flow-visual__labels {
    position: absolute;
    z-index: 5;
    inset: 12% 0 auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    color: white;
    font-size: var(--step-4xl);
    font-weight: 900;
    line-height: 1;
}

@keyframes flowTruckBidirectional {
    0%, 10% {
        left: 18%;
        transform: translate(-50%, -50%) scaleX(-1);
    }
    43%, 50% {
        left: 80%;
        transform: translate(-50%, -50%) scaleX(-1);
    }
    51% {
        left: 80%;
        transform: translate(-50%, -50%) scaleX(1);
    }
    90%, 100% {
        left: 18%;
        transform: translate(-50%, -50%) scaleX(1);
    }
}

@keyframes flowRouteSignal {
    0%, 12% {
        background-position: 0 0, 0 0;
    }
    45%, 52% {
        background-position: 100% 0, 0 0;
    }
    53%, 88% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 100% 0, 0 0;
    }
}

.flow-copy h2 + p {
    margin-top: var(--space-4);
    font-size: var(--step-md);
    line-height: 1.7;
}

.flow-steps {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-5);
    list-style: none;
}

.flow-steps li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: var(--space-3);
    align-items: start;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
}

.flow-steps li > span {
    color: var(--orange-dark);
    font-size: var(--step-sm);
    font-weight: 900;
}

.flow-steps h3 {
    font-size: var(--step-md);
}

.flow-steps p {
    margin-top: 0.35rem;
    line-height: 1.55;
}

.work {
    background: linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
}

.work__grid {
    display: block;
}

.work-cards {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-6) var(--space-5);
    margin-top: var(--space-6);
}

.work-card {
    position: relative;
    grid-column: span 2;
    min-height: 100%;
}

.work-card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

@media (min-width: 1081px) {
    .work-card:nth-child(4):nth-last-child(2) {
        grid-column: 2 / span 2;
    }

    .work-card:last-child:nth-child(3n+2) {
        grid-column: 4 / span 2;
    }
}

.work-card__link {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    height: 100%;
    color: inherit;
}

.work-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-sm);
    background: #dfeaf3;
    box-shadow: 0 18px 44px rgba(7, 24, 44, 0.09);
}

.work-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.work-card__link:hover .work-card__media img {
    transform: scale(1.035);
}

.work-card__number,
.audience-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: var(--space-4);
    border-radius: 50%;
    color: var(--green);
    background: #e8f8ef;
    font-weight: 860;
}

.work-card__number {
    width: auto;
    height: auto;
    justify-content: start;
    margin: var(--space-4) 0 0;
    color: var(--orange-dark);
    background: transparent;
    font-size: var(--step-sm);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.work-card h3 {
    margin-top: 0.35rem;
    color: var(--ink);
    font-size: var(--step-xl);
    font-weight: 680;
    line-height: 1.14;
}

.work-card p,
.audience-card p {
    margin-top: var(--space-3);
    line-height: 1.65;
}

.work-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: fit-content;
    min-height: 3.1rem;
    margin-top: var(--space-4);
    padding: 0 1.15rem;
    border: 1px solid rgba(7, 24, 44, 0.08);
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    background: #f6f8fa;
    font-weight: 850;
}

.work-card__button svg {
    width: 1rem;
    height: 1rem;
    transition: transform 220ms ease;
}

.work-card__link:hover .work-card__button svg {
    transform: translateX(3px);
}

.service-detail {
    background: #fff;
}

.service-detail__hero {
    padding-block: var(--space-7);
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(255, 138, 0, 0.14), transparent 28%),
        linear-gradient(180deg, #f4f8fb 0%, #fff 100%);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.46fr) minmax(320px, 0.54fr);
    gap: var(--space-5);
    align-items: stretch;
}

.service-detail__copy {
    display: grid;
    min-width: 0;
    gap: var(--space-4);
    align-content: center;
}

.service-detail__copy h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.service-detail__copy p {
    max-width: 62ch;
    font-size: var(--step-md);
    line-height: 1.7;
}

.service-detail__back {
    width: fit-content;
    color: var(--orange-dark);
    font-size: var(--step-sm);
    font-weight: 900;
}

.service-detail__media {
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #dfeaf3;
    box-shadow: 0 30px 86px rgba(7, 24, 44, 0.18);
}

.service-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: clamp(410px, 42vw, 620px);
    aspect-ratio: 16 / 9;
}

.service-detail__body {
    background: #fff;
}

.service-detail__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
    gap: var(--space-5);
    align-items: start;
}

.service-detail__panel,
.service-detail__cta {
    padding: var(--space-5);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: 0 14px 44px rgba(7, 24, 44, 0.06);
}

.service-detail__panel p,
.service-detail__cta p {
    margin-top: var(--space-3);
    line-height: 1.7;
}

.service-detail__sections {
    display: grid;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.service-detail__sections section {
    padding-top: var(--space-4);
    border-top: 1px solid var(--line);
}

.service-detail__sections h3 {
    max-width: 28ch;
    font-size: var(--step-md);
    line-height: 1.25;
}

.service-detail__sections p {
    max-width: 68ch;
}

.service-detail__sections p + p {
    margin-top: var(--space-2);
    color: var(--ink-soft);
}

.service-detail__panel ul {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-5);
    list-style: none;
}

.service-detail__panel li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.75rem;
    align-items: start;
    color: var(--ink-soft);
    font-weight: 700;
}

.service-detail__panel li svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green);
}

.service-detail__cta {
    position: sticky;
    top: 104px;
    min-width: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0%, rgba(113, 69, 156, 0.12), transparent 34%),
        #fff;
}

.service-detail__cta h2 {
    max-width: 12ch;
    font-size: var(--step-xl);
    line-height: 1.12;
    overflow-wrap: break-word;
}

.service-detail__cta p {
    max-width: 28ch;
}

.service-detail__cta .button {
    width: 100%;
    min-height: 3.6rem;
    margin-top: var(--space-4);
    padding-inline: 0.85rem;
    white-space: normal;
    line-height: 1.18;
    text-align: center;
}

.about {
    background: #fff;
}

.about__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: var(--space-4);
}

.about-panel {
    min-height: 360px;
    padding: var(--space-6);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface-soft);
    overflow: hidden;
}

.about-panel--dark {
    color: white;
    background:
        radial-gradient(circle at 84% 12%, rgba(110, 89, 214, 0.36), transparent 30%),
        radial-gradient(circle at 12% 88%, rgba(36, 149, 224, 0.24), transparent 34%),
        linear-gradient(135deg, #0b1a45 0%, #163967 52%, #5d4a9b 100%);
}

.about-panel--dark h2,
.about-panel--dark p {
    color: white;
}

.about-panel p {
    margin-top: var(--space-4);
    font-size: var(--step-md);
    line-height: 1.7;
    max-width: 65ch;
}

.about-panel p + p {
    margin-top: 0.95rem;
}

.about-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-5);
    list-style: none;
}

.about-feature-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    min-height: 84px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    background: #fff;
    font-weight: 760;
    line-height: 1.45;
}

.about-feature-list svg {
    flex: 0 0 1.15rem;
    margin-top: 0.1rem;
    color: var(--green);
}

.route-strip {
    position: relative;
    min-height: 150px;
    margin-top: var(--space-6);
    border-radius: var(--radius-md);
    background:
        linear-gradient(90deg, rgba(13, 90, 215, 0.14) 1px, transparent 1px),
        linear-gradient(180deg, rgba(13, 90, 215, 0.14) 1px, transparent 1px),
        #eaf4fd;
    background-size: 42px 42px;
}

.route-strip::before {
    content: "";
    position: absolute;
    inset: 50% 10% auto 10%;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--orange), var(--violet), var(--green));
}

.route-strip span {
    position: absolute;
    top: calc(50% - 0.55rem);
    width: 1.1rem;
    height: 1.1rem;
    border: 4px solid white;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 3px rgba(13, 90, 215, 0.22);
}

.route-strip span:nth-child(1) { left: 9%; }
.route-strip span:nth-child(2) { left: 36%; background: var(--orange); }
.route-strip span:nth-child(3) { left: 62%; background: var(--violet); }
.route-strip span:nth-child(4) { left: 86%; background: var(--green); }

.history {
    background: var(--surface-soft);
}

.history__grid {
    display: grid;
    max-width: 980px;
    gap: var(--space-4);
    align-items: start;
}

.history-copy {
    padding: var(--space-6);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 18px 58px rgba(7, 24, 44, 0.06);
}

.history-copy p {
    margin-top: var(--space-4);
    font-size: var(--step-md);
    line-height: 1.7;
    max-width: 72ch;
}

.history-copy p:first-of-type {
    margin-top: var(--space-5);
    color: var(--ink);
    font-size: var(--step-lg);
    font-weight: 850;
    line-height: 1.45;
}

.sustainability {
    background: white;
}

.sustainability__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
    gap: var(--space-6);
    align-items: center;
}

.eco-visual {
    margin: 0;
    overflow: hidden;
    min-height: 430px;
    border: 1px solid rgba(216, 227, 237, 0.95);
    border-radius: var(--radius-lg);
    background: #163b2a;
    box-shadow: var(--shadow);
}

.eco-visual img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    display: block;
    object-fit: cover;
    object-position: 58% 52%;
}

.sustainability h2 + p {
    margin-top: var(--space-4);
    font-size: var(--step-md);
    line-height: 1.7;
}

.eco-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-5);
    list-style: none;
}

.eco-list li {
    display: flex;
    gap: 0.75rem;
    align-items: start;
    min-height: 72px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fbfdff;
    color: var(--ink-soft);
    font-weight: 720;
}

.eco-list svg {
    flex: 0 0 1.2rem;
    color: var(--green);
}

.benefits {
    color: white;
    background:
        radial-gradient(circle at 14% 18%, rgba(93, 192, 244, 0.3), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(143, 120, 255, 0.34), transparent 34%),
        radial-gradient(circle at 42% 88%, rgba(255, 255, 255, 0.1), transparent 38%),
        linear-gradient(135deg, #081742 0%, #12356f 48%, #5e4aa4 100%);
}

.benefits h2 {
    color: white;
}

.benefits-orbit {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
    align-items: stretch;
    justify-items: stretch;
}

.benefits-orbit__logo {
    grid-column: 2;
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    min-height: 330px;
    border: 1px solid rgba(184, 216, 255, 0.22);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 52% 42%, rgba(93, 192, 244, 0.16), transparent 46%),
        rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.benefits-orbit__logo img {
    display: block;
    width: min(82%, 360px);
    height: auto;
    border-radius: 18px;
    filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.26));
}

.benefit {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    min-height: 150px;
    padding: var(--space-4);
    border: 1px solid rgba(184, 216, 255, 0.2);
    border-radius: var(--radius-md);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
        rgba(13, 37, 82, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.benefit__number {
    display: inline-grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    border: 2px solid rgba(255, 255, 255, 0.68);
    border-radius: 50%;
    color: #9fd2ff;
    font-weight: 900;
    line-height: 1;
}

.benefit h3,
.benefit p {
    color: white;
}

.benefit p {
    margin-top: 0;
    color: rgba(255, 255, 255, 0.74);
}

.benefit--5 {
    grid-column: 2;
}

.audiences {
    background: var(--surface-soft);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--space-4);
}

.audience-card {
    grid-column: span 2;
    min-height: 310px;
    padding: var(--space-5);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(160deg, rgba(113, 69, 156, 0.08), transparent 42%),
        white;
}

@media (min-width: 1081px) {
    .audience-card:nth-child(4):nth-last-child(2) {
        grid-column: 2 / span 2;
    }
}

.handoff {
    overflow: hidden;
    padding-block: var(--space-6);
    color: white;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 138, 0, 0.32), transparent 28%),
        radial-gradient(circle at 78% 42%, rgba(113, 69, 156, 0.35), transparent 30%),
        linear-gradient(135deg, #07182c 0%, #123457 100%);
}

.handoff__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr) auto;
    gap: var(--space-5);
    align-items: center;
}

.handoff h2,
.handoff p {
    color: white;
}

.handoff h2 {
    max-width: 16ch;
}

.handoff p {
    max-width: 58ch;
    margin-top: var(--space-3);
    color: rgba(255, 255, 255, 0.76);
    font-size: var(--step-md);
    line-height: 1.65;
}

.handoff__items {
    display: grid;
    gap: var(--space-2);
    list-style: none;
}

.handoff__items li {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.86);
    font-size: var(--step-sm);
    font-weight: 760;
}

.handoff__items svg {
    flex: 0 0 1rem;
    color: #8df0b2;
}

.handoff__button {
    white-space: nowrap;
}

.contact-section {
    background:
        linear-gradient(180deg, white 0%, #f4f8fb 100%);
}

.contact-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: var(--space-6);
    align-items: start;
}

.contact-copy h2 + p {
    margin-top: var(--space-4);
    font-size: var(--step-md);
    line-height: 1.7;
}

.messenger-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.messenger-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: white;
    background: var(--ink);
    box-shadow: 0 14px 32px rgba(7, 24, 44, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.messenger-row a:hover,
.messenger-row a:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(7, 24, 44, 0.22);
}

.messenger-row svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    shape-rendering: geometricPrecision;
}

.messenger-row a[aria-label="Telegram"] svg {
    fill: currentColor;
    stroke: none;
}

.messenger-row a[aria-label="Viber"] svg {
    width: 38px;
    height: 38px;
    stroke-width: 2.55;
}

.messenger-row__logo {
    display: block;
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.messenger-row a[aria-label="Viber"] .messenger-row__logo {
    width: 36px;
    height: 36px;
}

.messenger-row a[aria-label="WhatsApp"] .messenger-row__logo {
    width: 33px;
    height: 33px;
}

.messenger-row a:nth-child(1) { background: #1687d9; }
.messenger-row a:nth-child(2) { background: #7360f2; }
.messenger-row a:nth-child(3) { background: #16a34a; }

.contact-card {
    display: grid;
    gap: 0.5rem;
    margin-top: var(--space-5);
    padding: var(--space-4);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    color: var(--ink-soft);
    font-weight: 720;
}

.contact-card a {
    color: var(--violet-dark);
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.quote-form {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-5);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow);
}

.quote-form__head {
    display: grid;
    gap: 0.7rem;
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--line);
}

.quote-form__head h2 {
    max-width: 18ch;
    font-size: var(--step-2xl);
}

.quote-form__head p {
    font-size: var(--step-base);
    line-height: 1.6;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-3);
}

.quote-form label {
    display: grid;
    gap: 0.45rem;
}

.quote-form label span {
    color: var(--ink-soft);
    font-size: var(--step-sm);
    font-weight: 780;
}

.quote-form input,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0.95rem 1rem;
    color: var(--ink);
    background: #f8fbfd;
    outline: 0;
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--violet);
    background: white;
    box-shadow: 0 0 0 4px rgba(113, 69, 156, 0.13);
}

.quote-form__privacy-note {
    max-width: 54ch;
    color: var(--muted);
    font-size: var(--step-sm);
    line-height: 1.6;
}

.quote-form__button {
    width: fit-content;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.form-status {
    min-height: 1.5rem;
    font-weight: 760;
}

.form-status.is-success {
    color: var(--green);
}

.form-status.is-error {
    color: #b42318;
}

.site-footer {
    padding-block: var(--space-6);
    color: rgba(255, 255, 255, 0.74);
    background: var(--ink);
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-5);
}

.site-footer .brand,
.site-footer p,
.site-footer a {
    color: white;
}

.site-footer p {
    margin-top: var(--space-3);
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    justify-content: flex-end;
    font-weight: 780;
}

.site-footer__small {
    grid-column: 1 / -1;
    font-size: var(--step-sm);
}

html.reveal-ready [data-reveal] {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 650ms ease,
        filter 650ms ease,
        transform 650ms ease;
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, filter, transform;
}

html.reveal-ready [data-reveal="slide-left"] {
    transform: translate3d(-28px, 0, 0);
}

html.reveal-ready [data-reveal="slide-right"] {
    transform: translate3d(28px, 0, 0);
}

html.reveal-ready [data-reveal="zoom"] {
    transform: translate3d(0, 18px, 0) scale(0.965);
}

html.reveal-ready [data-reveal].is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 1080px) {
    :root {
        --step-4xl: 3.4rem;
        --step-3xl: 2.25rem;
    }

    .site-header {
        grid-template-columns: auto 1fr auto;
    }

    .site-nav {
        justify-content: end;
        grid-auto-columns: minmax(4.65rem, max-content);
    }

    .header-cta {
        display: none;
    }

    .hero__inner,
    .route-overview__grid,
    .flow__grid,
    .work__grid,
    .about__grid,
    .history__grid,
    .sustainability__grid,
    .handoff__inner,
    .contact-section__grid {
        grid-template-columns: 1fr;
    }

    .handoff__button {
        width: fit-content;
    }

    .client-logos,
    .work-cards,
    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-card {
        grid-column: auto;
    }

    .audience-card {
        grid-column: auto;
    }

    .work-card:last-child:nth-child(3n+1) {
        grid-column: auto;
    }

    .route-truck-visual {
        min-height: 320px;
    }

    .route-truck-visual__image {
        width: min(92vw, 640px);
    }

    .service-detail__grid,
    .service-detail__content {
        grid-template-columns: 1fr;
    }

    .service-detail__cta {
        position: static;
    }

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

    .benefit--5 {
        grid-column: auto;
    }

    .benefits-orbit__logo {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 190px;
    }
}

@media (max-width: 860px) {
    .site-header {
        min-height: 68px;
        padding: 0 14px;
        grid-template-columns: auto 1fr auto;
        gap: var(--space-2);
    }

    .brand {
        font-size: 1rem;
    }

    .site-nav {
        position: fixed;
        top: 68px;
        right: 14px;
        left: 14px;
        display: none;
        grid-auto-flow: row;
        grid-auto-columns: 1fr;
        grid-template-columns: 1fr;
        justify-content: stretch;
        gap: 0;
        padding: 0.6rem 20px 1rem;
        border: 1px solid var(--line);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        background: white;
        box-shadow: 0 18px 38px rgba(7, 24, 44, 0.1);
    }

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

    .site-nav.is-open a {
        width: 100%;
        justify-content: flex-start;
        min-height: 48px;
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
        border-radius: 0;
    }

    .site-nav a.is-active::after {
        display: none;
    }

    .header-actions {
        justify-self: end;
        gap: 0.35rem;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 70px;
    }

    .container {
        width: min(calc(100% - 28px), var(--max-width));
    }

    .site-header {
        min-height: 68px;
        padding: 0 14px;
        grid-template-columns: auto 1fr auto;
        gap: var(--space-2);
    }

    .brand {
        font-size: 1rem;
    }

    .site-nav {
        position: fixed;
        top: 68px;
        right: 14px;
        left: 14px;
        display: none;
        padding: var(--space-4);
        border: 1px solid var(--line);
        border-radius: var(--radius-md);
        background: white;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
        grid-auto-flow: row;
        grid-auto-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0.2rem;
        justify-content: stretch;
    }

    .site-nav a {
        justify-content: flex-start;
        padding: 0.75rem;
        border-radius: var(--radius-sm);
        background: #f8fbfd;
    }

    .site-nav a.is-active::after {
        display: none;
    }

    .header-actions {
        position: absolute;
        top: 50%;
        right: 64px;
        z-index: 2;
        display: flex;
        justify-self: end;
        transform: translateY(-50%);
    }

    .language-switcher {
        display: inline-flex;
        padding: 0.18rem;
    }

    .language-switcher a {
        min-width: 1.75rem;
        min-height: 1.7rem;
        font-size: 0.72rem;
    }

    .nav-toggle {
        position: absolute;
        top: 50%;
        right: 14px;
        z-index: 3;
        display: block;
        transform: translateY(-50%);
    }

    .hero {
        min-height: auto;
    }

    .hero__shade {
        background:
            linear-gradient(180deg, rgba(7, 24, 44, 0.6) 0%, rgba(255, 138, 0, 0.28) 48%, rgba(7, 24, 44, 0.66) 100%),
            rgba(7, 24, 44, 0.1);
    }

    .hero__media {
        object-position: 62% center;
    }

    .hero__inner {
        gap: var(--space-4);
        min-height: auto;
        padding-block: var(--space-6) var(--space-4);
    }

    .hero__lead,
    .hero__subtitle {
        max-width: 100%;
    }

    .hero__actions,
    .form-grid,
    .route-overview__grid,
    .flow-steps li,
    .work-cards,
    .client-logos,
    .eco-list,
    .audience-grid,
    .benefits-orbit,
    .handoff__inner,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .hero__actions {
        display: grid;
    }

    .button,
    .quote-form__button,
    .handoff__button {
        width: 100%;
    }

    .request-card {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .section {
        padding-block: var(--space-6);
    }

    .flow-visual {
        min-height: 300px;
        border-radius: var(--radius-md);
    }

    .route-truck-visual {
        min-height: 240px;
    }

    .route-truck-visual::before {
        right: 0;
        bottom: 17%;
        left: 5%;
    }

    .route-truck-visual::after {
        width: 100%;
        height: 30%;
    }

    .route-truck-visual__image {
        justify-self: center;
        width: min(100%, 500px);
        transform-origin: center bottom;
    }

    html.reveal-ready .route-truck-visual__image {
        transform: none;
    }

    .flow-visual__truck {
        width: 132px;
        height: 52px;
    }

    .flow-visual__truck svg {
        width: 124px;
        height: 38px;
    }

    .flow-visual__truck img {
        width: 126px;
        height: 48px;
    }

    .section__header {
        display: grid;
        gap: var(--space-3);
        align-items: start;
    }

    .about-panel,
    .client-logo,
    .audience-card,
    .service-detail__panel,
    .service-detail__cta,
    .quote-form {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .handoff {
        padding-block: var(--space-5);
    }

    .handoff h2 {
        max-width: 100%;
    }

    .quote-form {
        order: -1;
    }

    .contact-copy {
        order: 2;
    }

    .about-panel {
        min-height: auto;
    }

    .about-feature-list {
        grid-template-columns: 1fr;
    }

    .history-copy {
        padding: var(--space-4);
    }

    .eco-visual,
    .eco-visual img {
        min-height: 300px;
    }

    .benefits-orbit__logo {
        min-height: 150px;
    }

    .site-footer__links {
        justify-content: start;
    }
}

@media (max-width: 420px) {
    :root {
        --step-4xl: 2.45rem;
        --step-3xl: 2rem;
    }

    h1 {
        max-width: 100%;
        font-size: var(--step-4xl);
        line-height: 1.07;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .request-card li {
        min-height: 40px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
    }

    html.reveal-ready [data-reveal] {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}
