.benefits {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f3eee5 0%, #fbf9f4 55%, #e6eee6 100%)
}

.benefits:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--orange) 0 28%, var(--sage) 28% 68%, var(--deep-sage) 68%)
}

.benefits-layout {
    position: relative;
    z-index: 1;
    align-items: start
}

.benefits-intro {
    padding-right: 18px
}

.benefits-intro .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.benefits-intro .eyebrow:before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--orange)
}

.benefits-intro h2 {
    font-size: clamp(38px, 4.2vw, 56px);
    max-width: 470px
}

.benefits-intro>p:not(.eyebrow) {
    max-width: 430px;
    line-height: 1.65
}

.benefits-intro .text-link {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.benefit-list {
    position: relative;
    padding-left: 18px
}

.benefit-list:before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: #c8d3c9
}

.benefit {
    position: relative;
    grid-template-columns: 68px 1fr;
    gap: 20px;
    padding: 22px 20px;
    border-top: 1px solid #d7ded6;
    transition: background .2s, transform .2s
}

.benefit:last-child {
    border-bottom: 1px solid #d7ded6
}

.benefit:hover {
    background: rgba(255, 255, 255, .54);
    transform: translateX(5px)
}

.benefit-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid #aabcae;
    border-radius: 50%;
    background: var(--paper);
    font-size: 18px
}

.benefit h3 {
    margin: 2px 0 7px;
    font-size: 15px;
    letter-spacing: .01em
}

.benefit p {
    max-width: 430px;
    line-height: 1.5
}

.benefit:nth-child(1) .benefit-icon {
    color: var(--orange);
    border-color: #e7a18b
}

.benefit:nth-child(2) .benefit-icon {
    color: var(--deep-sage);
    border-color: #a8c0ae
}

.benefit:nth-child(3) .benefit-icon {
    color: #ad7420;
    border-color: #d9bd83
}

.benefit:nth-child(4) .benefit-icon {
    color: var(--orange);
    border-color: #e7a18b
}

@media(max-width:800px) {
    .benefits {
        padding: 68px 0
    }

    .benefits-layout {
        gap: 38px
    }

    .benefits-intro {
        padding-right: 0
    }

    .benefits-intro h2 {
        font-size: clamp(36px, 10vw, 46px)
    }
}

@media(max-width:600px) {
    .benefits {
        padding: 51px 0 56px
    }

    .benefits:before {
        height: 4px
    }

    .benefits-layout {
        gap: 27px
    }

    .benefits-intro h2 {
        font-size: 38px;
        line-height: 1.02
    }

    .benefits-intro>p:not(.eyebrow) {
        font-size: 13px;
        line-height: 1.55
    }

    .benefits-intro .text-link {
        margin-top: 17px
    }

    .benefit-list {
        padding-left: 10px
    }

    .benefit-list:before {
        top: 20px;
        bottom: 20px
    }

    .benefit {
        grid-template-columns: 52px 1fr;
        gap: 12px;
        padding: 17px 10px
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        font-size: 16px
    }

    .benefit h3 {
        font-size: 13px;
        margin-top: 0;
        margin-bottom: 4px
    }

    .benefit p {
        font-size: 11px;
        line-height: 1.42
    }

    .benefit:hover {
        transform: none
    }
}