/* ===============================
   CTA — style alignment override
   =============================== */

/* Убираем ощущение отдельного экрана */
.cta-section {
    padding: 64px 0 72px;
    background: transparent;
}

/* Визуально связываем с предыдущим блоком */
.cta-section .container {
    max-width: 960px;
}

/* Добавляем «документный» разделитель сверху */
.cta-section::before {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 0 auto 48px;
}

/* Заголовок — меньше пафоса, больше системности */
.cta-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin-bottom: 0.75rem;
}

/* Подзаголовок — как explanatory text */
.cta-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
    max-width: 720px;
    margin: 0 auto 2rem;
}

/* Кнопки — не кричат, а предлагают */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Общий вид кнопок — компактнее и спокойнее */
.btn {
    padding: 0.55rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

/* Primary — менее «маркетинговый» */
.btn-primary {
    background: var(--accent);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--accent);
    opacity: 0.7;
}

/* Secondary — аккуратный, не спорит с primary */
.btn-outline-light {
    border-color: rgba(255,255,255,0.35);
    color: #ffffff;
}

.cta-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.55);
}
