/* ── PAGE HERO ── */
.page-hero {
  margin-top: 80px;
  background: var(--navy);
  padding: 72px 48px;
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.page-hero .breadcrumb a {
  color: var(--lime); text-decoration: none; transition: opacity 0.2s;
}
.page-hero .breadcrumb a:hover { opacity: 0.75; }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.02em; color: var(--white);
  margin-bottom: 16px;
}
.page-hero .updated {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.5);
}

/* ── CONTENT ── */
.legal-wrap {
  max-width: 820px; margin: 0 auto;
  padding: 72px 48px 96px;
}
.legal-intro {
  background: var(--light-bg);
  border-left: 4px solid var(--lime);
  padding: 24px 28px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 48px;
  font-size: 15.5px; font-weight: 500;
  color: var(--text-mid); line-height: 1.75;
}
.legal-section { margin-bottom: 48px; }
.legal-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--lime);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.legal-section h2 .num {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--lime);
  background: var(--navy);
  padding: 3px 9px; border-radius: 3px;
}
.legal-section p {
  font-size: 15.5px; font-weight: 400;
  color: var(--text-mid); line-height: 1.85;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  margin: 12px 0 14px 0;
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.legal-section ul li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; font-weight: 400;
  color: var(--text-mid); line-height: 1.75;
}
.legal-section ul li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); margin-top: 8px;
}
.contact-box {
  background: var(--navy);
  border-radius: 8px; padding: 32px 36px;
  border-left: 4px solid var(--lime);
}
.contact-box p {
  color: rgba(255,255,255,0.75) !important;
  margin-bottom: 6px !important;
}
.contact-box a {
  color: var(--lime); text-decoration: none; font-weight: 600;
}
.contact-box a:hover { text-decoration: underline; }
.contact-box strong { color: var(--white); }

/* Highlight Box (Terms Specific) */
.highlight-box {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--navy);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.highlight-box p {
  font-size: 14.5px !important;
  color: var(--text-mid) !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* Warning Banner & Risk Box (Disclaimer Specific) */
.warning-banner {
  background: var(--amber-bg);
  border: 1.5px solid var(--amber-border);
  border-left: 5px solid var(--amber);
  border-radius: 0 6px 6px 0;
  padding: 24px 28px;
  margin-bottom: 48px;
}
.warning-banner .warning-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.warning-banner .warning-label::before {
  content: '⚠';
  font-size: 14px;
}
.warning-banner p {
  font-size: 15px; font-weight: 500;
  color: #78350f; line-height: 1.75;
  margin-bottom: 0;
}

.risk-box {
  background: var(--navy);
  border-radius: 8px; padding: 28px 32px;
  margin-top: 20px;
}
.risk-box p {
  color: rgba(255,255,255,0.8) !important;
  margin-bottom: 10px !important;
  font-size: 15px !important;
}
.risk-box p:last-child { margin-bottom: 0 !important; }
.risk-box strong { color: var(--lime); }
