.why {
    max-width: 1200px;
    margin: 0 auto 10px;
    padding: 40px 15px;
}

.why-title {
    max-width: 220px;
    margin-bottom: 45px;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(45, 45, 45, 1);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(290px, 1fr));
    gap: 10px;
}

.why-card {
    background-color: #F9F5F1;
    border-radius: 24px;
    padding: 25px;
    position: relative;
}

.why-card:nth-child(1) .why-text {
    max-width: 220px;
}

.why-card:nth-child(2) .why-text {
    max-width: 228px;
}

.why-card:nth-child(2) .why-name {
    max-width: 150px;
}

.why-card:nth-child(3) .why-text {
    max-width: 228px;
}


.why-card:nth-child(4) .why-text {
    max-width: 217px;
}

.why-icon {
    position: absolute;
    width: 140px;
    height: auto;
    pointer-events: none;
    right: 0;
    top: 0;
}

.why-icon-1 {
    width: 151px;
    height: 119px;
    right: -36px;
    top: -36px;
}

.why-icon-2 {
    width: 150px;
    height: 135px;
    top: -22px;
    right: -20px;
}

.why-icon-3 {
    width: 146px;
    height: 148px;
    top: -30px;
    right: -30px;
}

.why-icon-4 {
    width: 147px;
    height: 136px;
    top: -30px;
    right: -26px;

}

@media(min-width:1440px) {
    .why {
        margin-bottom: 120px;
    }

    .why-title {
        margin-bottom: 100px;
        max-width: none;
    }

    .why-card .why-name {
        max-width: none !important;
    }


    .why-icon-1 {
        width: 290px;
        height: 229px;
        bottom: 0;
        left: -126px;
    }

    .why-icon-2 {
        width: 242px;
        height: 219px;
        bottom: -64px;
        left: -27px;
    }

    .why-icon-3 {
        width: 230px;
        height: 233px;
        bottom: -123px;
        left: 2px;
    }

    .why-icon-4 {
        width: 260px;
        height: 241px;
        bottom: 0;
        left: 158px;
    }

    .why-icon {
        top: auto;
    }
}

.why-name {
    font-size: 20px;
    font-weight: 400;
    color: rgba(45, 45, 45, 1);
    margin-bottom: 25px;
}

.why-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(45, 45, 45, 0.7);
    max-width: 260px;
    line-height: 17px;
    margin-bottom: 0;
}

.why-number {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 32px;
    height: 32px;
    border: 1px solid #d6d6d6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 14px;
}

@media(min-width:1440px) {
    .why-card {
        min-height: 400px;
    }

    .why-name {
        font-size: 24px;
    }

    .why-text {
        font-size: 16px;
    }

    .why-number {
        font-size: 16px;
    }
}

/* Адаптив */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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