/* БЛОК - ПОДБЕРЕМ АВТОМОБИЛЬ ЛЮБОГО ОБЪЕМА И ПОД ЛЮБОЙ БЮДЖЕТ */
.any-car-section {
    width: 100%;
    background-color: var(--white, #ffffff);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    margin: 0;
    box-shadow: none;
    transform: none;
    filter: none;
    backdrop-filter: none;
    margin-top: 0;
    margin-bottom: 0;
    z-index: auto;
}

.any-car-section::before,
.any-car-section::after {
    display: none;
    content: none;
}

.any-car-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Верхняя часть блока */
.any-car-top {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

/* Левая часть (контент) - незначительно уменьшаем */
.any-car-content {
    flex: 1.35; /* было 1.4, уменьшаем на 3.5% */
}

.any-car-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
    border-radius: 50px;
    color: var(--red-accent, #ff3333);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
}

.any-car-title {
    font-size: 34px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: var(--text-color, #000000);
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

.any-car-title .red-text {
    color: var(--red-accent, #ff3333);
}

/* Сетка с 4 параметрами - столбик */
.any-car-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Иконки увеличены в 2 раза */
.feature-icon {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    background-color: rgba(255, 51, 51, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.feature-icon:hover {
    transform: scale(1.1);
}

.feature-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Анимация иконок */
@keyframes pulseCycle {
    0% {
        transform: scale(1);
    }
    5% {
        transform: scale(1.15);
    }
    15% {
        transform: scale(1);
    }
    100% {
        transform: scale(1);
    }
}

.feature-item:nth-child(1) .feature-icon {
    animation: pulseCycle 10s infinite;
}

.feature-item:nth-child(2) .feature-icon {
    animation: pulseCycle 10s infinite;
    animation-delay: 2.5s;
}

.feature-item:nth-child(3) .feature-icon {
    animation: pulseCycle 10s infinite;
    animation-delay: 5s;
}

.feature-item:nth-child(4) .feature-icon {
    animation: pulseCycle 10s infinite;
    animation-delay: 7.5s;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color, #000000);
    text-transform: uppercase;
    font-family: Arial, sans-serif;
}

.feature-text p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--gray-text, #555555);
    font-family: Arial, sans-serif;
}

/* Правая часть (GIF) - незначительно увеличиваем */
.any-car-gif {
    flex: 1.28; /* было 1.2, увеличиваем на 6.7% */
    display: flex;
    justify-content: center;
    align-items: center;
}

.gif-image {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.gif-image:hover {
    transform: none;
    box-shadow: none;
}

/* Нижняя часть блока */
.any-car-bottom {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.inspirational-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color, #000000);
    font-family: Arial, sans-serif;
    letter-spacing: 0.5px;
}

.quote-icon {
    color: var(--red-accent, #ff3333);
    font-size: 20px;
    font-weight: 300;
    opacity: 0.7;
}

.mobile-break {
    display: none;
}

/* ===== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ ===== */
@media (max-width: 992px) {
    .any-car-section {
        padding: 50px 0;
    }
    
    .any-car-title {
        font-size: 30px;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .feature-text p {
        font-size: 0.85rem;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .feature-icon img {
        width: 50px;
        height: 50px;
    }
    
    .any-car-content {
        flex: 1.25; /* незначительное уменьшение */
    }
    
    .any-car-gif {
        flex: 1.2; /* незначительное увеличение */
    }
    
    .inspirational-quote {
        font-size: 0.95rem;
    }
}

/* ===== АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ ===== */
@media (max-width: 768px) {
    .any-car-section {
        padding: 40px 0;
    }
    
    .any-car-container {
        padding: 0 15px;
    }
    
    .any-car-top {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .any-car-content {
        flex: auto;
        width: 100%;
    }
    
    .any-car-gif {
        flex: auto;
        width: 80%;
        margin: 0 auto;
    }
    
    .any-car-title {
        font-size: 26px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .any-car-badge {
        display: block;
        text-align: center;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .any-car-features {
        gap: 12px;
    }
    
    .feature-item {
        align-items: center;
        text-align: center;
        flex-direction: column;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon img {
        width: 45px;
        height: 45px;
    }
    
    .feature-text h4 {
        text-align: center;
    }
    
    .feature-text p {
        text-align: center;
    }
    
    .inspirational-quote {
        font-size: 0.85rem;
        gap: 12px;
    }
    
    .quote-icon {
        font-size: 16px;
    }
    
    .mobile-break {
        display: block;
    }
}

/* ===== АДАПТАЦИЯ ДЛЯ МАЛЕНЬКИХ СМАРТФОНОВ ===== */
@media (max-width: 480px) {
    .any-car-section {
        padding: 30px 0;
    }
    
    .any-car-container {
        padding: 0 10px;
    }
    
    .any-car-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .any-car-gif {
        width: 90%;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
    
    .feature-text h4 {
        font-size: 0.95rem;
    }
    
    .feature-text p {
        font-size: 0.8rem;
    }
    
    .inspirational-quote {
        font-size: 0.75rem;
        gap: 8px;
    }
    
    .quote-icon {
        font-size: 14px;
    }
    
    .any-car-bottom {
        padding-top: 20px;
        margin-top: 15px;
    }
}