* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    font-size: 17px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, #f7f8fa 0%, #e8ebf0 45%, #f2f3f5 100%);
    color: var(--dark-color);
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: min(920px, 92vw);
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 1600;
}

.cookie-banner__content {
    flex: 1 1 auto;
    display: grid;
    gap: 6px;
}

.cookie-banner__title {
    font-weight: 700;
    font-size: 1rem;
}

.cookie-banner__text {
    color: var(--gray);
    font-size: 0.95rem;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-banner__link {
    color: var(--gray);
    font-weight: 600;
}

.cookie-banner__button {
    padding: 8px 20px;
}

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

ul {
    list-style: none;
}

:root {
    --primary-color: #d40000;
    --primary-dark: #a80000;
    --dark-color: #1b1b1b;
    --light-gray: #c7cbd1;
    --gray: #5f6670;
    --silver-metallic: #c7cbd1;
    --silver-light: #f2f3f5;
    --silver-deep: #aeb3bb;
    --silver-sheen: linear-gradient(135deg, #f7f8fa 0%, #e5e8ee 50%, #d0d5dd 100%);
    --border-soft: rgba(27, 27, 27, 0.08);
    --shadow-soft: 0 10px 24px rgba(27, 27, 27, 0.12);
    --shadow-strong: 0 18px 40px rgba(27, 27, 27, 0.18);
    --white: #ffffff;
    --transition: all 0.3s ease;
    --font-body: 'Saira', sans-serif;
    --font-heading: 'Saira Condensed', sans-serif;
    --section-title-size: clamp(1.95rem, 2.6vw, 2.4rem);
    --section-title-size-mobile: 1.8rem;
    --section-subtitle-size: 1.05rem;
    --section-subtitle-size-mobile: 1rem;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    scroll-margin-top: 120px;
}

.header {
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding: 8px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(6px);
}

.header::before {
    content: none;
}

.header::after {
    content: none;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    padding: 0;
}

.logo::before {
    content: none;
}

.logo::after {
    content: none;
}
.logo__img {
    height: 64px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    display: block;
}

.logo-loader {
    --piece-gap: clamp(12px, 2vw, 40px);
    --piece-gap-far: clamp(30px, 5vw, 70px);
    --piece-one-width: 43.05%;
    --piece-two-width: 11.95%;
    --piece-three-width: 45%;
    --piece-two-left: var(--piece-one-width);
    --piece-three-left: calc(var(--piece-one-width) + var(--piece-two-width));
    --piece-drop: clamp(50px, 10vw, 90px);
    --piece-drop-far: clamp(120px, 20vw, 180px);
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 28% 18%, #1e1e1e 0%, #0b0b0b 55%, #050505 100%);
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    animation: logoLoaderHide 0.6s ease forwards;
    animation-delay: 4.9s;
}

.logo-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.no-logo-loader .logo-loader {
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.logo-loader__stage {
    position: relative;
    width: min(86vw, 760px);
    height: clamp(190px, 30vw, 260px);
}

.logo-loader__piece,
.logo-loader__final-img {
    display: block;
    height: auto;
}

.logo-loader__piece {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    opacity: 0;
    filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.35));
    will-change: transform, opacity;
}

.logo-loader__piece--two {
    width: var(--piece-two-width);
    left: var(--piece-two-left);
    animation: logoPieceCenter 2.4s ease forwards;
    animation-delay: 0.1s;
}

.logo-loader__piece--one {
    width: var(--piece-one-width);
    left: 0;
    animation: logoPieceLeft 2.4s ease forwards;
    animation-delay: 0.45s;
}

.logo-loader__piece--three {
    width: var(--piece-three-width);
    left: var(--piece-three-left);
    animation: logoPieceRight 2.4s ease forwards;
    animation-delay: 0.45s;
}

.logo-loader__piece--four {
    width: 100%;
    left: 0;
    top: 60%;
    animation: logoPieceBottom 2.1s ease forwards;
    animation-delay: 0.9s;
}

.logo-loader__final {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    perspective: 1200px;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.96);
    animation: logoFinalIn 0.7s ease forwards;
    animation-delay: 2.3s;
}

.logo-loader__final::before,
.logo-loader__final::after {
    content: '';
    position: absolute;
    top: -30%;
    left: -80%;
    height: 160%;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    mask-image: url('../img/One2One.png');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-mode: alpha;
    -webkit-mask-image: url('../img/One2One.png');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.logo-loader__final::before {
    width: 70%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.06) 35%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.08) 62%, transparent 75%);
    transform: skewX(-14deg);
    filter: blur(6px);
    animation: logoFinalSweepSoft 1.4s ease forwards;
    animation-delay: 3.05s;
}

.logo-loader__final::after {
    width: 22%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 35%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.2) 65%, transparent 100%);
    transform: skewX(-18deg);
    filter: blur(1px);
    animation: logoFinalSweepSharp 0.9s ease forwards;
    animation-delay: 3.15s;
}

.logo-loader__final-img {
    width: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    animation: none;
}

@keyframes logoPieceCenter {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.6);
    }
    25% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.98);
    }
}

@keyframes logoPieceLeft {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(calc(-1 * var(--piece-gap-far))) scale(0.92);
    }
    35% {
        opacity: 1;
        transform: translateY(-50%) translateX(calc(-1 * var(--piece-gap))) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-50%) translateX(calc(-1 * var(--piece-gap))) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.98);
    }
}

@keyframes logoPieceRight {
    0% {
        opacity: 0;
        transform: translateY(-50%) translateX(var(--piece-gap-far)) scale(0.92);
    }
    35% {
        opacity: 1;
        transform: translateY(-50%) translateX(var(--piece-gap)) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(-50%) translateX(var(--piece-gap)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.98);
    }
}

@keyframes logoPieceBottom {
    0% {
        opacity: 0;
        transform: translateY(calc(-50% + var(--piece-drop-far))) scale(0.96);
    }
    35% {
        opacity: 1;
        transform: translateY(calc(-50% + var(--piece-drop))) scale(1);
    }
    80% {
        opacity: 1;
        transform: translateY(calc(-50% + var(--piece-drop))) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-50%) scale(0.98);
    }
}

@keyframes logoFinalIn {
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes logoFinalSpin {
    0% {
        transform: rotateY(0deg);
    }
    15% {
        transform: rotateY(-45deg);
    }
    100% {
        transform: rotateY(-1080deg);
    }
}

@keyframes logoFinalSweepSoft {
    0% {
        opacity: 0;
        transform: translateX(0) skewX(-18deg);
    }
    25% {
        opacity: 1;
    }
    100% {
        opacity: 0.05;
        transform: translateX(230%) skewX(-14deg);
    }
}

@keyframes logoFinalSweepSharp {
    0% {
        opacity: 0;
        transform: translateX(0) skewX(-18deg);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(320%) skewX(-18deg);
    }
}

@keyframes logoLoaderHide {
    to {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo-loader {
        animation-delay: 0.4s;
        animation-duration: 0.4s;
    }

    .logo-loader__piece {
        display: none;
    }

    .logo-loader__final {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        animation: none;
    }

    .logo-loader__final-img {
        animation: none;
    }

    .logo-loader__final::before,
    .logo-loader__final::after {
        animation: none;
        opacity: 0;
    }
}

.logo__text {
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.logo__sub {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.nav {
    margin-left: auto;
}

.nav__list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0;
    position: relative;
    z-index: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.nav__list::before {
    content: none;
}

.nav__link {
    color: #1f2a37;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.92rem;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
    border-radius: 0;
    background-image: linear-gradient(var(--primary-color), var(--primary-color));
    background-size: 0% 2px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}

.nav__link:hover {
    color: var(--primary-color);
    background: transparent;
    box-shadow: none;
    background-size: 100% 2px;
}

.nav__link::after {
    content: none;
}

.nav__link:hover::after {
    opacity: 1;
}

.nav__link--quote {
    font-weight: 600;
    color: var(--white);
    background: var(--primary-color);
    border: 0;
    padding: 8px 14px;
    border-radius: 6px;
    margin-left: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 14px rgba(212, 0, 0, 0.18);
    background-image: none;
}

.nav__link--quote:hover {
    color: var(--white);
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.nav__link--quote::after {
    display: none;
}

.social-icons {
    display: flex;
    gap: 12px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.social-icon {
    color: #1f2a37;
    font-size: 1.1rem;
    transition: var(--transition);
    transform: translateZ(0);
    width: auto;
    height: auto;
    display: grid;
    place-items: center;
    border-radius: 0;
    border: 0;
    background: transparent;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: scale(1.1) rotate(3deg);
}

.hero {
    position: relative;
    background: transparent;
    color: var(--white);
    padding: 100px 0 80px;
    overflow: hidden;
    min-height: 820px;
    isolation: isolate;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.34) 0%, rgba(15, 23, 42, 0.52) 60%, rgba(15, 23, 42, 0.28) 100%),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.16) 38%, rgba(255, 255, 255, 0) 62%),
        radial-gradient(circle at 78% 12%, rgba(255, 244, 227, 0.36) 0%, rgba(255, 244, 227, 0.14) 36%, rgba(255, 244, 227, 0) 60%),
        linear-gradient(115deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.62;
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    right: -12%;
    top: -12%;
    width: 62%;
    height: 130%;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
    opacity: 0.18;
    z-index: 1;
    pointer-events: none;
}

.hero__background {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero--active .hero__background,
body.parallax-active .hero__background {
    opacity: 1;
}

.hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.84) saturate(0.98) contrast(0.98);
    opacity: 0;
    transition: opacity 2s ease-in-out;
    z-index: 0;
    animation: scaleUp 20s infinite alternate linear;
}

.hero__bg-image.active {
    opacity: 1;
    z-index: 1;
}

@keyframes scaleUp {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

.hero__grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero__text {
    flex: 1 1 50%;
    text-align: left;
    padding-right: 20px;
    padding-top: 120px;
    max-width: 620px;
}

.hero__title {
    font-size: clamp(3.2rem, 5vw, 4.3rem);
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out forwards;
    transform: rotateX(0deg);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    color: #f5f7fa;
}


.hero__subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 30px;
    color: rgba(236, 241, 246, 0.92);
    opacity: 0.9;
}

.hero__social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.hero__social-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.38em;
    color: rgba(255, 255, 255, 0.7);
}

.hero__social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
    backdrop-filter: blur(6px);
}

.hero__social-links .social-icon {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
}

.hero__social-links .social-icon:hover {
    color: var(--white);
    transform: scale(1.08);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    cursor: pointer;
    transform: translateZ(0);
}

.btn--primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(212, 0, 0, 0.4);
}

.btn--primary:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05) translateY(-2px);
}

.btn--gradient {
    background: linear-gradient(120deg, #d40000, #8d0000);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(212, 0, 0, 0.35);
}

.btn--gradient:hover {
    transform: translateY(-2px);
}

.btn--light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn--light:hover {
    background: rgba(255, 255, 255, 0.35);
}

.btn--secondary {
    background: var(--white);
    color: var(--dark-color);
    border: 1px solid var(--light-gray);
}

.btn--secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.link-accent {
    color: var(--primary-color);
    font-weight: 600;
}

.link-accent:hover {
    text-decoration: underline;
}

.hero__model {
    flex: 1 1 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.drive-hero {
    position: relative;
    padding: 120px 0 110px;
    color: var(--white);
    overflow: hidden;
    background: #fff;
}

.drive-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.75) saturate(0.95);
    transform: scale(1.02);
}

.drive-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 15, 24, 0.62), rgba(10, 15, 24, 0.15) 60%, rgba(255, 255, 255, 0.02));
    z-index: 1;
}

.drive-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.drive-hero__eyebrow {
    display: inline-flex;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.drive-hero__title {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--white);
}

.drive-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.85);
}

.drive-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.drive-hero__stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 18px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
}

.drive-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
}

.drive-hero__stat span {
    font-size: 1.2rem;
    font-weight: 700;
}

.drive-hero__stat small {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.drive-intro {
    padding: 90px 0;
    background: #fff;
}

.drive-intro__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 40px;
    align-items: center;
}

.drive-intro__image {
    min-height: 360px;
    border-radius: 18px;
    background: #f2f4f7;
    border: 1px solid rgba(212, 0, 0, 0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drive-intro__image img {
    width: 100%;
    height: auto;
    display: block;
}

.drive-intro__tag {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    font-weight: 600;
}

.drive-intro__title {
    font-size: 2.3rem;
    margin: 12px 0 16px;
}

.drive-intro__text {
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.7;
}

.drive-intro__list {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.drive-intro__list li {
    position: relative;
    padding-left: 22px;
    color: var(--dark-color);
}

.drive-intro__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color);
}

.drive-opportunities {
    padding: 90px 0;
    background: #f7f8fa;
}

.drive-section__title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 12px;
}

.drive-section__subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto 30px;
}

.drive-section__eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.drive-accordion {
    display: grid;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.drive-accordion__item {
    border: 1px solid rgba(212, 0, 0, 0.15);
    border-radius: 14px;
    padding: 8px 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.drive-accordion__summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    padding: 12px 4px;
    cursor: pointer;
}

.drive-accordion__summary::-webkit-details-marker {
    display: none;
}

.drive-accordion__summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.drive-accordion__item[open] .drive-accordion__summary::after {
    transform: rotate(45deg);
}

.drive-accordion__content {
    padding: 0 4px 14px;
    color: var(--dark-color);
}

.drive-accordion__content ul {
    display: grid;
    gap: 8px;
}

.drive-benefits {
    padding: 90px 0;
    background: #fff;
}

.drive-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.drive-benefits__card {
    border: 1px solid rgba(212, 0, 0, 0.2);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.drive-benefits__card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.drive-benefits__card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.drive-benefits__card p {
    color: var(--gray);
}

.drive-values {
    padding: 90px 0;
    background: #f7f8fa;
}

.drive-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.drive-values__card {
    border: 1px solid rgba(212, 0, 0, 0.18);
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    background: #fff;
}

.drive-values__icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
}

.drive-values__card p {
    color: var(--gray);
}

.drive-stats {
    padding: 90px 0;
    background: #fff;
}

.drive-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.drive-stats__card {
    border: 1px solid rgba(212, 0, 0, 0.15);
    border-radius: 16px;
    padding: 26px;
    text-align: center;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.drive-stats__card h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.drive-stats__card p {
    color: var(--gray);
}

.drive-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, rgba(212, 0, 0, 0.08), rgba(255, 255, 255, 0.85));
}

.drive-cta__content {
    text-align: center;
    max-width: 700px;
}

.drive-cta__content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.drive-cta__content p {
    color: var(--gray);
    margin-bottom: 24px;
}

.drive-apply {
    padding: 90px 0;
    background: #fff;
}

.drive-apply__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.drive-apply__info {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.drive-apply__info strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: 6px;
}

.drive-apply__info a {
    color: var(--primary-color);
    font-weight: 600;
}

.drive-apply__applications {
    margin-top: 12px;
}

.application-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
}

.application-tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.application-tab {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    background: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.application-tabs input:checked + .application-tab {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 14px 28px rgba(212, 0, 0, 0.2);
}

.application-panels {
    width: 100%;
    flex-basis: 100%;
}

.application-panel {
    display: none;
}

#application-driver:checked ~ .application-panels .application-panel--driver {
    display: grid;
    gap: 18px;
}

#application-owner:checked ~ .application-panels .application-panel--owner {
    display: grid;
    gap: 18px;
}

.application-header {
    display: grid;
    gap: 6px;
    margin-bottom: 20px;
}

.application-kicker {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.7rem;
    color: var(--primary-color);
    font-weight: 600;
}

.application-title {
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    margin: 0;
}

.application-subtitle {
    color: var(--gray);
    max-width: 640px;
    margin: 0;
}

.application-layout {
    display: grid;
    grid-template-columns: minmax(170px, 210px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.application-nav {
    position: sticky;
    top: 110px;
    align-self: start;
    display: grid;
    gap: 10px;
    padding: 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    counter-reset: app-step;
}

.application-nav::before {
    content: "Sections";
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gray);
    font-weight: 600;
}

.application-nav a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    border-radius: 10px;
    padding: 8px 12px 8px 44px;
    position: relative;
    border: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.application-nav a::before {
    counter-increment: app-step;
    content: counter(app-step, decimal-leading-zero);
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    border: 1px solid rgba(212, 0, 0, 0.25);
    background: #fff;
}

.application-nav a:hover {
    color: var(--primary-color);
    border-color: rgba(212, 0, 0, 0.4);
    background: rgba(212, 0, 0, 0.06);
}

.quote__form.application-form {
    display: grid;
    gap: 22px;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-soft);
}

.application-section {
    padding: 20px;
    border-radius: 16px;
    background: #f7f8fa;
    border: 1px solid rgba(15, 23, 42, 0.08);
    scroll-margin-top: 130px;
}

.application-section:last-of-type {
    margin-bottom: 0;
}

.application-section h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.application-section:target {
    border-color: rgba(212, 0, 0, 0.4);
    box-shadow: 0 12px 26px rgba(212, 0, 0, 0.18);
}

.application-fields {
    gap: 14px 20px;
}

.quote__form.application-form .form-group {
    margin-bottom: 0;
}

.application-note {
    color: var(--gray);
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.quote-hero {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 60%);
    overflow: hidden;
}

.quote-hero__pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 12%, rgba(212, 0, 0, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(15, 23, 42, 0.06) 0%, transparent 50%),
        linear-gradient(120deg, rgba(15, 23, 42, 0.04) 0%, transparent 55%);
    pointer-events: none;
}

.quote-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quote-hero__kicker {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
}

.quote-hero__title {
    font-size: 3rem;
    margin: 14px 0;
}

.quote-hero__subtitle {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.quote-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.quote-hero__chip {
    background: #fff;
    border: 1px solid rgba(212, 0, 0, 0.18);
    color: var(--dark-color);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.quote-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.quote-hero__stat {
    display: grid;
    gap: 4px;
    min-width: 140px;
}

.quote-hero__stat strong {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.quote-hero__stat span {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quote-hero__card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.quote-hero__card-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.quote-hero__card-subtitle {
    color: var(--gray);
    margin-bottom: 18px;
}

.quote__form--compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
}

.quote__form--compact .form-group {
    margin-bottom: 0;
}

.quote__form--compact .btn--full,
.quote__form--compact .form-note,
.quote__form--compact .form-status {
    grid-column: 1 / -1;
}

.quote-steps {
    padding: 90px 0;
    background: #fff;
}

.quote-steps__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.quote-steps__panel {
    background: linear-gradient(135deg, rgba(212, 0, 0, 0.08), rgba(255, 255, 255, 0.95));
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(212, 0, 0, 0.16);
}

.quote-steps__panel h2 {
    font-size: 2rem;
    margin: 10px 0 12px;
}

.quote-steps__panel p {
    color: var(--gray);
    margin-bottom: 18px;
}

.quote-step {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.quote-step:last-child {
    border-bottom: 0;
}

.quote-step__badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.quote-step h3 {
    margin-bottom: 6px;
}

.quote-step p {
    color: var(--gray);
}

.quote-section__title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.quote-section__subtitle {
    text-align: center;
    color: var(--gray);
    max-width: 720px;
    margin: 0 auto 30px;
}

.quote-section__eyebrow {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.quote-benefits {
    padding: 90px 0;
    background: #f7f8fa;
}

.quote-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.quote-benefits__card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(212, 0, 0, 0.18);
    text-align: center;
}

.quote-benefits__card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.quote-testimonials {
    padding: 90px 0;
    background: #fff;
}

.quote-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.quote-testimonial {
    border-radius: 16px;
    padding: 26px;
    background: #f7f8fa;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.quote-testimonial__stars {
    color: #f4b740;
    margin-bottom: 12px;
}

.quote-testimonial p {
    color: var(--dark-color);
    margin-bottom: 12px;
}

.quote-testimonial span {
    color: var(--gray);
    font-weight: 600;
}

.quote-cta {
    padding: 90px 0;
    background: linear-gradient(120deg, rgba(212, 0, 0, 0.08), rgba(255, 255, 255, 0.95));
}

.quote-cta__content {
    text-align: center;
    max-width: 720px;
}

.quote-cta__content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.quote-cta__content p {
    color: var(--gray);
    margin-bottom: 24px;
}

.quote-cta__actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__model model-viewer {
    width: 100%;
    height: 500px;
    background: transparent;
    --poster-color: transparent;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.delivery {
    position: relative;
    padding: 120px 0;
    color: var(--white);
    overflow: hidden;
    isolation: isolate;
}

.delivery--video {
    min-height: 520px;
}

.delivery__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.82;
    transition: opacity 1s ease;
}

.delivery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.delivery .container {
    position: relative;
    z-index: 2;
}

.delivery__title {
    font-size: var(--section-title-size);
    text-align: center;
    margin-bottom: 16px;
}

.delivery__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--primary-color);
}

.delivery__subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: var(--section-subtitle-size);
}

.delivery__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    column-gap: 32px;
    row-gap: 24px;
    max-width: 100%;
    margin: 0 auto;
}

.delivery__card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 168px;
    scroll-snap-align: start;
}

.delivery__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.3);
}

.delivery__icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.delivery__value {
    font-size: 1.4rem;
    font-weight: 700;
}

.delivery__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.services {
    padding: 110px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f2f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services::before,
.quote::before,
.page-section--gray::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 55%);
    pointer-events: none;
    z-index: 0;
}

.services::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(212, 0, 0, 0.08), transparent 55%),
        radial-gradient(circle at 10% 85%, rgba(15, 23, 42, 0.06), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.services .container,
.quote .container,
.page-section--gray .container {
    position: relative;
    z-index: 1;
}

.services__title {
    text-align: center;
    font-size: var(--section-title-size);
    margin-bottom: 12px;
}

.services__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--primary-color);
}

.services__subtitle {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    color: var(--gray);
    line-height: 1.7;
    font-size: var(--section-subtitle-size);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform, opacity;
    --drop-delay: 0s;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(212, 0, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(212, 0, 0, 0.14), rgba(212, 0, 0, 0.02));
    border: 1px solid rgba(212, 0, 0, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
}

.service-card p {
    color: #5b6470;
    font-size: 0.98rem;
    line-height: 1.6;
}

#services.services--ready .service-card {
    opacity: 0;
    transform: translateY(-36px) scale(0.98);
}

#services.services--animate .service-card {
    animation: servicesDrop 0.9s cubic-bezier(0.2, 0.82, 0.22, 1) forwards;
    animation-delay: var(--drop-delay);
}

#services.services--animate .service-card:nth-child(1) { --drop-delay: 0.05s; }
#services.services--animate .service-card:nth-child(2) { --drop-delay: 0.12s; }
#services.services--animate .service-card:nth-child(3) { --drop-delay: 0.2s; }
#services.services--animate .service-card:nth-child(4) { --drop-delay: 0.28s; }
#services.services--animate .service-card:nth-child(5) { --drop-delay: 0.36s; }
#services.services--animate .service-card:nth-child(6) { --drop-delay: 0.44s; }
#services.services--animate .service-card:nth-child(7) { --drop-delay: 0.52s; }
#services.services--animate .service-card:nth-child(8) { --drop-delay: 0.6s; }

@keyframes servicesDrop {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.98);
    }
    60% {
        opacity: 1;
        transform: translateY(8px) scale(1);
    }
    80% {
        transform: translateY(-4px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    #services.services--ready .service-card {
        opacity: 1;
        transform: none;
    }

    #services.services--animate .service-card {
        animation: none;
    }
}

.card-link {
    margin-top: 12px;
}

.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
    position: relative;
    z-index: 2;
}

.gallery__title {
    text-align: center;
    font-size: var(--section-title-size);
    margin-bottom: 12px;
}

.gallery__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin: 14px auto 0;
    background: var(--primary-color);
}

.gallery__subtitle {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
    color: var(--gray);
    line-height: 1.7;
    font-size: var(--section-subtitle-size);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.gallery__item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #e6e8ec;
    box-shadow: var(--shadow-soft);
    aspect-ratio: var(--gallery-aspect, 4 / 3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item:hover img {
    transform: scale(1.05);
}


.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4f6f9 100%);
    position: relative;
}

.about::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 320px;
    background: linear-gradient(
        180deg,
        #f2f5f9 0%,
        rgba(242, 245, 249, 0.7) 45%,
        rgba(242, 245, 249, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.about.about--parallax {
    background: rgba(110, 12, 18, 0.22);
}

.about.about--parallax::before {
    opacity: 1;
}

.about__wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.about__left {
    padding-right: 12px;
}

.about__right {
    background: #ffffff;
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 26px 28px;
    box-shadow: var(--shadow-soft);
}

.about__tagline {
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    color: var(--primary-color);
    font-weight: 700;
}

.about__title {
    font-size: var(--section-title-size);
    margin: 14px 0 20px;
    line-height: 1.2;
    color: #ffffff;
}

.about__line {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.about__right p {
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 1rem;
}

.safety--glass {
    position: relative;
    background: url('/assets/img/safety-bg.jpg') no-repeat center center / cover;
    background-image: image-set(url('/assets/img/safety-bg.webp') type('image/webp'), url('/assets/img/safety-bg.jpg') type('image/jpeg'));
    padding: 150px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.safety--glass::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.1));
    z-index: 1;
    pointer-events: none;
}

.safety__glass-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    color: var(--white);
}

.safety__text {
    flex: 1 1 55%;
}

.safety__heading {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.safety__heading span {
    color: var(--primary-color);
}

.safety__text p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.safety__image {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.safety__image img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.safety__caption {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.roles-cards {
    padding: 100px 0;
    background: url('/assets/img/roles-bg.jpg') no-repeat center center / cover;
    background-image: image-set(url('/assets/img/roles-bg.webp') type('image/webp'), url('/assets/img/roles-bg.jpg') type('image/jpeg'));
    position: relative;
    z-index: 1;
    min-height: 760px;
}

.roles-cards::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
    z-index: 2;
}

.roles-cards__wrapper {
    display: flex;
    position: relative;
    z-index: 3;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.role-card {
    position: relative;
    flex: 1 1 420px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.role-card:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.role-card__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: 1;
    transition: filter 0.3s ease;
}

.role-card--owner .role-card__bg {
    background-image: url('/assets/img/owner-operator.jpg');
    background-image: image-set(url('/assets/img/owner-operator.webp') type('image/webp'), url('/assets/img/owner-operator.jpg') type('image/jpeg'));
}

.role-card--driver .role-card__bg {
    background-image: url('/assets/img/driver-job.jpg');
    background-image: image-set(url('/assets/img/driver-job.webp') type('image/webp'), url('/assets/img/driver-job.jpg') type('image/jpeg'));
}

.role-card__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
    text-align: left;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0));
}

.role-card__content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--white);
}

.role-card__content p {
    font-size: 1rem;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.quote {
    padding: 100px 0;
    background: var(--silver-sheen);
    position: relative;
}

.quote__wrapper {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.quote__info {
    flex: 1 1 40%;
}

.quote__form {
    flex: 1 1 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f2f3f5 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.quote__title {
    font-size: 2rem;
    margin-bottom: 12px;
}

.quote__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 12px;
    background: var(--primary-color);
}

.quote__subtitle {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group > label,
.form-group .form-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.form-group:has(input[required], select[required], textarea[required]) > label::after {
    content: " *";
    color: var(--primary-color);
    font-weight: 700;
}

.checkbox-grid label:has(input[required])::after {
    content: " *";
    color: var(--primary-color);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid var(--light-gray);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input[required],
.form-group select[required],
.form-group textarea[required] {
    border-color: rgba(212, 0, 0, 0.35);
    box-shadow: 0 0 0 1px rgba(212, 0, 0, 0.05);
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 0, 0, 0.12);
}

.quote__form--detailed {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
}

.quote__form--detailed .form-group {
    margin-bottom: 0;
}

.form-group--full {
    grid-column: 1 / -1;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
}

.checkbox-grid label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.btn--full {
    width: 100%;
    text-align: center;
}

.quote__form--detailed .btn--full,
.quote__form--detailed .form-note,
.quote__form--detailed .form-status {
    grid-column: 1 / -1;
}

.form-note {
    font-size: 0.85rem;
    color: var(--gray);
}

.form-status {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--gray);
}

.form-status--pending {
    color: var(--gray);
}

.form-status--success {
    color: #0f7a3c;
    font-weight: 600;
}

.form-status--error {
    color: #b42318;
    font-weight: 600;
}

.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.7;
}

.contact-map {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f2f3f5 100%);
}

.contact-map__wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.contact-map__map {
    width: 100%;
    height: 420px;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 3;
}

.map-overlay__text {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 18px;
    border-radius: 8px;
}

.contact-map__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.marker-custom {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    position: relative;
    box-shadow: 0 0 0 8px rgba(212, 0, 0, 0.2);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(212, 0, 0, 0.5);
    animation: pulse 1.5s infinite;
}

.marker-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.footer {
    background: linear-gradient(135deg, #111111 0%, #1c1c1c 100%);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 4px solid var(--primary-color);
}

.footer__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer__title {
    margin-bottom: 16px;
    font-size: 1.2rem;
}

.footer__list li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer__list a:hover {
    color: var(--primary-color);
}

.footer__social {
    max-width: 360px;
}

.footer__quote {
    font-style: italic;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.social-footer {
    color: var(--white);
    font-size: 1.2rem;
    margin-right: 10px;
    transition: var(--transition);
}

.social-footer:hover {
    color: var(--primary-color);
}

.footer__bottom {
    margin-top: 40px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)),
        url('/assets/img/truck4.jpg') no-repeat center center / cover;
    background-image:
        linear-gradient(120deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)),
        image-set(url('/assets/img/truck4.webp') type('image/webp'), url('/assets/img/truck4.jpg') type('image/jpeg'));
    color: var(--white);
}

.page-hero__content {
    max-width: 720px;
}

.page-hero__title {
    font-size: var(--section-title-size);
    margin-bottom: 12px;
}

.page-hero__title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 12px;
    background: var(--primary-color);
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: var(--section-subtitle-size);
}

.page-section {
    padding: 100px 0;
}

.page-section--gray {
    background: var(--silver-sheen);
    position: relative;
}

.section-title {
    font-size: var(--section-title-size);
    margin-bottom: 12px;
}

.section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 12px;
    background: var(--primary-color);
}

.section-subtitle {
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 680px;
    line-height: 1.7;
    font-size: var(--section-subtitle-size);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.info-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f2f3f5 100%);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.info-card h3 {
    margin-bottom: 10px;
}

.info-card p {
    color: var(--gray);
}

.page-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.page-grid__col {
    flex: 1 1 45%;
}

.page-list li {
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    color: var(--gray);
}

.page-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.placeholder {
    border: 2px dashed var(--light-gray);
    border-radius: 12px;
    padding: 50px 16px;
    text-align: center;
    color: var(--gray);
    background: linear-gradient(135deg, #f7f8fa, #e1e5ea);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    box-shadow: var(--shadow-soft);
}

.page-media {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f2f4;
    box-shadow: var(--shadow-soft);
}

.page-media img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .hero__grid,
    .about__wrapper,
    .safety__glass-card,
    .roles-cards__wrapper,
    .quote__wrapper,
    .page-grid {
        flex-direction: column;
    }

    .about__wrapper {
        grid-template-columns: 1fr;
    }

    .hero__text {
        padding-top: 80px;
    }

    .header {
        position: relative;
    }

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

    .drive-intro__grid,
    .drive-apply__grid {
        grid-template-columns: 1fr;
    }

    .application-layout {
        grid-template-columns: 1fr;
    }

    .application-nav {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .application-nav::before {
        content: none;
    }

    .application-nav a {
        border: 1px solid var(--border-soft);
        border-radius: 999px;
        padding: 6px 12px;
        background: #fff;
    }

    .application-nav a::before {
        content: none;
    }

    .application-nav a:hover {
        transform: none;
    }

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

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

    .quote-hero__grid,
    .quote-steps__grid,
    .quote-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .quote-hero__title {
        font-size: 2.4rem;
    }

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

@media (max-width: 768px) {
    .header__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo__img {
        height: 56px;
    }

    .nav {
        margin-left: 0;
    }

    .nav__list {
        gap: 12px;
        padding: 6px 0;
    }

    .nav__list::before {
        content: none;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__social {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .delivery__title,
    .services__title,
    .gallery__title,
    .quote__title,
    .page-hero__title,
    .section-title,
    .about__title {
        font-size: var(--section-title-size-mobile);
    }

    .delivery__subtitle,
    .services__subtitle,
    .gallery__subtitle,
    .page-hero__subtitle,
    .section-subtitle {
        font-size: var(--section-subtitle-size-mobile);
    }

    .footer__wrapper {
        flex-direction: column;
    }

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

    .quote__form--detailed {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .drive-hero__title {
        font-size: 2.4rem;
    }

    .drive-hero__stats {
        gap: 16px;
    }

    .drive-section__title {
        font-size: 1.9rem;
    }

    .drive-benefits__grid,
    .drive-values__grid,
    .drive-stats__grid {
        grid-template-columns: 1fr;
    }

    .quote-hero {
        padding: 90px 0;
    }

    .quote__form--compact {
        grid-template-columns: 1fr;
    }

    .quote-benefits__grid,
    .quote-testimonials__grid {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
        gap: 12px;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .logo__img {
        height: 48px;
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero__model model-viewer {
        height: 340px;
    }

    .services__grid,
    .gallery__grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .delivery__grid {
        grid-template-columns: 1fr;
    }
}
