/* modules/cta/cta.css */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    /* Фон с прозрачностью как в "Топ недели" */
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(0, 245, 212, 0.1);
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
}

.cta__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 3;
    /* Над градиентным фоном */
}

.cta__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta__title {
    font-size: 2.8rem;
    color: #e2e8f0;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00f5d4, #00bbf9);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta__subtitle {
    font-size: 1.4rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.cta__price {
    color: #00f5d4;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* УДАЛЕНЫ КАСТОМНЫЕ СТИЛИ КНОПОК - ИСПОЛЬЗУЮТСЯ ГЛОБАЛЬНЫЕ */
/* Оставлены только специфичные для баннера отступы */
.cta__buttons .btn {
    padding: 16px 40px;
    font-size: 1.2rem;
}

.cta__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.cta__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: 1.1rem;
}

.cta__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(45deg,
            rgba(0, 245, 212, 0.1),
            rgba(0, 187, 249, 0.1),
            rgba(157, 78, 221, 0.1));
    background-size: 300% 300%;
    animation: gradient-shift 15s ease infinite;
    opacity: 0.5;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }

    .cta__title {
        font-size: 2.2rem;
    }

    .cta__subtitle {
        font-size: 1.1rem;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}