.final-choice-section {
    padding-block: clamp(56px, 8vw, 96px);
    background:
        radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.44), transparent 24%),
        linear-gradient(130deg, var(--pm-color-orange), #ffbd4d 62%, #e88600);
    color: var(--pm-color-ink);
}

.final-choice {
    width: min(100% - 40px, var(--pm-container-wide));
    margin-inline: auto;
    padding-inline: clamp(22px, 4.4vw, 64px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
    gap: 32px;
    align-items: end;
}

.final-choice .kicker {
    margin: 0 0 14px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
}

.final-choice h2 {
    margin: 0;
    max-width: 920px;
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 900;
    line-height: 1.05;
}

.final-choice .headline-outline-dark {
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(10, 12, 15, 0.55);
}

.final-choice > p {
    margin: 0;
    max-width: 520px;
    font-size: 18px;
}

.final-choice .button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.final-choice .btn-outline-dark {
    border-color: rgba(10, 12, 15, 0.32);
}

/*
 * "wave" variant reuses the exact same background technique as the site
 * footer's .pm-footer-bg (main.css) - same gradient/image-set layering and
 * the same cyan radial-gradient screen-blend via ::before - so this CTA
 * reads as a natural continuation of the real footer, not a new invented
 * background. Deliberately does NOT replicate the proof-deck mockup's own
 * CTA treatment (grid-line overlay + small orbit-ring icon), which the
 * user rejected as inconsistent with the rest of the site.
 */
.final-choice-section--wave {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(100deg, var(--pm-color-ink) 0%, rgba(11, 13, 16, 0.55) 32%, transparent 58%),
        url("../../../Images/Footer/footer-bg-2560w.jpg") right bottom / cover no-repeat,
        var(--pm-color-ink);
    color: var(--pm-color-paper);
}

@supports (background-image: image-set(url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBTAA7") type("image/gif") 1x)) {
    .final-choice-section--wave {
        background:
            linear-gradient(100deg, var(--pm-color-ink) 0%, rgba(11, 13, 16, 0.55) 32%, transparent 58%),
            image-set(
                url("../../../Images/Footer/footer-bg-1280w.webp") type("image/webp") 1x,
                url("../../../Images/Footer/footer-bg-2560w.webp") type("image/webp") 2x
            ) right bottom / cover no-repeat,
            var(--pm-color-ink);
    }
}

.final-choice-section--wave::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(55% 75% at 10% 95%, rgba(114, 216, 255, 0.55) 0%, rgba(114, 216, 255, 0.22) 38%, transparent 68%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.final-choice-section--wave .final-choice {
    position: relative;
    z-index: 1;
}

.final-choice-section--wave .headline-outline-dark {
    -webkit-text-stroke: 1.2px rgba(255, 253, 248, 0.4);
}

.final-choice-section--wave .btn-outline-dark {
    color: var(--pm-color-paper);
    border-color: rgba(255, 253, 248, 0.4);
}

.final-choice-section--wave .btn-outline-dark:hover,
.final-choice-section--wave .btn-outline-dark:focus-visible {
    color: var(--pm-color-ink);
    background: var(--pm-color-paper);
}

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

@media (max-width: 560px) {
    .final-choice h2 {
        font-size: 38px;
    }

    .final-choice .button-row,
    .final-choice .btn {
        width: 100%;
    }
}
