/* ═══════════════════════════════════════════════════
   LONGEVICLINICS LEGAL PAGES — SHARED STYLES
══════════════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}
.legal-navbar {
  background: #000;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.legal-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.legal-brand img { width: 28px; height: 28px; object-fit: contain; }
.legal-brand span { font-size: 16px; font-family: 'Outfit', sans-serif; white-space: nowrap; }
.legal-brand .brand-longevi { color: white; font-weight: 800; }
.legal-brand .brand-clinics { color: #feba66; font-weight: 300; }
.legal-back {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-back:hover { color: #ff993f; }
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}
.legal-hero {
  background: linear-gradient(135deg, #ff993f, #feba66, #ffaaa7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  font-family: 'Outfit', system-ui;
  margin-bottom: 8px;
}
.legal-date { font-size: 14px; color: #999; margin-bottom: 48px; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
  border-left: 3px solid #ff993f;
  padding-left: 14px;
}
.legal-section p, .legal-section li {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-section ul { padding-left: 20px; }
.legal-section li { margin-bottom: 6px; }
.legal-footer {
  margin-top: 60px;
  padding: 24px;
  background: #fff3eb;
  border-radius: 16px;
  border: 1px solid rgba(255,153,63,0.15);
}
.legal-footer p { font-size: 14px; color: #888; line-height: 1.7; }
.legal-footer a { color: #ff993f; font-weight: 600; }
@media (max-width: 600px) {
  .legal-container { padding: 40px 16px 80px; }
}
