/* --- 1. ОБЩИЕ СТИЛИ И ПЕРЕМЕННЫЕ --- */
:root {
    --black: #000;
    --white: #fff;
    --gray-bg: #f7f7f7;
    --border: #d1d1d1;
    --accent: #ff4d4d;
    --success: #28a745;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 60px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. ХЕДЕР (БЛОК #1) --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--white);
    border-bottom: 1px solid #ececec;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    color: #999;
    transition: color 0.3s;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--black);
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 600;
}

.nav__link--btn {
    background: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
}

/* --- 3. ГЛАВНЫЙ ЭКРАН (БЛОК #2) --- */
.hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    text-align: center;
}

.hero__badge {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.hero__card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero__title {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.tag {
    display: inline-block;
    min-width: 80px;
    background: #f0f0f0;
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #444;
}

.hero__btn {
    background: var(--black);
    color: var(--white);
    padding: 20px 50px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.hero__btn:hover { transform: scale(1.02); }

/* --- 4. МОДАЛЬНОЕ ОКНО (SIDE DRAWER LOGIC) --- */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex !important;
}

.modal__content {
    background: var(--white);
    width: 100%;
    max-width: 600px; /* Оптимальная ширина для десктопа */
    padding: 35px 40px;
    border-radius: 24px;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Стилизация скроллбара модалки */
.modal__content::-webkit-scrollbar { width: 6px; }
.modal__content::-webkit-scrollbar-track { background: #f1f1f1; }
.modal__content::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

/* --- 5. ФОРМА (КОНТРАСТ И КОМПАКТНОСТЬ) --- */
.modal__title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
}

.form__label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #444;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form__group { margin-bottom: 15px; }

.form input[type="text"],
.form input[type="email"],
.form select {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--border);
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 10px;
    color: #000;
    transition: border-color 0.3s;
}

.form input:focus {
    border-color: #000;
    outline: none;
}

.form input.invalid { border-color: var(--accent) !important; }

/* Segmented Control (Radio кнопки) */
.segmented-control {
    display: flex;
    background: #f0f0f0;
    padding: 4px;
    border-radius: 12px;
    gap: 4px;
    height: 44px;
}

.segmented-control input { display: none; }

.segmented-control label {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    transition: 0.2s;
}

.segmented-control input:checked + label {
    background: #fff;
    color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Стилизация переключателя марки */
.make-toggle {
    margin-top: 10px;
}

.make-toggle input { display: none; }

.make-toggle__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: 1.5px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    transition: 0.2s;
}

.make-toggle__icon {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background: #fff;
    position: relative;
}

.make-toggle input:checked + .make-toggle__btn {
    background: #000;
    color: #fff;
    border-color: #000;
}

.make-toggle input:checked + .make-toggle__btn .make-toggle__icon {
    background: #fff;
    border-color: #fff;
}

.make-toggle input:checked + .make-toggle__btn .make-toggle__icon::after {
    content: "✓";
    color: #000;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
}

/* Кнопка отправки */
.form__submit {
    width: 100%;
    height: 55px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

.form__submit.disabled { background: #ccc; cursor: not-allowed; }

.modal__close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 30px;
    background: none; border: none; cursor: pointer;
}

/* --- 6. АДАПТИВ (MOBILE DRAWER) --- */
@media (max-width: 992px) {
    .hero__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .hero {
        padding:0;
    }
    .benefits
    {
        padding: 25px 0; 
    }
    .new-cars{
    padding: 25px 20;
    }
        
    .modal {
        align-items: flex-start;
        justify-content: flex-end; /* Выезд справа */
        padding: 0;
    }

    .modal__content {
        max-width: 100%;
        width: 100%;
        height: 100vh;
        border-radius: 0;
        transform: translateX(100%); /* Прячем за экран справа */
    }

    .modal.active .modal__content {
        transform: translateX(0); /* Выезжает */
    }

    .form__row { grid-template-columns: 1fr; }
    
    .hero__title { font-size: 24px; }
}
/* --- СТИЛИ ГЛАВНОГО БАННЕРА --- */
.main-banner {
    position: relative;
    width: 100%;
    height: 650px;
    background: url('./img/autosa.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

/* Затемнение, чтобы белый текст читался на любом фоне */
.main-header__overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.main-banner__container {
    position: relative;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    /* Отступ от левого края будет автоматическим благодаря .container */
}

.main-banner__content {
    max-width: 700px;
    text-align: left;
    pointer-events: auto;
    color: #fff;
}

.main-banner__title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 25px;
    text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}

.main-banner__title .highlight {
    color: #ff4d4d; /* Яркий красный */
}

.main-banner__subtitle {
    font-size: 19px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* --- КРАСИВЫЕ КНОПКИ --- */
.main-banner__actions {
    display: flex;
    gap: 20px;
}

.banner-btn {
    padding: 18px 35px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-red {
    background: linear-gradient(135deg, #ff4d4d 0%, #d42424 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.3);
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 77, 77, 0.5);
}

.btn-white {
    background: #fff;
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f8f8f8;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* --- МОБИЛЬНАЯ ВЕРСИЯ --- */
@media (max-width: 768px) {
    .main-banner {
        flex-direction: column;
        height: auto;
        background: none; /* Убираем фон у родителя */
    }

    .main-header__overlay { display: none; }

    /* Картинка выносится наверх */
    .main-banner::before {
        content: "";
        width: 100%;
        height: 400px;
        background: url('./img/HeaderLogo.jpg') no-repeat center center;
        background-size: cover;
        display: block;
    }

    .main-banner__container {
        position: relative;
        padding: 40px 20px;
        background: #fff;
        height: auto;
    }

    .main-banner__content {
        text-align: center;
        color: #000;
    }

    .main-banner__title {
        font-size: 28px;
        color: #000;
        text-shadow: none;
    }

    .main-banner__subtitle {
        color: #444;
        text-shadow: none;
    }

    .main-banner__actions {
        flex-direction: column;
        width: 100%;
    }

    .banner-btn {
        width: 100%;
    }
}
/* --- ОБНОВЛЕННЫЕ СТИЛИ ДЛЯ HERO КАРТОЧЕК --- */
.hero__grid {
    display: grid;
    grid-template-columns: 1fr; /* На мобилке друг под другом */
    gap: 30px;
    margin-bottom: 50px;
}

.hero__card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column; /* На мобилке фото сверху */
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    overflow: hidden; /* Чтобы картинка не вылезала */
}

/* Стилизация блока с изображением */
.hero__card-image {
    width: 100%;
    margin-bottom: 25px; /* Отступ от фото до текста на мобилке */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Стилизация текстового контента */
.hero__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero__title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 15px 0;
    color: #111;
}

.hero__subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero__tags {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.tag {
    background: #f0f0f0;
    padding: 6px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
}


/* --- АДАПТИВ ДЛЯ ДЕСКТОПА (ФОТО СЛЕВА) --- */
@media (min-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr; /* 2 колонки */
    }

    .hero__card {
        flex-direction: row; /* На десктопе в ряд */
        text-align: left; /* Текст слева */
        align-items: flex-start;
        padding: 40px;
    }

    .hero__card-image {
        width: 40%; /* Фото занимает 40% ширины */
        margin-bottom: 0; /* Убираем нижний отступ */
        margin-right: 30px; /* Отступ от фото до текста */
    }

    .hero__tags {
        justify-content: flex-start; /* Теги слева */
    }
}

/* --- СТИЛИ ДЛЯ БЛОКА СРАВНЕНИЯ ЦЕН --- */
.comparison {
    padding: 80px 0;
    background: #fff;
}

.comparison__title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #000;
}

.carousel-container {
    position: relative;
    padding: 0 40px; /* Место для стрелок */
}

.carousel-track {
    display: flex;
    gap: 25px; /* Гэп между карточками */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Скрываем скроллбар Firefox */
    padding: 20px 0;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Скрываем скроллбар Chrome/Safari */
}

/* Квадратная карточка */
.car-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    
    /* Десктоп: 3 в ряд. Расчет: 100% / 3 - гэпы */
    min-width: calc(33.333% - 17px); 
    aspect-ratio: 1 / 1.1; /* Почти квадратная форма */
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Блок с фото (занимает 60% высоты) */
.car-card__image {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.car-card__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Тень под машиной для реалистичности на белом фоне */
    filter: drop-shadow(0 12px 15px rgba(0,0,0,0.15));
}

/* Блок с текстом (занимает 40% высоты) */
.car-card__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.car-card__name {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
}

.car-card__prices {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 800;
    color: #999;
}

.market .price-value {
    color: #ff4d4d; /* Красная рыночная */
    text-decoration: line-through;
    font-size: 18px;
    font-weight: 700;
}

.auction .price-value {
    color: #28a745; /* Зеленая Manheim */
    font-size: 24px;
    font-weight: 900;
}

/* Стрелки */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 5;
    transition: 0.3s;
}

.carousel-arrow.prev { left: -10px; }
.carousel-arrow.next { right: -10px; }

/* АДАПТИВ */
@media (max-width: 992px) {
    .car-card {
        min-width: calc(50% - 13px); /* 2 карточки на планшетах */
    }
}

@media (max-width: 768px) {
    .carousel-container { padding: 0; }
    .car-card {
        min-width: 100%; /* 1 карточка на мобайле */
        aspect-ratio: 1 / 1; /* Чистый квадрат на мобайле */
    }
    .carousel-arrow { display: none; } /* Свайп пальцем на мобайле */
}

.process-section {
  padding: 70px 20px;
  background: #f7f7f7;
  font-family: Arial, sans-serif;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
}

.process-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 850px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.process-start {
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-start h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.process-start p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid #ececec;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}

.process-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  background: #f0f0f0;
  color: #111;
}

.process-card h4 {
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 20px;
  color: #111;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  color: #333;
  line-height: 1.6;
  font-size: 15px;
}

.process-list li:last-child {
  margin-bottom: 0;
}

.process-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-footer {
  text-align: center;
  margin-top: 40px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-title {
    font-size: 32px;
  }

  .process-subtitle {
    font-size: 16px;
  }

  .process-start h3 {
    font-size: 24px;
  }
}

.comparison {
    padding: 11px 0;
    background: #fff;
}
.new-cars {
    padding: 80px 0;
    background: #fdfdfd; /* Слегка другой оттенок, чтобы отделить от б/у секции */
}

.lease-box {
    text-align: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.lease-price {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: #000;
}

.lease-price small {
    font-size: 16px;
    color: #666;
}

.lease-details {
    font-size: 13px;
    color: #888;
    margin-top: 5px;
    font-weight: 600;
}

.benefits {
    padding: 100px 0;
    background-color: #fff;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    padding: 40px;
    background: #fcfcfc;
    border: 1px solid #efefef;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.benefit-card__icon {
    font-size: 32px;
    margin-bottom: 20px;
}
.benefits__main-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 60px;
    color: #111;
    letter-spacing: -1px;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Блок гарантий */
.guarantee-box {
    background: #000;
    color: #fff;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
}

.guarantee-box__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.guarantee-box__shield {
    font-size: 40px;
}

.guarantee-box h4 {
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guarantee-box p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

/* Адаптив */
@media (max-width: 992px) {
    .benefits__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .benefits__grid { grid-template-columns: 1fr; }
    .guarantee-box__content { flex-direction: column; }
    .benefit-card { padding: 30px; }
}
.faq {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.faq__title {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq__subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.faq__container {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq__question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.faq__arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq__item.active .faq__arrow {
    transform: rotate(-135deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: #fff;
}

.faq__item.active .faq__answer {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
}

.faq__answer p {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}

.faq__item:hover {
    border-color: #ccc;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
    /* Убираем строгое соотношение сторон, чтобы карточка подстраивалась под контент */
    .new-cars .car-card, 
    .comparison .car-card {
        min-width: 100%;
        aspect-ratio: auto; /* Отключаем квадратность */
        min-height: 450px;   /* Задаем минимальную высоту для солидности */
        padding: 20px 15px;
    }

    /* Увеличиваем область под картинку */
    .car-card__image {
        flex: none;
        height: 220px; /* Фиксируем высоту для фото на мобилке */
        margin-bottom: 15px;
    }

    .car-card__image img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Гарантирует, что авто не обрежется и не растянется */
        filter: drop-shadow(0 8px 12px rgba(0,0,0,0.12));
    }

    /* Корректируем шрифты, чтобы не занимали лишнее место */
    .car-card__name {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .lease-box {
        padding: 10px;
    }

    .lease-price {
        font-size: 26px;
    }
}
.pricing {
    padding: 100px 0;
    background-color: #fff;
}

.pricing__title {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pricing__subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50/50 */
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.price-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

/* Выделенная колонка (Новые авто) */
.price-card--featured {
    border-color: #111;
    background-color: #fcfcfc;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: scale(1.02);
}

.price-card__category {
    font-size: 12px;
    font-weight: 800;
    color: #888;
    letter-spacing: 1px;
}

.price-card__name {
    font-size: 22px;
    margin: 10px 0 20px;
    line-height: 1.3;
    min-height: 60px;
}

.price-card__cost {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin-bottom: 5px;
}

.price-card__payment {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    min-height: 40px;
}

.price-card__desc {
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
}

.price-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1;
}

.price-card__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
}

/* Галочки из ТЗ */
.price-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 900;
    font-size: 18px;
}

.price-card .btn {
    width: 100%;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .pricing__grid {
        grid-template-columns: 1fr; /* 1 колонка */
    }
    .price-card--featured {
        transform: none;
    }
    .pricing {
        padding: 60px 0;
    }
}
/* ==========================================================================
   ОБЩИЕ СТИЛИ КНОПОК (Исправлено для соответствия дизайну)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 16px 30px;
    border-radius: 12px; /* Чуть более скругленные */
    font-size: 15px;
    font-weight: 800; /* Жирный шрифт */
    text-decoration: none;
    text-transform: uppercase; /* Все заглавные */
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%; /* Кнопка на всю ширину карточки */
}

/* Эффект при нажатии для всех кнопок */
.btn:active {
    transform: translateY(1px);
    box-shadow: none;
}

/* Красная кнопка (для выделенной карточки) */
.btn--primary {
    background: linear-gradient(135deg, #ff4d4d 0%, #d42424 100%);
    color: white;
    box-shadow: 0 6px 15px rgba(255, 77, 77, 0.3);
}

.btn--primary:hover {
    background: linear-gradient(135deg, #d42424 0%, #ff4d4d 100%);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.4);
}

/* Белая/Серая кнопка (для обычной карточки) */
.btn--secondary {
    background-color: #f0f0f0; /* Светло-серый фон по умолчанию */
    color: #111;
    border: 1px solid #ddd;
}

.btn--secondary:hover {
    background-color: #e0e0e0; /* Чуть темнее при наведении */
    border-color: #ccc;
}


/* ==========================================================================
   СЕКЦИЯ УСЛУГИ И ТАРИФЫ ( pricing )
   ========================================================================== */
.pricing {
    padding: 100px 0;
    background-color: #fff;
}

.pricing__title {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pricing__subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.6;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch; /* Карточки одинаковой высоты */
}

/* Основной стиль карточки */
.price-card {
    background: #fff;
    /* Вместо border используем прозрачный outline, чтобы он появлялся плавно и не двигал контент */
    outline: 2px solid transparent; 
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer; /* Показываем, что блок кликабелен */
    position: relative; /* Для корректного позиционирования outline */
}

/* --- ЛОГИКА ИНТЕРАКТИВНОЙ ОБВОДКИ (Ховер и Тач) --- */

/* 1. Эффект для ОБЫЧНОЙ карточки при наведении или таче */
.price-card:hover,
.price-card:active {
    outline-color: #ddd; /* Светло-серая обводка */
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* 2. Эффект для ВЫДЕЛЕННОЙ карточки (она уже с обводкой, делаем её ярче) */
.price-card--featured:hover,
.price-card--featured:active {
    outline-color: #90a085; /* Красная обводка при ховере */
    box-shadow: 0 20px 45px rgba(255, 77, 77, 0.15);
}


/* Стилизация контента внутри карточек (без изменений) */
.price-card__category {
    font-size: 12px;
    font-weight: 800;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-card__name {
    font-size: 22px;
    font-weight: 800;
    margin: 10px 0 20px;
    line-height: 1.3;
    color: #111;
    min-height: 60px; /* Чтобы заголовки были на одном уровне */
}

.price-card__cost {
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin-bottom: 5px;
}

.price-card__payment {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    min-height: 40px;
}

.price-card__desc {
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.4;
    color: #111;
}

.price-card__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-grow: 1; /* Список занимает все свободное место, толкая кнопку вниз */
}

.price-card__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
}

/* Зеленые галочки */
.price-card__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -2px;
    color: #28a745;
    font-weight: 900;
    font-size: 18px;
}

/* Класс для изначально выделенной карточки (Новые авто) */
.price-card--featured {
    outline: 2px solid #111; /* Черная обводка по умолчанию */
    background-color: #fcfcfc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* АДАПТИВНОСТЬ */
@media (max-width: 992px) {
    .pricing__grid {
        grid-template-columns: 1fr; /* 1 колонка на планшетах и мобильных */
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .pricing { padding: 60px 0; }
    .price-card { padding: 30px; }
    .pricing__title { font-size: 28px; }
}
/* --- FOOTER STYLES --- */
.footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 20px;
    font-family: inherit;
}

.footer__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #ff4d4d; /* Акцентный цвет */
}

.footer__description {
    font-size: 14px;
    line-height: 1.6;
    color: #aaa;
    margin-bottom: 15px;
}

.footer__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__nav a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer__nav a:hover {
    color: #fff;
}

.footer__schedule p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #aaa;
}

.footer__timezone {
    font-size: 12px;
    color: #666;
}

.footer__format {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #ff4d4d;
}

.footer__bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #555;
}

/* --- ПЛАВАЮЩАЯ КНОПКА --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: transform 0.3s, background 0.3s;
}

.floating-contact:hover {
    transform: scale(1.1);
    background: #d42424;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 768px) {
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer__nav {
        align-items: center;
    }

    .floating-contact {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Базовые настройки страницы */
html { scroll-behavior: smooth; }
body { padding-top: 80px; } /* Чтобы контент не уходил под шапку */

/* --- HEADER --- */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    z-index: 2000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* --- LANG SWITCHER --- */
.lang-switcher { display: flex; gap: 6px; }
.lang-btn {
    background: #111;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.lang-btn span { color: #fff; font-size: 12px; font-weight: 700; }
.lang-btn img { width: 18px; border-radius: 2px; }
.lang-btn.active { background: #ff4d4d; box-shadow: 0 4px 10px rgba(255, 77, 77, 0.3); }

/* --- BURGER --- */
.burger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px; height: 22px;
    background: transparent; border: none;
    cursor: pointer; z-index: 2501;
}
.burger span { width: 100%; height: 3px; background: #111; border-radius: 10px; transition: 0.3s; }

/* --- NAVIGATION --- */
.nav { display: flex; gap: 20px; align-items: center; }
.nav__link { color: #111; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav__link:hover { color: #ff4d4d; }
.nav__link--btn { background: #111; color: #fff !important; padding: 10px 20px; border-radius: 8px; }

/* --- FLOATING BUTTONS (Twins) --- */
.action-btn {
    position: fixed;
    right: 30px;
    width: 60px; height: 60px;
    background: #ff4d4d;
    color: #fff;
    border: none; border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.4);
    z-index: 2100;
    transition: 0.3s ease;
}
.floating-contact { bottom: 30px; }
.scroll-top { 
    bottom: 105px; 
    opacity: 0; visibility: hidden; transform: translateY(20px);
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.action-btn:hover { transform: scale(1.1); background: #e63e3e; }

/* --- MOBILE ADAPTIVE --- */
@media (max-width: 991px) {
    .burger { display: flex; }
    .nav {
        position: fixed; top: -100vh; left: 0;
        width: 100%; height: 100vh;
        background: #111;
        flex-direction: column; justify-content: center;
        transition: 0.5s ease-in-out; z-index: 2400;
    }
    .nav.active { top: 0; }
    .nav__link { color: #fff !important; font-size: 24px; font-weight: 800; }
    .burger.active span { background: #fff; }
    .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .action-btn { width: 50px; height: 50px; right: 20px; font-size: 20px; }
    .floating-contact { bottom: 20px; }
    .scroll-top { bottom: 85px; }
}
@media (max-width: 768px) {
    /* Контейнер шапки: распределяем место 75/25 */
    .header__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 10px;
    }

    /* Блок языков занимает до 75% */
    .lang-switcher {
        flex: 0 0 75%; 
        display: flex;
        gap: 4px; /* Минимальный зазор между кнопками */
        justify-content: flex-start;
    }

    /* Сами кнопки: делаем их узкими, но с текстом */
    .lang-btn {
        padding: 5px 4px; /* Узкие внутренние отступы */
        gap: 3px; /* Расстояние между флагом и текстом */
        border-radius: 5px;
        flex: 1; /* Кнопки делят 75% поровну */
        justify-content: center;
    }

    .lang-btn img {
        width: 14px; /* Маленькие флаги */
    }

    .lang-btn span {
        display: inline-block; /* ТЕКСТ ВОЗВРАЩЕН */
        font-size: 10px; /* Уменьшенный шрифт для мобилок */
        letter-spacing: -0.5px; /* Сжимаем буквы */
    }

    /* Блок бургера занимает ~20% */
    .burger {
        flex: 0 0 20%;
        display: flex;
        align-items: center;
        justify-content: flex-end; /* Прижимаем к правому краю */
        height: 20px;
        width: 25px;
    }

    .burger span {
        width: 25px; /* Чуть короче линии, чтобы не теснить языки */
    }

    /* Исправление выпадающего меню */
    .nav {
        position: fixed;
        top: -100vh;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #111;
        display: flex; /* Важно: оставляем flex */
        visibility: hidden; /* Скрываем, пока не активно */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: all 0.5s ease-in-out;
        z-index: 2400;
    }

    .nav.active {
        top: 0;
        visibility: visible;
        opacity: 1;
    }

    /* Ссылки внутри меню */
    .nav__link {
        color: #fff !important;
        font-size: 20px;
        font-weight: 800;
        text-transform: uppercase;
    }
}

/* ФИКС ДЛЯ СЕРВИСОВ И КОНТАКТОВ (чтобы скроллило точно) */
#services, #contact, #new-inventory, #process, #about, #faq {
    scroll-margin-top: 85px; /* Точный отступ для плавного доезда */
}
/* Кнопка бургера */
.burger {
    display: none; /* По умолчанию скрыт */
    flex-direction: column;
    /* Указываем ровное распределение линий */
    justify-content: space-between; 
    width: 28px;
    height: 18px; /* Оптимальная высота для трех линий */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 15px; /* Отступ от блока языков */
    z-index: 2501;
}

.burger span {
    display: block;
    width: 100%;
    height: 3px; /* Толщина линии */
    background-color: #111; /* Черный на белом фоне */
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* Когда меню открыто — линии становятся белыми */
.burger.active span {
    background-color: #fff;
}
@media (max-width: 768px) {
    .header__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .lang-switcher {
        flex: 1; /* Занимает все доступное место слева */
        display: flex;
        gap: 4px;
    }

    .burger {
        display: flex; /* Показываем только на мобилках */
        flex-shrink: 3; /* Запрещаем кнопке сжиматься */
        flex: 0 0 10%;
    }
}

.comparison__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Чтобы на мобилках логотип мог перенестись вниз, если не влезет */
}

.manheim-logo {
    height: 40px; /* Отрегулируй высоту под свой дизайн */
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .manheim-logo {
        height: 30px; /* Чуть меньше для мобильных устройств */
    }
}
/* Скрываем мобильные стрелки по умолчанию (на десктопе) */
.carousel-nav-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* Показываем блок навигации на мобилках */
    .carousel-nav-mobile {
        display: flex;
        justify-content: center;
        gap: 40px;
        /* margin-top: 25px; */
        width: 100%;
    }

    /* Стили мобильных стрелок */
    .mobile-arrow {
        width: 55px;
        height: 55px;
        background-color: #373232; /* Красный цвет как на кнопках */
        color: white;
        border: none;
        border-radius: 50%;
        font-size: 22px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(53, 53, 53, 0.4);
        transition: 0.3s;
        -webkit-tap-highlight-color: transparent; /* Убираем синюю рамку при клике */
    }

    .mobile-arrow:active {
        transform: scale(0.9);
        background-color: #808080;
    }

    /* Скрываем старые десктопные стрелки на мобилке, чтобы они не мешались */
    .carousel-arrow {
        display: none !important;
    }
}
@media (max-width: 768px) {
       .benefits
    {
        padding: 0px 0; 
    }
    .new-cars{
    padding: 0px 0;
    }
        
}
.hot-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 77, 77, 0.1);
    border: 1px dashed #ff4d4d;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 14px;
    color: #ff4d4d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-hot 2s infinite;
}

.hot-icon {
    margin-right: 8px;
}

@keyframes pulse-hot {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); opacity: 0.8; }
    100% { transform: scale(1); }
}

/* На мобилках чуть меньше шрифт */
@media (max-width: 768px) {
    .hot-badge {
        font-size: 12px;
        padding: 4px 10px;
    }
}
.guarantee-box {
    margin-top: 50px;
    background: #f8f9fa; /* Мягкий светлый фон */
    border-left: 5px solid #ff4d4d; /* Оставляем красный акцент только в виде полоски слева */
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Едва заметная тень для объема */
}

.guarantee-box__content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.guarantee-box__shield {
    font-size: 32px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.guarantee-box__text h4 {
    color: #111; /* Темный заголовок */
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-box__text p {
    color: #555; /* Мягкий серый текст */
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

/* Адаптивность для мобилок */
@media (max-width: 768px) {
    .guarantee-box {
        padding: 20px;
    }
    
    .guarantee-box__content {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-box__text p {
        font-size: 14px;
    }
}
.process-start {
    max-width: 800px;
    margin: 0 auto 40px; /* Центрируем и даем отступ снизу */
    padding: 30px;
    background: #ffffff; /* Белый фон */
    border: 1px solid #eef0f2; /* Почти незаметная рамка */
    border-top: 4px solid #ff4d4d; /* Красный акцент только сверху */
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); /* Мягкая "воздушная" тень */
    transition: transform 0.3s ease;
}

.process-start:hover {
    transform: translateY(-5px); /* Легкий интерактив при наведении */
}

.process-start h3 {
    color: #111;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-start p {
    color: #666; /* Мягкий цвет текста */
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

/* Адаптив для мобильных устройств */
@media (max-width: 768px) {
    .process-start {
        padding: 20px;
        margin: 0 15px 30px; /* Боковые отступы на мобилке */
    }
    
    .process-start h3 {
        font-size: 20px;
    }
    
    .process-start p {
        font-size: 15px;
    }
}



.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  
  width: 32px;
  height: 32px;
  margin-right: 10px;

  border: 2px solid #ccc;
  border-radius: 50%;

  font-weight: bold;
  font-size: 14px;
  color: #333;

  transition: all 0.3s ease;
}

/* Зеленый кружок для 3 пункта */
li[data-key="li-cash-7"] .process-num {
  border-color: #28a745;
  color: #28a745;
}

/* (по желанию) эффект при наведении */
li:hover .process-num {
  transform: scale(1.1);
  border-color: #000;
}
.form__row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.form__row .form__group {
    flex: 1;
}
@media (max-width: 480px) {
    .form__row {
        flex-direction: column;
        gap: 0;
    }
}







/* Обнуляем счетчик для каждого списка */
.process-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    counter-reset: step-counter; /* Создаем переменную-счетчик */
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.process-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    padding-left: 40px; /* Место под цифру */
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    counter-increment: step-counter; /* Увеличиваем счетчик на 1 */
}

/* Создаем сам кружочек через CSS */
.process-list li::before {
    content: counter(step-counter); /* Выводим текущее число счетчика */
    position: absolute;
    left: 0;
    top: 0;
    
    /* Стили кружка */
    width: 26px;
    height: 26px;
    background-color: #45ac59; /* Ваш красный */
    color: #fff;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(255, 77, 77, 0.3);
}

/* Эффект при наведении на карточку */
.process-card:hover li::before {
    transform: scale(1.15);
    transition: transform 0.3s ease;
}