/* Почему «Учусь Легко!»? */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    text-align: center;
}

.section-title span {
    color: #1a56db;
}

.section-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.why-card:hover {
    border-color: #1a56db;
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(26, 86, 219, 0.13);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.05);
}

/* Цвета иконок */
.why-icon.blue {
    background: #e0e7ff;
    color: #1a56db;
}

.why-icon.red {
    background: #fee2e2;
    color: #dc2626;
}

.why-icon.gold {
    background: #fffbeb;
    color: #d97706;
}

.why-icon.green {
    background: #f0fdf4;
    color: #22c55e;
}

.why-icon.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}

.why-icon.teal {
    background: #f0fdfa;
    color: #0d9488;
}

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 8px;
    margin-top: 0;
}

.why-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* Анимации AOS */
.aos {
    transition: all 0.6s ease;
}

.aos-delay-1 {
    transition-delay: 0.1s;
}

.aos-delay-2 {
    transition-delay: 0.2s;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding: 0 16px;
    }
    
    .why-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .why-card {
        padding: 20px 16px;
    }
    
    .why-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .why-card h3 {
        font-size: 15px;
    }
    
    .why-card p {
        font-size: 12px;
    }
}