﻿/* CTA Section Layout */
.cta-section {
    background: linear-gradient(180deg, rgba(10,12,20,0.9), rgba(10,12,20,0.98));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    padding: var(--space-section) 0;
}

/* Центрируем и ограничиваем ширину */
.cta-container {
    display: flex;
    justify-content: center;
}

.cta-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

/* Заголовок */
.cta-title {
    background: linear-gradient(90deg, #ffffff, #c9d8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 25px rgba(79,140,255,0.15);

    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

/* Подзаголовок */
.cta-subtitle {
    font-size: 1.1rem;
    color: #a0b0d0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Кнопки */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

/* Микро-текст */
.cta-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

.cta-buttons .btn-primary {
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(79,140,255,0.35);
}

.cta-buttons .btn-outline-light {
    padding: 0.9rem 2.2rem;
    border-radius: 12px;
    border-color: rgba(255,255,255,0.25);
    color: #fff;
}

    .cta-buttons .btn-outline-light:hover {
        background: rgba(255,255,255,0.08);
    }
