@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --red: #dc2626;
  --red-dark: #991b1b;
  --yellow: #fbbf24;
  --yellow-dark: #d97706;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: #fff;
  overflow-x: hidden;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  animation: marquee 40s linear infinite;
}

.modal-open { overflow: hidden; }
.modal-backdrop {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-panel {
  transform: scale(0.95) translateY(10px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}
.modal-backdrop.active .modal-panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.promo-slide { opacity: 0; transform: scale(0.95); pointer-events: none; transition: all 0.7s; }
.promo-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; }

.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-content { max-height: 200px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: #fbbf24; color: #450a0a; }

.toast {
  position: fixed; top: 1rem; right: 1rem; z-index: 200;
  padding: 0.75rem 1.25rem; border-radius: 0.75rem;
  font-weight: 600; font-size: 0.875rem;
  transform: translateX(120%); transition: transform 0.3s;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.toast.show { transform: translateX(0); }
.toast-success { background: #059669; color: #fff; }
.toast-error { background: #dc2626; color: #fff; }

.mobile-bar, .live-chat-btn { opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-bar.visible, .live-chat-btn.visible { opacity: 1; pointer-events: auto; }

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.article-content h1 {
  font-size: 1.625rem;
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .article-content h1 { font-size: 2rem; }
}
.article-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 1024px) {
  .article-content h2 { font-size: 1.5rem; }
}
.article-content h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fcd34d;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .article-content h3 { font-size: 1.1875rem; }
}
.article-content p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-bottom: 1.125rem;
}
@media (min-width: 1024px) {
  .article-content p {
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 1.25rem;
  }
}
