/* CTA Section Component Styles */

/* Base CTA Section */
.cta-section {
    padding: 100px 40px;
    text-align: center;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

/* Soft glow effects */
.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.cta-section::before {
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, #00d4ff 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
}

.cta-section::after {
    width: 450px;
    height: 350px;
    background: radial-gradient(ellipse, #00ff88 0%, transparent 70%);
    top: -120px;
    right: -80px;
}

.cta-section .container {
    max-width: 1016px;
    background: linear-gradient(180deg, var(--glass-white-05) 0%, rgba(255, 255, 255, 0) 100%);
    box-shadow:
        0px 2px 0px 0px #ffffff33 inset,
        0px 2px 8px 0px #00d6ff26,
        0px 0px 4px 0px #00d6ff3d;
    border-radius: 20px;
    padding: 60px;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 24px;
    color: var(--text-secondary);
}

.cta-section .cta-buttons a {
    padding: 14px 32px;
}

/* CTA Content Wrapper */
.cta-section .cta-content-wrapper {
    max-width: 772px;
    background: linear-gradient(90deg, var(--glass-white-08) 0%, var(--glass-gray-01) 100%);
    padding: 40px 24px;
    margin: 0 auto 32px;
    border-radius: 8px;
}

.cta-section .cta-content {
    max-width: 320px;
    margin: 0px auto;
    border-radius: 8px;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 2%;
    color: var(--text-secondary);
    text-align: left;
}

.cta-section .cta-content strong {
    color: var(--el-cyan);
    font-size: 18px;
    line-height: 20px;
}

.cta-section .content-text {
    margin-bottom: 16px;
    display: inline-flex;
}

.cta-section .content-text:first-of-type {
    margin-top: 24px;
}

.cta-section .content-text img {
    margin-right: 16px;
}

.cta-section .cta-tagline {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    opacity: 0.85;
}

/* Responsive Styles */
/* Note: padding responsive styles are in main.css (.section, .cta-section) */

@media (max-width: 1024px) {
    .cta-section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    .cta-section .container {
        padding: 30px 20px;
    }
}
