/* ─── Legal Hero ─────────────────────────────────────────── */
.legal-hero {
  background: linear-gradient(135deg, #0B1F3A 0%, #1A3A5C 100%);
  padding: 120px 0 64px;
}
.legal-hero__inner {
  text-align: center;
}
.legal-hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.legal-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* ─── Legal Body ─────────────────────────────────────────── */
.legal-body {
  padding: 72px 0 96px;
  background: var(--gl-off-white);
}
.legal-body__inner {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

/* ─── Legal Content ──────────────────────────────────────── */
.legal-content {
  background: white;
  border-radius: var(--radius-md);
  padding: 48px;
  box-shadow: var(--shadow-card);
}
.legal-intro {
  font-size: 1.05rem;
  color: var(--gl-text);
  line-height: 1.8;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gl-border);
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gl-navy);
  margin: 32px 0 12px;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p {
  color: var(--gl-muted);
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-content ul {
  list-style: none;
  margin: 8px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-content ul li {
  color: var(--gl-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.legal-content ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gl-blue);
}
.legal-content a {
  color: var(--gl-blue);
  text-decoration: none;
}
.legal-content a:hover {
  text-decoration: underline;
}

/* ─── Legal Sidebar ──────────────────────────────────────── */
.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 96px;
}
.legal-sidebar__card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.legal-sidebar__card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gl-navy);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.legal-sidebar__card p {
  font-size: 0.88rem;
  color: var(--gl-muted);
  line-height: 1.7;
}
.legal-sidebar__card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-sidebar__card ul a {
  font-size: 0.9rem;
  color: var(--gl-blue);
  text-decoration: none;
  font-weight: 500;
}
.legal-sidebar__card ul a:hover {
  text-decoration: underline;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .legal-body__inner {
    grid-template-columns: 1fr;
  }
  .legal-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .legal-sidebar__card {
    flex: 1;
    min-width: 200px;
  }
}
@media (max-width: 560px) {
  .legal-content {
    padding: 28px 20px;
  }
  .legal-sidebar {
    flex-direction: column;
  }
}
