/* ==========================================================
   Block: Why Intensive — frontend styles
   ========================================================== */

.why-intensive {
    background: var(--white);
    padding: 80px 0;
}

.why-intensive .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.why-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px 20px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(26, 86, 219, 0.12);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
}

.why-card:nth-child(1) .why-icon { background: var(--blue-light); color: var(--blue); }
.why-card:nth-child(2) .why-icon { background: #f0fdf4;           color: #22c55e; }
.why-card:nth-child(3) .why-icon { background: #fffbeb;           color: #d97706; }
.why-card:nth-child(4) .why-icon { background: var(--red-light);  color: var(--red); }

.why-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}

.why-card p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

/* Баннер «21 день» */
.days-banner {
    background: linear-gradient(135deg, var(--blue), #2b6ee0);
    border-radius: 24px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    gap: 36px;
    flex-wrap: wrap;
}

.days-banner-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 80px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
}

.days-banner-num span {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.65);
}

.days-banner-text { flex: 1; }

.days-banner-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
}

.days-banner-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-intensive-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .why-intensive { padding: 48px 0; }
    .why-intensive .container { padding: 0 16px; }
    .days-banner { flex-direction: column; text-align: center; padding: 28px 22px; }
    .days-banner-num { font-size: 60px; }
}

@media (max-width: 480px) {
    .why-intensive-grid { grid-template-columns: 1fr; }
}
