/* ═══════════════════════════════════════════════════════════
   CTA Section — Final conversion push
   ═══════════════════════════════════════════════════════════ */

.cta-section {
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-deep, #0a0a0f);
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, transparent 50%)
}

/* Ambient glow behind content */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(
        ellipse,
        rgba(74, 158, 255, 0.07) 0%,
        rgba(168, 85, 247, 0.04) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.cta-container {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
}

/* ── Node cluster visual ── */
.cta-visual {
    margin-bottom: 2rem;
    opacity: 0.85;
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta-visual svg {
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.15));
}

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ── Copy ── */
.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary, #f0f2f5);
}

.cta-section p {
    color: var(--text-secondary, #8a8f9d);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ── Buttons ── */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.cta-btn-primary {
    background: #4a9eff;
    color: #fff;
    box-shadow: 0 4px 24px rgba(74, 158, 255, 0.3);
}

.cta-btn-primary:hover {
    background: #6ab0ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(74, 158, 255, 0.4);
}

.cta-btn-secondary {
    background: var(--bg-elevated, #1a1a24);
    color: var(--text-primary, #f0f2f5);
    border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
}

.cta-btn-secondary:hover {
    background: var(--bg-surface, #12121a);
    border-color: rgba(74, 158, 255, 0.3);
    color: #4a9eff;
    transform: translateY(-2px);
}

/* ── Reassurance ── */
.cta-reassurance {
    font-size: 0.8rem;
    color: var(--text-muted, #5a5f6d);
    letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 1000px) {
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}