.simple-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(14px);
}
.simple-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.simple-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-text);
  font-family: var(--f-display);
  font-weight: 800;
}
.simple-brand img { width: 36px; height: 36px; }
.simple-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.simple-nav a:hover { color: var(--c-primary); }
.legal-hero { padding: 72px 0 42px; background: var(--grad-dark); color: #fff; }
.legal-hero p { max-width: 760px; margin-top: 16px; color: rgba(255,255,255,.72); line-height: 1.7; }
.legal-shell { max-width: 900px; padding-top: 44px; padding-bottom: 72px; }
.legal-card { padding: clamp(24px, 5vw, 46px); }
.legal-card h2 { margin: 32px 0 12px; font: 800 22px/1.25 var(--f-display); }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p, .legal-card li { color: var(--c-muted); line-height: 1.75; }
.legal-card ul, .legal-card ol { display: grid; gap: 8px; margin: 12px 0 0 22px; }
.legal-card a { color: var(--c-primary); text-decoration: underline; text-underline-offset: 3px; }
.notice-card {
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid #ffd5ba;
  border-radius: var(--r-md);
  background: #fff7f1;
  color: #70401f;
  line-height: 1.6;
}
.support-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.support-card { padding: 26px; }
.support-card h2 { margin-bottom: 10px; font: 800 20px/1.3 var(--f-display); }
.support-card p { min-height: 48px; color: var(--c-muted); line-height: 1.6; }
.support-card .btn { margin-top: 18px; }
.simple-footer { padding: 28px 0; border-top: 1px solid var(--c-border); color: var(--c-muted); font-size: 13px; }
.simple-footer__inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.simple-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 720px) {
  .simple-header__inner { min-height: 64px; }
  .simple-nav a:not(.btn) { display: none; }
  .legal-hero { padding: 48px 0 32px; }
  .support-grid { grid-template-columns: 1fr; }
}
