.block_benefits {
    position: relative;
    padding: 160px 0 48px;
    overflow: hidden;
    background-color: #F4F4F1;
    color: #1F282D;
}

.benefits-heading {
    margin-bottom: 72px;
}

.benefits-heading h2 {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 20px;
    color: #424B50;
    font-family: 'TTNorms-Medium', Arial, sans-serif;
    font-size: 13px;
    font-weight: normal;
    letter-spacing: .18em;
    line-height: 1.4;
    text-transform: uppercase;
}

.benefits-heading h2::before {
    width: 48px;
    height: 1px;
    flex: 0 0 48px;
    background-color: #D7C669;
    content: '';
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(31, 40, 45, .22);
    border-bottom: 1px solid rgba(31, 40, 45, .22);
}

.benefits-stat {
    min-width: 0;
    padding: 48px 40px 44px;
    outline: none;
}

.benefits-stat + .benefits-stat {
    border-left: 1px solid rgba(31, 40, 45, .22);
}

.benefits-stat:focus-visible {
    outline: 2px solid #D7C669;
    outline-offset: -2px;
}

.benefits-stat__value {
    display: flex;
    max-width: 100%;
    align-items: flex-start;
    color: #1F282D;
    font-family: 'TTNorms-Regular', Arial, sans-serif;
    font-size: clamp(72px, 8vw, 124px);
    font-variant-numeric: tabular-nums;
    font-weight: normal;
    letter-spacing: -.065em;
    line-height: .86;
    white-space: nowrap;
}

.benefits-stat__char {
    display: inline-block;
    height: 1.2em;
    margin-block: -.1em;
    flex: 0 0 1ch;
    inline-size: 1ch;
    overflow: hidden;
}

.benefits-stat__track {
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    will-change: transform, filter;
}

.benefits-stat__track > span {
    display: flex;
    height: 1.2em;
    padding-block: .1em;
    box-sizing: border-box;
    flex: 0 0 1.2em;
    align-items: center;
    justify-content: center;
    line-height: 1em;
}

.benefits-stat.is-rolling .benefits-stat__track {
    animation-name: benefits-character-roll;
    animation-duration: var(--benefits-roll-duration, 760ms);
    animation-delay: var(--benefits-roll-delay, 0ms);
    animation-timing-function: var(--benefits-roll-easing, cubic-bezier(.2, .72, .18, 1));
    animation-fill-mode: both;
}

.benefits-stat__accent {
    display: block;
    width: 44px;
    height: 2px;
    margin: 30px 0 20px;
    background-color: #D7C669;
}

.benefits-stat__label {
    color: #424B50;
    font-family: 'TTNorms-Medium', Arial, sans-serif;
    font-size: 12px;
    letter-spacing: .17em;
    line-height: 1.45;
    text-transform: uppercase;
}

.benefits-reasons {
    display: grid;
    margin-top: 128px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    border-top: 1px solid rgba(31, 40, 45, .22);
    border-bottom: 1px solid rgba(31, 40, 45, .22);
}

.benefits-reason {
    position: relative;
    min-width: 0;
    min-height: 230px;
    padding: 38px 40px 46px;
    box-sizing: border-box;
}

.benefits-reason:nth-child(1) {
    grid-column: 1 / span 4;
}

.benefits-reason:nth-child(2) {
    grid-column: 5 / span 3;
    border-left: 1px solid rgba(31, 40, 45, .22);
}

.benefits-reason:nth-child(3) {
    grid-column: 8 / span 5;
    border-left: 1px solid rgba(31, 40, 45, .22);
}

.benefits-reason:nth-child(4) {
    grid-column: 1 / span 5;
    border-top: 1px solid rgba(31, 40, 45, .22);
}

.benefits-reason:nth-child(5) {
    grid-column: 6 / span 7;
    border-top: 1px solid rgba(31, 40, 45, .22);
    border-left: 1px solid rgba(31, 40, 45, .22);
}

.benefits-reason::before {
    position: absolute;
    top: -1px;
    right: 0;
    left: 0;
    height: 1px;
    background-color: #D7C669;
    content: '';
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 300ms ease;
}

.benefits-reason h3,
.benefits-reason p {
    transition: transform 300ms ease;
}

.benefits-reason h3 {
    max-width: 420px;
    margin: 0 0 14px;
    color: #1F282D;
    font-family: 'TTNorms-Bold', Arial, sans-serif;
    font-size: clamp(18px, 1.45vw, 24px);
    font-weight: normal;
    letter-spacing: .035em;
    line-height: 1.25;
    text-transform: uppercase;
    text-wrap: balance;
}

.benefits-reason p {
    max-width: 390px;
    margin: 0;
    color: #667075;
    font-family: 'TTNorms-Regular', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
    .benefits-reason:hover::before {
        transform: scaleX(1);
    }

    .benefits-reason:hover h3,
    .benefits-reason:hover p {
        transform: translateY(-3px);
    }
}

@keyframes benefits-character-roll {
    0% {
        filter: blur(0);
        transform: translateY(0);
    }

    28% {
        filter: blur(1.35px);
    }

    68% {
        filter: blur(.55px);
    }

    100% {
        filter: blur(0);
        transform: translateY(var(--benefits-roll-distance, -2.4em));
    }
}

@media (min-width: 1200px) {
    .block_benefits {
        padding-top: clamp(60px, 6vh, 72px);
        padding-bottom: clamp(22px, 2.8vh, 30px);
    }

    .benefits-heading {
        margin-bottom: clamp(22px, 3vh, 30px);
    }

    .benefits-stat {
        padding: clamp(18px, 2.2vh, 24px) 32px clamp(16px, 2vh, 22px);
    }

    .benefits-stat__value {
        font-size: clamp(76px, 5.4vw, 88px);
    }

    .benefits-stat__accent {
        margin-top: clamp(12px, 1.5vh, 16px);
        margin-bottom: clamp(8px, 1.1vh, 12px);
    }

    .benefits-reasons {
        margin-top: clamp(24px, 2.8vh, 30px);
        border-bottom: 0;
    }

    .benefits-reason {
        min-height: clamp(148px, 15vh, 162px);
        padding: clamp(18px, 2.2vh, 24px) 28px clamp(20px, 2.4vh, 26px);
    }

    .benefits-reason h3 {
        margin-bottom: 10px;
    }

    .benefits-reason:nth-child(1) {
        grid-column: 1 / span 4;
        border-bottom: 1px solid rgba(31, 40, 45, .22);
    }

    .benefits-reason:nth-child(2) {
        grid-column: 5 / span 4;
        border-bottom: 1px solid rgba(31, 40, 45, .22);
    }

    .benefits-reason:nth-child(3) {
        grid-column: 9 / span 4;
        border-bottom: 1px solid rgba(31, 40, 45, .22);
    }

    .benefits-reason:nth-child(4) {
        grid-column: 3 / span 4;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(31, 40, 45, .22);
        border-left: 1px solid rgba(31, 40, 45, .22);
    }

    .benefits-reason:nth-child(5) {
        grid-column: 7 / span 4;
        border-top: 0;
        border-right: 1px solid rgba(31, 40, 45, .22);
        border-bottom: 1px solid rgba(31, 40, 45, .22);
        border-left: 1px solid rgba(31, 40, 45, .22);
    }

    .benefits-reason:nth-child(-n + 3) h3 {
        min-height: 2.5em;
    }
}

@media (min-width: 490px) and (max-width: 991.98px) {
    .benefits-reason:nth-child(3) h3,
    .benefits-reason:nth-child(4) h3 {
        min-height: 2.5em;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .benefits-reason h3 {
        max-width: 320px;
    }
}

@media (min-width: 1264px) and (max-width: 1499.98px) {
    .benefits-reason:nth-child(4) h3,
    .benefits-reason:nth-child(5) h3 {
        min-height: 2.5em;
    }
}

@media (max-width: 523.98px) {
    .benefits-reason:nth-child(1) h3,
    .benefits-reason:nth-child(2) h3 {
        min-height: 2.5em;
    }
}

@media (max-width: 489.98px) {
    .benefits-reason:nth-child(3) h3,
    .benefits-reason:nth-child(4) h3 {
        min-height: 3.75em;
    }
}

@media (prefers-reduced-motion: reduce) {
    .benefits-stat.is-rolling .benefits-stat__track {
        animation: none;
        filter: none;
        transform: none;
    }

    .benefits-reason::before,
    .benefits-reason h3,
    .benefits-reason p {
        transition: none;
    }
}
