
/* ==========================================================================
   CALL TO ACTION (SURFACE SECTION STYLES)
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-box {
    background: var(--bg-light-gray);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.cta-content max-width {
    max-width: 650px;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 15px;
}

.cta-content h2 span {
    color: var(--primary);
}

.cta-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-actions {
    flex-shrink: 0;
}

