/* ========================================
   CTA
   ======================================== */
.cta {
    padding: var(--spacing-32) 0 var(--spacing-48);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-12);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-rubik);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    color: var(--foreground);
}

.cta-glow {
    position: absolute;
    bottom: -307px;
    left: 50%;
    transform: translateX(-50%);
    width: 963px;
    height: 289px;
    pointer-events: none;
    z-index: 1;
}

/* Создаем два слоя свечения для CTA */
.cta-glow::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(2, 173, 161, 0.4) 0%, transparent 70%);
    filter: blur(100px);
}

.cta-glow::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -171px;
    transform: translateX(-50%);
    width: 100%;
    height: 148px;
    background: radial-gradient(ellipse at center, rgba(2, 173, 161, 0.2) 0%, transparent 70%);
    filter: blur(60px);
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 32px;
    }

    .cta .btn-cta {
        font-size: 18px;
        padding: var(--spacing-2) var(--spacing-6);
    }
}

