/* Комплектации */
.equipments__list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 140px;
    position: relative;
    z-index: 1;
}

.equipments__container {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.equipment__engine {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.equipment__engine-head {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.equipment__engine-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.equipment__engine-cont {
    display: block;
}

.equipment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F2F3F4;
    padding: 16px 44px;
    box-shadow: 2px 2px 7px 0px #0000003D;
}

.equips-card__image img {
    height: 114px;
    transform: scaleX(-1);
}

.equipment-item__wrapper_content {
    width: 100%;
    max-width: 570px;
}

.equipment-item__wrapper_title {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 30px;
}

.equipment-item__title {
    font-size: 30px;
    font-weight: 600;
}

.equipment-item__subtitle {
    background: #00CABF;
    color: #fff;
    border-radius: 44px;
    padding: 8px 20px;
    font-weight: 600;
}

.equipment-item__specifications {
    /* gap: 16px; */
    color: #303234;
    font-size: 14px;
    /* display: grid; */
    /* grid-template-columns: repeat(4, 1fr); */
    display: flex;
    gap: 20px;
}

.equipment-item__specifications span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.equipment-item__prices {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    display: grid;
    grid-template-columns: 170px 160px;
    gap: 30px;
}

.equipment-item__wrapper_btn {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 330px;
}

.equipment-item .btn {
    font-size: 16px;
}

.equipment-details-btn .btn-text-short {
    display: none;
}

.equipment-details-btn .btn-text-full {
    display: inline;
}

/* Кредит и Трейд-ин */
/* ==================== CREDIT (НОВАЯ СЕКЦИЯ) ==================== */


.credit__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit__left {
    max-width: 700px;
    width: 100%;
}

.credit__title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    text-align: left;
    color: #222;
}

/* Преимущества (иконки) */
.credit__benefits {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.credit-benefit {
    flex: 1;
    background: #F2F3F4;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 160px;
    justify-content: space-between;
}

.credit-benefit__icon {
    width: 100%;
}

.credit-benefit__icon--kasko {
    font-size: 32px;
    /* Чуть меньше для слова */
}

.credit-benefit span {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}

/* Форма */
.credit__form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.banner__form-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.credit__form .input {
    background: #fff;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    height: 38px;
    padding: 0 15px;
    font-size: 14px;
    color: #222;
    text-align: left;
    box-shadow: none;
}

.credit__form .input::placeholder {
    color: #888;
}

.credit__form .btn-dark,
.credit__form.form-guard .btn-dark.form-guard__submit--idle {
    width: 100%;
    height: 38px;
    font-size: 16px;
    font-weight: 600;
    background: var(--secondary);
    border: none;
    color: #fff;
    border-radius: 4px;
}

.credit__form .btn-dark:hover {
    background: #000;
}

/* Соглашение */
.credit__form .agreement--dark {
    margin-top: 10px;
}

.agreement--dark p {
    font-size: 11px;
    color: #777;
    line-height: 1.4;
}

/* Правая часть с авто */
.credit__right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.credit__car {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

/* Адаптив */
@media (max-width: 1200px) {
    .credit__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .credit__right {
        justify-content: center;
        width: 100%;
        margin-top: 40px;
    }

    .credit__car {
        max-height: 400px;
    }
}



/* ==================== TRADE-IN (НОВАЯ СЕКЦИЯ) ==================== */

.trade-in {
    position: relative;
    height: 700px;
    background-image: url(../../img/banner/banner_tradein_desk.webp);
    background-position: center right;
    background-size: cover;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.trade-in_banner_mob {
    display: none;
}

.trade-in__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Темный блок слева */
.trade-in__content {
    background: #000000AB;
    backdrop-filter: blur(15px);
    padding: 30px 40px;
    max-width: 600px;
    width: 100%;
    color: #fff;
}

.trade-in__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #fff;
}

.trade-in__subtitle {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
}

/* Форма */
.trade-in__form {
    width: 100%;
}

.trade-in__form-row {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 15px;
}

.trade-in__input {
    flex: 1;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    height: 38px;
    padding: 0 15px;
    font-size: 14px;
    color: #fff;
    text-align: left;
    box-shadow: none;
}

.trade-in__input::placeholder {
    color: #ccc;
}

.trade-in__form .trade-in__btn,
.trade-in__form.form-guard .trade-in__btn.form-guard__submit--idle {
    width: 100%;
    height: 38px;
    font-weight: 600;
    border: none;
    color: var(--dark);
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    cursor: pointer;
}

/* Соглашение */
.agreement--trade-in {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agreement--trade-in p {
    font-size: 11px;
    color: #aaa;
    line-height: 1.4;
}

.agreement--trade-in input+span {
    background: #555;
}

.agreement--trade-in input:checked+span::after {
    background-color: #fff;
}

/* Адаптив */
@media (max-width: 1200px) {
    .trade-in {
        background-position: center;
    }

    .trade-in__content {
        max-width: 100%;
        margin: 0 20px;
    }
}

