/* ===== HERO ADVANTAGES REDESIGN ===== */
.hero__advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 4;
}

.advantage__card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(76, 175, 80, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    height: 180px; /* Фиксированная высота */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.advantage__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.7s ease;
}

.advantage__card:hover::before {
    left: 100%;
}

.advantage__card:hover {
    transform: translateY(-5px);
    border-color: rgba(76, 175, 80, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.advantage__icon {
    width: 50px;
    height: 50px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 2px solid rgba(76, 175, 80, 0.3);
    transition: all 0.3s ease;
}

.advantage__card:hover .advantage__icon {
    background: rgba(76, 175, 80, 0.2);
    border-color: rgba(76, 175, 80, 0.6);
    transform: scale(1.05);
}

.advantage__icon i {
    font-size: 1.3rem;
    color: var(--primary-green);
}

.advantage__number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.advantage__content {
    color: var(--text-light);
    line-height: 1.4;
    font-size: 0.9rem;
    max-width: 100%;
}

/* Убираем старые стили */
.advantage__container,
.advantages__nav {
    display: none;
}

/* ===== АДАПТИВНОСТЬ ADVANTAGES ===== */
@media (max-width: 992px) {
    .hero__advantages {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .advantage__card {
        height: 160px;
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .hero__advantages {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    
    .advantage__card {
        height: 140px;
        padding: 15px;
    }
    
    .advantage__icon {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }
    
    .advantage__icon i {
        font-size: 1.2rem;
    }
    
    .advantage__number {
        font-size: 1.6rem;
    }
    
    .advantage__content {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}