@charset "UTF-8";

/* ==========================================================================
   Call To Action (CTA) Section
   ========================================================================== */
.main-cta {
    padding: 120px 0;
    background-color: var(--deep-blue);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0,102,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
}

.cta-desc {
    font-size: 20px;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 60px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--electric-blue);
    color: #fff;
    padding: 22px 50px;
    border-radius: 100px;
    font-family: var(--font-en);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
    overflow: hidden;
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.btn-cta:hover {
    transform: translateY(-8px);
    background: #0052cc;
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.4);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.btn-cta:hover .btn-arrow {
    transform: translateX(6px) rotate(-45deg);
    background: #fff;
    color: var(--electric-blue);
}

@media (max-width: 991px) {
    .main-cta { padding: 100px 0; }
    .cta-title { font-size: 42px; margin-bottom: 25px; }
    .cta-desc { font-size: 17px; margin-bottom: 50px; padding: 0 20px; }
    
    .cta-btns {
        flex-direction: column;
        align-items: stretch;
        padding: 0 30px;
        gap: 15px;
    }

    .btn-cta { 
        padding: 20px 30px; 
        font-size: 17px; 
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-title { font-size: 34px; }
    .cta-btns { padding: 0 20px; }
}
