/*--------------------------------------------------------------
# Final CTA Section (Replaced Resources)
--------------------------------------------------------------*/

.final-cta-section {
    padding: 160px 20px;
    background: transparent;
    width: 100%;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    text-align: center;
}

/* Subtle background orb */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(118, 39, 216, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-heading {
    font-family: var(--font-primary);
    font-size: clamp(36px, 4.8vw, 60px);
    font-weight: 300;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.final-cta-body {
    font-family: var(--font-primary);
    font-size: 20px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 56px;
    max-width: 600px;
}

.final-cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-primary-cta {
    background: var(--grad-cta);
    color: var(--ink-dark);
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100px !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-cta:hover {
    background: var(--grad-cta);
    color: var(--ink-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 61, 138, 0.4);
}

.btn-secondary-cta {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: var(--ink);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 100px !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--pink);
    color: var(--pink) !important;
}

.btn-secondary-cta svg {
    transition: transform 0.3s ease;
    color: var(--pink);
}

.btn-secondary-cta:hover svg {
    transform: translateX(5px);
    color: var(--pink) !important;
}

.cta-separator {
    display: none;
}

@media (max-width: 600px) {
    .final-cta-section { padding: 80px 20px; }
    .final-cta-heading { font-size: clamp(28px, 7vw, 40px); }
    .final-cta-body { font-size: 16px; margin-bottom: 40px; }
    .final-cta-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    .btn-primary-cta, .btn-secondary-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .cta-separator {
        display: none;
    }
}
