:root {
    color-scheme: light;
    --font-sans: "Manrope", "Aptos", "Inter", "Segoe UI Variable", "Segoe UI", Roboto, Arial, sans-serif;
    --font-display: "Exo 2", "Manrope", "Aptos Display", "Aptos", "Inter", "Segoe UI Variable Display", "Segoe UI", Roboto, Arial, sans-serif;
    --ink: #07182c;
    --ink-soft: #193552;
    --muted: #5c7085;
    --surface: #ffffff;
    --surface-soft: #f4f8fb;
    --surface-green: #ebf8f0;
    --line: #d9e3ec;
    --blue: #0d5ad7;
    --blue-dark: #0a377d;
    --green: #08a045;
    --green-dark: #067834;
    --orange: #ff8a00;
    --violet: #6d43a3;
    --yellow: #f6c343;
    --shadow: 0 18px 44px rgba(7, 24, 44, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --max-width: 1180px;
    --space-1: 0.5rem;
    --space-2: 0.75rem;
    --space-3: 1rem;
    --space-4: 1.5rem;
    --space-5: 2rem;
    --space-6: 3rem;
    --space-7: 4rem;
    --step-xs: 0.75rem;
    --step-sm: 0.875rem;
    --step-base: 1rem;
    --step-md: 1.125rem;
    --step-lg: 1.25rem;
    --step-xl: 1.5rem;
    --step-2xl: 2rem;
    --step-3xl: 2.25rem;
    --step-4xl: 4.25rem;
}

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

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

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

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 {
    max-width: 65ch;
    margin: 0;
    color: var(--muted);
    overflow-wrap: break-word;
}

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

li {
    max-width: 65ch;
}

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

h1 {
    max-width: none;
    font-size: var(--step-4xl);
    line-height: 1.05;
    font-weight: 850;
}

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

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

.lang-ru h2,
.lang-uk h2 {
    max-width: 28ch;
}

.lang-ru p,
.lang-uk p,
.lang-ru li,
.lang-uk li,
.lang-ru span,
.lang-uk span {
    hyphens: auto;
}

code {
    font-family: "SF Mono", Consolas, "Liberation Mono", monospace;
    font-size: 0.92em;
    color: var(--blue-dark);
}

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

.utility-bar {
    border-bottom: 1px solid rgba(217, 227, 236, 0.72);
    background: #07182c;
    color: rgba(255, 255, 255, 0.82);
}

.utility-bar__inner {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    font-size: var(--step-xs);
    font-weight: 720;
    line-height: 1;
}

.utility-bar__items {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.utility-bar__items span {
    position: relative;
}

.utility-bar__items span:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -0.85rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    transform: translateY(-50%);
}

.utility-bar a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.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: auto minmax(0, 1fr) auto auto;
    gap: var(--space-4);
    align-items: center;
    min-height: 72px;
    padding: 0 30px;
    border-bottom: 1px solid rgba(217, 227, 236, 0.85);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
    box-shadow: 0 14px 35px rgba(7, 24, 44, 0.08);
    background: rgba(255, 255, 255, 0.96);
}

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

.brand img {
    display: none;
}

.brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    gap: clamp(1rem, 2.2vw, 2.2rem);
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.site-nav a,
.header-cta,
.language-switcher a {
    font-family: var(--font-display);
    font-size: var(--step-sm);
    font-weight: 700;
    line-height: 1;
}

.site-nav a {
    color: var(--ink-soft);
}

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

.header-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    padding: 0.9rem 1.15rem;
    border-radius: var(--radius-sm);
    color: white;
    background: var(--green);
}

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

.header-actions {
    display: inline-flex;
    gap: var(--space-2);
    align-items: center;
    justify-content: end;
}

.language-switcher {
    display: inline-flex;
    gap: 2px;
    align-items: center;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(244, 248, 251, 0.82);
}

.language-switcher a {
    display: grid;
    min-width: 36px;
    min-height: 34px;
    place-items: center;
    border-radius: calc(var(--radius-sm) - 3px);
    color: var(--ink-soft);
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
    color: var(--green-dark);
    background: white;
}

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

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    place-content: center;
    gap: 4px;
    border-radius: var(--radius-sm);
    color: var(--ink);
    background: var(--surface-soft);
}

.nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: min(760px, calc(100svh - 72px));
    overflow: hidden;
    isolation: isolate;
    scroll-margin-top: 86px;
}

.hero__image,
.hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__image {
    z-index: -3;
    object-fit: cover;
    object-position: 58% center;
}

.hero__shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255, 138, 0, 0.76) 0%, rgba(255, 177, 62, 0.42) 22%, rgba(255, 255, 255, 0.9) 40%, rgba(255, 255, 255, 0.24) 74%, rgba(255, 255, 255, 0.08) 100%),
        linear-gradient(135deg, rgba(109, 67, 163, 0.34) 0%, rgba(109, 67, 163, 0) 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.92) 100%);
}

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

.hero__content {
    min-width: 0;
    max-width: 610px;
}

.hero h1 {
    white-space: nowrap;
}

.hero__subtitle {
    max-width: 100%;
    margin-top: var(--space-3);
    font-size: var(--step-xl);
    line-height: 1.3;
    font-weight: 760;
    color: var(--ink);
}

.hero__lead {
    margin-top: var(--space-3);
    font-size: var(--step-md);
    line-height: 1.55;
    color: var(--ink-soft);
}

.quote-console {
    align-self: center;
    display: grid;
    gap: var(--space-4);
    padding: var(--space-4);
    border: 1px solid rgba(217, 227, 236, 0.78);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

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

.quote-console__header strong {
    font-size: var(--step-lg);
    line-height: 1.2;
}

.quote-console__header span {
    font-size: var(--step-sm);
    color: var(--muted);
}

.quote-console__fields {
    display: grid;
    gap: 0.75rem;
}

.quote-console__fields div {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: var(--space-3);
    align-items: center;
    min-height: 46px;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(244, 248, 251, 0.8);
}

.quote-console__fields dt {
    font-size: var(--step-xs);
    font-weight: 760;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quote-console__fields dd {
    margin: 0;
    font-size: var(--step-sm);
    font-weight: 760;
    line-height: 1.3;
    color: var(--ink);
}

.quote-console__link {
    display: inline-flex;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: var(--radius-sm);
    font-size: var(--step-sm);
    font-weight: 830;
    color: white;
    background: var(--ink);
}

.quote-console__link svg {
    width: 1rem;
    height: 1rem;
}

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

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 1.1rem 1.35rem;
    align-items: center;
    margin-top: var(--space-5);
    list-style: none;
}

.hero-points li {
    position: relative;
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    max-width: none;
    font-family: var(--font-display);
    font-size: var(--step-xl);
    font-weight: 850;
    line-height: 1.08;
    color: var(--ink);
    text-shadow: 0 1px 18px rgba(255, 255, 255, 0.75);
}

.hero-points li span {
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 2px;
    background: var(--orange);
    transform: rotate(45deg);
    box-shadow: 13px 0 0 var(--violet);
}

.button {
    display: inline-flex;
    gap: 0.7rem;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: var(--step-sm);
    font-weight: 800;
    line-height: 1;
}

.button svg,
.text-link svg {
    width: 1.05rem;
    height: 1.05rem;
}

.button--primary {
    color: white;
    background: var(--green);
}

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

.button--ghost {
    color: var(--blue-dark);
    border: 1px solid rgba(13, 90, 215, 0.45);
    background: rgba(255, 255, 255, 0.82);
}

.button--ghost:hover,
.button--ghost:focus-visible {
    border-color: var(--blue);
    background: white;
}

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

.hero-assurances {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-3);
    width: min(100%, 960px);
    margin-bottom: var(--space-6);
    list-style: none;
}

.hero-assurances li {
    min-width: 0;
    min-height: 112px;
    padding: 1rem 1rem 1rem 1.1rem;
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 36px rgba(7, 24, 44, 0.06);
}

.hero-assurances strong {
    display: block;
    font-size: var(--step-md);
    line-height: 1.2;
    font-weight: 820;
    color: var(--ink);
}

.hero-assurances span {
    display: block;
    margin-top: 0.55rem;
    font-size: var(--step-sm);
    line-height: 1.45;
    color: var(--ink-soft);
}

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

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

.intro-strip {
    border-block: 1px solid var(--line);
    background: var(--surface);
}

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

.intro-strip__grid div {
    min-width: 0;
    display: grid;
    gap: 0.35rem;
    padding-left: var(--space-3);
    border-left: 3px solid var(--green);
}

.intro-strip strong {
    font-size: var(--step-md);
    line-height: 1.25;
}

.intro-strip span {
    font-size: var(--step-sm);
    line-height: 1.55;
    color: var(--muted);
}

.tools-band {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.tools-band__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: var(--space-6);
    align-items: start;
}

.operations-graphic {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-5);
    min-height: 180px;
    border: 1px solid rgba(217, 227, 236, 0.9);
    border-radius: var(--radius-md);
    background:
        linear-gradient(90deg, rgba(255, 138, 0, 0.12), rgba(109, 67, 163, 0.09)),
        repeating-linear-gradient(90deg, rgba(13, 90, 215, 0.08) 0 1px, transparent 1px 54px),
        repeating-linear-gradient(0deg, rgba(13, 90, 215, 0.06) 0 1px, transparent 1px 42px),
        #fbfdff;
}

.operations-graphic::before {
    content: "";
    position: absolute;
    inset: 34px 36px auto 36px;
    height: 80px;
    border: 3px solid rgba(13, 90, 215, 0.34);
    border-right-color: rgba(8, 160, 69, 0.52);
    border-bottom-color: rgba(255, 138, 0, 0.42);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.operations-graphic__rail span {
    position: absolute;
    width: 13px;
    height: 13px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(13, 90, 215, 0.1);
}

.operations-graphic__rail span:nth-child(1) { left: 52px; top: 86px; }
.operations-graphic__rail span:nth-child(2) { left: 46%; top: 50px; border-color: var(--orange); box-shadow: 0 0 0 6px rgba(255, 138, 0, 0.13); }
.operations-graphic__rail span:nth-child(3) { right: 58px; top: 92px; border-color: var(--green); box-shadow: 0 0 0 6px rgba(8, 160, 69, 0.13); }

.operations-graphic__cards {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.operations-graphic__cards span {
    display: grid;
    min-height: 42px;
    place-items: center;
    border: 1px solid rgba(217, 227, 236, 0.94);
    border-radius: var(--radius-sm);
    font-size: var(--step-xs);
    font-weight: 860;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.86);
}

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

.tool-item {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-3);
    min-height: 154px;
    padding: 1.1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: 0 16px 42px rgba(7, 24, 44, 0.06);
}

.tool-item > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: var(--radius-sm);
    color: var(--green-dark);
    background: var(--surface-green);
}

.tool-item svg {
    width: 23px;
    height: 23px;
}

.tool-item p {
    margin-top: 0.45rem;
    font-size: var(--step-sm);
}

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

.section__header p,
.copy-block p {
    margin-top: var(--space-3);
    font-size: var(--step-md);
}

.section__header--center {
    display: grid;
    justify-items: center;
    text-align: center;
}

.section__header--center h2,
.section__header--center p {
    max-width: 760px;
}

.text-link {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    flex: 0 0 auto;
    font-size: var(--step-sm);
    font-weight: 800;
    color: var(--blue-dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--line);
}

.service-card {
    min-width: 0;
    display: grid;
    align-content: start;
    gap: var(--space-3);
    min-height: 430px;
    padding: 1.4rem;
    background: white;
}

.service-card__visual {
    position: relative;
    overflow: hidden;
    min-height: 74px;
    margin: -1.4rem -1.4rem 0;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(13, 90, 215, 0.16), rgba(8, 160, 69, 0.1)),
        #f6fbff;
}

.service-card__visual::before,
.service-card__visual::after,
.service-card__visual span {
    content: "";
    position: absolute;
    display: block;
}

.service-card__visual::before {
    left: 18px;
    right: 18px;
    top: 38px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--green));
}

.service-card__visual::after {
    right: 18px;
    top: 30px;
    width: 18px;
    height: 18px;
    border-top: 2px solid var(--green);
    border-right: 2px solid var(--green);
    transform: rotate(45deg);
}

.service-card__visual span {
    width: 12px;
    height: 12px;
    border: 3px solid var(--blue);
    border-radius: 50%;
    background: white;
}

.service-card__visual span:nth-child(1) { left: 20px; top: 33px; }
.service-card__visual span:nth-child(2) { left: 48%; top: 33px; border-color: var(--orange); }
.service-card__visual span:nth-child(3) { right: 42px; top: 33px; border-color: var(--green); }

.service-card--graphic-2 .service-card__visual {
    background: linear-gradient(135deg, rgba(255, 138, 0, 0.18), rgba(13, 90, 215, 0.08)), #fffaf2;
}

.service-card--graphic-3 .service-card__visual {
    background: linear-gradient(135deg, rgba(109, 67, 163, 0.18), rgba(8, 160, 69, 0.08)), #fbf8ff;
}

.service-card--graphic-4 .service-card__visual {
    background: linear-gradient(135deg, rgba(8, 160, 69, 0.16), rgba(255, 138, 0, 0.1)), #f7fff9;
}

.service-card--graphic-5 .service-card__visual {
    background: linear-gradient(135deg, rgba(7, 24, 44, 0.12), rgba(13, 90, 215, 0.12)), #f7fbff;
}

.service-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: var(--radius-sm);
    color: var(--blue);
    background: #eef5ff;
}

.service-card__icon svg {
    width: 27px;
    height: 27px;
}

.service-card p {
    font-size: var(--step-sm);
    line-height: 1.6;
}

.service-card ul {
    display: grid;
    gap: 0.5rem;
    margin-top: auto;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 1rem;
    font-size: var(--step-sm);
    line-height: 1.4;
    color: var(--ink-soft);
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.process {
    border-block: 1px solid var(--line);
    background: var(--surface-soft);
}

.control-tower {
    background: #07182c;
}

.control-tower h2,
.control-tower .copy-block p {
    color: white;
}

.control-tower .copy-block p {
    color: rgba(255, 255, 255, 0.72);
}

.control-tower__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: var(--space-6);
    align-items: center;
}

.control-matrix {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.14);
}

.control-matrix div {
    min-height: 150px;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.08);
}

.control-matrix span {
    display: block;
    margin-bottom: var(--space-3);
    font-size: var(--step-xs);
    font-weight: 780;
    line-height: 1;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.control-matrix strong {
    display: block;
    font-size: var(--step-lg);
    line-height: 1.35;
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-4);
    list-style: none;
}

.process-steps li {
    position: relative;
    display: grid;
    align-content: start;
    gap: var(--space-3);
    min-height: 245px;
    padding: 1.5rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
}

.process-steps__transition {
    position: absolute;
    top: 50px;
    right: -22px;
    z-index: 2;
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    color: var(--blue);
}

.process-steps__transition svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.6;
}

.process-steps__number {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 50%;
    font-weight: 830;
    color: var(--green-dark);
    background: var(--surface-green);
}

.process-steps p {
    font-size: var(--step-sm);
}

.split-section__grid,
.fleet__grid,
.sustainability__grid,
.contact-section__grid,
.faq__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: var(--space-6);
    align-items: center;
}

.split-section__grid {
    align-items: start;
}

.split-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.copy-block h2 {
    max-width: 24ch;
}

.lane-list {
    display: grid;
    gap: 0.7rem;
    margin-top: var(--space-4);
    list-style: none;
}

.lane-list li {
    display: flex;
    gap: 0.7rem;
    align-items: center;
    color: var(--ink-soft);
}

.lane-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid var(--green);
    border-radius: 50%;
    background: white;
}

.route-network {
    overflow: hidden;
    border: 1px solid rgba(217, 227, 236, 0.28);
    border-radius: var(--radius-md);
    color: white;
    background: #061222;
    box-shadow: var(--shadow);
}

.route-network__top {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.route-network__top div:first-child {
    display: grid;
    gap: 0.35rem;
}

.route-network__top span,
.route-network__status span {
    font-size: var(--step-xs);
    font-weight: 780;
    line-height: 1;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.route-network__top strong {
    font-size: var(--step-xl);
    line-height: 1.18;
}

.route-network__signal {
    display: inline-flex;
    gap: 0.55rem;
    align-items: center;
    min-height: 34px;
    padding: 0.45rem 0.7rem;
    border: 1px solid rgba(8, 160, 69, 0.35);
    border-radius: 999px;
    background: rgba(8, 160, 69, 0.12);
}

.route-network__signal span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(8, 160, 69, 0.16);
    animation: networkPulse 1.9s ease-in-out infinite;
}

.route-network__signal b {
    font-size: var(--step-xs);
    line-height: 1;
}

.network-map-shell {
    padding: var(--space-3);
    background:
        radial-gradient(circle at 72% 44%, rgba(8, 160, 69, 0.2), transparent 28%),
        radial-gradient(circle at 36% 30%, rgba(44, 124, 246, 0.22), transparent 32%),
        #07182c;
}

.network-map {
    width: 100%;
    height: auto;
    min-height: 340px;
}

.network-map__base {
    fill: #07182c;
    stroke: none;
}

.network-map__asset {
    opacity: 0.96;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.16));
}

.network-map__east-mask,
.network-map__northwest-mask,
.network-map__top-mask {
    fill: #07182c;
    stroke: none;
}

.network-map__grid-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.055);
    stroke-width: 1;
}

.network-map__europe {
    filter: none;
}

.network-map__poly {
    fill: rgba(226, 236, 239, 0.16);
    stroke: rgba(226, 236, 239, 0.62);
    stroke-width: 2.2;
    stroke-linejoin: miter;
    vector-effect: non-scaling-stroke;
}

.network-map__poly--france,
.network-map__poly--germany,
.network-map__poly--poland,
.network-map__poly--scandinavia {
    fill: rgba(226, 236, 239, 0.23);
}

.network-map__poly--ukraine {
    fill: rgba(8, 160, 69, 0.12);
    stroke: rgba(8, 160, 69, 0.58);
}

.network-map__poly--uk,
.network-map__poly--ireland,
.network-map__poly--iberia {
    fill: rgba(226, 236, 239, 0.12);
}

.network-map__poly--italy,
.network-map__poly--balkan,
.network-map__poly--benelux {
    fill: rgba(226, 236, 239, 0.18);
}

.network-map__coast {
    fill: none;
    stroke: rgba(25, 53, 82, 0.16);
    stroke-width: 1.1;
}

.network-map__border {
    fill: none;
    stroke: rgba(226, 236, 239, 0.24);
    stroke-width: 1.2;
    stroke-linecap: square;
    stroke-linejoin: miter;
    vector-effect: non-scaling-stroke;
}

.network-map__route {
    fill: none;
    stroke: rgba(44, 124, 246, 0.62);
    stroke-width: 2.2;
    stroke-linecap: square;
    stroke-linejoin: miter;
    stroke-dasharray: 7 18;
    animation: routeDash 13s linear infinite;
    vector-effect: non-scaling-stroke;
}

.network-map__route--primary {
    stroke: rgba(8, 160, 69, 0.72);
    stroke-width: 2.6;
    stroke-dasharray: 10 16;
    animation-duration: 11s;
}

.network-map__node {
    fill: #07182c;
    stroke: #2c7cf6;
    stroke-width: 3;
    vector-effect: non-scaling-stroke;
    opacity: 0.9;
}

.network-map__node--hub {
    fill: var(--green);
    stroke: white;
    stroke-width: 4;
    transform-box: fill-box;
    transform-origin: center;
    animation: hubBreath 2.4s ease-in-out infinite;
}

.network-map__cargo {
    fill: var(--yellow);
    stroke: #061222;
    stroke-width: 2;
    transform-box: fill-box;
    transform-origin: center;
    animation: cargoBlink 3.4s ease-in-out infinite;
}

.network-map__cargo--two {
    animation-delay: 0.8s;
}

.network-map__cargo--three {
    animation-delay: 1.6s;
}

.network-map__labels text {
    fill: rgba(255, 255, 255, 0.92);
    stroke: #07182c;
    stroke-width: 4.5px;
    paint-order: stroke fill;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: 0;
    opacity: 0;
    pointer-events: none;
}

.route-network__status {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.12);
}

.route-network__status div {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    min-height: 96px;
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.07);
}

.route-network__status strong {
    font-size: var(--step-sm);
    line-height: 1.35;
}

.route-network__timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    list-style: none;
    background: rgba(255, 255, 255, 0.12);
}

.route-network__timeline li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: var(--space-2);
    min-height: 130px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
}

.route-network__timeline li > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(246, 195, 67, 0.35);
    border-radius: 50%;
    font-size: var(--step-xs);
    font-weight: 830;
    color: var(--yellow);
}

.route-network__timeline strong {
    display: block;
    font-size: var(--step-base);
    line-height: 1.25;
}

.route-network__timeline p {
    margin-top: 0.3rem;
    font-size: var(--step-xs);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.route-checks-panel {
    display: grid;
    gap: var(--space-3);
    margin-top: var(--space-4);
    padding: var(--space-4);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: 0 18px 44px rgba(7, 24, 44, 0.07);
}

.route-checks-panel > strong {
    font-size: var(--step-lg);
}

.route-checks-panel ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-3);
    list-style: none;
}

.route-checks-panel li {
    position: relative;
    padding-left: 1rem;
    font-size: var(--step-sm);
    line-height: 1.45;
    color: var(--ink-soft);
}

.route-checks-panel li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

html.reveal-ready [data-reveal] {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 22px, 0);
    transition:
        opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
        filter 700ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
    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);
}

@keyframes routeDash {
    to {
        stroke-dashoffset: -160;
    }
}

@keyframes hubBreath {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.25);
    }
}

@keyframes cargoBlink {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.85);
    }

    45%,
    60% {
        opacity: 1;
        transform: scale(1.25);
    }
}

@keyframes networkPulse {
    0%,
    100% {
        box-shadow: 0 0 0 5px rgba(8, 160, 69, 0.16);
    }

    50% {
        box-shadow: 0 0 0 9px rgba(8, 160, 69, 0.06);
    }
}

.route-panel {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.route-panel__map {
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #eaf3f9;
}

.route-map-svg {
    width: 100%;
    height: auto;
    color: var(--blue);
}

.route-map__base {
    fill: #eef6fb;
}

.route-map__base,
.route-map__grid-fill,
.route-map__sea {
    stroke: none;
}

.route-map__grid {
    stroke: rgba(13, 90, 215, 0.11);
    stroke-width: 1;
}

.route-map__sea {
    fill: rgba(13, 90, 215, 0.08);
}

.route-map__land {
    fill: rgba(255, 255, 255, 0.78);
    stroke: rgba(25, 53, 82, 0.18);
    stroke-width: 1.2;
}

.route-map__country-line {
    stroke: rgba(25, 53, 82, 0.14);
    stroke-width: 1;
}

.route-map__routes path {
    fill: none;
    stroke: var(--blue);
    stroke-width: 3;
    stroke-linecap: round;
}

.route-map__points circle {
    fill: var(--blue);
    stroke: #ffffff;
    stroke-width: 5;
}

.route-map__points .route-map__hub {
    fill: var(--green);
    stroke-width: 6;
}

.route-map__labels text {
    fill: var(--ink-soft);
    stroke: none;
    font-size: 21px;
    font-weight: 760;
    letter-spacing: 0;
}

.route-panel__legend {
    display: grid;
    gap: 0.35rem;
    padding: var(--space-4);
}

.route-panel__legend strong {
    font-size: var(--step-lg);
}

.route-panel__legend span {
    color: var(--muted);
}

.route-dossier {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: white;
    box-shadow: var(--shadow);
}

.route-dossier__header {
    display: grid;
    gap: 0.45rem;
    padding: var(--space-4);
    color: white;
    background: var(--ink);
}

.route-dossier__header > span {
    font-size: var(--step-xs);
    font-weight: 780;
    line-height: 1;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.route-dossier__header strong {
    font-size: var(--step-xl);
    line-height: 1.18;
}

.route-dossier__header p {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.72);
}

.route-dossier__steps {
    display: grid;
    list-style: none;
}

.route-dossier__steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: var(--space-3);
    padding: 1.15rem var(--space-4);
    border-bottom: 1px solid var(--line);
}

.route-dossier__steps li > span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(8, 160, 69, 0.3);
    border-radius: 50%;
    font-size: var(--step-xs);
    font-weight: 830;
    color: var(--green-dark);
    background: var(--surface-green);
}

.route-dossier__steps strong {
    display: block;
    font-size: var(--step-md);
    line-height: 1.25;
}

.route-dossier__steps p {
    margin-top: 0.3rem;
    font-size: var(--step-sm);
}

.route-dossier__checks {
    display: grid;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--surface-soft);
}

.route-dossier__checks > strong {
    font-size: var(--step-md);
}

.route-dossier__checks ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem var(--space-3);
    list-style: none;
}

.route-dossier__checks li {
    position: relative;
    padding-left: 1rem;
    font-size: var(--step-sm);
    line-height: 1.45;
    color: var(--ink-soft);
}

.route-dossier__checks li::before {
    content: "";
    position: absolute;
    top: 0.58em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.fleet {
    background: #fbfcfd;
}

.fleet-board {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.fleet-board__header {
    display: flex;
    gap: var(--space-3);
    align-items: center;
    justify-content: space-between;
    padding: 1.15rem 1.35rem;
    border-bottom: 1px solid var(--line);
    background: var(--ink);
    color: white;
}

.fleet-board__header span {
    font-size: var(--step-xs);
    font-weight: 780;
    line-height: 1;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fleet-board__header strong {
    font-size: var(--step-lg);
    line-height: 1.2;
}

.fleet-board__rows {
    display: grid;
}

.fleet-board__rows div {
    display: grid;
    grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
    gap: var(--space-4);
    padding: 1.15rem 1.35rem;
    border-bottom: 1px solid var(--line);
}

.fleet-board__rows div:last-child {
    border-bottom: 0;
}

.fleet-board__rows dt {
    font-size: var(--step-md);
    font-weight: 830;
    line-height: 1.25;
    color: var(--green-dark);
}

.fleet-board__rows dd {
    margin: 0;
    line-height: 1.55;
    color: var(--muted);
}

.sectors {
    border-block: 1px solid var(--line);
}

.sectors__list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.sectors__list span {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-weight: 720;
    color: var(--ink-soft);
    background: white;
}

.sustainability {
    background: var(--surface-green);
}

.sustainability__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

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

.check-list li {
    display: flex;
    gap: var(--space-3);
    align-items: flex-start;
    padding: 1.1rem;
    border: 1px solid rgba(8, 120, 52, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.7);
}

.check-list svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--green-dark);
}

.check-list span {
    color: var(--ink-soft);
}

.contact-section {
    background: var(--ink);
}

.contact-section h2,
.contact-section .contact-copy p,
.site-footer,
.site-footer p {
    color: white;
}

.contact-section .contact-copy p {
    color: rgba(255, 255, 255, 0.75);
}

.contact-section__grid {
    align-items: start;
}

.contact-card {
    display: grid;
    gap: 0.4rem;
    margin-top: var(--space-5);
    color: rgba(255, 255, 255, 0.82);
}

.quote-form {
    display: grid;
    gap: var(--space-4);
    padding: var(--space-5);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.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 .consent-field {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.75rem;
}

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

.quote-form .consent-field span {
    font-weight: 520;
    line-height: 1.5;
    color: var(--muted);
}

.quote-form .consent-field a {
    color: var(--blue-dark);
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

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

.quote-form textarea {
    resize: vertical;
    min-height: 142px;
}

.quote-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    accent-color: var(--green);
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(13, 90, 215, 0.12);
}

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

.form-status {
    min-height: 1.5em;
    font-size: var(--step-sm);
    color: var(--ink-soft);
}

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

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

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

.faq__grid {
    align-items: start;
}

.faq__items {
    display: grid;
    gap: var(--space-3);
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
}

summary {
    cursor: pointer;
    padding: 1.1rem 1.2rem;
    font-size: var(--step-md);
    font-weight: 760;
    color: var(--ink);
}

details p {
    padding: 0 1.2rem 1.2rem;
    font-size: var(--step-sm);
}

.site-footer {
    padding-block: var(--space-6);
    background: #061222;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr auto 0.9fr;
    gap: var(--space-5);
    align-items: start;
}

.brand--footer {
    color: white;
}

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

.site-footer__links {
    display: grid;
    gap: 0.7rem;
}

.site-footer__links a {
    color: rgba(255, 255, 255, 0.78);
}

.site-footer__small {
    justify-self: end;
    max-width: 34ch;
    font-size: var(--step-sm);
}

.legal-page {
    padding-block: var(--space-7);
    background:
        linear-gradient(180deg, #eef5fa 0%, #f7fbff 42%, #ffffff 100%);
}

.legal-page__content {
    max-width: 1060px;
    padding: var(--space-6);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: 0 24px 70px rgba(7, 24, 44, 0.08);
}

.legal-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
    gap: var(--space-6);
    align-items: start;
    padding-bottom: var(--space-5);
    border-bottom: 1px solid var(--line);
}

.legal-page__eyebrow {
    margin: 0 0 var(--space-2);
    font-size: var(--step-xs);
    font-weight: 840;
    line-height: 1;
    color: var(--green-dark);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal-page h1 {
    max-width: 22ch;
    font-size: var(--step-3xl);
    line-height: 1.08;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
}

.lang-ru .legal-page h1,
.lang-uk .legal-page h1 {
    max-width: 24ch;
    font-size: var(--step-3xl);
}

.legal-page__hero > div > p:not(.legal-page__eyebrow) {
    margin-top: var(--space-4);
    font-size: var(--step-md);
    line-height: 1.75;
}

.legal-page__meta {
    padding: var(--space-4);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #f7fbff;
}

.legal-page__meta span,
.legal-summary span {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--step-xs);
    font-weight: 820;
    line-height: 1;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.legal-page__meta strong {
    display: block;
    font-size: var(--step-lg);
    line-height: 1.25;
}

.legal-page__meta p {
    margin-top: var(--space-3);
    font-size: var(--step-sm);
    line-height: 1.65;
}

.legal-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    margin-top: var(--space-5);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--line);
}

.legal-summary div {
    min-height: 132px;
    padding: var(--space-4);
    background: #fbfdff;
}

.legal-summary strong {
    display: block;
    font-size: var(--step-base);
    line-height: 1.45;
    color: var(--ink);
}

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

.legal-section {
    padding: var(--space-4);
    border: 1px solid rgba(217, 227, 236, 0.9);
    border-radius: var(--radius-md);
    background:
        linear-gradient(90deg, rgba(8, 160, 69, 0.06), rgba(255, 255, 255, 0) 38%),
        #ffffff;
}

.legal-page h2 {
    max-width: none;
    font-size: var(--step-lg);
    line-height: 1.25;
}

.legal-page p {
    margin-top: var(--space-3);
    font-size: var(--step-base);
    line-height: 1.72;
}

@media (max-width: 1120px) {
    :root {
        --step-4xl: 3.5rem;
        --step-3xl: 2.2rem;
    }

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

    .service-card {
        min-height: 285px;
    }

    .service-card:last-child {
        grid-column: span 2;
    }
}

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

    .utility-bar {
        display: none;
    }

    .site-header {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 0.45rem;
        min-height: 66px;
        padding-inline: 16px;
    }

    .brand {
        min-width: 0;
        font-size: 1rem;
    }

    .site-header > .brand span {
        display: inline;
    }

    .nav-toggle {
        display: grid;
        justify-self: end;
        flex: 0 0 auto;
    }

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

    .site-nav,
    .header-cta {
        display: none;
    }

    .site-nav.is-open {
        position: absolute;
        top: 66px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        justify-content: stretch;
        padding: 0.6rem 20px 1rem;
        border-bottom: 1px solid var(--line);
        background: white;
    }

    .site-nav.is-open a {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid var(--line);
    }

    .hero,
    .hero__inner {
        min-height: auto;
    }

    .hero {
        scroll-margin-top: 74px;
    }

    .hero__inner {
        grid-template-columns: 1fr;
        padding-block: var(--space-6) var(--space-5);
    }

    .quote-console {
        display: none;
    }

    .hero__image {
        object-position: 65% center;
    }

    .hero__shade {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0.76) 100%),
            linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.35));
    }

    .hero-assurances,
    .intro-strip__grid,
    .tools-band__grid,
    .process-steps,
    .control-tower__grid,
    .split-section__grid,
    .fleet__grid,
    .sustainability__grid,
    .contact-section__grid,
    .faq__grid,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .tool-list,
    .control-matrix {
        grid-template-columns: 1fr;
    }

    .route-checks-panel ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-steps__transition {
        top: auto;
        right: auto;
        bottom: -26px;
        left: 2rem;
        width: 24px;
        height: 24px;
        transform: rotate(90deg);
    }

    .section__header {
        display: grid;
        align-items: start;
    }

    .site-footer__small {
        justify-self: start;
    }

    .site-nav--simple {
        position: static;
        display: none;
    }

    .legal-page__hero,
    .legal-summary {
        grid-template-columns: 1fr;
    }

    .legal-page__content {
        padding: var(--space-5);
    }
}

@media (max-width: 640px) {
    :root {
        --space-6: 2.25rem;
        --space-7: 3.25rem;
        --step-4xl: 2.45rem;
        --step-3xl: 1.9rem;
        --step-xl: 1.25rem;
    }

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

    .language-switcher a {
        min-width: 29px;
        min-height: 32px;
        font-size: var(--step-xs);
    }

    .language-switcher {
        padding: 2px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        font-size: var(--step-lg);
        max-width: 24ch;
    }

    .hero__lead {
        font-size: var(--step-base);
        max-width: 36ch;
    }

    .hero h1 {
        max-width: none;
        white-space: nowrap;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-points {
        grid-template-columns: 1fr;
        gap: 0.7rem;
        margin-top: var(--space-4);
    }

    .hero-points li {
        font-size: var(--step-xl);
    }

    .operations-graphic {
        min-height: 156px;
    }

    .operations-graphic__cards {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .operations-graphic__cards span {
        min-height: 32px;
    }

    .network-map {
        min-height: 270px;
    }

    .network-map__labels text {
        font-size: 11px;
        stroke-width: 3px;
    }

    .route-network__top,
    .route-network__status {
        grid-template-columns: 1fr;
    }

    .route-network__top {
        display: grid;
        align-items: start;
    }

    .route-network__status div {
        min-height: auto;
        padding: 0.85rem 1rem;
    }

    .route-network__status strong {
        font-size: 0.92rem;
    }

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

    .hero-assurances,
    .form-grid,
    .check-list,
    .route-dossier__checks ul,
    .route-checks-panel ul,
    .tool-list,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .route-dossier__steps li {
        grid-template-columns: 44px 1fr;
        padding-inline: var(--space-3);
    }

    .fleet-board__header,
    .fleet-board__rows div {
        grid-template-columns: 1fr;
    }

    .fleet-board__header {
        display: grid;
        justify-content: start;
    }

    .service-card:last-child {
        grid-column: auto;
    }

    .quote-form {
        padding: var(--space-4);
        border-radius: var(--radius-md);
    }

    .legal-page__content,
    .legal-section,
    .legal-page__meta,
    .legal-summary div {
        padding: var(--space-4);
    }

    .legal-page h1 {
        max-width: none;
        font-size: var(--step-2xl);
    }
}

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

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