/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(45deg, #0A1628 0%, #1E3A5F 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 10% 10%, rgba(244, 166, 35, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 90% 90%, rgba(244, 166, 35, 0.1) 0%, transparent 50%);
    z-index: 0;
}


.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-h);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-note {
    font-size: 0.65rem;
    color: var(--text-sub);
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
    .cta-content p {
        font-size: 1.1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-cta, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }
}