@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ─── Keyframes ─────────────────────────────────────── */
@keyframes landingFadeUp {
    from { opacity: 0; transform: translateY(40px) }
    to   { opacity: 1; transform: translateY(0) }
}
@keyframes landingFadeLeft {
    from { opacity: 0; transform: translateX(-40px) }
    to   { opacity: 1; transform: translateX(0) }
}
@keyframes landingFadeRight {
    from { opacity: 0; transform: translateX(40px) }
    to   { opacity: 1; transform: translateX(0) }
}
@keyframes landingFloat {
    0%, 100% { transform: translateY(0) }
    50%       { transform: translateY(-12px) }
}
@keyframes landingGradientShift {
    0%   { background-position: 0% 50% }
    50%  { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}
@keyframes landingGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(56,189,248,.2) }
    50%       { box-shadow: 0 0 40px rgba(56,189,248,.5) }
}
@keyframes landingBorderGlow {
    0%, 100% { border-color: rgba(56,189,248,.35) }
    50%       { border-color: rgba(56,189,248,.75) }
}
@keyframes landingRipple {
    0%   { transform: scale(.8); opacity: 1 }
    100% { transform: scale(2.5); opacity: 0 }
}
@keyframes landingPulse {
    0%, 100% { opacity: .5; transform: scale(1) }
    50%       { opacity: 1; transform: scale(1.25) }
}
@keyframes landingDash {
    to { stroke-dashoffset: -40 }
}
@keyframes landingDash2 {
    to { stroke-dashoffset: -30 }
}
@keyframes landingConnector {
    from { width: 0 }
    to   { width: 100% }
}
@keyframes landingStepIn {
    from { opacity: 0; transform: translateY(24px) }
    to   { opacity: 1; transform: translateY(0) }
}
@keyframes landingTruckDrive {
    /* 0-2 s: enter from right, decelerate */
    0%    { transform: translateX(calc(55vw + 500px)); animation-timing-function: cubic-bezier(.22,1,.36,1) }
    /* 2-4 s: stopped at centre */
    22.2% { transform: translateX(0); animation-timing-function: linear }
    44.4% { transform: translateX(0); animation-timing-function: cubic-bezier(.64,0,.78,0) }
    /* 4-6 s: exit left, accelerate */
    66.6% { transform: translateX(calc(-55vw - 500px)); animation-timing-function: linear }
    /* 6-9 s: off-screen gap before next cycle */
    100%  { transform: translateX(calc(-55vw - 500px)) }
}
/* Logo on the truck: translateX mirrors the truck exactly, then fades out at stop */
@keyframes landingLogoWithTruck {
    0% {
        transform: translateX(calc(55vw + 500px - 50%));
        opacity: 1;
        animation-timing-function: cubic-bezier(.22,1,.36,1);
    }
    22.2% {
        transform: translateX(-50%);
        opacity: 1;
        animation-timing-function: linear;
    }
    27%   { transform: translateX(-50%); opacity: 0; }
    100%  { transform: translateX(-50%); opacity: 0; }
}
/* Dropped logo: crossfades in at stop, stays while truck exits, slowly fades */
@keyframes landingLogoDropped {
    0%    { opacity: 0 }
    22.2% { opacity: 0 }
    27%   { opacity: 1 }
    66.6% { opacity: 1 }
    84%   { opacity: 0 }
    100%  { opacity: 0 }
}
@keyframes landingExhaustRise {
    0%   { transform: translateY(0)    scale(1);   opacity: .35 }
    100% { transform: translateY(-18px) scale(2.2); opacity: 0   }
}

/* ─── Scroll animation helpers ────────────────────────── */
.anim-hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.anim-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.anim-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}
.anim-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.anim-left.anim-visible  { opacity: 1; transform: translateX(0) }
.anim-right.anim-visible { opacity: 1; transform: translateX(0) }

/* ─── Navbar height CSS variable (set via JS in Navbar.tsx) ── */
:root {
    --navbar-height: 72px; /* fallback until JS measures the real value */
}

/* ─── Root & tokens ────────────────────────────────────── */
.landing-root {
    --accent:     #38bdf8;
    --accent-2:   #818cf8;
    --accent-3:   #34d399;
    --accent-w:   #fbbf24;
    --accent-e:   #f87171;
    --bg:         #080d1a;
    --surface:    rgba(15,23,42,.85);
    --surface-2:  rgba(17,24,39,.7);
    --border:     rgba(255,255,255,.06);
    --border-hi:  rgba(56,189,248,.22);
    --text:       #e2e8f0;
    --text-2:     #94a3b8;
    --text-muted: #64748b;
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    /* ── Scroll snap container ── */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    /* отступ снизу хедера при снаппинге (position:fixed не двигает поток) */
    scroll-padding-top: var(--navbar-height);
}

/* ─── Typography ───────────────────────────────────────── */
.landing-root h1,
.landing-root h2,
.landing-root h3,
.landing-root h4,
.landing-h1,
.landing-h2,
.landing-h3 {
    font-family: 'Syne', sans-serif;
    line-height: 1.15;
    margin: 0;
}
.landing-h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900 }
.landing-h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 800 }
.landing-h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 700 }
.landing-gradient-text {
    background: linear-gradient(135deg, #38bdf8, #818cf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-accent-text { color: var(--accent) }
.landing-muted       { color: var(--text-muted) }
.landing-secondary   { color: var(--text-2) }

/* ─── Layout ───────────────────────────────────────────── */
.landing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.landing-container--md {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
}
.landing-section {
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: clamp(2rem, 5vh, 5rem);
    padding-bottom: clamp(2rem, 5vh, 5rem);
    box-sizing: border-box;
    scroll-snap-align: start;
}
.landing-section--centered {
    justify-content: center;
}
.landing-section--start {
    justify-content: flex-start;
    padding-top: 24px;
    padding-bottom: 32px;
}
.landing-section--lg {
    padding: 120px 0;
}
.landing-section--alt {
    background: rgba(15,23,42,.35);
}

/* Grid */
.landing-grid {
    display: grid;
    gap: 24px;
}
.landing-grid--2 { grid-template-columns: repeat(2, 1fr) }
.landing-grid--3 { grid-template-columns: repeat(3, 1fr) }
.landing-grid--4 { grid-template-columns: repeat(4, 1fr) }
.landing-grid--2-3 { grid-template-columns: 2fr 3fr }
.landing-grid--3-2 { grid-template-columns: 3fr 2fr }
.landing-grid--align-center { align-items: center }

/* Flex */
.landing-flex        { display: flex }
.landing-flex-center { display: flex; align-items: center; justify-content: center }
.landing-flex-between{ display: flex; align-items: center; justify-content: space-between }
.landing-flex-wrap   { flex-wrap: wrap }
.landing-gap-2  { gap: 8px }
.landing-gap-3  { gap: 12px }
.landing-gap-4  { gap: 16px }
.landing-gap-6  { gap: 24px }
.landing-gap-8  { gap: 32px }

/* Misc */
.landing-text-center { text-align: center }
.landing-mb-2  { margin-bottom: 8px }
.landing-mb-3  { margin-bottom: 12px }
.landing-mb-4  { margin-bottom: 16px }
.landing-mb-6  { margin-bottom: 24px }
.landing-mb-8  { margin-bottom: 32px }
.landing-mb-12 { margin-bottom: 48px }
.landing-mt-auto { margin-top: auto }
.landing-relative { position: relative }
.landing-overflow-hidden { overflow: hidden }

/* ─── Chip / Badge ──────────────────────────────────────── */
.landing-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    border: 1px solid;
    font-family: 'Manrope', sans-serif;
}
.landing-chip--blue {
    background: rgba(56,189,248,.1);
    color: #38bdf8;
    border-color: rgba(56,189,248,.25);
}
.landing-chip--indigo {
    background: rgba(129,140,248,.1);
    color: #818cf8;
    border-color: rgba(129,140,248,.25);
}
.landing-chip--green {
    background: rgba(52,211,153,.1);
    color: #34d399;
    border-color: rgba(52,211,153,.25);
}

/* ─── Buttons ────────────────────────────────────────────── */
.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 10px;
    font-family: 'Manrope', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
    position: relative;
    overflow: hidden;
}
.landing-btn--primary {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: #fff;
}
.landing-btn--primary:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(56,189,248,.4);
}
.landing-btn--primary::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width .5s, height .5s;
}
.landing-btn--primary:hover::after { width: 400px; height: 400px }
.landing-btn--outline {
    background: transparent;
    color: #e0e6f0;
    border: 1.5px solid rgba(255,255,255,.14);
}
.landing-btn--outline:hover {
    border-color: var(--accent);
    background: rgba(56,189,248,.06);
    color: var(--accent);
}
.landing-btn--sm { padding: 8px 20px; font-size: .85rem }
.landing-btn--lg { padding: 16px 40px; font-size: 1.05rem }

/* ─── Cards ─────────────────────────────────────────────── */
.landing-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.landing-card--hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(0,0,0,.35);
}
.landing-card--glow:hover {
    border-color: rgba(56,189,248,.35);
    box-shadow: 0 0 30px rgba(56,189,248,.1);
}
.landing-card-body { padding: 28px }

.landing-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    flex-shrink: 0;
}

/* ─── Navbar ─────────────────────────────────────────────── */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(8,13,26,.82);
    border-bottom: 1px solid rgba(255,255,255,.05);
    transition: transform .3s;
}
.landing-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}
.landing-nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.landing-nav__logo-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.landing-nav__logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0; padding: 0;
}
.landing-nav__links a {
    color: var(--text-2);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .2s;
}
.landing-nav__links a:hover { color: var(--accent) }
.landing-nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ─── Hero ──────────────────────────────────────────────── */
.landing-hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 230px; /* extra bottom padding reserves space for truck stage */
    /* min-height comes from .landing-section */
    background: linear-gradient(-45deg, #080d1a, #0f172a, #0d1a2e, #080d1a);
    background-size: 400% 400%;
    animation: landingGradientShift 18s ease infinite;
}

/* ─── Truck animation stage ──────────────────────────────── */
.landing-truck-stage {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 215px;
    overflow: hidden;
    pointer-events: none;
    z-index: 3;
}
.landing-truck-drive {
    position: absolute;
    bottom: 0;
    left: calc(50% - 460px);
    width: 920px;
    height: 215px;
    will-change: transform;
    animation: landingTruckDrive 9s linear infinite;
}
/* On-truck logo — sits in the stage, animated translateX mirrors truck exactly.
   left = 50%+50px is the cargo-centre x when truck is stopped (translateX=0):
   drive left=(50%-460px), cargo x within drive=510px → stage x=50%+50px.      */
.landing-logo-on-truck {
    position: absolute;
    bottom: 115px;
    left: calc(50% + 50px);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    animation: landingLogoWithTruck 9s linear infinite;
    z-index: 5;
}
/* Dropped logo — fixed at the same stage position, appears on deposit, fades out */
.landing-logo-dropped {
    position: absolute;
    bottom: 115px;
    left: calc(50% + 50px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    opacity: 0;
    animation: landingLogoDropped 9s linear infinite;
    z-index: 4;
}
/* Exhaust smoke */
.landing-exhaust-1 { animation: landingExhaustRise 1.4s ease-out infinite }
.landing-exhaust-2 { animation: landingExhaustRise 1.4s ease-out .46s infinite }
.landing-exhaust-3 { animation: landingExhaustRise 1.4s ease-out .92s infinite }
.landing-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: .28;
}
.landing-hero__orb--1 {
    width: 480px; height: 480px;
    background: #38bdf8;
    top: -120px; right: -120px;
    animation: landingFloat 9s ease-in-out infinite;
}
.landing-hero__orb--2 {
    width: 320px; height: 320px;
    background: #818cf8;
    bottom: -60px; left: -80px;
    animation: landingFloat 11s ease-in-out infinite 2s;
}
.landing-hero__orb--3 {
    width: 220px; height: 220px;
    background: #34d399;
    top: 45%; left: 48%;
    animation: landingFloat 8s ease-in-out infinite 1s;
}
.landing-hero__content {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.landing-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(56,189,248,.1);
    border: 1px solid rgba(56,189,248,.25);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 24px;
}
.landing-hero__title {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.12;
    margin-bottom: 24px;
}
.landing-hero__sub {
    color: var(--text-2);
    font-size: clamp(.95rem, 1.5vw, 1.15rem);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}
.landing-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.landing-hero__map-wrap {
    position: relative;
    animation: landingFloat 7s ease-in-out infinite;
}
.landing-hero__map-panel {
    background: rgba(15,23,42,.9);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

/* map SVG animations */
.landing-map-route-1 {
    stroke-dasharray: 8 4;
    animation: landingDash 2s linear infinite;
}
.landing-map-route-2 {
    stroke-dasharray: 6 3;
    animation: landingDash2 3s linear infinite;
}
.landing-map-dot-pulse {
    animation: landingPulse 2s ease-in-out infinite;
}
.landing-map-dot-pulse-2 {
    animation: landingPulse 2.5s ease-in-out infinite .5s;
}
.landing-map-dot-pulse-3 {
    animation: landingPulse 3s ease-in-out infinite 1s;
}

.landing-hero__map-status {
    border-top: 1px solid rgba(255,255,255,.06);
    margin-top: 12px;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.landing-hero__map-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .78rem;
    color: var(--text-2);
    font-family: 'Manrope', monospace;
}
.landing-hero__map-row strong { color: var(--text); font-weight: 600 }

/* ─── Live dot ──────────────────────────────────────────── */
.landing-live-dot {
    width: 8px; height: 8px;
    background: #34d399;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
}
.landing-live-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #34d399;
    animation: landingRipple 2s linear infinite;
}
.landing-live-dot--amber {
    background: #fbbf24;
}
.landing-live-dot--amber::after {
    border-color: #fbbf24;
}
.landing-live-dot--blue {
    background: #38bdf8;
}
.landing-live-dot--blue::after {
    border-color: #38bdf8;
}

/* ─── Stats bar ─────────────────────────────────────────── */
.landing-stats {
    padding: 40px 0;
    background: rgba(15,23,42,.55);
    border-top: 1px solid rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.04);
}
.landing-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.landing-stats__item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.landing-stats__icon {
    opacity: .6;
    flex-shrink: 0;
}
.landing-stats__val {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
}
.landing-stats__label {
    font-size: .72rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* ─── Benefits ──────────────────────────────────────────── */
.landing-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.landing-benefit-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    height: 100%;
    box-sizing: border-box;
}
.landing-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.landing-benefit-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 12px;
    margin-bottom: 20px;
    flex-shrink: 0;
}
.landing-benefit-card__title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--text);
}
.landing-benefit-card__desc {
    font-size: .88rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ─── Products (pricing) ─────────────────────────────────── */
.landing-products__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.landing-product-card {
    background: rgba(15,23,42,.85);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(255,255,255,.07);
    box-sizing: border-box;
}
.landing-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.landing-product-card--popular {
    border-width: 2px;
    animation: landingBorderGlow 3s ease-in-out infinite;
}
.landing-popular-badge {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    color: #fff;
    font-weight: 700;
    font-size: .72rem;
    padding: 4px 20px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(56,189,248,.4);
    z-index: 2;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
}
.landing-product-card__price {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 2px;
}
.landing-product-card__unit {
    font-size: .78rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.landing-product-card__divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.06);
    margin: 16px 0;
}
.landing-product-card__features {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    margin-bottom: 24px;
}
.landing-product-card__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--text-2);
}
.landing-product-card__feature--on  { color: var(--text-2) }
.landing-product-card__feature--off { color: #334155 }

/* balance pill */
.landing-balance-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52,211,153,.08);
    border: 1px solid rgba(52,211,153,.2);
    color: #34d399;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: .82rem;
    font-weight: 600;
    margin-top: 24px;
}

/* ─── Comparison table ───────────────────────────────────── */
.landing-table-wrap {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.landing-table {
    border-collapse: collapse;
    width: 100%;
    font-size: .88rem;
}
.landing-table th {
    padding: 14px 18px;
    text-align: left;
    background: rgba(56,189,248,.07);
    color: var(--text-2);
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.landing-table th.landing-table__col-accent { color: var(--accent) }
.landing-table th.landing-table__col-indigo { color: var(--accent-2) }
.landing-table th.landing-table__col-purple { color: #c084fc }
.landing-table td {
    padding: 12px 18px;
    border-bottom: 1px solid rgba(255,255,255,.04);
    color: #cbd5e1;
    font-weight: 500;
}
.landing-table td.center { text-align: center }
.landing-table tr:last-child td { border-bottom: none }
.landing-table tbody tr:hover { background: rgba(255,255,255,.025) }
.landing-table__check { color: #34d399; font-weight: 800 }
.landing-table__dash  { color: #334155; font-weight: 600 }
.landing-table__val   { color: #cbd5e1; font-weight: 500 }

/* ─── How it works ──────────────────────────────────────── */
.landing-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}
.landing-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(12.5%);
    width: calc(75%);
    height: 2px;
    background: linear-gradient(90deg, rgba(56,189,248,.15), rgba(129,140,248,.4), rgba(52,211,153,.15));
    z-index: 0;
}
.landing-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}
.landing-step__num {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    border: 2px solid rgba(56,189,248,.3);
    background: var(--bg);
    transition: border-color .3s, box-shadow .3s;
}
.landing-step.anim-visible .landing-step__num {
    border-color: var(--accent);
    box-shadow: 0 0 24px rgba(56,189,248,.25);
}
.landing-step__title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: .95rem;
    color: var(--text);
    margin-bottom: 8px;
}
.landing-step__desc {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.65;
    max-width: 180px;
    margin: 0 auto;
}

/* ─── CTA section ───────────────────────────────────────── */
.landing-cta {
    position: relative;
    overflow: hidden;
}
.landing-cta__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(56,189,248,.07) 0%, transparent 70%);
    pointer-events: none;
}
.landing-cta__title {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
}
.landing-cta__sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 40px;
}
.landing-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Footer ────────────────────────────────────────────── */
.landing-footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(255,255,255,.05);
    scroll-snap-align: start;
}
.landing-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}
.landing-footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}
.landing-footer__logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.landing-footer__desc {
    color: var(--text-muted);
    font-size: .85rem;
    line-height: 1.7;
    max-width: 280px;
}
.landing-footer__col-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: .82rem;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
}
.landing-footer__links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.landing-footer__links a,
.landing-footer__links span {
    color: var(--text-muted);
    text-decoration: none;
    font-size: .85rem;
    transition: color .2s;
    cursor: pointer;
}
.landing-footer__links a:hover { color: var(--accent) }
.landing-footer__requisites {
    font-size: .78rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.landing-footer__divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,.05);
    margin: 0 0 24px;
}
.landing-footer__copy {
    text-align: center;
    color: #334155;
    font-size: .8rem;
}
.landing-footer__legal {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}
.landing-footer__legal a {
    color: #475569;
    font-size: .78rem;
    text-decoration: none;
    transition: color .2s;
}
.landing-footer__legal a:hover { color: var(--text-2) }

/* ─── Section header pattern ─────────────────────────────── */
.landing-section-head {
    text-align: center;
    margin-bottom: 40px;
}
.landing-section-head__title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    margin: 12px 0 16px;
    line-height: 1.2;
}
.landing-section-head__sub {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* scroll-padding-top on .landing-root already offsets snap AND scrollIntoView —
   no scroll-margin-top needed here (it would double-count the navbar height) */

/* ─── Scrollbar (на самом контейнере, без пробела) ──────── */
.landing-root::-webkit-scrollbar       { width: 7px }
.landing-root::-webkit-scrollbar-track { background: #090e1c }
.landing-root::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px }
.landing-root::-webkit-scrollbar-thumb:hover { background: #334155 }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .landing-hero__content        { grid-template-columns: 1fr; }
    .landing-hero__map-wrap       { max-width: 480px; margin: 0 auto }
    .landing-stats__grid          { grid-template-columns: repeat(2, 1fr) }
    .landing-benefits__grid       { grid-template-columns: repeat(2, 1fr) }
    .landing-products__grid       { grid-template-columns: repeat(2, 1fr) }
    .landing-steps                { grid-template-columns: repeat(2, 1fr); gap: 40px }
    .landing-steps::before        { display: none }
    .landing-footer__grid         { grid-template-columns: 1fr 1fr; gap: 28px }
    .landing-grid--2-3, .landing-grid--3-2 { grid-template-columns: 1fr }
}
@media (max-width: 768px) {
    /* отключаем snap — секции на мобильных выше viewport */
    .landing-root {
        scroll-snap-type: none;
        height: auto;
        overflow-y: auto;
    }
    .landing-section { padding: 60px 0; scroll-snap-align: none }
    .landing-footer  { scroll-snap-align: none }
    .landing-hero    { padding: 110px 0 70px; min-height: auto }
    .landing-truck-stage { display: none }
    .landing-nav__links    { display: none }
    .landing-benefits__grid   { grid-template-columns: 1fr }
    .landing-products__grid   { grid-template-columns: 1fr }
    .landing-grid--2 { grid-template-columns: 1fr }
    .landing-grid--3 { grid-template-columns: 1fr }
    .landing-grid--4 { grid-template-columns: repeat(2, 1fr) }
    .landing-footer__grid { grid-template-columns: 1fr }
    .landing-cta { padding: 70px 0 }
}
@media (max-width: 480px) {
    .landing-hero__title { font-size: 1.9rem }
    .landing-hero__ctas  { flex-direction: column; align-items: flex-start }
    .landing-steps       { grid-template-columns: 1fr }
    .landing-stats__grid { grid-template-columns: repeat(2, 1fr) }
    .landing-grid--4     { grid-template-columns: 1fr }
}
