:root {
  --bg-primary: #0B0D11;
  --bg-secondary: #12151C;
  --bg-card: #181C25;
  --gold: #C8A44E;
  --gold-light: #E2C97E;
  --gold-dim: rgba(200,164,78,0.15);
  --text-primary: #F2F0EB;
  --text-secondary: #9A978F;
  --text-muted: #5E5C56;
  --green: #4ADE80;
  --green-dim: rgba(74,222,128,0.12);
  --red-soft: #F87171;
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(200,164,78,0.25);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 300;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ─── NAV ─── */
.legal-nav {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(11,13,17,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.legal-nav-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  text-decoration: none;
}
.logo span { color: var(--gold); }
.back {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.back:hover { color: var(--gold); }

/* ─── LEGAL CONTENT ─── */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  flex: 1;
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--text-primary);
  margin-bottom: 8px;
}
.last-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-family: var(--font-mono);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-top: 48px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}
.legal-content ul {
  margin: 0 0 20px 0;
  padding-left: 0;
  list-style: none;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  padding: 4px 0 4px 24px;
  position: relative;
}
.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--gold);
}
.legal-content a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dim);
  transition: border-color 0.2s;
}
.legal-content a:hover { border-color: var(--gold); }

.policy-highlight {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 32px 0;
}
.policy-highlight h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--red-soft);
  margin: 0 0 12px;
}
.policy-highlight p { margin-bottom: 0; }

/* ─── FOOTER ─── */
.legal-footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.legal-footer p {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ════════════════════════════════════════
   PRICING PAGE
   ════════════════════════════════════════ */
.pricing-page h1 { text-align: center; margin-bottom: 4px; }
.pricing-intro {
  text-align: center;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 56px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto 72px;
}
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; max-width: 380px; } }

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-featured {
  border-color: var(--border-gold);
  box-shadow: 0 0 40px rgba(200,164,78,0.08);
}
.pricing-popular {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--gold), #B8943F);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px;
}

.pricing-card-top {
  padding: 40px 28px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pricing-card-featured .pricing-card-top { padding-top: 52px; }

.pricing-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pricing-badge-pro {
  background: var(--gold-dim);
  color: var(--gold);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-currency { font-size: 28px; vertical-align: top; color: var(--text-muted); }
.pricing-decimal { font-size: 28px; color: var(--text-muted); }
.pricing-period { font-size: 14px; color: var(--text-muted); }

.pricing-card-body { padding: 28px; }
.pricing-card-body ul { list-style: none; padding: 0; margin: 0 0 24px; }
.pricing-card-body li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card-body li::before { display: none; }
.check { color: var(--green); font-weight: 600; flex-shrink: 0; }
.check.gold { color: var(--gold); }

.pricing-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.pricing-btn-free {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.pricing-btn-free:hover { border-color: var(--gold); color: var(--gold); }
.pricing-btn-pro {
  background: linear-gradient(135deg, var(--gold), #B8943F);
  color: var(--bg-primary);
  box-shadow: 0 4px 20px rgba(200,164,78,0.25);
}
.pricing-btn-pro:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200,164,78,0.35); }

/* FAQ */
.pricing-faq { max-width: 640px; margin: 0 auto; }
.pricing-faq h2 {
  text-align: center;
  border-top: none;
  margin-bottom: 32px;
}
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}
.faq-item p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}
