/* ===================================
   CTA Section
   =================================== */

.cta-section {
    position: relative;
    padding: var(--space-4xl) var(--container-padding);
    background: var(--color-bg-secondary);
    overflow: hidden;
    border-top: 1px solid var(--color-border);
}



.cta-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Background Particles */
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 0px;
    opacity: 0.3;
    animation: float-particle 10s ease-in-out infinite;
}

.cta-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.cta-particle:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}