/* CTA Glassmorphism */
.cta-glass {
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-container-glass {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 4rem;
    text-align: center;
    position: relative;
}

.cta-icon-glass {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00d4ff, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.cta-title-glass {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.cta-desc-glass {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: white;
}

.cta-buttons-glass {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-features-glass {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature-glass {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    opacity: 0.9;
}

.cta-feature-glass i {
    color: #00d4ff;
    font-size: 1.2rem;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .cta-glass {
        padding: 3rem 1rem;
    }
    
    .cta-container-glass {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-buttons-glass {
        flex-direction: column;
    }
    
    .cta-features-glass {
        flex-direction: column;
        align-items: center;
    }
}
