/* =========================================================
   AVORCMS V2 — FINAL CTA
   Enterprise Conversion Band
   ========================================================= */

.v2-final-cta {
    --cta-purple: var(--v2-heading, #391D77);
    --cta-brand: var(--v2-logo, #5C1BB3);
    --cta-coral: var(--v2-highlight, #ff5757);
    --cta-white: var(--v2-white, #ffffff);
    --cta-ink: var(--v2-ink, #211b33);

    padding-top: 45px;
    padding-bottom: 45px;

    position: relative;
    overflow: hidden;
    isolation: isolate;

    background:
        radial-gradient(
            circle at 50% 35%,
            rgba(98, 34, 213, 0.72) 0,
            rgba(57, 29, 119, 0.0) 48%
        ),
        linear-gradient(
            135deg,
            #391D77 0%,
            #4B168C 48%,
            #5C1BB3 100%
        );

    color: var(--cta-white);
}

.v2-final-cta::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 58px 58px;

    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );

    pointer-events: none;
}

.v2-final-cta::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(57, 29, 119, 0.45),
            transparent 25%,
            transparent 75%,
            rgba(57, 29, 119, 0.45)
        );

    pointer-events: none;
}

/* ---------------------------------------------------------
   INNER
   --------------------------------------------------------- */

.v2-final-cta__inner {
    position: relative;
    z-index: 2;

    width: min(1320px, calc(100% - 48px));
    min-height: 500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr minmax(600px, 900px) 1fr;
    align-items: center;
}

.v2-final-cta__content {
    position: relative;
    z-index: 5;

    text-align: center;
}

/* ---------------------------------------------------------
   EYEBROW
   --------------------------------------------------------- */

.v2-final-cta__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--v2-font, 'Manrope', sans-serif);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.v2-final-cta__eyebrow-mark {
    width: 22px;
    height: 1px;

    background: var(--cta-coral);
}

/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

.v2-final-cta__title {
    max-width: 850px;
    margin: 0 auto;

    color: #fff;

    font-family: var(--v2-font, 'Manrope', sans-serif);
    font-size: clamp(42px, 4.5vw, 66px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.052em;
}

.v2-final-cta__title span {
    display: block;
    color: #fff;
}

.v2-final-cta__description {
    max-width: 650px;
    margin: 25px auto 0;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--v2-font, 'Manrope', sans-serif);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

/* ---------------------------------------------------------
   ACTIONS
   --------------------------------------------------------- */

.v2-final-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    margin-top: 34px;
}

.v2-final-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 54px;
    padding: 0 22px;

    border-radius: 11px;

    font-family: var(--v2-font, 'Manrope', sans-serif);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;

    transition:
        transform 240ms ease,
        background-color 240ms ease,
        border-color 240ms ease,
        box-shadow 240ms ease;
}

.v2-final-cta__button--primary {
    color: #fff;
    background: var(--cta-coral);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.v2-final-cta__button--primary:hover {
    background: #ff6868;
    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(0, 0, 0, 0.24),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.v2-final-cta__button--secondary {
    color: #fff;
    background: rgba(255, 255, 255, 0.055);

    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(8px);
}

.v2-final-cta__button--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.42);
    transform: translateY(-3px);
}

.v2-final-cta__button-icon,
.v2-final-cta__phone-icon {
    display: grid;
    place-items: center;

    width: 25px;
    height: 25px;

    border-radius: 7px;
}

.v2-final-cta__button-icon {
    background: rgba(255, 255, 255, 0.15);
}

.v2-final-cta__button-icon svg {
    width: 15px;
    height: 15px;

    transition: transform 220ms ease;
}

.v2-final-cta__button--primary:hover .v2-final-cta__button-icon svg {
    transform: translateX(3px);
}

.v2-final-cta__phone-icon {
    background: rgba(255, 255, 255, 0.09);
}

.v2-final-cta__phone-icon svg {
    width: 16px;
    height: 16px;
}

/* ---------------------------------------------------------
   TRUST STRIP
   --------------------------------------------------------- */

.v2-final-cta__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;

    margin-top: 29px;

    color: rgba(255, 255, 255, 0.47);

    font-family: var(--v2-font, 'Manrope', sans-serif);
    font-size: 10px;
    font-weight: 700;
}

.v2-final-cta__trust-line {
    width: 30px;
    height: 1px;

    background: rgba(255, 255, 255, 0.18);
}

.v2-final-cta__trust-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;
    background: var(--cta-coral);
}

/* ---------------------------------------------------------
   DECORATIVE SYSTEM
   --------------------------------------------------------- */

.v2-final-cta__visual {
    position: relative;

    height: 100%;

    pointer-events: none;
}

.v2-final-cta__ring {
    position: absolute;

    display: block;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.v2-final-cta__visual--left {
    min-width: 260px;
}

.v2-final-cta__ring--one {
    width: 240px;
    height: 240px;

    left: -125px;
    top: 50%;

    transform: translateY(-50%);
}

.v2-final-cta__ring--two {
    width: 340px;
    height: 340px;

    left: -175px;
    top: 50%;

    transform: translateY(-50%);

    border-color: rgba(255, 255, 255, 0.06);
}

.v2-final-cta__ring--three {
    width: 440px;
    height: 440px;

    left: -225px;
    top: 50%;

    transform: translateY(-50%);

    border-color: rgba(255, 255, 255, 0.035);
}

.v2-final-cta__visual--right {
    min-width: 260px;
}

.v2-final-cta__ring--four {
    width: 260px;
    height: 260px;

    right: -135px;
    top: 50%;

    transform: translateY(-50%);
}

.v2-final-cta__ring--five {
    width: 390px;
    height: 390px;

    right: -200px;
    top: 50%;

    transform: translateY(-50%);

    border-color: rgba(255, 255, 255, 0.045);
}

.v2-final-cta__signal {
    position: absolute;

    right: 55px;
    top: 50%;

    display: flex;
    align-items: flex-end;
    gap: 5px;

    width: 45px;
    height: 45px;

    transform: translateY(-50%);
}

.v2-final-cta__signal span {
    display: block;

    width: 5px;

    border-radius: 999px 999px 2px 2px;
    background: var(--cta-coral);
}

.v2-final-cta__signal span:nth-child(1) {
    height: 17px;
    opacity: 0.45;
}

.v2-final-cta__signal span:nth-child(2) {
    height: 29px;
    opacity: 0.7;
}

.v2-final-cta__signal span:nth-child(3) {
    height: 42px;
}

/* ---------------------------------------------------------
   FOCUS
   --------------------------------------------------------- */

.v2-final-cta__button:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.55);
    outline-offset: 4px;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {
    .v2-final-cta__inner {
        width: min(900px, calc(100% - 40px));
        min-height: 470px;
        grid-template-columns: 1fr;
    }

    .v2-final-cta__visual {
        display: none;
    }

    .v2-final-cta__title {
        max-width: 760px;
        font-size: clamp(42px, 6vw, 60px);
    }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {
    .v2-final-cta__inner {
        width: calc(100% - 32px);
        min-height: auto;
        padding: 72px 0 70px;
    }

    .v2-final-cta__eyebrow {
        gap: 9px;
        margin-bottom: 19px;
        font-size: 9px;
    }

    .v2-final-cta__eyebrow-mark {
        width: 16px;
    }

    .v2-final-cta__title {
        font-size: clamp(34px, 9.8vw, 45px);
        line-height: 1.07;
        letter-spacing: -0.045em;
    }

    .v2-final-cta__description {
        margin-top: 20px;
        font-size: 14px;
        line-height: 1.7;
    }

    .v2-final-cta__actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 28px;
    }

    .v2-final-cta__button {
        width: min(100%, 390px);
        min-height: 52px;
    }

    .v2-final-cta__trust {
        flex-wrap: wrap;
        gap: 7px 10px;
        max-width: 350px;
        margin: 25px auto 0;
        line-height: 1.5;
    }

    .v2-final-cta__trust-line {
        display: none;
    }
}

@media (max-width: 375px) {
    .v2-final-cta__inner {
        width: calc(100% - 26px);
        padding: 62px 0 60px;
    }

    .v2-final-cta__title {
        font-size: 33px;
    }

    .v2-final-cta__description {
        font-size: 13px;
    }
}

/* ---------------------------------------------------------
   REDUCED MOTION
   --------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .v2-final-cta *,
    .v2-final-cta *::before,
    .v2-final-cta *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}