/* SelSup Help CTA v2 */
.help-cta {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    overflow: hidden;
    margin-top: clamp(48px, 7vw, 80px);
    padding: clamp(32px, 5vw, 64px);
    border-radius: 32px;
    background: #102f3f;
    color: #fff;
    box-shadow: 0 28px 70px rgba(16, 47, 63, .18);
}

.help-cta::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -116px;
    right: -92px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #ffad1f;
}

.help-cta__copy {
    min-width: 0;
}

.help-cta__eyebrow {
    margin-bottom: 18px;
    color: #6fdcff;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.help-cta .help-cta__title {
    max-width: 760px;
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.035em;
    text-wrap: balance;
}

.help-cta .help-cta__text {
    max-width: 690px;
    margin: 24px 0 0;
    color: #d3e3eb;
    font-size: clamp(17px, 1.55vw, 20px);
    font-weight: 500;
    line-height: 1.55;
}

.help-cta__action {
    margin-top: 32px;
}

.help-cta .help-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 58px;
    padding: 15px 18px 15px 24px;
    border: 0;
    border-radius: 16px;
    background: #ffad1f;
    color: #102f3f;
    box-shadow: 0 14px 30px rgba(255, 173, 31, .2);
    font-family: inherit;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.help-cta .help-cta__button:hover,
.help-cta .help-cta__button:focus-visible {
    background: #ffc04f;
    color: #102f3f;
    box-shadow: 0 18px 38px rgba(255, 173, 31, .28);
    transform: translateY(-2px);
}

.help-cta .help-cta__button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 4px;
}

.help-cta__arrow {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transition: transform .22s ease;
}

.help-cta__button:hover .help-cta__arrow,
.help-cta__button:focus-visible .help-cta__arrow {
    transform: translateX(3px);
}

.help-cta__visual {
    position: relative;
    display: grid;
    gap: 24px;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    background: #fff;
    color: #102f3f;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .16);
}

.help-cta__mark {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: #102f3f;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.help-cta__areas {
    display: grid;
    gap: 2px;
}

.help-cta__area {
    position: relative;
    padding: 15px 0 15px 26px;
    border-bottom: 1px solid #d9e5ea;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
    transition: transform .22s ease;
}

.help-cta__area:last-child {
    border-bottom: 0;
}

.help-cta__area::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 3px;
}

.help-cta__area--blue::before {
    background: #00a6e7;
}

.help-cta__area--orange::before {
    background: #ffad1f;
}

.help-cta__area--green::before {
    background: #2bc768;
}

.help-cta:hover .help-cta__area:nth-child(2) {
    transform: translateX(6px);
}

@media (max-width: 900px) {
    .help-cta {
        grid-template-columns: 1fr;
    }

    .help-cta__visual {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
    }
}

@media (max-width: 560px) {
    .help-cta {
        gap: 28px;
        margin-top: 44px;
        padding: 28px 20px;
        border-radius: 24px;
    }

    .help-cta::before {
        top: -92px;
        right: -96px;
        width: 200px;
        height: 200px;
    }

    .help-cta .help-cta__title {
        font-size: 32px;
        line-height: 1.08;
        text-wrap: pretty;
    }

    .help-cta .help-cta__text {
        margin-top: 18px;
        font-size: 17px;
    }

    .help-cta__action {
        margin-top: 26px;
    }

    .help-cta .help-cta__button {
        width: 100%;
        font-size: 16px;
    }

    .help-cta__visual {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 20px;
        border-radius: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .help-cta__button,
    .help-cta__arrow,
    .help-cta__area {
        transition: none;
    }

    .help-cta .help-cta__button:hover,
    .help-cta .help-cta__button:focus-visible,
    .help-cta__button:hover .help-cta__arrow,
    .help-cta__button:focus-visible .help-cta__arrow,
    .help-cta:hover .help-cta__area:nth-child(2) {
        transform: none;
    }
}
