.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.rh-btn {
    min-height: 62px;
    padding: 16px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    font-weight: 900;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.rh-btn--primary {
    min-width: 260px;
    color: #fff;
    border: 1px solid #ff3038;
    background: linear-gradient(180deg, #ff3c42 0%, #ed101b 100%);
    box-shadow: 0 18px 34px rgba(240, 32, 45, .28);
}

.rh-btn--ghost {
    min-width: 230px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .1);
}

.rh-btn--ghost:hover {
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .16);
}

/* Services */

.rh-services {
    padding: 54px 0 0;
}

.rh-section-head {
    max-width: 760px;
    margin: 0 0 28px;
}

.rh-section-kicker {
    margin: 0 0 10px;
    color: #ef101b;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.rh-section-title {
    margin: 0 0 10px;
    color: #2b334b;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.03em;
}

.rh-section-text {
    max-width: 640px;
    margin: 0;
    color: #555;
    font-size: 18px;
    line-height: 1.5;
}

.rh-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rh-services-grid > li {
    display: flex;
}

.rh-service-card {
    position: relative;
    width: 100%;
    min-height: 258px;
    padding: 32px 30px 26px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 34, 51, .08), transparent 32%),
        linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, .045);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
    text-decoration: none;
    color: inherit;
}

.rh-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    background: linear-gradient(135deg, rgba(255, 34, 51, .11), transparent 44%);
    transition: opacity .22s ease;
}

.rh-service-card:hover {
    transform: translateY(-2px);
    border-color: rgba(236, 90, 101, 0.32);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .09);
}

.rh-service-card:hover::before {
    opacity: 1;
}

.rh-service-card-top {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.rh-service-card-icon {
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 34, 51, .16), transparent 62%),
        #fff1f2;
    box-shadow: inset 0 0 0 1px rgba(255, 34, 51, .08);
}

.rh-service-card-icon img {
    display: block;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
}

.rh-service-card-tag {
    max-width: 130px;
    padding: 12px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #2b334b;
    background: rgba(255, 34, 51, .08);
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.rh-service-card-body {
    position: relative;
    z-index: 1;
}

.rh-service-card-title {
    margin: 0 0 13px;
    color: #2b334b;
    font-size: 24px;
    line-height: 1.16;
    font-weight: 950;
    letter-spacing: -.02em;
}

.rh-service-card-desc {
    min-height: 52px;
    margin: 0;
    color: #424242;
    font-size: 17px;
    line-height: 1.45;
}

.rh-service-card-bottom {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #ededed;
    color: #305f6a;
    text-decoration: none;
    font-size: 20px;
    line-height: 1;
    font-weight: 950;
}

.rh-service-card-arrow {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #232323;
    background: rgba(255, 34, 51, .08);
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    transition: transform .22s ease, background-color .22s ease, color .22s ease;
}

.rh-service-card:hover .rh-service-card-arrow {
    transform: translateX(4px);
    color: #fff;
    background: #ef101b;
}

/* Benefits */

.rh-benefits {
    padding: 34px 0 0;
}

.rh-benefits-title {
    position: relative;
    width: fit-content;
    max-width: 760px;
    margin: 0 0 24px;
    color: #2b334b;
    font-size: 38px;
    line-height: 1.08;
    font-weight: 950;
    letter-spacing: -.03em;
}

.rh-benefits-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 76px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ef101b 0%, rgba(239, 16, 27, .18) 100%);
}

.rh-benefits-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #e6e6e6;
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .05);
}

.rh-benefit {
    min-height: 112px;
    padding: 26px;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: center;
    background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
}

.rh-benefit + .rh-benefit {
    border-left: 1px solid #e6e6e6;
}

.rh-benefit span {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 34, 51, .2), transparent 62%),
        #fff1f2;
    color: #ef101b;
    font-size: 17px;
    font-weight: 950;
    line-height: 1;
}

.rh-benefit h3 {
    display: block;
    margin: 0 0 5px;
    color: #2b334b;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 950;
}

.rh-benefit p {
    margin: 0;
    color: #444;
    font-size: 15px;
    line-height: 1.35;
}

/* CTA */

.rh-cta {
    padding: 54px 0 0;
}

.rh-cta-box {
    min-height: 132px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 24px;
    margin-bottom: 60px;
    background:
        radial-gradient(circle at 15% 50%, rgba(239, 16, 27, .34), transparent 32%),
        linear-gradient(135deg, #080808 0%, #181818 100%);
    color: #fff;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .16);
}

.rh-cta-left {
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fff;
}

.rh-cta-icon {
    width: 68px;
    height: 68px;
    flex: 0 0 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ef101b;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    box-shadow: 0 18px 34px rgba(240, 32, 45, .28);
}

.rh-cta-title {
    margin: 0 0 6px;
    color: #fff;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -.02em;
}

.rh-cta-text {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.35;
}

.rh-cta-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* Responsive */

@media (max-width: 1300px) {
    .rh-benefits-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rh-benefit:nth-child(3) {
        border-left: 0;
    }

    .rh-benefit:nth-child(n+3) {
        border-top: 1px solid #e6e6e6;
    }
}

@media (max-width: 1050px) {
    .rh-section-title {
        font-size: 36px;
    }

    .rh-cta-box {
        flex-direction: column;
        align-items: stretch;
    }

    .rh-cta-actions {
        width: 100%;
    }

    .rh-cta-actions .rh-btn {
        flex: 1;
    }
}

@media (max-width: 900px) {
    .rh-services {
        padding-top: 42px;
    }

    .rh-benefits-list {
        grid-template-columns: 1fr;
    }

    .rh-benefit,
    .rh-benefit + .rh-benefit,
    .rh-benefit:nth-child(n+3) {
        border-left: 0;
        border-top: 1px solid #e6e6e6;
    }

    .rh-benefit:first-child {
        border-top: 0;
    }

    .rh-cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .rh-cta-box .rh-btn {
        width: 100%;
    }
}

@media (max-width: 760px) {
    .rh-btn {
        width: 100%;
        min-width: 0;
    }

    .rh-section-head {
        margin-bottom: 22px;
    }

    .rh-section-title {
        font-size: 30px;
    }

    .rh-benefits-title {
        font-size: 28px;
    }

    .rh-section-text {
        font-size: 16px;
    }

    .rh-services-grid {
        grid-template-columns: 1fr;
    }

    .rh-service-card {
        min-height: 0;
        padding: 24px 20px;
    }

    .rh-service-card-title {
        font-size: 22px;
    }

    .rh-service-card-desc {
        min-height: 0;
        font-size: 16px;
    }

    .rh-cta-left {
        align-items: flex-start;
    }

    .rh-cta-actions {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 460px) {
    .rh-services {
        padding-top: 34px;
    }

    .rh-section-title {
        font-size: 27px;
    }

    .rh-service-card {
        border-radius: 18px;
    }

    .rh-service-card-top {
        margin-bottom: 20px;
    }

    .rh-service-card-icon {
        width: 66px;
        height: 66px;
        flex-basis: 66px;
        border-radius: 18px;
    }

    .rh-service-card-icon img {
        max-width: 38px;
        max-height: 38px;
    }

    .rh-service-card-tag {
        max-width: 118px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .rh-service-card-bottom {
        font-size: 18px;
    }

    .rh-cta-left {
        flex-direction: column;
    }

    .rh-cta-title {
        font-size: 24px;
    }

    .rh-cta-text {
        font-size: 18px;
    }
}
