/* ========================================
   CTA SECTION
======================================== */

.cta {
    padding: 8rem 4rem;
    background: var(--bg);
}

.cta-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--text);
    color: #FFFFFF;
    border: 2px solid var(--text);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}
