.why {
    background: var(--steel);
    background: var(--bg2);
    width: 100% !important;
    max-width: 100% !important;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 40px;
    align-items: start;
    margin-top: 60px;
}

/* Размещение элементов по колонкам */
.section-title--left {
    grid-column: 1;
    grid-row: 1;
}

.why-column--left {
    grid-column: 1;
    grid-row: 2;
}

.section-title--right {
    grid-column: 2;
    grid-row: 1;
}

.why-column--right {
    grid-column: 2;
    grid-row: 2;
}

/* Стили заголовков колонок (одинаковы с общим section-title, но уточним) */
.section-title--left,
.section-title--right {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    letter-spacing: 1px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 32px;
    min-height: 2em; /* выравнивание начала списков */
}

/* Элементы списка */
.why-point {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-point:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: rgba(57, 167, 81, 0.12);
    border: 1px solid rgba(57, 167, 81, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 12px;
    color: var(--accent);
}

.why-check svg {
    width: 14px;
    height: 14px;
    display: block;
}

.why-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.why-text p {
    font-size: 13px;
    color: var(--fog);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* На мобильных устройствах идём в обычном порядке потока */
    .section-title--left,
    .why-column--left,
    .section-title--right,
    .why-column--right {
        grid-column: auto;
        grid-row: auto;
    }
}