@font-face {
    font-family: 'Travels';
    src: url('fonts/Travels.ttf');
}

@font-face {
    font-family: 'Disket';
    src: url('fonts/Disket.ttf');
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Manrope,Arial,sans-serif;
    background: #03080d;
    color: #f3f5f6;
    line-height: 1.5
}

a {
    color: inherit;
    text-decoration: none
}

button, input, textarea {
    font: inherit
}

button {
    cursor: pointer
}

/* =========================================================
   PRELOADER — РУБЕЖ
========================================================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient( circle at 50% 40%, #0a1219 0%, #03080d 70% );
    overflow: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}

    /* Фоновая текстура "техно" — тонкие диагональные линии */
    .preloader::before {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient( 135deg, transparent 0 28px, rgba(229, 34, 40, .035) 28px 29px, transparent 29px 56px );
        pointer-events: none;
    }

    /* Красное свечение по центру */
    .preloader::after {
        content: "";
        position: absolute;
        width: 480px;
        height: 480px;
        left: 50%;
        top: 45%;
        transform: translate(-50%, -50%);
        background: radial-gradient(circle, rgba(229,34,40,.10), transparent 65%);
        pointer-events: none;
        animation: preloaderPulse 3s ease-in-out infinite;
    }

@keyframes preloaderPulse {
    0%, 100% {
        opacity: .7;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

.preloader__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    width: min(420px, 88vw);
    text-align: center;
}

/* ---------- Логотип / название ---------- */
.preloader__logo {
    font-family: 'Travels', 'Disket', sans-serif;
    font-size: clamp(34px, 5vw, 52px);
    letter-spacing: 10px;
    text-indent: 10px; /* компенсация letter-spacing */
    text-transform: uppercase;
    /* Тот же металлический градиент, что в .hero h1 */
    background: linear-gradient( to bottom right, #ffffff 0%, #dedede 30%, #757575 38%, #fafafa 42%, #dedede 60%, #757575 68%, #fafafa 72%, #999999 100% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1px 2px 3px rgba(0,0,0,.8));
}

    /* Тонкая красная линия под логотипом */
    .preloader__logo::after {
        content: "";
        display: block;
        width: 60%;
        height: 2px;
        margin: 12px auto 0;
        background: linear-gradient(90deg, transparent, #e52229, transparent);
        animation: logoLine 2s ease-in-out infinite;
    }

@keyframes logoLine {
    0%, 100% {
        opacity: .4;
        width: 40%;
    }

    50% {
        opacity: 1;
        width: 70%;
    }
}

/* ---------- Спидометр ---------- */
.preloader__gauge {
    position: relative;
    width: 220px;
    height: 130px;
}

.preloader__gauge-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

/* Фоновая дуга */
.gauge-track {
    stroke: rgba(255,255,255,.08);
}

/* Активная дуга */
.gauge-fill {
    stroke: #e52229;
    stroke-linecap: round;
    /* Длина дуги ~ 251px (π * 80). Заполняем через stroke-dashoffset */
    stroke-dasharray: 251.3;
    stroke-dashoffset: 251.3;
    filter: drop-shadow(0 0 6px rgba(229,34,40,.6));
    transition: stroke-dashoffset .3s linear;
}

/* Стрелка */
.preloader__needle {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 0;
    transform-origin: 50% 100%; /* вращаем вокруг основания стрелки */
    transform: translate(-50%, 0) rotate(-90deg); /* старт: смотрит влево */
    transition: transform .3s linear;
}

.needle-line {
    display: block;
    width: 2px;
    height: 68px;
    margin-left: -1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, #ff5a60 0%, #e52229 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(229,34,40,.8);
}

/* Центральная точка-хаб */
.preloader__hub {
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 14px;
    height: 14px;
    transform: translate(-50%, 50%);
    background: #0a1219;
    border: 2px solid #e52229;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(229,34,40,.7);
}

/* Процент */
.preloader__percent {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(229,34,40,.5);
}

    .preloader__percent span {
        font-size: 13px;
        color: #e52229;
        margin-left: 2px;
    }

/* ---------- Статус ---------- */
.preloader__status {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .35em;
    text-indent: .35em;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    min-height: 14px;
    transition: color .3s ease;
}

/* ---------- Тонкая полоса прогресса ---------- */
.preloader__bar {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
}

.preloader__bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8c1116, #e52229, #ff5a60);
    box-shadow: 0 0 10px rgba(229,34,40,.7);
    transition: width .3s linear;
}

/* ---------- Футер ---------- */
.preloader__footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 9px;
    letter-spacing: .2em;
    color: rgba(255,255,255,.25);
    text-transform: uppercase;
}

.preloader__cities {
    color: rgba(229,34,40,.5);
}

/* ---------- Занавес (выход) ---------- */
.preloader__curtain {
    position: absolute;
    inset: 0;
    background: #03080d;
    transform: translateY(100%);
    transition: transform .7s cubic-bezier(.7,0,.3,1);
    z-index: 5;
    pointer-events: none;
}

/* ---------- Состояние завершения ---------- */
.preloader.is-done .preloader__inner {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity .4s ease, transform .4s ease;
}

.preloader.is-done .preloader__curtain {
    transform: translateY(0);
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Блокировка скролла во время загрузки */
body.is-loading {
    overflow: hidden;
}

/* ---------- Адаптив ---------- */
@media (max-width: 600px) {
    .preloader__gauge {
        width: 180px;
        height: 108px;
    }

    .needle-line {
        height: 54px;
    }

    .preloader__percent {
        font-size: 22px;
    }

    .preloader__footer {
        font-size: 8px;
    }
}

body.is-loaded .hero__copy {
    animation: fadeUp .8s ease both;
}

body.is-loaded .hero__visual {
    animation: fadeUp 1s .15s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    width: min(1320px,calc(100% - 80px));
    margin: auto
}

.header {
    height: 72px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(2,7,11,.82);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(14px)
}

.header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 38px
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 220px
}

    .logo img {
        height: 71px;
    }

    .nav {
        display: flex;
        gap: 27px;
        margin-left: auto
    }

    .nav a {
        font-size: 11px;
        color: #b5bec5;
        transition: .2s
    }

        .nav a:hover {
            color: #fff
        }

.btn {
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 13px 23px;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    transition: .25s
}

.btn--red {
    background: #e52128;
    box-shadow: 0 8px 28px rgba(229,33,40,.2)
}

    .btn--red:hover {
        background: #ff2c34;
        transform: translateY(-2px)
    }

.btn--outline {
    background: transparent;
    border-color: #b92027
}

    .btn--outline:hover {
        background: #e52128
    }

.btn--ghost {
    border-color: #53616c;
    background: rgba(4,10,15,.4)
}

    .btn--ghost:hover {
        border-color: #e52128;
        background: rgba(229,33,40,.08)
    }

.btn--wide {
    width: 100%
}

.burger {
    display: none;
    background: none;
    border: 0;
    width: 30px
}

    .burger i {
        display: block;
        height: 1px;
        background: #fff;
        margin: 7px 0
    }

.hero {
    min-height: 500px;
    height: 100vh;
    max-height: 900px;
    position: relative;
    overflow: hidden
}

.hero__image {
    position: absolute;
    inset: 0;
    background-image: url("assets/rubezh-hero.png");
    background-size: cover;
    background-position: center center
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,#02070c 0%,rgba(2,7,12,.93) 21%,rgba(2,7,12,.35) 48%,rgba(2,7,12,.05) 80%),linear-gradient(0deg,#03080d 0%,transparent 28%)
}

.hero__content {
    height: 80%;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 70px
}

.hero__copy {
    max-width: 500px
}

.eyebrow {
    font-size: 11px;
    letter-spacing: .25em;
    color: #e52229;
    font-weight: 800;
    margin-bottom: 18px
}

.hero {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    background: #05080b;
}

.hero__content {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
}

.hero__copy {
    position: relative;
    z-index: 5;
    width: 58%;
}

.hero__visual {
    position: absolute;
    z-index: 2;
    right: -5%;
    top: 0;
    width: 65%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

    .hero__visual img {
        width: 125%;
        border-radius: 0 25px 25px 0;
        height: auto;
        object-fit: contain;
        display: block;
        /* плавное исчезновение картинки слева */
        -webkit-mask-image: linear-gradient( to right, transparent 0%, rgba(0,0,0,.5) 5%, #000 22%, #000 100% );
        mask-image: linear-gradient( to right, transparent 0%, rgba(0,0,0,.5) 5%, #000 22%, #000 100% );
    }


/* Затемнение поверх картинки */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient( 45deg, #05080b 0%, rgba(5,8,11,.95) 18%, rgba(5,8,11,.55) 38%, rgba(5,8,11,.05) 65%, rgba(5,8,11,.15) 100% );
}


/* Слоган */
.hero__slogan {
    max-width: 1920px;
    position: relative;
    width: 100%;
    z-index: 6;
    font-size: 14px;
    color: rgba(255,255,255,.8);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin: -120px 0 0 -70px;
    font-style: italic;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.crosshair {
    color: #e51d2a;
    font-size: 22px;
}

.hero h1, h2 {
    font-family: Disket;
    line-height: .94;
}

.hero h1 {
    font-family: Travels;
    font-size: clamp(35px,4.5vw,70px);
    text-transform: uppercase;
    letter-spacing: 3px; /* Премиальный автомобильный разряд */
    font-size: 64px;
    /* 2. Создаем металлический градиент (блики и тени) */
    background: linear-gradient( to bottom right, #ffffff 0%, /* Верхний светлый блик */
    #dedede 30%, /* Плавный переход в стальной */
    #757575 38%, /* Темная линия горизонта (эффект хрома) */
    #fafafa 42%, /* Резкий нижний блик */
    #dedede 60%, /* Плавный переход в стальной */
    #757575 68%, /* Темная линия горизонта (эффект хрома) */
    #fafafa 72%, /* Резкий нижний блик */
    #999999 100% /* Нижняя тень */
    );
    /* 3. Магия: обрезаем фон по контуру букв и делаем сам текст прозрачным */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* 4. Добавляем объем (эффект выдавленного из капота металла) */
    filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.6));
}

    .hero h1 span, h2 em {
        font-style: normal;
        color: #fff
    }

.hero p {
    font-size: 15px;
    color: #c1c8ce;
    max-width: 490px;
    margin: 24px 0
}

.hero__actions {
    display: flex;
    gap: 12px
}

.categories {
    display: flex;
    gap: 28px;
    margin-top: 36px
}

    .categories a {
        font-size: 11px;
        color: #cbd1d5;
        display: flex;
        gap: 8px;
        align-items: center
    }

    .categories span {
        color: #e52229;
        font-size: 19px
    }

.section {
    padding: 75px 0;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.section--dark {
    background: #050b11
}

.grid-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 70px
}

.section-intro h2, .section-heading h2, .request-layout h2, .advantages h2, .world h2, .help h2, .faq h2, .final-cta h2 {
    font-size: 48px;
    font-family: 'Disket';
}

    .section-intro h2 em, .section-heading h2 em, .request-layout h2 em, .advantages h2 em, .world h2 em, .help h2 em, .faq h2 em, .final-cta h2 em {
        color: #dfe4e7
    }

.section-intro p, .section-heading > p, .request-layout > div > p, .advantages p, .world p, .help p {
    font-size: 13px;
    color: #9ea8af;
    margin: 23px 0 28px
}

.cards-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.service-card, .budget-card, .stock-card, .case, .reviews article {
    border: 1px solid #263640;
    background: linear-gradient(145deg,rgba(12,22,30,.95),rgba(4,10,15,.96));
    overflow: hidden
}

.service-card {
    min-height: 365px;
    position: relative;
}

.service-card__visual {
    height: 205px;
    background-size: cover;
    background-position: center;
    filter: saturate(.75)
}

    .service-card__visual img {
        width: 311px;
        margin: auto;
    }

    .service-card__visual.car {
        background: linear-gradient(180deg,transparent,#09121a),url("assets/car.jpg") center/cover
    }

    .service-card__visual.moto {
        background: linear-gradient(180deg,transparent,#09121a),url("assets/moto.jpg") center/cover
    }

    .service-card__visual.special {
        background: linear-gradient(180deg,transparent,#09121a),url("assets/special.jpg") center/cover
    }

.service-card__body {
    padding: 18px 20px;
    position: relative;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.service-card h3 {
    width: fit-content;
    font-size: 17px;
    margin: 7px 0;
    font-family: 'Disket';
    text-transform: uppercase;
    position: relative;
    padding: 5px 15px;
    color: white;
    background: rgba(229, 34, 41, .5);
    /* Создаем неровные края «под мазок» */
    border-radius: 95% 4% 92% 5% / 4% 95% 6% 95%;
    /* Легкий наклон имитирует движение руки */
    transform: rotate(-1.5deg) skewX(-10deg);
}

.service-card p {
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    background: rgba(64, 65, 64, .3);
    max-width: 200px;
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 1);
}

.service-card__body > a {
    position: absolute;
    right: 20px;
    bottom: 18px;
    color: #e52229;
    font-size: 28px;
    background: rgba(255, 255, 255, .3);
    border-radius: 50px;
    padding: 0 10px 5px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 35px
}

    .section-heading > p {
        max-width: 420px;
        margin: 5px 0 0
    }

.budget-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

.budget-card {
    padding: 20px;
    min-height: 235px
}

.budget-card--accent {
    border-color: #63252a;
    background: linear-gradient(145deg,#121417,#0c090a)
}

.budget-card__top {
    display: flex;
    justify-content: space-between;
    font-size: 13px
}

    .budget-card__top span {
        color: #53616c;
        font-size: 10px
    }

.flags {
    display: flex;
    margin: 18px auto 0;
    align-content: center;
    justify-content: flex-start;
    gap: 5px;
}

    .flags span {
        margin: auto 0;
        font-size: 11px;
        color: #9fa9b0;
    }

.flag-icon {
    width: 20px;
    height: 20px;
    margin: auto 0 auto 5px;
}

.budget-auto {
    width: 300px;
    margin: auto;
}

.budget-card h3 {
    font-size: 17px;
}

.budget-card p {
    font-size: 10px;
    color: #8f9ba2;
    margin: 8px 0 18px
}

.budget-card a {
    font-size: 10px;
    color: #e52229;
    font-weight: 800
}

.route-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.tracker {
    display: flex;
    margin-top: 30px
}

    .tracker input {
        flex: 1;
        background: #081018;
        border: 1px solid #34434e;
        color: #fff;
        padding: 14px 16px;
        outline: none
    }

    .tracker .btn {
        border-radius: 0
    }

.track-result {
    margin-top: 15px;
    color: #9da8af;
    font-size: 11px;
    min-height: 20px
}

.route-visual {
    height: 160px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.route-line {
    position: absolute;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg,#e52229 55%,#263640 55%);
    top: 50%
}

.route-node {
    position: relative;
    z-index: 2;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 1px solid #30404b;
    background: #061019;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center
}

    .route-node b {
        font-size: 11px;
        color: #e52229
    }

    .route-node span {
        font-size: 8px;
        color: #a7b0b6;
        margin-top: 3px
    }

    .route-node.done {
        border-color: #a91d24
    }

    .route-node.active {
        box-shadow: 0 0 0 5px rgba(229,34,40,.1),0 0 25px rgba(229,34,40,.25)
    }

/* =========================================================
   CURRENT ROUTE
========================================================= */

.section--route {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 75% 35%, rgba(180, 0, 20, .08), transparent 35% ), #05090d;
}


/* =========================================================
   TOP LAYOUT
========================================================= */

.route-layout {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 40px;
    align-items: center;
}


/* LEFT */

.route-info {
    position: relative;
    z-index: 3;
}

    .route-info h2 {
        margin: 18px 0 20px;
        font-size: clamp(34px, 3.2vw, 58px);
        line-height: .95;
        letter-spacing: -.04em;
    }

        .route-info h2 em {
            color: #fff;
            font-style: normal;
        }

    .route-info p {
        max-width: 430px;
        color: rgba(255,255,255,.58);
        line-height: 1.65;
    }


/* =========================================================
   TRACKER
========================================================= */

.tracker {
    display: flex;
    margin-top: 30px;
    max-width: 560px;
}

    .tracker input {
        flex: 1;
        min-width: 0;
        height: 54px;
        padding: 0 18px;
        color: #fff;
        background: rgba(255,255,255,.035);
        border: 1px solid rgba(255,255,255,.13);
        border-right: none;
        outline: none;
        font-family: inherit;
    }

        .tracker input::placeholder {
            color: rgba(255,255,255,.35);
        }

        .tracker input:focus {
            border-color: rgba(230,30,45,.7);
        }

    .tracker .btn {
        white-space: nowrap;
        border-radius: 0 4px 4px 0;
    }


/* RESULT */

.track-result {
    margin-top: 15px;
    min-height: 20px;
    font-size: 13px;
    color: #e51d2a;
}


/* =========================================================
   ORDERS
========================================================= */

.route-orders {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* ONE ORDER */

.route-order {
    min-height: 145px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient( 110deg, rgba(255,255,255,.045), rgba(255,255,255,.015) );
    border: 1px solid rgba(255,255,255,.1);
    position: relative;
    overflow: hidden;
}

    .route-order::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #e51d2a;
        opacity: .8;
    }


/* =========================================================
   CAR
========================================================= */

.route-car {
    width: 150px;
    flex-shrink: 0;
    text-align: center;
}

.route-car-image {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .route-car-image img {
        width: 145px;
        max-height: 78px;
        object-fit: contain;
        display: block;
    }

.route-car-name {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}


/* =========================================================
   COLON
========================================================= */

.route-colon {
    width: 30px;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    color: #e51d2a;
}


/* =========================================================
   STAGES
========================================================= */

.route-stages {
    flex: 1;
    display: flex;
    align-items: center;
    min-width: 0;
}


.route-stage {
    flex: 1;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: .42;
    transition: opacity .3s ease, transform .3s ease;
}

    .route-stage.active {
        opacity: 1;
    }

    .route-stage:hover {
        transform: translateY(-3px);
        opacity: 1;
    }


    .route-stage img {
        width: 65px;
        height: 65px;
        object-fit: contain;
        display: block;
        margin-bottom: 6px;
    }


    .route-stage span {
        max-width: 120px;
        font-size: 10px;
        line-height: 1.3;
        color: rgba(255,255,255,.68);
    }


/* =========================================================
   ARROWS
========================================================= */

.route-arrow {
    flex: 0 0 55px;
    text-align: center;
    font-size: 17px;
    letter-spacing: -2px;
    color: rgba(255,255,255,.2);
}

    .route-arrow.active {
        color: #e51d2a;
    }


/* =========================================================
   10 STEP TIMELINE
========================================================= */

.route-timeline {
    position: relative;
    margin-top: 55px;
    padding: 30px 10px 5px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    border-top: 1px solid rgba(255,255,255,.08);
}


/* LINE */

.timeline-line {
    position: absolute;
    top: 52px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: repeating-linear-gradient( to right, rgba(255,255,255,.18) 0, rgba(255,255,255,.18) 5px, transparent 5px, transparent 11px );
}


/* STEP */

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: .38;
}

    .timeline-step.active {
        opacity: 1;
    }


/* ICON */

.timeline-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #080d12;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

.timeline-step.active .timeline-icon {
    border-color: rgba(229,29,42,.7);
    box-shadow: 0 0 0 5px rgba(229,29,42,.05), 0 0 25px rgba(229,29,42,.12);
}

.timeline-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}


/* NUMBER */

.timeline-number {
    margin-top: 7px;
    font-size: 9px;
    color: rgba(255,255,255,.3);
}

.timeline-step.active .timeline-number {
    color: #e51d2a;
}


/* TITLE */

.timeline-title {
    margin-top: 5px;
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.7);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .route-layout {
        grid-template-columns: 1fr;
    }

    .route-info {
        max-width: 650px;
    }

    .route-orders {
        width: 100%;
    }

    .route-timeline {
        overflow-x: auto;
        grid-template-columns: repeat(10, minmax(100px, 1fr));
        padding-bottom: 15px;
    }

    .timeline-line {
        left: 50px;
        right: 50px;
        width: 900px;
    }
}


@media (max-width: 700px) {

    .tracker {
        flex-direction: column;
    }

        .tracker input {
            border-right: 1px solid rgba(255,255,255,.13);
            border-bottom: none;
        }

        .tracker .btn {
            border-radius: 0 0 4px 4px;
        }


    .route-order {
        padding: 15px;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
    }


    .route-car {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }

    .route-car-image {
        width: 110px;
    }

        .route-car-image img {
            width: 110px;
        }


    .route-colon {
        display: none;
    }


    .route-stages {
        margin-top: 15px;
    }


    .route-stage img {
        width: 50px;
        height: 50px;
    }

    .route-stage span {
        font-size: 9px;
    }


    .route-arrow {
        flex-basis: 30px;
        font-size: 13px;
    }
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.stock-card {
    padding-bottom: 20px
}

.stock-photo {
    height: 205px;
    background-size: cover;
    background-position: center
}

.stock-1 {
    background-image: url("img/auto/test1.png")
}

.stock-2 {
    background-image: url("img/auto/test2.png")
}

.stock-3 {
    background-image: url("img/auto/test3.png")
}

.stock-card > div:last-child {
    padding: 18px 20px
}

.stock-card span, .case span {
    font-size: 9px;
    color: #84919a
}

.stock-card h3 {
    font-size: 18px;
    margin: 7px 0
}

.stock-card strong {
    font-size: 16px
}

.stock-card button {
    display: block;
    border: 0;
    background: none;
    color: #e52229;
    margin-top: 15px;
    font-weight: 800;
    font-size: 10px
}

.disclaimer {
    color: #66727a;
    font-size: 11px;
    margin-top: 18px
}

.request-section {
    background: linear-gradient(110deg,#0a1218,#03080d)
}

.request-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px
}

.check-list {
    list-style: none;
    margin-top: 30px
}

    .check-list li {
        font-size: 14px;
        color: #c6cdd1;
        padding: 10px 0;
        border-bottom: 1px solid #1b2932
    }

        .check-list li:before {
            content: "✓";
            color: #e52229;
            margin-right: 10px
        }

.lead-form {
    background: #071018;
    border: 1px solid #293842;
    padding: 28px
}

    .lead-form label {
        display: block;
        font-size: 10px;
        color: #8e9aa2;
        margin-bottom: 13px
    }

    .lead-form input, .lead-form textarea, .modal input {
        width: 100%;
        margin-top: 6px;
        background: #03090e;
        border: 1px solid #273640;
        color: #fff;
        padding: 12px 13px;
        outline: none;
        resize: vertical
    }

        .lead-form input:focus, .lead-form textarea:focus, .modal input:focus {
            border-color: #a31d24
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.lead-form small {
    display: block;
    color: #59666f;
    font-size: 10px;
    margin-top: 10px
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px
}

    .special-grid article {
        border: 1px solid #263640;
        background: #071018
    }

.special-photo {
    height: 190px;
    background-size: cover;
    background-position: center
}

.excavator {
    background-image: url("img/excavator.png")
}

.loader {
    background-image: url("img/loader.png")
}

.tractor {
    background-image: url("img/tractor.png")
}

.crane {
    background-image: url("img/crane.png")
}

.special-grid h3 {
    font-size: 16px;
    padding: 14px 16px 2px
}

.special-grid span {
    font-size: 10px;
    color: #78858e;
    padding: 0 16px 18px;
    display: block
}

/* =========================================================
   PARTS
========================================================= */

.section--parts {
    position: relative;
    overflow: hidden;
    background: radial-gradient( circle at 85% 50%, rgba(229, 29, 42, .07), transparent 35% ), #05090d;
}


/* HEADER */

.parts-heading {
    align-items: flex-end;
}

.parts-heading__text {
    max-width: 430px;
}

    .parts-heading__text p {
        margin-bottom: 22px;
        color: rgba(255,255,255,.58);
        line-height: 1.6;
    }


/* =========================================================
   CARDS
========================================================= */

.parts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 50px;
}


.parts-card {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    background: #080d12;
    transition: transform .35s ease, border-color .35s ease;
}


    .parts-card:hover {
        transform: translateY(-6px);
        border-color: rgba(229,29,42,.55);
    }


/* IMAGE */

.parts-card__image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}


    .parts-card__image img {
        width: 50%;
        height: 50%;
        margin: 20px auto 0;
        object-fit: cover;
        display: block;
        filter: saturate(.8) contrast(1.05);
        transition: transform .7s ease;
    }


.parts-card:hover
.parts-card__image img {
    transform: scale(1.06);
}


/* DARK GRADIENT */

.parts-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 180deg, rgba(3,7,10,.08) 0%, rgba(3,7,10,.15) 30%, rgba(3,7,10,.82) 70%, #030609 100% );
}


/* RED LIGHT */

.parts-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #e51d2a;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease;
}


.parts-card:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   CONTENT
========================================================= */

.parts-card__content {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 28px;
}


.parts-card__number {
    display: block;
    margin-bottom: 15px;
    font-size: 11px;
    letter-spacing: .16em;
    color: #e51d2a;
}


.parts-card h3 {
    margin: 0 0 12px;
    font-size: 27px;
    line-height: 1;
    letter-spacing: -.03em;
    color: #fff;
}


.parts-card p {
    max-width: 290px;
    margin: 0 0 20px;
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255,255,255,.58);
}


/* LINK */

.parts-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: color .25s ease;
}


    .parts-card__link span {
        color: #e51d2a;
        font-size: 18px;
        transition: transform .25s ease;
    }


    .parts-card__link:hover {
        color: #e51d2a;
    }


        .parts-card__link:hover span {
            transform: translateX(5px);
        }


/* =========================================================
   BOTTOM
========================================================= */

.parts-bottom {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 22px;
    padding: 25px 28px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.025);
}


.parts-bottom__line {
    width: 3px;
    height: 42px;
    flex-shrink: 0;
    background: #e51d2a;
}


.parts-bottom__text {
    flex: 1;
}


    .parts-bottom__text span {
        display: block;
        margin-bottom: 4px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .08em;
        color: #fff;
    }


    .parts-bottom__text p {
        margin: 0;
        font-size: 12px;
        color: rgba(255,255,255,.45);
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .parts-grid {
        grid-template-columns: 1fr;
    }

    .parts-card {
        min-height: 380px;
    }
}


@media (max-width: 600px) {

    .parts-heading {
        align-items: flex-start;
    }

    .parts-heading__text {
        margin-top: 20px;
    }

    .parts-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

.advantages {
    background: #02080d
}

.advantages-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: stretch;
    background: url(img/cat.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.adv-icon {
    width: 30px;
}

.predator {
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.predator:before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: 15%;
    top: 15%;
    filter: blur(3px)
}

    .predator:after {
        content: "";
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(130deg,transparent 0 27px,rgba(229,34,40,.13) 28px 29px,transparent 30px 52px);
        transform: skew(-8deg)
    }

.predator__text {
    position: absolute;
    z-index: 2;
    left: 35px;
    bottom: 35px;
    font-family: Oswald;
    font-size: 30px;
    line-height: .9;
    color: #d8dde0;
    letter-spacing: .08em
}

.adv-content {
    padding: 30px 0 30px 60px
}

.adv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 35px;
    margin-top: 30px
}

    .adv-grid article {
        display: grid;
        grid-template-columns: 35px 1fr;
        gap: 10px
    }

        .adv-grid article > span {
            font-size: 24px;
            color: #e52229
        }

    .adv-grid h3 {
        font-size: 12px
    }

    .adv-grid p {
        font-size: 10px;
        margin: 4px 0
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    border-top: 1px solid #263640
}

    .steps article {
        padding: 28px 25px;
        border-right: 1px solid #263640;
        min-height: 180px
    }

        .steps article:first-child {
            border-left: 1px solid #263640
        }

    .steps article img {
        width: 280px;
        display: block;
        margin: auto;
    }

    .steps b {
        width: 100%;
        display: block;
        margin: auto;
        font-family: Oswald;
        font-size: 35px;
        color: #e52229;
        text-align: center;
    }

    .steps span {
        display: block;
        font-size: 14px;
        font-weight: 800;
        margin: 12px 0
    }

    .steps p {
        font-size: 12px;
        color: #7f8b93
    }

.world {
    background: #02070b
}

.world-layout {
    display: grid;
    grid-template-columns: 35% 65%;
    align-items: center;
    gap: 40px
}

.world-map {
    height: 390px;
    position: relative;
    background: radial-gradient(ellipse at center,#111b22,#03080d 65%);
    overflow: hidden;
    display: flex;
}

.map {
    width: 100%;
    margin: auto;
    border-radius: 25px;
}

.map-flags {
    display: flex;
    align-content: center;
    justify-content: flex-end;
    gap: 5px;
}

.map-labels {
    position: absolute;
    right: 25px;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 12px;
    color: #aeb7bc
}

.pricing .section-heading {
    margin-bottom: 45px
}

.price-flow {
    display: flex;
    align-items: stretch;
    gap: 10px
}

    .price-flow > div {
        flex: 1;
        background: #09121a;
        border: 1px solid #273640;
        padding: 22px 17px;
        min-height: 135px
    }

    .price-flow i {
        align-self: center;
        color: #e52229;
        font-size: 25px;
        font-style: normal
    }

    .price-flow span {
        display: block;
        color: #e52229;
        font-size: 12px;
        margin-bottom: 15px
    }

    .price-flow b {
        font-size: 13px;
        display: block
    }

    .price-flow small {
        font-size: 12px;
        color: #76838c;
        display: block;
        margin-top: 8px
    }

    .price-flow .total {
        border-color: #8c2429;
        background: linear-gradient(145deg,#160c0d,#0a1015)
    }

.cases {
    background: #03090e
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

.case {
    padding-bottom: 20px
}

.case-photo {
    height: 230px;
    background-size: cover;
    background-position: center;
        border: 5px solid #263640;
}

.case-1 {
    background-image: url("img/case1.png")
}

.case-2 {
    background-image: url("img/case2.png")
}

.case-3 {
    background-image: url("img/case3.png")
}

.case > div:last-child {
    padding: 17px 20px
}

.case h3 {
    font-size: 18px;
    margin: 8px 0
}

.case p {
    font-size: 10px;
    color: #89959d
}

.reviews {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

    .reviews article {
        padding: 20px
    }

.review-head {
    display: flex;
    align-items: center;
    gap: 11px
}

.avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #26333d;
    border: 1px solid #475661;
    font-size: 10px
}

.review-head b {
    font-size: 11px;
    display: block
}

.review-head span {
    font-size: 12px;
    color: #77848c
}

.reviews p {
    font-size: 12px;
    color: #aeb6bb;
    margin: 18px 0;
    min-height: 55px
}

.reviews strong {
    font-size: 12px;
    color: #e52229
}

.help {
    background: linear-gradient(90deg,#071018,#02080d)
}

.help-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 120px;
    align-items: center
}

.contact-box {
    border-left: 1px solid #e52229;
    padding: 5px 0 5px 30px;
    display: flex;
    flex-direction: column
}

    .contact-box span, .contact-box small {
        font-size: 12px;
        color: #74818a
    }

    .contact-box a {
        font-size: 19px;
        font-weight: 800;
        margin: 2px 0
    }

    .social {
        margin-top: 10px;
        display: flex;
        gap: 10px;
    }

        .social a:hover {
            cursor: pointer;
            transform: translateY(-2px)
        }

    .social img {
        width: 50px;
    }

.faq-layout {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 70px
}

.faq-list details {
    border-top: 1px solid #273640;
    padding: 20px 0
}

    .faq-list details:last-child {
        border-bottom: 1px solid #273640
    }

.faq-list summary {
    list-style: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    justify-content: space-between
}

    .faq-list summary::-webkit-details-marker {
        display: none
    }

    .faq-list summary span {
        color: #e52229;
        font-size: 20px;
        font-weight: 400
    }

.faq-list details p {
    font-size: 12px;
    color: #7e8a92;
    max-width: 700px;
    padding: 14px 30px 0 0
}

.final-cta {
    padding: 65px 0;
    background: #080e13;
    border-top: 1px solid #263640
}

.final-cta__inner {
    display: block;
    justify-content: space-between;
    align-items: center
}

.final-text {
    width: 100%;
    margin: 25px 0 0;
    display: flex;
    gap: 50px;
    justify-content: space-evenly;
}

.footer {
    position: relative;
    background: #02070b;
    overflow: hidden
}

.footer__mountains {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent,#02070b),url("assets/footer-bg.jpg") center/cover;
    opacity: .35
}

.footer > .container {
    position: relative
}

.footer__top {
    min-height: 180px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1d2931;
}

.info {
    font-size: 12px;
    color: #78848c;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
}

.footer__pitch {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

    .footer__pitch b {
        font-size: 20px
    }

    .footer__pitch span {
        font-size: 16px;
        color: #73808a
    }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 65px;
    gap: 20px
}

    .footer__bottom nav {
        display: flex;
        gap: 20px
    }

    .footer__bottom a, .footer__bottom small {
        font-size: 10px;
        color: #78848c
    }

.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center
}

    .modal.is-open {
        display: flex
    }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(7px)
}

.modal__box {
    position: relative;
    width: min(460px,calc(100% - 35px));
    background: #081119;
    border: 1px solid #33424d;
    padding: 34px;
    box-shadow: 0 25px 80px #000
}

    .modal__box h2 {
        font-size: 43px
    }

    .modal__box p {
        font-size: 10px;
        color: #7e8a92;
        margin: 15px 0 22px
    }

.modal__close {
    position: absolute;
    right: 18px;
    top: 13px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 28px
}

.modal form {
    display: grid;
    gap: 10px
}

.modal input {
    margin: 0
}

.modal-open {
    overflow: hidden
}

@media(max-width:1050px) {
    .nav {
        gap: 15px
    }

    .header__cta {
        display: none
    }

    .grid-intro, .route-layout, .request-layout, .world-layout, .faq-layout {
        grid-template-columns: 1fr
    }

    .adv-content {
        padding: 50px 0
    }

    .predator {
        min-height: 300px
    }

    .budget-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .special-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .hero__image {
        background-position: 60% center
    }

    .hero__overlay {
        background: linear-gradient(90deg,#02070c 0%,rgba(2,7,12,.84) 45%,rgba(2,7,12,.15) 100%),linear-gradient(0deg,#03080d 0%,transparent 35%)
    }
}

@media(max-width:760px) {
    .container {
        width: min(100% - 34px,1320px)
    }

    .header {
        height: 62px
    }

    .logo {
        min-width: 0
    }

    .nav {
        display: none;
        position: absolute;
        top: 62px;
        left: 0;
        right: 0;
        background: #050b10;
        border-bottom: 1px solid #273640;
        flex-direction: column;
        padding: 22px 17px;
        gap: 18px
    }

        .nav.is-open {
            display: flex
        }

    .burger {
        display: block;
        margin-left: auto
    }

    .hero {
        min-height: 720px;
        height: 92vh
    }

    .hero__image {
        background-position: 62% center
    }

    .hero__overlay {
        background: linear-gradient(90deg,#02070c 0%,rgba(2,7,12,.88) 48%,rgba(2,7,12,.25) 100%),linear-gradient(0deg,#03080d 0%,transparent 45%)
    }

    .hero h1 {
        font-size: 58px
    }

    .hero p {
        font-size: 12px
    }

    .hero__slogan {
        left: 17px;
        right: auto;
        bottom: 28px
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start
    }

    .categories {
        gap: 15px;
        flex-wrap: wrap
    }

    .section {
        padding: 65px 0
    }

    .section-intro h2, .section-heading h2, .request-layout h2, .advantages h2, .world h2, .help h2, .faq h2, .final-cta h2 {
        font-size: 38px
    }

    .cards-3, .stock-grid, .case-grid, .reviews {
        grid-template-columns: 1fr
    }

    .budget-grid {
        grid-template-columns: 1fr
    }

    .section-heading {
        display: block
    }

        .section-heading > p {
            margin-top: 18px
        }

    .route-visual {
        margin-top: 25px
    }

    .tracker {
        flex-direction: column
    }

        .tracker input, .tracker .btn {
            width: 100%
        }

    .special-grid {
        grid-template-columns: 1fr 1fr
    }

    .adv-grid {
        grid-template-columns: 1fr
    }

    .advantages-layout {
        grid-template-columns: 1fr
    }

    .predator {
        min-height: 220px
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

        .steps article {
            border-bottom: 1px solid #263640
        }

    .price-flow {
        display: grid;
        grid-template-columns: 1fr
    }

        .price-flow i {
            display: none
        }

    .world-map {
        height: 300px
    }

    .help-layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .final-cta__inner {
        display: block
    }

    .final-cta .btn {
        margin-top: 25px
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 35px 0
    }

    .footer__bottom {
        display: block;
        padding: 20px 0
    }

        .footer__bottom nav {
            flex-wrap: wrap;
            margin-bottom: 15px
        }

    .form-row {
        grid-template-columns: 1fr
    }
}
