/* legal.css — shared styles for T&C / Privacy / Cookies pages */

/* ── Layout ── */
.legal-wrap { max-width: 52rem; margin: 0 auto; padding: 3.5rem 1.25rem 5rem; }

/* ── Page title block ── */
.legal-title { font-size: clamp(1.75rem, 5vw, 2.5rem); font-weight: 900; color: #f9fafb; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: .5rem; }
.legal-meta { font-size: .8125rem; color: #6b7280; margin-bottom: 3rem; display: flex; align-items: center; gap: .5rem; }
.legal-meta::before { content: ''; display: block; width: 2rem; height: 2px; background: #f59e0b; border-radius: 1px; }

/* ── Section cards ── */
.legal-section {
  background: #131722;
  border: 1px solid #1e2535;
  border-radius: .75rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1rem;
  transition: border-color .2s;
}
.legal-section:hover { border-color: #2a3349; }
.legal-section h2 {
  font-size: .9375rem;
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 .875rem;
  display: flex;
  align-items: center;
  gap: .625rem;
}
.legal-section h2 .sec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #f59e0b;
  color: #0b0f1a;
  font-size: .6875rem;
  font-weight: 800;
  flex-shrink: 0;
}
.legal-section p { color: #9ca3af; font-size: .9375rem; line-height: 1.75; margin-bottom: .75rem; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { color: #9ca3af; font-size: .9375rem; line-height: 1.75; padding-left: 1.25rem; margin-bottom: .75rem; list-style: none; }
.legal-section ul li { padding-left: .5rem; position: relative; margin-bottom: .25rem; }
.legal-section ul li::before { content: '—'; color: #f59e0b; position: absolute; left: -1.25rem; font-size: .75rem; top: .35em; }
.legal-section a { color: #f59e0b; text-decoration: underline; text-underline-offset: 2px; }
.legal-section a:hover { color: #fbbf24; }
.legal-section strong { color: #e5e7eb; font-weight: 600; }

/* ── Contact card ── */
.legal-contact {
  background: linear-gradient(135deg, #1a1f30 0%, #131722 100%);
  border: 1px solid #f59e0b33;
  border-radius: .75rem;
  padding: 1.5rem 1.75rem;
  margin-top: 1.5rem;
}
.legal-contact p { color: #9ca3af; font-size: .9375rem; line-height: 1.75; margin: 0; }
.legal-contact a { color: #f59e0b; font-weight: 600; text-decoration: none; }
.legal-contact a:hover { text-decoration: underline; }

/* ── TOC strip ── */
.legal-toc {
  background: #0f1420;
  border: 1px solid #1e2535;
  border-radius: .625rem;
  padding: 1rem 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .375rem .75rem;
}
.legal-toc a {
  font-size: .8125rem;
  color: #6b7280;
  text-decoration: none;
  padding: .25rem .5rem;
  border-radius: .25rem;
  transition: background .15s, color .15s;
}
.legal-toc a:hover { background: #1e2535; color: #f9fafb; }

/* ── Badge pills ── */
.badge {
  display: inline-block;
  background: #f59e0b22;
  color: #f59e0b;
  border: 1px solid #f59e0b44;
  border-radius: 999px;
  font-size: .6875rem;
  font-weight: 700;
  padding: .1rem .55rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: .375rem;
}
