.benefits-new {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-new::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 176, 59, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.benefits-new .title-benefits {
    margin: 0 0 60px 0;
}

.benefits-new .title-line-benefits {
    width: 100%;
    height: 4px;
    background: #ddd;
    position: relative;
    overflow: hidden;
    margin-bottom: 15px;
}

.benefits-new .title-line-benefits::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15%;
    background: #FBB03B;
}

.benefits-new .title-text-benefits {
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FBB03B 0%, #f39c12 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(251, 176, 59, 0.2);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(251, 176, 59, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #FBB03B 0%, #f39c12 100%);
    transform: rotate(-5deg) scale(1.1);
}

.benefit-icon img {
    width: 50px;
    height: 50px;
    transition: all 0.4s ease;
}

/* Убрали filter: brightness - теперь изображение остается видимым */

.benefit-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: #FBB03B;
}

.benefit-text {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits-new {
        padding: 50px 0;
    }
    
    .benefits-container {
        padding: 0 20px;
    }
    
    .benefits-new .title-text-benefits {
        font-size: 28px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-icon img {
        width: 40px;
        height: 40px;
    }
    
    .benefit-title {
        font-size: 20px;
    }
    
    .benefit-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon img {
        width: 35px;
        height: 35px;
    }
}