/* ═══════════════════════════════════════════════════════════════════
   ASBEK — Pages CSS (additional page-specific styles)
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Page transition ───────────────────────────────────────────── */
main { animation: fadeInUp 0.35s ease both; }
@keyframes fadeInUp {
    from { opacity:0; transform:translateY(14px); }
    to   { opacity:1; transform:translateY(0); }
}

/* ─── Selection color ───────────────────────────────────────────── */
::selection { background: rgba(255,106,0,0.25); color: var(--text-dark); }

/* ─── Scroll custom ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ─── Toast Notification ────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: var(--bg-dark);
    color: #fff;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--shadow-dark);
    border-left: 4px solid var(--accent);
    z-index: 9999;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
    max-width: 340px;
}
.toast.active { transform: translateX(0); }
.toast.toast--error { border-left-color: #ef4444; }

/* ─── Sticky CTA button (mobile) ────────────────────────────────── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 20px;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    z-index: 900;
    gap: 10px;
}
@media (max-width: 768px) {
    .sticky-cta { display: flex; }
}

/* ─── Print ─────────────────────────────────────────────────────── */
@media print {
    .site-header, .topbar, .mobile-menu, .mobile-overlay,
    .cta-section, .site-footer, .sticky-cta { display: none !important; }
}
