.benefits {
    background: #f4f3ed;
    padding-bottom: 160px;
}

.benefits__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 40px;
}

.benefits__header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.benefits__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 0.98;
    letter-spacing: -0.42px;
    color: #111110;
    max-width: 494px;
    flex-shrink: 0;
}

.benefits__desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #7a786f;
    max-width: 540px;
}

.benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefits__card {
    background: #fefefc;
    border: 1px solid #dad8d0;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefits__card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #258bff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits__card-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.25;
    color: #111110;
}

.benefits__card-desc {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.76;
    color: #3a3a36;
}

@media (max-width: 1024px) {
    .benefits {
        padding-bottom: 100px;
    }

    .benefits__title {
        font-size: 36px;
    }

    .benefits__card-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding-bottom: 60px;
    }

    .benefits__header {
        padding-bottom: 24px;
    }

    .benefits__header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .benefits__title {
        font-size: 26px;
        max-width: 100%;
    }

    .benefits__desc {
        font-size: 14px;
        max-width: 100%;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits__card {
        padding: 20px;
        gap: 14px;
    }

    .benefits__card-title {
        font-size: 18px;
    }

    .benefits__card-desc {
        font-size: 14px;
    }

    .benefits__card-icon {
        width: 44px;
        height: 44px;
    }

    .benefits__card-icon img,
    .benefits__card-icon svg {
        width: 22px;
        height: 22px;
    }
}
