/* CTA Section - Floating Elements */
.cta {
    background: 
        linear-gradient(135deg, var(--space-dark), var(--deep-space)),
        repeating-linear-gradient(0deg, 
            transparent, 
            transparent 2px, 
            rgba(168, 85, 247, 0.02) 2px, 
            rgba(168, 85, 247, 0.02) 4px
        );
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta::after {
    content: '0101 1010 0011 1100';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 20px,
        rgba(59, 130, 246, 0.01) 20px,
        rgba(59, 130, 246, 0.01) 40px
    );
    font-size: 8px;
    color: transparent;
    opacity: 0.3;
    pointer-events: none;
    background-size: 200px 200px;
    z-index: 0;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 10px var(--cyber-aqua-glow);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    animation: float 6s infinite ease-in-out;
    z-index: 0;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 50px;
    animation-delay: 1s;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 100px;
    animation-delay: 2s;
}

/* Animation for CTA shapes */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive adjustments for CTA section */
@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .cta-shape-1,
    .cta-shape-2,
    .cta-shape-3 {
        display: none;
    }
}

@media (max-width: 576px) {
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
}
