/* --- Final CTA Section --- */
.final-cta-section {
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05), transparent 70%);
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    padding: 18px 48px;
    background: var(--brand-gradient, linear-gradient(135deg, #a855f7, #7c3aed));
    color: #ffffff !important;
    /* Force white text for maximum visibility */
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    border-radius: var(--radius-full, 50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px -5px rgba(124, 58, 237, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-final-cta:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -10px rgba(124, 58, 237, 0.6);
    color: #ffffff !important;
}

.btn-final-cta.glow-purple-lg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-final-cta:hover::after {
    opacity: 1;
}

/* Light Mode Visibility Optimization */
[data-theme="light"] .btn-final-cta {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    box-shadow: 0 10px 30px -5px rgba(109, 40, 217, 0.3);
}

[data-theme="light"] .btn-final-cta:hover {
    box-shadow: 0 20px 40px -10px rgba(109, 40, 217, 0.4);
}

