/* ============================================
   БЛОК "ПОЧЕМУ ВЫБИРАЮТ НАС?" (НА ВСЮ ШИРИНУ)
   ============================================ */

.why-us {
    background: url('http://umc.moscow/wp-content/uploads/2026/07/background-2-scaled.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    padding: 60px 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.why-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-us-title {
    font-size: 36px;
    font-weight: 700;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.why-us-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #E4003A;
    margin: 15px auto 0;
    border-radius: 2px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-us-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.15);
}

.why-us-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.why-us-name {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    color: #ffffff;
    margin-bottom: 10px;
}

.why-us-desc {
    font-size: 14px;
    font-family: 'Open Sans', 'Arial', 'Helvetica Neue', sans-serif;
    color: #d0d0d0;
    line-height: 1.5;
}

/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .why-us-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .why-us {
        padding: 40px 15px;
    }
    
    .why-us-container {
        padding: 0 15px;
    }
    
    .why-us-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-us-item {
        padding: 25px 15px;
    }
    
    .why-us-icon {
        font-size: 36px;
    }
    
    .why-us-name {
        font-size: 16px;
    }
    
    .why-us-desc {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .why-us {
        padding: 30px 10px;
    }
    
    .why-us-title {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .why-us-title::after {
        width: 40px;
        height: 3px;
    }
    
    .why-us-item {
        padding: 20px 12px;
    }
    
    .why-us-icon {
        font-size: 30px;
    }
    
    .why-us-name {
        font-size: 15px;
    }
    
    .why-us-desc {
        font-size: 12px;
    }
}