.why-need {
    padding: 120px 0;
}


.why-need__title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    text-align: left;
    margin-bottom: 24px;
    color: #d62828;
    max-width: 696px;
}

.why-need__subtitle {
    margin: 0 auto 48px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.why-need__grid {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.why-need__item {
    width: 23%;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.3s;
}

.why-need__item:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.why-need__icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px;
    object-fit: contain;
}

.why-need__item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.why-need__item-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

@media screen and (max-width: 1350px) {
    .why-need__title {
        font-size: 52px;
    }
}

@media screen and (max-width: 1023px) {
    .why-need__item {
        width: 48%;
    }

}

@media screen and (max-width: 768px) {

    .why-need {
        padding: 92px 0;
    }

    .why-need__title {
        font-size: 32px;
        line-height: 1.2;
    }

    .why-need__item {
        width: 100%;
        padding: 0;
    }
}