/* ── LEGAL PAGES ── */

body { background: #230836; }

/* ── HERO ── */
.legal-hero {
  background: linear-gradient(135deg, #f8f5ff 0%, #fff 60%);
  padding: 130px 8% 60px;
  text-align: center;
  border-bottom: 1px solid #ede9f6;
}
.legal-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.8rem;
}
.legal-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #0d0a14;
  line-height: 1.1;
  margin-bottom: 0.9rem;
}
.legal-title em { font-style: normal; color: var(--purple); }
.legal-sub {
  font-size: 0.95rem;
  color: #666;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}
 
/* ── BODY ── */
.legal-body {
  padding: 60px 8% 80px;
  /* max-width: 1100px; */
  margin: 0 auto;
}
 
/* ── LAYOUT: sidebar + card ── */
.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 3rem;
  align-items: start;
}
 
/* ── SIDEBAR ── */
.legal-sidebar {
  position: sticky;
  top: 90px;
  background: #faf9fe;
  border: 1px solid #ede9f6;
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
}
.sidebar-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 1rem;
}
.sidebar-link {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  margin-bottom: 0.3rem;
  transition: background 0.2s, color 0.2s;
}
.sidebar-link:hover { background: #ede9f6; color: var(--purple); }
.sidebar-link.active-legal {
  background: rgba(123,47,190,0.1);
  color: var(--purple);
  font-weight: 700;
}
 
/* ── CARD ── */
.legal-card {
  background: #fff;
  border: 1px solid #ede9f6;
  border-radius: 16px;
  padding: 2.4rem 2.8rem;
  box-shadow: 0 4px 28px rgba(0,0,0,0.05);
}
 
/* ── SECTIONS ── */
.legal-section {
  padding-bottom: 2rem;
}
.legal-section.last { padding-bottom: 0; }
 
.legal-section h2 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 800;
  color: #0d0a14;
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--purple);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-section p {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
}
.legal-section a:hover { text-decoration: underline; }
.legal-address {
  background: #faf9fe;
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  padding: 0.8rem 1rem;
  font-size: 0.87rem;
  color: #333;
  line-height: 1.8;
  margin: 0.6rem 0 0.8rem;
}
.legal-key {
  font-weight: 600;
  color: #222;
}
 
/* Bullet lists */
.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.2rem;
}
.legal-list li {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.legal-list li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  opacity: 0.7;
}
.legal-divider {
  height: 1px;
  background: linear-gradient(to right, var(--purple), transparent);
  opacity: 0.2;
  margin: 0 0 2rem;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .legal-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .legal-sidebar { position: static; display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
  .sidebar-label { display: none; }
  .legal-card { padding: 1.8rem 1.4rem; }
}
@media (max-width: 560px) {
  .legal-hero { padding: 110px 5% 40px; }
  .legal-body { padding: 40px 5% 60px; }
  .legal-card { padding: 1.4rem 1rem; }
}