/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #f8f8fc;
  color: #1a1a2e;
}

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --neon-orange: #FF6B35;
  --neon-blue: #00D4FF;
  --dark-bg: #0D0D1A;
  --dark-surface: #16162A;
  --dark-border: #2A2A4A;
}

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0D1A; }
::-webkit-scrollbar-thumb { background: #FF6B35; border-radius: 3px; }

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ── Gradient Text ───────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #FF6B35 0%, #FFD700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(255,107,53,0.4); }
  50% { box-shadow: 0 0 28px rgba(255,107,53,0.9), 0 0 50px rgba(255,107,53,0.4); }
}
@keyframes flicker {
  0%, 94%, 96%, 98%, 100% { opacity: 1; }
  95%, 97%, 99% { opacity: 0.85; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: #0D0D1A;
  border-bottom: 1px solid #2A2A4A;
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #FF6B35, #FF8C42);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(255,107,53,0.4);
}
.logo-text { font-weight: 900; font-size: 1.2rem; }
.logo-text span:first-child { color: #fff; }
.logo-text span:last-child {
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: #FF6B35;
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  animation: pulse-glow 2.5s ease-in-out infinite;
  transition: background 0.2s;
}
.nav-cta:hover { background: #e55a25 !important; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: #0D0D1A;
  padding: 80px 1rem;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    linear-gradient(#FF6B35 1px, transparent 1px),
    linear-gradient(90deg, #FF6B35 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-orb-1 {
  position: absolute;
  top: 50%; left: 20%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: #FF6B35;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}
.hero-orb-2 {
  position: absolute;
  top: 50%; right: 20%;
  transform: translate(50%, -50%);
  width: 400px; height: 400px;
  background: #00D4FF;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.08;
  pointer-events: none;
}
.hero-content { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  color: #FF6B35;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #FF6B35;
  border-radius: 50%;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.hero-h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-h1 .line2 {
  display: block;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: flicker 8s ease-in-out infinite;
}
.hero-sub {
  font-size: 1.1rem;
  color: #9ca3af;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-sub em { color: #fff; font-style: normal; font-weight: 600; }

/* ── Stats Row ───────────────────────────────────────────── */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── Language Marquee ────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid #2A2A4A;
  border-bottom: 1px solid #2A2A4A;
  padding: 12px 0;
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 24px;
  font-size: 0.875rem;
  color: #6b7280;
}
.marquee-dot { width: 6px; height: 6px; background: #FF6B35; border-radius: 50%; }

/* ── Ad unit ─────────────────────────────────────────────── */
.ad-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 1rem;
  text-align: center;
}
.ad-label {
  font-size: 0.625rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ad-slot {
  min-height: 60px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,107,53,0.15);
  border-radius: 8px;
  overflow: hidden;
}

/* ── Translator Section ──────────────────────────────────── */
#translator { max-width: 1200px; margin: 0 auto; padding: 32px 1rem; }
.translator-header { text-align: center; margin-bottom: 32px; }
.translator-header h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #0D0D1A;
  margin-bottom: 8px;
}
.translator-header p { color: #6b7280; }
.translator-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .translator-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { padding: 48px 1rem; }
}

/* ── Form Panel ──────────────────────────────────────────── */
.form-panel {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  overflow: visible;
}
.form-panel-header {
  background: #0D0D1A;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 16px 16px 0 0;
}
.window-dots { display: flex; gap: 6px; }
.window-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }
.window-title {
  font-size: 0.75rem;
  color: #6b7280;
  font-family: monospace;
  margin-left: 8px;
}
.form-body { padding: 20px; }

/* ── Form Fields ─────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
textarea, select, input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 1rem;  /* 16px — prevents iOS Safari auto-zoom on focus */
  font-family: inherit;
  color: #111827;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  min-height: 44px;
  box-sizing: border-box;
}
textarea:focus, select:focus, input:focus {
  border-color: #FF6B35;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.15);
  background: #fff;
}
textarea { resize: vertical; min-height: 90px; }
select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
/* ── Language From/To Selector ───────────────────────────── */
.lang-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.lang-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.lang-sub-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.lang-col select {
  width: 100%;
  min-height: 44px;
}
.swap-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.35);
  border-radius: 8px;
  color: #FF6B35;
  font-size: 1.15rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.swap-btn:hover { background: rgba(255,107,53,0.25); }
.swap-btn:active { background: rgba(255,107,53,0.35); transform: rotate(180deg); }
/* Mobile: stack From/To vertically for full-width touch targets */
@media (max-width: 560px) {
  .lang-row {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .swap-btn {
    width: 100%;
    height: 36px;
    font-size: 1rem;
    border-radius: 6px;
    margin: 2px 0;
  }
}

.btn-translate {
  width: 100%;
  background: linear-gradient(135deg, #FF6B35, #FF8C35);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.btn-translate:hover { transform: translateY(-1px); }
.btn-translate:active { transform: translateY(0); }
.btn-translate:disabled { opacity: 0.6; cursor: not-allowed; animation: none; transform: none; }

/* ── Results Panel ───────────────────────────────────────── */
.results-panel { position: relative; }
.results-empty {
  min-height: 400px;
  background: #fff;
  border-radius: 16px;
  border: 2px dashed #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}
.results-empty-icon { font-size: 4rem; margin-bottom: 16px; }
.results-empty h3 { font-size: 1.1rem; font-weight: 700; color: #374151; margin-bottom: 8px; }
.results-empty p { color: #9ca3af; max-width: 300px; font-size: 0.9rem; }
.example-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.example-chip {
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 9999px;
  font-weight: 500;
}
.results-loading {
  min-height: 400px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.3s ease-out;
}
.spinner-wrap { position: relative; }
.spinner {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 4px solid #f3f4f6;
  border-top-color: #FF6B35;
  animation: spin 0.8s linear infinite;
}
.spinner-emoji {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.results-loading-text { text-align: center; }
.results-loading-text strong { display: block; font-weight: 700; color: #111827; }
.results-loading-text span { font-size: 0.875rem; color: #9ca3af; margin-top: 4px; display: block; }

/* ── Result Card ─────────────────────────────────────────── */
.result-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  animation: fadeInUp 0.35s ease-out;
}
.result-header {
  background: linear-gradient(135deg, #0D0D1A, #16162A);
  padding: 20px 24px;
  border-bottom: 1px solid #2A2A4A;
}
.result-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.result-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
}
.badge-lang { background: rgba(255,107,53,0.15); color: #FF6B35; border: 1px solid rgba(255,107,53,0.3); }
.badge-region { background: rgba(0,212,255,0.1); color: #00D4FF; border: 1px solid rgba(0,212,255,0.2); }
.badge-tone { background: rgba(255,215,0,0.1); color: #FFD700; border: 1px solid rgba(255,215,0,0.2); }
.result-original { color: #9ca3af; font-size: 0.8rem; margin-bottom: 8px; }
.result-slang {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 900;
  background: linear-gradient(135deg, #FF6B35, #FFD700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.result-pronunciation { color: #6b7280; font-size: 0.85rem; margin-top: 6px; font-style: italic; }
.result-body { padding: 20px 24px; display: grid; gap: 16px; }
.result-section h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FF6B35;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.result-section p { font-size: 0.9rem; color: #374151; line-height: 1.6; }
.examples-list { list-style: none; display: grid; gap: 8px; }
.examples-list li {
  font-size: 0.875rem;
  color: #374151;
  padding: 10px 14px;
  background: #f9fafb;
  border-radius: 10px;
  border-left: 3px solid #FF6B35;
  line-height: 1.5;
}
.copy-btn {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.copy-btn:hover { border-color: #FF6B35; color: #FF6B35; }

/* Error message */
.error-msg {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.875rem;
  color: #dc2626;
  margin-bottom: 16px;
}

/* ── How It Works ────────────────────────────────────────── */
.how-section {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 64px 1rem;
  margin-top: 48px;
}
.section-badge {
  display: inline-block;
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.3);
  color: #FF6B35;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: #0D0D1A;
  margin-bottom: 8px;
}
.section-sub { color: #6b7280; max-width: 480px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.step-num { font-size: 3.5rem; font-weight: 900; color: #f3f4f6; line-height: 1; margin-bottom: 16px; }
.step-icon-wrap {
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  margin-top: -24px;
}
.step h3 { font-size: 1rem; font-weight: 700; color: #0D0D1A; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; }

/* ── Features ────────────────────────────────────────────── */
.features-section { max-width: 1200px; margin: 0 auto; padding: 64px 1rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover { border-color: #FF6B35; box-shadow: 0 4px 20px rgba(255,107,53,0.1); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(255,107,53,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.feature-card:hover .feature-icon { background: rgba(255,107,53,0.2); }
.feature-card h3 { font-size: 0.95rem; font-weight: 700; color: #0D0D1A; margin-bottom: 6px; }
.feature-card p { font-size: 0.825rem; color: #6b7280; line-height: 1.5; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-section {
  background: #0D0D1A;
  padding: 64px 1rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-dots {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, #FF6B35 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
}
.cta-section p { color: #9ca3af; font-size: 1.1rem; max-width: 520px; margin: 0 auto 32px; position: relative; }
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF6B35;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  animation: pulse-glow 2.5s ease-in-out infinite;
  position: relative;
}
.btn-cta:hover { background: #e55a25; transform: translateY(-2px); }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #0D0D1A;
  border-top: 1px solid #2A2A4A;
  padding: 48px 1rem 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 32px;
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: #6b7280; font-size: 0.875rem; line-height: 1.6; max-width: 280px; margin-top: 16px; }
.footer-copy { color: #4b5563; font-size: 0.75rem; margin-top: 16px; }
.footer-col h4 { color: #fff; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a { color: #6b7280; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: #FF6B35; }
.footer-bottom {
  border-top: 1px solid #2A2A4A;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.75rem; color: #4b5563; }

/* ── Legal Pages ─────────────────────────────────────────── */
.legal-page {
  background: #0D0D1A;
  min-height: 100vh;
}
.legal-header {
  border-bottom: 1px solid #2A2A4A;
  background: rgba(13,13,26,0.9);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.legal-header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-back { color: #FF6B35; text-decoration: none; font-size: 0.875rem; font-weight: 600; transition: color 0.2s; }
.legal-back:hover { color: #FF8C42; }
.legal-nav { display: flex; align-items: center; gap: 20px; }
.legal-nav a { color: #9ca3af; text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.legal-nav a:hover { color: #FF6B35; }
@media (max-width: 600px) { .legal-nav { display: none; } }
.legal-main { max-width: 720px; margin: 0 auto; padding: 48px 1rem; }
.legal-card { background: #16162A; border-radius: 16px; border: 1px solid #2A2A4A; padding: 40px; }
.legal-card h1 { font-size: 1.75rem; font-weight: 900; color: #fff; margin-bottom: 8px; }
.legal-date { font-size: 0.8rem; color: #6b7280; margin-bottom: 32px; }
.legal-section { margin-bottom: 32px; }
.legal-section h2 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.legal-section p { font-size: 0.9rem; color: #9ca3af; line-height: 1.7; margin-bottom: 12px; }
.legal-section ul { list-style: disc; padding-left: 24px; color: #9ca3af; display: grid; gap: 8px; }
.legal-section li { font-size: 0.9rem; line-height: 1.6; }
.legal-section a { color: #FF6B35; }
.legal-contact-box {
  background: #0D0D1A;
  border: 1px solid #2A2A4A;
  border-radius: 10px;
  padding: 16px;
  margin-top: 12px;
}
.legal-contact-box p { color: #9ca3af !important; margin: 0 !important; }
.legal-contact-box strong { color: #fff; }
.legal-footer { text-align: center; padding: 24px 1rem; color: #4b5563; font-size: 0.75rem; border-top: 1px solid #2A2A4A; }
.legal-footer a { color: #6b7280; text-decoration: none; transition: color 0.2s; }
.legal-footer a:hover { color: #FF6B35; }

/* ── Form-sidebar ad: hidden on mobile, visible on desktop only */
.ad-wrap-form-sidebar { display: none !important; }
@media (min-width: 769px) {
  .ad-wrap-form-sidebar { display: block !important; }
}

