/* ==============================================================
   cta.css — финальный CTA-блок с контактами
   ============================================================== */

.cta-final {
    padding: 80px 0;
    background: var(--ink);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}
.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}
.cta-final::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(255, 92, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}
.cta-final-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-final .section-label {
    color: var(--accent);
    justify-content: center;
    display: flex;
}
.cta-final h2 {
    font-family: 'Inter Tight', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 16px;
}
.cta-final h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent);
}
.cta-final p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.btn-tg, .btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.btn-tg:hover, .btn-wa:hover {
    border-color: var(--accent);
    background: rgba(255, 92, 0, 0.1);
    transform: translateY(-1px);
}
.btn-tg svg, .btn-wa svg { width: 16px; height: 16px; }
.cta-final-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
}
.cta-final-meta span { display: flex; align-items: center; gap: 6px; }
.cta-final-meta span::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--success);
}
.cta-final-meta span:nth-child(2)::before { background: var(--accent); }
.cta-final-meta span:nth-child(3)::before { background: rgba(255,255,255,0.3); }

@media (max-width: 560px) {
    .contact-buttons { flex-direction: column; align-items: stretch; }
    .btn-tg, .btn-wa { justify-content: center; }
}
