:root {
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --primary: #2563eb;
  --primary-light: #eff6ff;
  --accent: #0284c7;
  --success: #16a34a;
  --success-bg: #f0fdf4;
  --warning: #d97706;
  --warning-bg: #fffbeb;
  --danger: #dc2626;
  --danger-bg: #fef2f2;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(37,99,235,0.08), 0 8px 10px -6px rgba(0,0,0,0.03);
  --shadow-hover: 0 20px 30px -10px rgba(37,99,235,0.15);
  --radius: 16px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
}
.tag-badge {
  font-size: 12px;
  padding: 2px 8px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 20px;
  font-weight: 600;
  margin-left: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-btn {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.nav-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

/* 页面标题 */
.page-title-sec {
  padding: 56px 0 32px;
  text-align: center;
}
.page-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.page-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto;
}

/* 通用 section */
.section {
  padding: 48px 0;
}
.section-header {
  margin-bottom: 28px;
}
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* 误区 vs 事实对比卡片（手风琴） */
.myth-fact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.myth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.myth-card[open] {
  border-color: #bfdbfe;
  box-shadow: var(--shadow-md);
}
.myth-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}
.myth-summary::-webkit-details-marker {
  display: none;
}
.myth-label {
  font-size: 12px;
  font-weight: 700;
  background: var(--danger-bg);
  color: var(--danger);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.myth-question {
  font-size: 17px;
  font-weight: 700;
  flex: 1;
}
.summary-toggle {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.2s;
}
.myth-card[open] .summary-toggle {
  transform: rotate(45deg);
}
.myth-body {
  padding: 0 24px 24px;
}
.myth-fact {
  background: var(--success-bg);
  border-left: 4px solid var(--success);
  border-radius: 6px;
  padding: 16px 20px;
}
.fact-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 8px;
}
.myth-fact p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 隐私边界 */
.boundary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.boundary-can, .boundary-cannot {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.boundary-can {
  border-top: 4px solid var(--success);
}
.boundary-cannot {
  border-top: 4px solid var(--danger);
}
.boundary-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.boundary-list {
  list-style: none;
}
.boundary-list li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.boundary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.boundary-can .boundary-list li::before {
  background: var(--success);
}
.boundary-cannot .boundary-list li::before {
  background: var(--danger);
}
.boundary-tip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-light);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-secondary);
}
.boundary-tip-icon {
  font-size: 22px;
}

/* 免费 vs 付费对比表 */
.compare-table-wrap {
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.compare-table th {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table td:first-child {
  font-weight: 600;
}

/* 隐私认知自检 */
.self-check-card {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--radius);
  padding: 40px;
  color: #fff;
}
.self-check-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.self-check-icon {
  font-size: 36px;
}
.self-check-title {
  font-size: 24px;
  font-weight: 800;
}
.self-check-desc {
  color: #cbd5e1;
  margin-bottom: 24px;
  max-width: 600px;
}
.self-check-questions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.check-question {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
}
.check-q {
  font-size: 14px;
  font-weight: 700;
  color: #93c5fd;
}
.check-question p {
  font-size: 14px;
  margin-top: 8px;
  color: #e2e8f0;
}
.check-question small {
  color: #94a3b8;
  font-size: 12px;
}
.self-check-btn {
  background: #2563eb;
  color: #fff;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.25s;
}
.self-check-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

/* FAQ 列表 */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--primary);
}
.faq-question {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  color: var(--primary);
}
.faq-item[open] .faq-question::after {
  content: "−";
}
.faq-answer {
  margin-top: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #ffffff;
  border-top: 1px solid var(--border);
  padding: 48px 0 24px;
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  max-width: 320px;
}
.footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}

/* 页脚下拉工具区 */
.footer-tools {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-end;
}
.footer-select {
  position: relative;
  min-width: 240px;
  max-width: 320px;
  width: 100%;
}
.footer-select-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.footer-select-btn:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(37,99,235,0.1);
}
.footer-select-dropdown {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 260px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  z-index: 20;
}
.footer-select:hover .footer-select-dropdown,
.footer-select:focus-within .footer-select-dropdown {
  display: block;
}
.footer-select-dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
}
.footer-select-dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.footer-select-dropdown a + a {
  border-top: 1px solid var(--border);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .page-title { font-size: 28px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-tools { justify-content: flex-start; }
  .self-check-card { padding: 24px; }
  .myth-summary { flex-wrap: wrap; }
  .myth-question { width: 100%; order: 3; }
}