    /* reset */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html,
    body {
        height: auto;
        min-height: 100%;
        width: 100%;
    }

    body {
        font-family: Arial, sans-serif;
        color: #333;
        line-height: 1.5;
    }

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

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

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

    /* header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #E94B35;
    }

    nav {
        display: flex;
    }

    nav ul {
        display: flex;
        gap: 1.5rem;
        list-style: none;
    }

    nav a {
        font-weight: 500;
    }

    /* белый фон (по умолчанию можно не писать) */
    .bg-white {
        background-color: #ffffff;
    }

    /* серый фон во всю ширину */
    .bg-gray {
        background-color: #f9faff;
    }

    .burger {
        display: none;
        flex-direction: column;
        gap: 0.3rem;
        cursor: pointer;
    }

    .burger span {
        width: 25px;
        height: 3px;
        background: #333;
        transition: 0.3s;
    }

    .burger.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /* sections spacing + scroll offset */
    section,
    footer {
        padding: 4rem 0;
    }

    section:first-of-type {
        padding-top: 120px;
    }

    html {
        scroll-behavior: smooth;
    }

    section,
    footer {
        scroll-margin-top: 80px;
    }

    /* Hero Section */
    .hero {
        background: #f9faff;
        width: 100%;
    }

    .hero-inner {
        display: flex;
        flex-direction: row;
        gap: 2rem;
        align-items: center;
        justify-content: space-between;
        padding: 4rem 0;
        /* важное уточнение */
    }

    @media(max-width: 768px) {
        .hero .hero-inner {
            flex-direction: column;
            padding: 3rem 1rem;
            align-items: flex-start;
        }

        .hero-image {
            display: none;
        }
    }

    .hero-content {
        flex: 1;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        color: #111;
    }

    .hero-content h1 span {
        color: #E94B35;
    }

    .features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .feature {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .feature img,
    .feature svg,
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        color: #E94B35;
    }

    .feature p {
        font-size: 0.95rem;
        color: #333;
    }

    .btn {
        display: inline-block;
        margin-top: 2rem;
        padding: 1rem 2rem;
        background: #E94B35;
        color: #fff;
        font-weight: bold;
        border-radius: 4px;
        transition: 0.3s;
    }

    .btn:hover {
        background: #cf3e2d;
    }

    .hero-image {
        flex: 1;
        position: relative;
    }

    .hero-image img {
        border-radius: 8px;
    }

    .hero-svg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }

    /* cost-steps */

    .cost-steps {
        padding-bottom: 6rem;
        position: relative;
        width: 100%;
    }

    .steps {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        position: relative;
        padding: 2rem 0;
        border-bottom: 2px solid #f0f0f0;
    }

    .step {
        flex: 1;
        text-align: center;
        position: relative;
        padding-top: 18px;
        line-height: 1.1em;
    }

    .step::before {
        content: attr(data-step);
        position: absolute;
        top: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        background: #E94B35;
        color: white;
        width: 36px;
        height: 36px;
        line-height: 36px;
        border-radius: 50%;
        font-weight: bold;
        font-size: 0.9rem;
    }

    .cost-savings-layered {
        position: relative;
        justify-content: center;
        margin: 3rem 0;
        padding: 1rem;
        min-height: 300px;
    }

    .car-image-front {
        position: absolute;
        top: -116px;
        bottom: 0;
        z-index: 2;
    }

    .car-image-front img {
        height: auto;
        width: auto;
    }

    .savings-box {
        background: linear-gradient(90deg, #E94B35, #cf3e2d);
        border-radius: 32px;
        padding: 2rem 3rem;
        color: white;
        max-width: 450px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        position: absolute;
        z-index: 1;
        left: 600px;
    }

    .savings-box::after {
        content: '';
        position: absolute;
        inset: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        pointer-events: none;
    }

    .savings-content {
        text-align: center;
    }

    .savings-content p {
        margin: 0;
        font-size: 1.2rem;
    }

    .savings-content strong {
        display: block;
        font-size: 1.8rem;
        margin-top: 0.25rem;
    }

    @media (max-width: 768px) {
        .cost-savings-layered {
            display: none;
        }
    }


    /* Advantages Section */
    .advantages {
        background: #f9faff;
    }

    .adv-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .adv-card {
        position: relative;
        z-index: 1;
        background: #fff;
        border-radius: 16px;
        padding: 2rem 1.5rem 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }

    .adv-card::before,
    .adv-card::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 100%;
        background: #fff;
        border-radius: 16px;
        z-index: -1;
    }

    .adv-card::before {
        top: 8px;
    }

    .adv-card::after {
        top: 16px;
    }

    .adv-card .number {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #E94B35, #CF3E2D);
        color: #fff;
        font-size: 1.5rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
    }

    .adv-card h3 {
        margin-top: 2rem;
        text-align: center;
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .adv-card hr {
        width: 40px;
        height: 2px;
        background: #aaa;
        border: none;
        margin: 0 auto 1rem;
    }

    .adv-card p {
        font-size: 0.95rem;
        color: #555;
        text-align: center;
    }


    /* process-steps */
    .process-steps {
        padding: 4rem 0;
    }

    .process-steps .container {
        background: #fff;
        border-radius: 32px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
        padding: 3rem 2rem;
    }

    .steps-cards {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }

    .step-card {
        flex: 1;
        min-width: 200px;
        text-align: center;
        padding: 2px 5px;
        box-shadow: #777;
    }

    .step-header {
        display: flex;
        margin-bottom: 1.3rem;
    }

    .step-header .icon {
        margin-right: 1rem;
    }

    .step-header .icon img {
        width: 36px;
        height: 36px;
        object-fit: contain;
        margin-bottom: 1rem;
    }

    .step-info {
        font-size: 0.85rem;
        color: #999;
        margin-bottom: 0.25rem;
    }

    .step-info strong {
        display: block;
        font-size: 1.1rem;
        color: #000;
        margin-top: 0.2rem;
    }

    .step-card p {
        font-size: 0.8rem;
        color: #444;
        line-height: 1.4;
        text-align: left;
    }

    @media (max-width: 768px) {
        .steps-cards {
            flex-direction: column;
            border-radius: 0;
            overflow: visible;
        }

        .step-card {
            border-radius: 0 !important;
            padding: 1.5rem 1rem;
        }
    }



    /* Contact/Form Section */
    .contact {
        background: #e6ebf2;
    }

    .contact-inner {
        display: flex;
        gap: 2rem;
        align-items: center;
        background: transparent;
        padding: 2rem;
        position: relative;
    }

    .contact-image {
        flex: 1;
        background: #f0f2f5;
        border-radius: 16px;
        padding: 1rem;
    }

    .contact-image img {
        border-radius: 16px;
    }

    .contact-form {
        flex: 1;
        background: #fff;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .contact-form p {
        font-size: 1rem;
        color: #333;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .form-group {
        display: flex;
        align-items: center;
        background: #f0f2f5;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
    }

    .form-group label {
        margin-right: 0.75rem;
        color: #555;
        font-size: 1.2rem;
    }

    .form-group input {
        border: none;
        background: transparent;
        outline: none;
        flex: 1;
        font-size: 1rem;
        color: #333;
    }

    .checkbox-group {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .checkbox-group label {
        font-size: 0.875rem;
        color: #555;
    }

    .checkbox-group a {
        color: #E94B35;
    }

    .contact-form .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-form .btn i {
        font-size: 1.2rem;
    }


    /* process */
    .process {
        background: #fff;
    }

    .process-inner {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
    }

    .process-step {
        min-width: 200px;
        background: #f9faff;
        border-radius: 8px;
        padding: 1rem;
        text-align: center;
    }

    .process-step h4 {
        margin-bottom: 0.5rem;
        color: #E94B35;
    }

    .process-step p {
        font-size: 0.9rem;
        color: #555;
    }

    /* stats */
    .stats-section {
        padding: 5rem 0;
        position: relative;
        overflow: hidden;
    }

    .stats-cards {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .stats-card {
        background: #fff;
        border-radius: 16px;
        padding: 2rem 1.5rem;
        width: 250px;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        position: relative;
    }

    .stats-icon {
        background: #ef5244;
        width: 96px;
        height: 96px;
        margin: 0 auto 1.5rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .stats-icon img {
        width: 64px;
        height: auto;
        object-fit: contain;
    }

    .stats-title {
        font-weight: 700;
        font-size: 1.25rem;
        color: #111;
        margin-bottom: 0.25rem;
    }

    .stats-subtitle {
        font-size: 0.85rem;
        color: #9ca3af;
        text-transform: uppercase;
    }

    /* testimonials */
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-grid {
        display: grid;
        gap: 1.5rem;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    @media (min-width: 992px) {
        .testimonials-grid {
            grid-template-columns: repeat(2, 1fr) !important;
        }
    }

    /* Каждая карточка с видео */
    .testimonial {
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        background: #000;
        /* на случай, если видео ещё не загрузилось */
    }

    .testimonial video {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 16px;
        object-fit: cover;
    }

    /* Адаптивное расстояние до футера */
    @media (max-width: 768px) {
        .testimonials-section {
            padding: 3rem 0;
        }
    }

    /* dangers */

    .dangers-section {
        background: #f9faff;
        padding: 4rem 0;
        position: relative;
    }

    .dangers-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .danger-item {
        position: relative;
        background: #fff;
        border-radius: 16px;
        padding: 2rem;
        overflow: hidden;
    }

    .danger-item h3 {
        font-size: 1.25rem;
        color: #E94B35;
        margin-bottom: 0.75rem;
    }

    .danger-item p {
        color: #555;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* декоративные круги за текстом */
    .danger-item::before {
        content: '';
        position: absolute;
        width: 160px;
        height: 160px;
        background: rgba(233, 75, 53, 0.1);
        border-radius: 50%;
    }

    .danger-item--1::before {
        top: -40px;
        left: -40px;
    }

    .danger-item--2::before {
        top: -40px;
        right: -40px;
        left: auto;
    }

    .danger-item--3::before {
        bottom: -40px;
        left: -40px;
        top: auto;
    }

    .danger-item--4::before {
        bottom: -40px;
        right: -40px;
        left: auto;
    }

    @media (max-width: 768px) {
        .dangers-grid {
            grid-template-columns: 1fr;
        }
    }

    /* guarantees */
    .guarantees-section {
        padding: 4rem 0;
        background: #f9faff;
    }

    .guarantees-grid {
        display: flex;
        gap: 2rem;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
    }

    .guarantee-item {
        display: flex;
        flex-direction: column;
        position: relative;
        flex: 1 1 300px;
        max-width: 500px;
    }

    /* номер первого блока выровнять по левому краю */
    .guarantee-item.item-1 .guarantee-number {
        left: 0;
        right: auto;
    }

    /* номер второго блока выровнять по правому краю */
    .guarantee-item.item-2 .guarantee-number {
        right: 0;
        left: auto;
    }

    .guarantee-number {
        top: -4.3rem;
        position: absolute;
        font-size: 6rem;
        line-height: 1;
        color: rgba(233, 75, 53, 0.15);
        font-weight: 700;
        z-index: 1;
    }

    .guarantee-box {
        flex: 1;
        position: relative;
        background: #fff;
        border: 2px solid #E94B35;
        padding: 2rem 1.5rem;
        z-index: 2;
        border-radius: 16px;
    }

    .guarantee-box p {
        margin: 0;
        color: #555;
        font-size: 1rem;
        line-height: 1.6;
    }

    .guarantees-action {
        text-align: center;
    }

    .btn-primary {
        display: inline-block;
        background: #E94B35;
        color: #fff;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        transition: background 0.3s;
    }

    .btn-primary:hover {
        background: #cf3e2d;
    }

    /* Mobile */
    @media (max-width: 768px) {
        .guarantees-grid {
            flex-direction: column;
        }

        .guarantee-number {
            font-size: 4.5rem;
            top: -0.5rem;
        }

        .btn-primary {
            width: 100%;
            max-width: 320px;
        }
    }

    /* help */
    .help {
        background: #f9faff;
        text-align: center;
    }

    .help-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .gauge {
        width: 100%;
        height: 150px;
        background: #fff;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    /* faq */
    .faq .item h4 i.fa-question-circle {
        font-size: 1.6rem;
        color: #E94B35;
        margin-right: 0.5rem;
    }

    .faq .item h4 i.chevron {
        font-size: 1.2rem;
        color: #555;
        transition: transform 0.3s;
    }

    .faq .item.open h4 i.chevron {
        transform: rotate(90deg);
    }


    .faq .item {
        border-bottom: 1px solid #e0e0e0;
    }

    .faq .item h4 {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        cursor: pointer;
    }

    .faq .answer {
        display: none;
        padding: 0 1rem 1rem;
        color: #555;
    }

    /* subscribe */
    .subscribe {
        text-align: center;
    }

    .subscribe p {
        margin-bottom: 1rem;
    }

    .subscribe-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        margin-top: 1.5rem;
      }
      
    /* mobile */
    @media(max-width:768px) {
        .burger {
            display: flex;
        }

        nav {
            display: none;
            position: fixed;
            top: 0;
            right: 0;
            width: 250px;
            height: 100vh;
            background: #fff;
            flex-direction: column;
            padding-top: 80px;
            z-index: 1001;
        }

        nav.open {
            display: flex;
        }

        nav ul {
            flex-direction: column;
            gap: 0;
        }

        nav a {
            padding: 1rem;
        }

        header .header-inner {
            padding: 0 1rem;
        }

        .hero .hero-inner {
            flex-direction: column;
        }

        .hero-image {
            display: none;
        }

        .dangers,
        .guarantees {
            grid-template-columns: 1fr;
        }
    }

    .section-title {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        font-weight: 700;
        color: #111;
        margin-bottom: 2.5rem;
        gap: 0.75rem;
    }

    .section-title img {
        width: 24px;
        height: 24px;
    }

    .section-title {
        display: flex;
        align-items: center;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .decor-arrow {
        width: 32px;
        height: 32px;
        background: url('/assets/arrow-decor.png') no-repeat center/contain;
        flex-shrink: 0;
    }

    .header-contacts {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        font-size: 0.85rem;
        line-height: 1.3;
        color: #555;
    }

    .header-contacts .phone {
        font-weight: bold;
        color: #E94B35;
        font-size: 1rem;
    }

    .header-contacts .phone:hover {
        text-decoration: underline;
    }

    .header-contacts .address {
        font-size: 0.85rem;
        color: #777;
    }

    .highlight {
        color: rgb(249, 98, 84);
      }
      