﻿/* =========================================================
   Will & Testament — Theme Aligned CSS (Improved)
   Bootstrap v5.1 friendly + mobile-first adjustments
========================================================= */

:root {
    /* Brand */
    --brand-red: #DE1F26;
    --brand-yellow: #FECD07;
    --brand-dark: #1C1C1C;
    --brand-blue: #93A8AC;
    /* CTA / Links (screen uses deep blue) */
    /*--cta-blue: #0B6C97;
    --cta-blue-hover: #0A5F84;*/
    --cta-blue: var(--brand-red);
    --cta-blue-hover: #b9151b;
    /* UI */
    --ink: #0f172a;
    --muted: rgba(28,28,28,.68);
    --card: #fff;
    --ring: rgba(28,28,28,.10);
    /* Effects */
    --shadow-sm: 0 10px 25px rgba(28,28,28,.06);
    --shadow-md: 0 18px 50px rgba(28,28,28,.12);
    --shadow-lg: 0 26px 60px rgba(28,28,28,.14);
    /* Radius / spacing */
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 22px;
    /* Focus */
    --focus-ring: 0 0 0 .2rem rgba(11,108,151,.14);
    /* Replace with your real path */
    --wt-hero-img: url("../images/will/hero.jpg");
}

/* Improve tap/scroll + font rendering */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Better keyboard focus for custom buttons/links */
.wt-btn-primary:focus,
.wt-btn-outline:focus,
.wt-btn-wide:focus,
.wt-btn-ghost:focus,
.wt-finalcta__btn:focus,
.wt-steps__link:focus,
.wt-check a:focus {
    outline: none;
    box-shadow: var(--focus-ring);
}

/* Shared helpers */
.wt-section {
    padding: clamp(2.75rem, 5vw, 4.5rem) 0;
}

.wt-subtitle {
    color: rgba(15,23,42,.62);
    font-size: 1rem;
}

/* Prefer blur only where supported */
@supports not ((backdrop-filter: blur(6px)) or (-webkit-backdrop-filter: blur(6px))) {
    .wt-pill, .wt-chip {
        background: #fff;
    }
}

/* =========================================================
   Screen 1: Hero
========================================================= */

.wt-hero {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 72vh, 720px);
    display: flex;
    align-items: center;
    background: radial-gradient(1200px 700px at 20% 15%, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 55%, rgba(255,255,255,.55) 100%), linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 45%, rgba(255,255,255,.35) 100%), var(--wt-hero-img);
    background-size: cover;
    background-position: center right;
}

/* Mobile readability overlay (keeps design but avoids washed text) */
@media (max-width: 575.98px) {
    .wt-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.82) 45%, rgba(255,255,255,.70) 100%);
        pointer-events: none;
    }

    .wt-hero > * {
        position: relative;
    }
}

.wt-hero__inner {
    padding: clamp(2.25rem, 5vw, 4.5rem) 0;
}

.wt-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .55rem .95rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .92rem;
    color: var(--brand-red);
    background: rgba(222,31,38,.08);
    border: 1px solid rgba(222,31,38,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.wt-hero__title {
    font-family: "Articulat CF", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--brand-dark);
    font-size: clamp(2.05rem, 3.4vw, 3.4rem);
    margin: 0;
    max-width: 18ch;
}

.wt-accent {
    color: var(--cta-blue);
    position: relative;
    display: inline-block;
}

    .wt-accent::after {
        content: "";
        position: absolute;
        left: .05em;
        right: .1em;
        bottom: .18em;
        height: .28em;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(11,108,151,0) 0%, rgba(11,108,151,.22) 18%, rgba(11,108,151,.22) 82%, rgba(11,108,151,0) 100%);
        transform: skewX(-10deg);
        z-index: -1;
    }

.wt-hero__lead {
    margin: 0;
    color: rgba(15,23,42,.78);
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 60ch;
}

.wt-hero__sub {
    margin: 0;
    color: rgba(15,23,42,.72);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 62ch;
}

.wt-chip {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(28,28,28,.10);
    box-shadow: var(--shadow-sm);
    color: var(--brand-dark);
    font-size: .95rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

    .wt-chip i {
        color: var(--cta-blue);
    }

/* Buttons */
.wt-btn-primary {
    border: 0;
    border-radius: var(--radius-sm);
    padding: .9rem 1.2rem;
    font-weight: 900;
    color: #fff;
    background: var(--cta-blue);
    box-shadow: 0 18px 30px rgba(11,108,151,.22);
}

    .wt-btn-primary:hover,
    .wt-btn-primary:focus {
        background: var(--cta-blue-hover);
        color: #fff;
    }

.wt-btn-badge {
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 10px;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.22);
    font-weight: 800;
    font-size: .78rem;
    line-height: 1.2;
}

.wt-btn-outline {
    border-radius: var(--radius-sm);
    padding: .9rem 1.2rem;
    font-weight: 900;
    color: var(--brand-dark);
    background: rgba(255,255,255,.70);
    border: 1px solid rgba(28,28,28,.14);
    box-shadow: 0 14px 26px rgba(28,28,28,.08);
}

    .wt-btn-outline:hover,
    .wt-btn-outline:focus {
        background: #fff;
        border-color: rgba(28,28,28,.20);
        color: var(--brand-dark);
    }

.wt-hero__note {
    color: rgba(15,23,42,.70);
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .35rem;
}

    .wt-hero__note i {
        color: var(--cta-blue);
        font-size: 1.05rem;
    }

@media (max-width: 991.98px) {
    .wt-hero {
        background-position: 75% center;
    }

    .wt-hero__title {
        max-width: 20ch;
    }
}

@media (max-width: 575.98px) {
    .wt-hero {
        min-height: 560px;
        background-position: 78% center;
    }

    .wt-btn-primary, .wt-btn-outline {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }
}

/* =========================================================
   Screen 2: Risk + Solution
========================================================= */

.wt-risk {
    background: radial-gradient(900px 500px at 10% 0%, rgba(147,168,172,.16) 0%, rgba(147,168,172,0) 60%), radial-gradient(900px 500px at 90% 20%, rgba(254,205,7,.10) 0%, rgba(254,205,7,0) 62%), #f7f9fb;
}

.wt-risk__head {
    max-width: 920px;
    margin: 0 auto;
}

.wt-h2 {
    font-family: "Articulat CF", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--brand-dark);
    font-size: clamp(1.6rem, 2.3vw, 2.25rem);
}

.wt-h2__danger {
    color: var(--brand-red);
}

.wt-h2__primary {
    color: var(--cta-blue);
    position: relative;
    display: inline-block;
}

    .wt-h2__primary::after {
        content: "";
        position: absolute;
        left: .05em;
        right: .15em;
        bottom: .12em;
        height: .28em;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(11,108,151,0) 0%, rgba(11,108,151,.22) 18%, rgba(11,108,151,.22) 82%, rgba(11,108,151,0) 100%);
        transform: skewX(-10deg);
        z-index: -1;
    }

.wt-risk-card {
    height: 100%;
    background: rgba(255,255,255,.84);
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1.15rem;
    border: 2px dashed rgba(222,31,38,.22);
    box-shadow: 0 20px 40px rgba(28,28,28,.06);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.wt-risk-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    margin-bottom: .9rem;
    border: 1px solid rgba(28,28,28,.08);
    background: rgba(255,255,255,.9);
}

    .wt-risk-card__icon i {
        font-size: 1.05rem;
        line-height: 1;
    }

.wt-risk-card__icon--danger {
    background: rgba(222,31,38,.08);
    border-color: rgba(222,31,38,.18);
}

    .wt-risk-card__icon--danger i {
        color: var(--brand-red);
    }

.wt-risk-card__icon--warn {
    background: rgba(254,205,7,.18);
    border-color: rgba(254,205,7,.28);
}

    .wt-risk-card__icon--warn i {
        color: #8a6a00;
    }

.wt-risk-card__icon--info {
    background: rgba(147,168,172,.18);
    border-color: rgba(147,168,172,.32);
}

    .wt-risk-card__icon--info i {
        color: var(--cta-blue);
    }

.wt-risk-card__title {
    font-weight: 900;
    color: var(--brand-dark);
    font-size: 1rem;
    margin: 0;
}

.wt-risk-card__text {
    color: rgba(15,23,42,.62);
    font-size: .95rem;
    line-height: 1.55;
}

.wt-solution {
    margin-top: clamp(2.5rem, 4vw, 4rem);
}

.wt-feature {
    display: flex;
    gap: .95rem;
    align-items: flex-start;
    padding: .85rem 0;
}

.wt-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(11,108,151,.08);
    border: 1px solid rgba(11,108,151,.16);
    flex: 0 0 auto;
}

    .wt-feature__icon i {
        color: var(--cta-blue);
        font-size: 1.15rem;
    }

.wt-feature__title {
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1.2;
    margin-bottom: .2rem;
}

.wt-feature__text {
    color: rgba(15,23,42,.62);
    font-size: .95rem;
    line-height: 1.55;
    max-width: 56ch;
}

.wt-visual {
    background: rgba(147,168,172,.26);
    border-radius: 20px;
    padding: 1.35rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(28,28,28,.08);
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wt-visual__img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    display: block;
}

.mt-lg-6 {
    margin-top: 4rem !important;
}

/* =========================================================
   Screen 3: Steps
========================================================= */

.wt-steps {
    background: radial-gradient(900px 520px at 18% 30%, rgba(147,168,172,.22) 0%, rgba(147,168,172,0) 62%), #eef3f6;
}

.wt-photo {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(28,28,28,.18);
    background: rgba(255,255,255,.55);
}

.wt-photo__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.wt-photo__badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(28,28,28,.10);
    border-radius: 12px;
    padding: .85rem 1rem;
    box-shadow: 0 18px 40px rgba(28,28,28,.18);
    min-width: 190px;
}

.wt-photo__badge-title {
    font-weight: 900;
    color: var(--brand-dark);
    line-height: 1.15;
}

.wt-photo__badge-sub {
    color: rgba(15,23,42,.62);
    font-size: .9rem;
    margin-top: .15rem;
}

.wt-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem 0;
}

.wt-step__num {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    font-weight: 900;
    color: #fff;
    background: var(--cta-blue);
    box-shadow: 0 14px 30px rgba(11,108,151,.25);
}

.wt-step__top {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: .25rem;
}

.wt-step__title {
    font-weight: 900;
    color: var(--brand-dark);
    font-size: 1.05rem;
    line-height: 1.25;
}

.wt-step__tag {
    display: inline-flex;
    align-items: center;
    padding: .22rem .6rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: .78rem;
    color: var(--cta-blue);
    background: rgba(11,108,151,.10);
    border: 1px solid rgba(11,108,151,.14);
}

.wt-step__text {
    color: rgba(15,23,42,.62);
    font-size: .95rem;
    line-height: 1.6;
    max-width: 68ch;
}

.wt-steps__link {
    font-weight: 900;
    color: var(--cta-blue);
    text-decoration: none;
}

    .wt-steps__link:hover {
        color: var(--cta-blue-hover);
        text-decoration: underline;
    }

@media (max-width: 991.98px) {
    .wt-photo {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .wt-photo__badge {
        right: 12px;
        bottom: 12px;
        min-width: 170px;
        padding: .75rem .9rem;
    }
}

/* =========================================================
   Screen 4: Form
========================================================= */

.wt-form {
    background: radial-gradient(900px 520px at 50% 0%, rgba(147,168,172,.16) 0%, rgba(147,168,172,0) 62%), #f7f9fb;
}

.wt-form__head {
    max-width: 820px;
    margin: 0 auto;
}

.wt-form__pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .8rem;
    border-radius: 999px;
    background: rgba(147,168,172,.14);
    border: 1px solid rgba(28,28,28,.10);
    color: rgba(15,23,42,.70);
    font-weight: 800;
    font-size: .82rem;
}

.wt-form__title {
    font-family: "Articulat CF", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--brand-dark);
    font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

/* stepper */
.wt-stepper {
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.wt-stepper__item {
    display: flex;
    align-items: center;
}

.wt-stepper__dot {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: .9rem;
    color: rgba(15,23,42,.55);
    background: #eef3f6;
    border: 1px solid rgba(28,28,28,.10);
}

.wt-stepper__line {
    width: 84px;
    height: 3px;
    border-radius: 999px;
    background: rgba(28,28,28,.08);
    margin: 0 12px;
}

.wt-stepper__item.is-active .wt-stepper__dot,
.wt-stepper__item.is-done .wt-stepper__dot {
    background: var(--cta-blue);
    border-color: rgba(11,108,151,.25);
    color: #fff;
    box-shadow: 0 14px 26px rgba(11,108,151,.22);
}

.wt-stepper__item.is-done .wt-stepper__dot {
    font-size: 0;
    position: relative;
}

    .wt-stepper__item.is-done .wt-stepper__dot::before {
        content: "\F26E";
        font-family: "bootstrap-icons";
        font-size: 1rem;
    }

.wt-stepper__item.is-done .wt-stepper__line {
    background: rgba(11,108,151,.45);
}

/* card */
.wt-formcard {
    max-width: 720px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(28,28,28,.10);
    box-shadow: 0 20px 50px rgba(28,28,28,.14);
    padding: clamp(1.25rem, 2.5vw, 2rem);
}

.wt-formcard__title {
    font-weight: 900;
    color: var(--brand-dark);
    font-size: 1.15rem;
}

.wt-formcard__sub {
    color: rgba(15,23,42,.55);
    font-size: .95rem;
}

.wt-label {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 800;
    color: rgba(15,23,42,.72);
}

    .wt-label i {
        color: var(--cta-blue);
    }

.wt-control {
    border-radius: 10px;
    border: 1px solid rgba(28,28,28,.14);
    padding: .75rem .9rem;
    box-shadow: none;
}

    .wt-control:focus {
        border-color: rgba(11,108,151,.35);
        box-shadow: var(--focus-ring);
    }

.wt-radio {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .35rem 0;
    color: rgba(15,23,42,.72);
    font-weight: 600;
}

    .wt-radio .form-check-input {
        width: 1.05rem;
        height: 1.05rem;
        margin-top: 0;
        border-color: rgba(28,28,28,.22);
    }

        .wt-radio .form-check-input:checked {
            background-color: var(--cta-blue);
            border-color: var(--cta-blue);
        }

.wt-btn-wide {
    background: var(--cta-blue);
    color: #fff;
    border: 0;
    border-radius: 10px;
    padding: .85rem 1rem;
    font-weight: 900;
    box-shadow: 0 18px 32px rgba(11,108,151,.22);
}

    .wt-btn-wide:hover,
    .wt-btn-wide:focus {
        background: var(--cta-blue-hover);
        color: #fff;
    }

.wt-btn-ghost {
    background: #fff;
    border: 1px solid rgba(28,28,28,.16);
    border-radius: 10px;
    padding: .85rem 1rem;
    font-weight: 900;
    color: rgba(15,23,42,.75);
}

    .wt-btn-ghost:hover {
        background: #f7f9fb;
    }

.wt-help {
    color: rgba(15,23,42,.52);
    font-size: .82rem;
}

.wt-consent {
    border: 1px solid rgba(28,28,28,.12);
    border-radius: 12px;
    padding: 1rem;
    background: rgba(247,249,251,.65);
}

.wt-consent__head {
    display: flex;
    align-items: center;
    color: rgba(15,23,42,.78);
}

.wt-check {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    color: rgba(15,23,42,.70);
    font-size: .92rem;
    line-height: 1.6;
}

    .wt-check .form-check-input {
        margin-top: .25rem;
        width: 1.05rem;
        height: 1.05rem;
        border-color: rgba(28,28,28,.22);
    }

        .wt-check .form-check-input:checked {
            background-color: var(--cta-blue);
            border-color: var(--cta-blue);
        }

    .wt-check a {
        color: var(--cta-blue);
        text-decoration: underline;
    }

.wt-formcard__foot {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(15,23,42,.55);
    font-size: .85rem;
    padding-top: .75rem;
    border-top: 1px solid rgba(28,28,28,.08);
}

@media (max-width: 575.98px) {
    .wt-stepper__line {
        width: 52px;
        margin: 0 10px;
    }

    .wt-formcard {
        padding: 1.05rem;
    }

    .wt-formcard__foot {
        flex-wrap: wrap;
        gap: .35rem;
    }
}

/* =========================================================
   Screen 5: Included
========================================================= */

.wt-included {
    background: #f7f9fb;
}

.wt-included__head {
    max-width: 900px;
    margin: 0 auto;
}

.wt-inc-card {
    text-align: center;
    background: #fff;
    border: 1px solid rgba(28,28,28,.10);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    box-shadow: 0 18px 40px rgba(28,28,28,.08);
}

.wt-inc-card__icon {
    width: 46px;
    height: 46px;
    margin: 0 auto .85rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(11,108,151,.10);
    border: 1px solid rgba(11,108,151,.14);
}

    .wt-inc-card__icon i {
        color: var(--cta-blue);
        font-size: 1.15rem;
    }

.wt-inc-card__title {
    font-weight: 900;
    color: var(--brand-dark);
    font-size: .98rem;
    margin-bottom: .25rem;
}

.wt-inc-card__text {
    color: rgba(15,23,42,.58);
    font-size: .9rem;
    line-height: 1.4;
}

.wt-inc-panel {
    max-width: 660px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(28,28,28,.10);
    box-shadow: 0 22px 55px rgba(28,28,28,.14);
    overflow: hidden;
}

.wt-inc-panel__head {
    padding: 1rem 1.25rem;
    text-align: center;
    font-weight: 900;
    color: var(--brand-dark);
    background: rgba(147,168,172,.12);
    border-bottom: 1px solid rgba(28,28,28,.08);
}

.wt-inc-panel__body {
    padding: 1.25rem 1.25rem 1.35rem;
}

.wt-inc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .75rem;
}

    .wt-inc-list li {
        display: flex;
        gap: .75rem;
        align-items: flex-start;
        color: rgba(15,23,42,.70);
        line-height: 1.55;
        font-size: .95rem;
    }

    .wt-inc-list i {
        color: var(--cta-blue);
        font-size: 1.05rem;
        line-height: 1;
        margin-top: .22rem;
    }

.wt-inc-foot {
    color: rgba(15,23,42,.55);
    font-size: .9rem;
}

/* =========================================================
   Screen 6: FAQ
========================================================= */

.wt-faq {
    background: #fff;
}

.wt-faq__head {
    max-width: 900px;
    margin: 0 auto;
}

.wt-faq__wrap {
    max-width: 820px;
}

.wt-faq__title {
    font-family: "Articulat CF", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--brand-dark);
    font-size: clamp(1.75rem, 2.8vw, 2.6rem);
    line-height: 1.15;
}

.wt-acc .accordion-item {
    margin-bottom: 14px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(28,28,28,.08);
    border: 1px solid rgba(28,28,28,.10);
}

.wt-acc .accordion-button {
    background: #fff;
    color: var(--brand-dark);
    font-weight: 900;
    padding: 1.05rem 1.25rem;
    border-radius: 12px;
    box-shadow: none !important;
}

    .wt-acc .accordion-button:focus {
        box-shadow: var(--focus-ring) !important;
    }

    .wt-acc .accordion-button::after {
        background-size: 1rem;
        opacity: .75;
    }

.wt-acc .accordion-body {
    padding: 0 1.25rem 1.1rem;
    color: rgba(15,23,42,.64);
    line-height: 1.7;
    font-size: .95rem;
}

@media (max-width: 575.98px) {
    .wt-acc .accordion-button {
        padding: .95rem 1rem;
    }

    .wt-acc .accordion-body {
        padding: 0 1rem 1rem;
    }
}

/* =========================================================
   Screen 7: Final CTA
========================================================= */

.wt-finalcta {
    padding: clamp(3.25rem, 6vw, 5rem) 0;
    color: #fff;
    background: radial-gradient(900px 520px at 85% 40%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 60%), radial-gradient(900px 520px at 10% 80%, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 62%), linear-gradient(135deg, var(--brand-yellow) 0%, var(--cta-blue-hover) 45%, var(--brand-yellow) 100%);
    overflow: hidden;
}

.wt-finalcta__inner {
    max-width: 860px;
    margin: 0 auto;
}

.wt-finalcta__pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .35rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.20);
    font-weight: 800;
    font-size: .85rem;
}

.wt-finalcta__title {
    font-family: "Articulat CF", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-size: clamp(1.95rem, 3.1vw, 3rem);
    margin: 0;
}

.wt-finalcta__lead {
    color: rgba(255,255,255,.88);
    font-size: 1.06rem;
    line-height: 1.65;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.wt-finalcta__point {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: rgba(255,255,255,.92);
    font-weight: 800;
}

.wt-finalcta__btn {
    background: #fff;
    color: var(--cta-blue);
    border: 0;
    border-radius: 12px;
    padding: .95rem 1.5rem;
    font-weight: 900;
    min-width: min(420px, 100%);
    box-shadow: 0 22px 45px rgba(0,0,0,.18);
}

    .wt-finalcta__btn:hover,
    .wt-finalcta__btn:focus {
        background: rgba(255,255,255,.95);
        color: var(--cta-blue-hover);
    }

.wt-finalcta__foot {
    color: rgba(255,255,255,.70);
    font-size: .9rem;
}
