/* ═══════════════════════════════════════════════════════
   OXICON CALL CENTER — styles.css
   Font: Fustat (Google Fonts) + JetBrains Mono
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #060b0e;
  --bg-raised: #0a1118;
  --bg-card: #0d1820;
  --bg-card-hover: #111f2a;
  --bg-card-border: rgba(0, 230, 170, 0.08);
  --accent: #00e6aa;
  --accent-dim: #00c896;
  --accent-glow: rgba(0, 230, 170, 0.12);
  --accent-glow-strong: rgba(0, 230, 170, 0.25);
  --text: #e8ece9;
  --text-secondary: #8a9a93;
  --text-muted: #4d5f56;
  --border: rgba(255, 255, 255, 0.06);
  --border-light: rgba(255, 255, 255, 0.1);
  --font-body: 'Fustat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(6, 11, 14, 0.75);
  backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-icon {
  width: 32px; height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-icon svg { width: 18px; height: 18px; }

.nav-brand-text {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav-links a:hover { color: var(--text); }

.nav-signin {
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  padding: 0.45rem 1.2rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-signin:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.25rem;
}

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.btn-primary:hover {
  box-shadow: 0 0 40px var(--accent-glow-strong);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 230, 170, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 230, 170, 0.015) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-glow-orb {
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0, 230, 170, 0.06) 0%, transparent 65%);
  top: 5%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Globe */
.hero-globe-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

#globeCanvas { width: 100%; height: 420px; display: block; }

/* ═══════════════════════════════════════
   CHAT WIDGETS (floating on hero)
   ═══════════════════════════════════════ */
.chat-widget {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  padding: 1rem;
  min-width: 220px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.chat-widget-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.chat-widget-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.chat-widget-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text);
}

.chat-widget-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-left: auto;
}

.chat-bubble {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.72rem;
  line-height: 1.5;
  margin-bottom: 0.4rem;
  max-width: 200px;
}

.chat-bubble.agent {
  background: rgba(0, 230, 170, 0.1);
  border: 1px solid rgba(0, 230, 170, 0.15);
  color: var(--text);
}

.chat-bubble.client {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  margin-left: auto;
}

.chat-bubble-tag {
  font-size: 0.58rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.tag-badge {
  font-size: 0.58rem;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

.cw-left  { top: 15%; left: -2%; }
.cw-right { top: 8%; right: -3%; }
.cw-bottom { bottom: 5%; right: 5%; }

/* ═══════════════════════════════════════
   LOGOS BAR
   ═══════════════════════════════════════ */
.logos-bar {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logos-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0.6;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */
.section { padding: 6rem 2rem; }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   FEATURES (3-col cards)
   ═══════════════════════════════════════ */
.features-top-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 1.25rem;
}

.feature-card-visual {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 1.5rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.feature-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0, 230, 170, 0.04), transparent 60%);
}

.mini-chat { width: 100%; position: relative; z-index: 1; }

.mini-chat-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.mini-chat-icon {
  width: 24px; height: 24px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 230, 170, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--accent);
}

.mini-chat-name { font-size: 0.72rem; font-weight: 600; }

.mini-msg {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  align-items: flex-start;
}

.mini-msg-avatar {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 230, 170, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.mini-msg-avatar.client-av {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border);
  color: var(--text-muted);
}

.mini-msg-text {
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 0.6rem;
}

.mini-msg-text.agent-msg {
  background: rgba(0, 230, 170, 0.06);
  border-color: rgba(0, 230, 170, 0.12);
}

.mini-msg-tag { font-size: 0.55rem; color: var(--accent); font-weight: 600; }

.features-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-text-card { padding: 0.5rem 0; }
.feature-text-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-text-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════
   BATTLE-TESTED
   ═══════════════════════════════════════ */
.battle-section {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.battle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.battle-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  transition: all 0.3s;
}

.battle-card:hover {
  border-color: rgba(0, 230, 170, 0.2);
  transform: translateY(-3px);
}

.battle-icon {
  width: 44px; height: 44px;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 230, 170, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.battle-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.35; }
.battle-card p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.6; }
.battle-cta { display: flex; gap: 1rem; justify-content: center; }

/* ═══════════════════════════════════════
   STEPS (alternating layout)
   ═══════════════════════════════════════ */
.steps-section { padding: 6rem 2rem; }

.step-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto 5rem;
}

.step-item:nth-child(even) .step-content { order: 2; }
.step-item:nth-child(even) .step-visual { order: 1; }

.step-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.step-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

.step-visual {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 16px;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.step-visual::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

/* Dashboard mock */
.dash-mock { width: 100%; }
.dash-row { display: flex; justify-content: space-between; margin-bottom: 1rem; }
.dash-stat { flex: 1; padding: 0.75rem; background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); border-radius: 8px; margin-right: 0.5rem; }
.dash-stat:last-child { margin-right: 0; }
.dash-stat-label { font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.dash-stat-value { font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.dash-stat-value.muted { color: var(--text-muted); }
.dash-bar-group { margin-top: 0.5rem; }
.dash-bar-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.dash-bar-label { font-size: 0.6rem; color: var(--text-muted); width: 60px; flex-shrink: 0; }
.dash-bar-track { flex: 1; height: 6px; background: rgba(255, 255, 255, 0.04); border-radius: 3px; overflow: hidden; }
.dash-bar-fill { height: 100%; background: linear-gradient(90deg, var(--accent-dim), var(--accent)); border-radius: 3px; }
.dash-bar-val { font-family: var(--font-mono); font-size: 0.6rem; color: var(--text-secondary); width: 35px; text-align: right; }

/* Agent list */
.agent-list-mock { width: 100%; }
.agent-list-title { font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; font-weight: 600; }
.agent-row { display: flex; align-items: center; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.agent-row:last-child { border-bottom: none; }
.agent-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, rgba(0, 230, 170, 0.2), rgba(0, 230, 170, 0.05)); border: 1px solid rgba(0, 230, 170, 0.15); margin-right: 0.75rem; display: flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 700; color: var(--accent); }
.agent-info { flex: 1; }
.agent-name { font-size: 0.75rem; font-weight: 600; }
.agent-status-text { font-size: 0.6rem; color: var(--text-muted); }
.agent-metric { font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent); font-weight: 600; }
.agent-status-dot { width: 8px; height: 8px; border-radius: 50%; margin-left: 0.75rem; }
.dot-online { background: var(--accent); box-shadow: 0 0 6px var(--accent-glow-strong); }
.dot-call { background: #f59e0b; box-shadow: 0 0 6px rgba(245, 158, 11, 0.3); }
.dot-pause { background: var(--text-muted); }

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  border-top: 1px solid var(--border);
}

.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 2rem; line-height: 1.2; }

.cta-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--accent-glow);
  border: 1px solid rgba(0, 230, 170, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-top: 1.5rem;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-section {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
}

.faq-list { max-width: 750px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--bg-card-border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: rgba(0, 230, 170, 0.2); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: transform 0.3s, color 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-section {
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.contact-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 1.5rem; }

.contact-form-row { display: flex; gap: 0.75rem; max-width: 500px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }

.contact-input {
  flex: 1;
  min-width: 220px;
  padding: 0.8rem 1.2rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-input::placeholder { color: var(--text-muted); }
.contact-input:focus { border-color: var(--accent); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand-col .nav-brand { margin-bottom: 1rem; }

.footer-brand-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 0.75rem; }

.footer-social {
  width: 32px; height: 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.footer-social:hover { border-color: var(--accent); color: var(--accent); }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-secondary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 0.75rem; color: var(--text-muted); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.75rem; color: var(--text-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--text-secondary); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(6, 11, 14, 0.95);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-mobile-btn { display: block; }
  .features-top-row, .features-bottom-row { grid-template-columns: 1fr; }
  .battle-grid { grid-template-columns: repeat(2, 1fr); }
  .step-item { grid-template-columns: 1fr; gap: 2rem; }
  .step-item:nth-child(even) .step-content { order: 1; }
  .step-item:nth-child(even) .step-visual { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chat-widget { display: none; }
  .logos-inner { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 600px) {
  .battle-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { padding: 0 1rem; }
  .section { padding: 4rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 3rem; }
}
