/* Sticky mobile CTA — кнопка "Связаться" в bottom-left на мобильном.
   Видна только на ширине ≤768px и появляется после первого scroll.
   Не конфликтует с chat-bubble (он в bottom-right). */

.v2-sticky-cta {
    position: fixed;
    bottom: 16px;
    left: 16px;
    z-index: 90;
    display: none;        /* hidden by default; toggled below for mobile */
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: var(--v2-accent, #FF6B35);
    color: #0a0a0a;
    font-family: var(--v2-f-mono, 'JetBrains Mono', monospace);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 122, 26, 0.3);
    /* Slide-up animation when first becomes visible */
    transform: translateY(120%);
    opacity: 0;
    transition: transform 280ms cubic-bezier(.2,.8,.2,1), opacity 200ms ease;
    pointer-events: none;
}
.v2-sticky-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.v2-sticky-cta:hover { background: #ff8554; }
.v2-sticky-cta:active { transform: translateY(0) scale(0.97); }

.v2-sticky-cta__icon { font-size: 10px; line-height: 1; }

/* Show only on mobile / narrow viewports */
@media (max-width: 768px) {
    .v2-sticky-cta { display: inline-flex; }
}
