/* ── Legal Pages · 法律文档通用样式 ────────────── */

.legal-page {
  background: #f8fafc;
  padding: 80px 0 100px;
  position: relative;
}

/* Hero */
.legal-hero {
  text-align: center;
  padding: 40px 0 56px;
  position: relative;
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,148,136,0.08), transparent 60%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.legal-hero > * {
  position: relative;
  z-index: 1;
}

.legal-hero-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 6px;
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.2);
  color: #0d9488;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.legal-hero h1 {
  font-size: 40px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 14px;
}

.legal-hero p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 640px;
}

.legal-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  font-size: 12.5px;
  color: #64748b;
  backdrop-filter: blur(8px);
}

.legal-hero-meta svg {
  width: 12px;
  height: 12px;
  color: #0d9488;
}

/* 主体布局：左侧目录 + 右侧正文 */
.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

/* 侧边目录 */
.legal-toc {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  padding: 18px 0;
  border-left: 2px solid rgba(148,163,184,0.15);
}

.legal-toc-title {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 18px;
  margin-bottom: 14px;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc a {
  display: block;
  padding: 8px 18px;
  font-size: 13.5px;
  color: #64748b;
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: all 0.2s ease;
  line-height: 1.5;
}

.legal-toc a:hover,
.legal-toc a.is-active {
  color: #0d9488;
  border-left-color: #0d9488;
  background: rgba(13,148,136,0.04);
  font-weight: 600;
}

/* 正文区 */
.legal-content {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 48px 52px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04);
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.3px;
  line-height: 1.3;
  margin: 40px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(148,163,184,0.18);
  position: relative;
  scroll-margin-top: 90px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content h2::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #0d9488, #7c3aed);
  border-radius: 2px;
}

.legal-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.2px;
  margin: 28px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-content h3::before {
  content: '';
  width: 4px;
  height: 14px;
  background: #0d9488;
  border-radius: 2px;
}

.legal-content p {
  font-size: 14.5px;
  line-height: 1.85;
  color: #475569;
  margin: 0 0 14px;
}

.legal-content p strong {
  color: #0d9488;
  font-weight: 700;
}

.legal-content ol,
.legal-content ul {
  padding-left: 0;
  margin: 0 0 14px;
  list-style: none;
  counter-reset: legal-counter;
}

.legal-content ol li,
.legal-content ul li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 14.5px;
  line-height: 1.8;
  color: #475569;
}

.legal-content ol li::before {
  counter-increment: legal-counter;
  content: counter(legal-counter);
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(13,148,136,0.08);
  border: 1px solid rgba(13,148,136,0.18);
  color: #0d9488;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0d9488;
}

.legal-content ol li strong,
.legal-content ul li strong {
  color: #1e293b;
  font-weight: 700;
}

/* 重点提示框 */
.legal-callout {
  background: linear-gradient(135deg, rgba(245,158,11,0.06), rgba(254,243,199,0.4));
  border: 1px solid rgba(245,158,11,0.2);
  border-left: 4px solid #f59e0b;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.legal-callout svg {
  width: 18px;
  height: 18px;
  color: #d97706;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-callout-content {
  flex: 1;
}

.legal-callout-content strong {
  color: #d97706 !important;
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.legal-callout-content p {
  margin: 0;
  font-size: 13.5px;
  color: #78350f;
}

/* 警告框 */
.legal-warn {
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.18);
  border-left: 4px solid #ef4444;
  border-radius: 10px;
  padding: 16px 20px;
  margin: 20px 0;
}

.legal-warn p {
  margin: 0;
  font-size: 13.5px;
  color: #991b1b;
  line-height: 1.7;
  font-weight: 500;
}

.legal-warn strong { color: #b91c1c !important; }

/* 分隔线 */
.legal-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148,163,184,0.3), transparent);
  margin: 40px 0;
  border: none;
}

/* 底部确认/联系区 */
.legal-footer-note {
  margin-top: 48px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(13,148,136,0.04), rgba(124,58,237,0.03));
  border: 1px solid rgba(13,148,136,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.legal-footer-note svg {
  flex-shrink: 0;
  color: #0d9488;
}

.legal-footer-note p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

.legal-footer-note a {
  color: #0d9488;
  font-weight: 600;
  text-decoration: none;
}

.legal-footer-note a:hover { color: #7c3aed; }

/* 响应式 */
@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-toc {
    position: static;
    border-left: none;
    border-bottom: 1px solid rgba(148,163,184,0.15);
    padding: 0 0 16px;
    display: none;
  }

  .legal-content {
    padding: 32px 24px;
  }

  .legal-hero h1 { font-size: 28px; }
  .legal-content h2 { font-size: 19px; }
}
