/* ============================================
   WHY US SECTION
   ============================================ */

#why {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.why-num {
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--blue);
    line-height: 1;
    min-width: 44px;
}

.why-item h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--text-dark);
}
.why-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
