/*
 * Final CTA section styles (Phase W2.5).
 * Mobile-first. Brand tokens only -- no raw hex.
 *
 * This section is also the #pricing anchor target. The pricing line lives
 * inside the trust strip below the button; the whole section serves as the
 * jump target since pricing is a sub-element of the final CTA.
 */

.final-cta {
    background-color: var(--color-section-dark);
    color: var(--color-white);
    padding: 80px 24px;
    /* Anchor scroll lands clear of the nav. */
    scroll-margin-top: 80px;
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Section headline */
.final-cta-headline {
    margin: 0 0 24px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
    font-weight: 600;
    color: var(--color-white);
}

/* Sub-copy */
.final-cta-subcopy {
    margin: 0 auto 32px;
    max-width: 640px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: var(--color-white);
    opacity: 0.85;
}

/* CTA button wrapper */
.final-cta-action {
    margin: 0 0 32px;
}

/* CTA button */
.final-cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 1.0625rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
}

.final-cta-button:hover {
    filter: brightness(1.1);
}

.final-cta-button:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

/* Trust strip */
.final-cta-trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--color-white);
    opacity: 0.7;
}

.final-cta-trust li {
    display: inline-flex;
    align-items: center;
}

.final-cta-trust li + li::before {
    content: "\00B7";
    margin-right: 16px;
}

/* ---------- Desktop (>= 768px) ---------- */

@media (min-width: 768px) {
    .final-cta {
        padding: 112px 24px;
    }
}
