/* ============================================================
   CTA FINAL — Dark, high-contrast call to action
   ============================================================ */

.cta-final-section {
    position: relative;
    width: 100%;
    background: var(--ink);
    padding: 6rem 0;
    overflow: hidden;
}

/* Radial accent glow center */
.cta-final-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle,
        rgba(79, 70, 229, 0.18) 0%,
        rgba(255, 204, 0, 0.06) 40%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Grid pattern */
.cta-final-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ── Container ─────────────────────────────────────────── */
.cta-final-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 2.5rem;
    position: relative;
    z-index: 1;
}

/* ── Content ─────────────────────────────────────────── */
.cta-final-content {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

/* ── Heading ─────────────────────────────────────────── */
.cta-final-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.cta-final-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-final-title-highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #FFA500 60%, var(--gold) 100%);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-cta 4s linear infinite;
}

@keyframes shimmer-cta {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ── Buttons ─────────────────────────────────────────── */
.cta-final-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--t);
}

/* Primary — Gold */
.cta-final-btn-primary {
    background: var(--gold);
    color: #000;
    box-shadow: 0 4px 28px rgba(255, 204, 0, 0.40);
}

.cta-final-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(255, 204, 0, 0.50);
}

/* Secondary — ghost white */
.cta-final-btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.80);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
}

.cta-final-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
}

.cta-final-btn i { font-size: 1.1rem; }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 640px) {
    .cta-final-section { padding: 5rem 0; }
    .cta-final-container { padding: 0 1.25rem; }

    .cta-final-buttons { flex-direction: column; width: 100%; }
    .cta-final-btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .cta-final-title-highlight { animation: none; }
    .cta-final-btn { transition: none; }
}
