/* ── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0a0a0f;
  --surface:    #13131a;
  --card:       #18181f;
  --border:     #27273a;
  --accent:     #c8ff00;
  --accent-dim: #c8ff0022;
  --purple:     #9b7fe8;
  --purple-bg:  #9b7fe812;
  --text:       #eeeef5;
  --muted:      #9090a8;
  --danger:     #ef4444;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: filter 0.15s, transform 0.12s;
  white-space: nowrap;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn-lg { padding: 15px 32px; font-size: 17px; border-radius: 10px; }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { color: var(--text); border-color: var(--text); filter: none; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); filter: none; }

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon { font-size: 24px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }

/* Language toggle */
.lang-toggle {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  font-family: var(--font-body);
  white-space: nowrap;
}
.lang-toggle:hover { border-color: var(--accent); color: var(--accent); }
.lang-toggle-mobile { display: none; font-size: 18px; padding: 4px 8px; }
@media (max-width: 640px) { .lang-toggle:not(.lang-toggle-mobile) { display: none; } }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--muted);
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; margin-top: 8px; }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(155,127,232,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-badge {
  display: inline-block;
  background: var(--purple-bg);
  border: 1px solid var(--purple);
  color: var(--purple);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}
.accent { color: var(--accent); }
.hero-sub {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-note {
  color: var(--muted);
  font-size: 13px;
}

/* ── Mockup ─────────────────────────────────────────────────────────────────── */
.mockup-wrap {
  margin-top: 64px;
  padding-bottom: 0;
  display: flex;
  justify-content: center;
}
.mockup {
  width: 100%;
  max-width: 600px;
  background: var(--card);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 -4px 60px rgba(155,127,232,0.12), 0 0 0 1px var(--border);
}
.mockup-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
.live-dot {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.mockup-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup-wish {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
}
.mockup-wish.new {
  background: rgba(155,127,232,0.06);
  border-color: var(--purple);
}
.mockup-wish.tip {
  background: rgba(200,255,0,0.04);
  border-color: rgba(200,255,0,0.3);
}
.mockup-wish.played { opacity: 0.45; }
.mockup-cover {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.mockup-info { flex: 1; min-width: 0; }
.mockup-song {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mockup-fan { font-size: 12px; color: var(--muted); }
.badge-new {
  background: var(--purple-bg);
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.badge-tip {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(200,255,0,0.3);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}
.badge-played {
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
}

/* ── Sections ───────────────────────────────────────────────────────────────── */
.section {
  padding: 96px 0;
}
.section-dark {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 56px;
  max-width: 600px;
}

/* ── Steps ──────────────────────────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
}
.step-icon { font-size: 32px; }
.step h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.step p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--border);
  padding: 0 8px;
  padding-top: 60px;
  flex-shrink: 0;
}

/* ── Features ───────────────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--purple); }
.feature-icon { font-size: 28px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.feature-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.pricing {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
.plan-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-pro {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(200,255,0,0.08);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a0f;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.plan-price span {
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
}
.plan-desc {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}
.plan-features li.yes { color: var(--text); }
.plan-features li.no  { color: var(--muted); text-decoration: line-through; }
.plan-features li.yes::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.plan-features li.no::before  { content: '—'; position: absolute; left: 0; color: var(--border); }
.coming {
  font-size: 11px;
  background: var(--surface);
  color: var(--muted);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 4px;
  vertical-align: middle;
}
.plan-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

/* ── Live pill ──────────────────────────────────────────────────────────────── */
.btn-live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; padding: 6px 12px; border-radius: var(--radius-sm);
  background: var(--surface); color: var(--text); border: 1.5px solid var(--accent);
  text-decoration: none; white-space: nowrap; transition: opacity 0.15s;
}
.btn-live-pill:hover { opacity: 0.8; }
.btn-live-pill .live-dot { background: var(--border); flex-shrink: 0; }
.btn-live-pill.is-live .live-dot { background: var(--accent); animation: liveDotPulse 1.8s ease-in-out infinite; }
.btn-live-pill.is-live { border-color: var(--accent); }
@media (max-width: 640px) { .btn-live-pill { display: none !important; } }
.btn-live-pill .live-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
  animation: liveDotPulse 1.8s ease-in-out infinite;
}
@keyframes liveDotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.25; }
}

/* ── Sponsor slots (legacy, unused) ─────────────────────────────────────────── */
.sponsor-slot { display: none; }

/* ── UGROOVES fixed skyscrapers ─────────────────────────────────────────────── */
.ug-fixed {
  display: none;
  position: fixed;
  top: 90px;
  z-index: 200;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 0.2s;
}
.ug-fixed:hover { opacity: 1; }
.ug-fixed-left  { left: 4px; }
.ug-fixed-right { right: 4px; }
@media (min-width: 1460px) { .ug-fixed { display: block; } }

/* UGROOVES skyscraper content */
.ug-sky-inner {
  width: 160px; height: 600px;
  background: #000; border: 1px solid #1e1e1e;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 24px 12px 18px;
  overflow: hidden;
  font-family: 'Arial Black', Arial, sans-serif;
}
.ug-logo { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.5px; text-align: center; }
.ug-sub  { font-size: 6.5px; font-weight: 700; color: #555; letter-spacing: 2px; text-transform: uppercase; text-align: center; margin-top: 3px; }
.ug-ctrl { width: 130px; height: 100px; background: #0d0d0d; border: 1.5px solid #222; border-radius: 10px; position: relative; overflow: hidden; flex-shrink: 0; }
.ug-platter { position: absolute; width: 44px; height: 44px; border-radius: 50%; background: repeating-radial-gradient(circle,#111 0px,#111 2px,#1c1c1c 2px,#1c1c1c 4px); top: 9px; }
.ug-platter::after { content:''; position:absolute; width:11px; height:11px; background:#0d0d0d; border-radius:50%; top:50%; left:50%; transform:translate(-50%,-50%); border:1px solid #333; }
.ug-pl-l { left: 7px; } .ug-pl-r { right: 7px; }
.ug-pitch { position: absolute; top: 11px; bottom: 26px; width: 3px; background: #1a1a1a; border-radius: 2px; border: 1px solid #2a2a2a; }
.ug-pi-l { left: 55px; } .ug-pi-r { right: 55px; }
.ug-ph { position: absolute; width: 9px; height: 6px; background: #3a3a3a; border-radius: 1px; left: 50%; top: 33%; transform: translateX(-50%); border: 1px solid #555; }
.ug-knobs { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; }
.ug-k { display: block; width: 11px; height: 11px; border-radius: 50%; background: #1a1a1a; border: 1.5px solid #333; }
.ug-xf { position: absolute; bottom: 9px; left: 11px; right: 11px; height: 5px; background: #1a1a1a; border-radius: 3px; border: 1px solid #2a2a2a; }
.ug-xfh { position: absolute; width: 14px; height: 11px; background: #3a3a3a; border-radius: 2px; top: 50%; left: 38%; transform: translateY(-50%); border: 1px solid #555; }
.ug-divider { width: 30px; height: 1px; background: #1e1e1e; }
.ug-tag { font-size: 12px; font-weight: 900; color: #fff; text-transform: uppercase; text-align: center; line-height: 1.35; font-family: 'Arial Black', Arial, sans-serif; }
.ug-brands { font-size: 7px; font-weight: 700; color: #444; letter-spacing: 0.5px; text-align: center; line-height: 2; text-transform: uppercase; font-family: Arial, sans-serif; }
.ug-bottom { width: 100%; text-align: center; }
.ug-slogan { font-size: 7.5px; font-weight: 700; color: #333; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 9px; font-family: Arial, sans-serif; }
.ug-cta-label { display: block; width: 100%; background: #fff; color: #000; font-size: 8.5px; font-weight: 900; letter-spacing: 1.5px; text-transform: uppercase; padding: 9px 0; text-align: center; font-family: 'Arial Black', Arial, sans-serif; }
.ug-url { font-size: 7px; color: #333; letter-spacing: 1px; margin-top: 6px; font-family: Arial, sans-serif; }

/* ── Mobile sticky ad banner ─────────────────────────────────────────────── */
.smb {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #0f0f1a;
  border-top: 2px solid #c8ff00;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
.smb-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 62px;
  max-width: 600px;
  margin: 0 auto;
}
.smb-logo {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: #c8ff00;
  color: #0a0a0f;
  font-size: 14px;
  font-weight: 900;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}
.smb-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.smb-text strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.smb-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smb-cta {
  flex-shrink: 0;
  background: #c8ff00;
  color: #0a0a0f;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.smb-cta:hover { opacity: 0.85; }
.smb-close {
  flex-shrink: 0;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 18px;
  line-height: 1;
  padding: 4px 2px 4px 6px;
  cursor: pointer;
}
.smb-close:hover { color: #fff; }
@media (max-width: 767px) {
  .smb { display: block; }
  body { padding-bottom: 62px; }
}

/* ── CTA Band ───────────────────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--purple-bg) 0%, var(--bg) 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 0;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-sub {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 36px;
}

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand .logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}
.footer-brand p { color: var(--muted); font-size: 14px; }
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-links a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-legal-links {
  display: flex;
  gap: 16px;
}
.footer-legal-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color 0.15s;
}
.footer-legal-links a:hover { color: var(--text); }

/* ── Cookie Banner ──────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.35);
}
.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-text {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  min-width: 200px;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: underline;
  transition: color 0.15s;
}
.cookie-link:hover { color: var(--text); }

/* ── Legal / Info pages ─────────────────────────────────────────────────────── */
.page-header {
  padding: 80px 0 56px;
}
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-header p {
  color: var(--muted);
  font-size: 18px;
}
.page-content {
  padding: 0 0 96px;
  border-top: 1px solid var(--border);
}
.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.faq-a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.faq-a a { color: var(--accent); }
.legal-block {
  max-width: 760px;
}
.legal-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 48px 0 16px;
}
.legal-block h2:first-child { margin-top: 0; }
.legal-block p, .legal-block ul {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-block ul { padding-left: 20px; }
.legal-block li { margin-bottom: 6px; }
.legal-block a { color: var(--accent); }
.legal-block h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 14px; margin-bottom: 16px; }
.legal-table th { text-align: left; padding: 8px 12px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
.legal-table td { padding: 10px 12px; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: top; }
.legal-table tr:last-child td { border-bottom: none; }
.legal-placeholder {
  background: rgba(200,255,0,0.07);
  border: 1px dashed rgba(200,255,0,0.35);
  border-radius: 4px;
  padding: 2px 8px;
  color: var(--accent);
  font-size: 13px;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .lang-toggle-mobile { display: inline-block; }
  .hero { padding: 72px 0 0; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .features { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .mockup-body { padding: 12px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .pricing { flex-direction: column; align-items: center; }
  .plan-card { max-width: 100%; }
}
