/* ─────────────────────────────────────────
   SaaSBox — legal.css
   Shared styles for Terms / Privacy / Refund
───────────────────────────────────────── */

.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  background-color: #0a0a0a;
  min-height: 100vh;
}

.legal-header {
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid #1e1e1e;
}

.legal-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #f5c400;
  margin-bottom: 14px;
}

.legal-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 76px);
  letter-spacing: 2px;
  color: #ede8dc;
  line-height: 1;
  margin-bottom: 16px;
}

.legal-meta {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: #888;
}

.legal-content {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
}

.legal-intro {
  font-size: 16px;
  color: #ede8dc;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1e1e1e;
  line-height: 1.75;
}

.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: #f5c400;
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.2;
}

.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p {
  margin-bottom: 18px;
}

.legal-content ul {
  margin-bottom: 18px;
  padding-left: 0;
  list-style: none;
}

.legal-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.7;
}

.legal-content ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 8px;
  color: #f5c400;
}

.legal-content a {
  color: #f5c400;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,196,0,0.3);
  transition: border-color 0.2s;
}
.legal-content a:hover { border-color: #f5c400; }

.legal-content strong { color: #ede8dc; font-weight: 600; }

/* Light mode */
body.light-mode .legal-wrap { background-color: #f5f0e8; }
body.light-mode .legal-header { border-bottom-color: #ccc; }
body.light-mode .legal-header h1 { color: #111; }
body.light-mode .legal-meta { color: #777; }
body.light-mode .legal-intro { color: #111; border-bottom-color: #ccc; }
body.light-mode .legal-content { color: #333; }
body.light-mode .legal-content strong { color: #111; }

@media (max-width: 600px) {
  .legal-wrap { padding: 100px 20px 60px; }
}
