/* CTA Section Style */
.cta-section {
    padding: 100px 20px;
    background: #000000;
    background: radial-gradient(circle at center, #1a202c 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    box-sizing: border-box;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title-en {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-title-cn {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-title-en,
    .cta-title-cn {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 60px 20px;
    }
}
