/**
 * Final CTA — standalone styles (no dependency on home-vivid.css).
 * Scoped to .final-cta to avoid affecting other sections.
 */

/* Beat landing.css: .landing-flow .landing-section { background: #fff } */
.landing-flow .final-cta.landing-section,
section#get-started.final-cta {
    background: linear-gradient(125deg, #061528 0%, var(--primary, #1e3a5f) 55%, var(--accent-dark, #1F8ED1) 100%);
    color: #fff;
    padding-block: var(--flow-space, clamp(3.25rem, 5.5vw, 4.75rem));
}

.final-cta__inner {
    text-align: center;
    max-width: 40rem;
    margin: 0 auto;
}

.final-cta__title {
    margin: 0 0 1rem;
    font-family: "Sora", system-ui, sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
}

.final-cta__sub {
    margin: 0 0 2rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.82);
}

.final-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.final-cta__note {
    margin: 1.25rem 0 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.58);
}

/* Make sure it is visible even if global scroll-reveal is absent */
.final-cta .fade-in {
    opacity: 1;
    transform: none;
}

/* Scoped buttons (mirrors vivid buttons, but only inside final-cta) */
.final-cta .btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.82rem 1.55rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 0.5rem;
    box-shadow: 0 4px 22px rgba(249, 115, 22, 0.42) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.final-cta .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(249, 115, 22, 0.48) !important;
}

.final-cta .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.82rem 1.45rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 0.5rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.final-cta .btn-hero-secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-1px);
}

.final-cta .btn-hero-secondary--on-dark {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
}

.final-cta .btn-hero-secondary--on-dark:hover {
    background: rgba(255, 255, 255, 0.08);
}

