/* =========================================
   五行小宝 · 全站统一样式
   严格按《五行小宝-品牌设计手册》Token 标准
   主题：玄 + 水 + 木 + 缟素
   主 CTA：水靛青 #1661AB
   副 CTA：暖橙金（赭黄延伸） #C89B40
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@400;500;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* ===== 五行主色 ===== */
  --wood:  #789262;   /* 木·竹青 */
  --fire:  #FF461F;   /* 火·朱砂 */
  --earth: #C89B40;   /* 土·赭黄 */
  --metal: #F0ECE3;   /* 金·铅白 */
  --water: #1661AB;   /* 水·靛青 — 品牌主色 */

  /* ===== 辅助色 ===== */
  --xuan:    #1A1A2E; /* 玄·深底 */
  --gaosu:   #F8F6F0; /* 缟素·浅底 */
  --mo:      #333333; /* 墨·正文 */
  --yinshu:  #999999; /* 银鼠·辅文 */

  /* ===== 语义映射（保留旧变量名，向下兼容 HTML 内联样式） ===== */
  --primary:       var(--water);
  --primary-light: #B8D4E8;
  --primary-deep:  #0E4A82;
  --accent:        var(--earth);   /* 副 CTA = 暖橙金 */
  --accent-deep:   #A37D2C;
  --bg:            var(--gaosu);
  --bg-card:       #FFFFFF;
  --text:          var(--mo);
  --text-light:    var(--yinshu);
  --text-lighter:  #C9C9C4;
  --border:        rgba(0, 0, 0, 0.08);

  /* ===== 阴影（极轻，符合"留白如诗"） ===== */
  --shadow:       0 1px 3px rgba(0, 0, 0, 0.04), 0 0 0 1px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 6px 20px rgba(22, 97, 171, 0.10), 0 0 0 1px rgba(22, 97, 171, 0.08);

  /* ===== 圆角（手册标准两档） ===== */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 16px;   /* 收敛到 16，温暖圆润但不过度 */
}

body {
  font-family: 'Noto Sans SC', -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--gaosu);
  color: var(--mo);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--water); text-decoration: none; }

/* ============ 顶部导航 ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif SC', "STSong", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--xuan);
  letter-spacing: 4px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: transparent;
  border-radius: 0;
  background-image: url('assets/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

/* 导航项：两行结构 = 主名字 + 细体小字副标题 */
.nav-menu a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--mo);
  transition: color 0.2s;
  line-height: 1.2;
  padding: 2px 0;
}
.nav-menu .nav-main {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
}
.nav-menu .nav-sub {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.3px;
  color: #9A9285;
  opacity: 0.85;
  white-space: nowrap;
  transition: color 0.2s, opacity 0.2s;
}

/* Hover：仅加深主字颜色（不变色） */
.nav-menu a:hover {
  color: #1A1A2E;
}
.nav-menu a:hover .nav-sub {
  color: #6B6357;
  opacity: 1;
}

/* Active 当前页：主字加粗黑 + 底部金色短下划线（替代蓝色） */
.nav-menu a.active {
  color: #1A1A2E;
  position: relative;
}
.nav-menu a.active .nav-main {
  font-weight: 700;
}
.nav-menu a.active .nav-sub {
  color: #C89B40;
  opacity: 1;
  font-weight: 500;
}
.nav-menu a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: #C89B40;
  border-radius: 1px;
}

/* ⭐ 招牌项（问全盘）—— 视觉突出 + ★ 角标 + 呼吸光晕 */
.nav-item-featured > a .nav-main {
  position: relative;
  color: #1A1A2E;
  font-weight: 600;
}
.nav-item-featured > a .nav-main::before {
  content: '';
  position: absolute;
  inset: -4px -10px;
  background: linear-gradient(90deg, rgba(200,155,64,0.10), rgba(200,155,64,0.18) 50%, rgba(200,155,64,0.10));
  border-radius: 999px;
  z-index: -1;
  opacity: 0.85;
  animation: nav-feat-pulse 2.6s ease-in-out infinite;
}
.nav-item-featured > a:hover .nav-main::before {
  background: linear-gradient(90deg, rgba(200,155,64,0.18), rgba(200,155,64,0.30) 50%, rgba(200,155,64,0.18));
  opacity: 1;
}
.nav-item-featured > a .nav-sub {
  color: #C89B40;
  opacity: 0.95;
  font-weight: 500;
}
.nav-badge-star {
  display: inline-block;
  margin-left: 4px;
  font-size: 10px;
  color: #C89B40;
  transform: translateY(-5px);
  animation: nav-star-twinkle 1.8s ease-in-out infinite;
}
@keyframes nav-feat-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1.00; transform: scale(1.03); }
}
@keyframes nav-star-twinkle {
  0%, 100% { opacity: 0.4; transform: translateY(-5px) scale(1); }
  50%      { opacity: 1.0; transform: translateY(-5px) scale(1.25); }
}
/* Active 状态时，去掉招牌呼吸（避免两个动画打架） */
.nav-item-featured > a.active .nav-main::before {
  animation: none;
  opacity: 0.6;
}

[data-theme="dark"] .nav-item-featured > a .nav-main { color: #EDE8DC; }
[data-theme="dark"] .nav-item-featured > a .nav-main::before {
  background: linear-gradient(90deg, rgba(200,155,64,0.18), rgba(200,155,64,0.32) 50%, rgba(200,155,64,0.18));
}

.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ============ 按钮 ============ */
.btn {
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  letter-spacing: 0.5px;
}

/* 主 CTA：水靛青 */
.btn-primary {
  background: var(--water);
  color: white;
  box-shadow: 0 2px 8px rgba(22, 97, 171, 0.20);
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22, 97, 171, 0.30);
}

/* 次 CTA：玄底白字 / 描边 */
.btn-secondary {
  background: white;
  color: var(--water);
  border: 1.5px solid var(--water);
}

.btn-secondary:hover {
  background: var(--water);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--mo);
  padding: 8px 16px;
}

.btn-ghost:hover {
  color: var(--water);
}

.btn-large {
  padding: 16px 40px;
  font-size: 16px;
}

/* ============ 容器 ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0 60px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Noto Serif SC', "STSong", serif;
  color: var(--xuan);
  line-height: 1.4;
  letter-spacing: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--yinshu);
  font-size: 15px;
  margin-bottom: 48px;
  line-height: 1.8;
}

/* ============ Hero 区 ============ */
.hero {
  position: relative;
  padding: 100px 24px 120px;
  background: linear-gradient(180deg, #EEF3F8 0%, var(--gaosu) 100%);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 5%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(22, 97, 171, 0.10), transparent);
  border-radius: 50%;
  filter: blur(50px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(200, 155, 64, 0.10), transparent);
  border-radius: 50%;
  filter: blur(60px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-mascot {
  width: 180px;
  height: 180px;
  margin: 0 auto 36px;
  position: relative;
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.hero-mascot-circle {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1661AB, #0E4A82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 90px;
  box-shadow: 0 16px 60px rgba(22, 97, 171, 0.30);
  position: relative;
  overflow: hidden;
}

.hero-mascot-circle::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 25%;
  width: 30%;
  height: 30%;
  background: rgba(255, 255, 255, 0.30);
  border-radius: 50%;
  filter: blur(10px);
}

.hero-title {
  font-family: 'Noto Serif SC', "STSong", serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--xuan);
  line-height: 1.3;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 16px;
  color: var(--yinshu);
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 64px;
  display: flex;
  gap: 56px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--yinshu);
  font-size: 13px;
}

.hero-stats strong {
  color: var(--water);
  font-size: 24px;
  font-weight: 700;
  display: block;
  font-family: 'Noto Serif SC', serif;
  margin-bottom: 4px;
}

/* ============ 三大模块卡片 ============ */
.modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.module-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 48px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
}

.module-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--water);
  opacity: 0;
  transition: opacity 0.3s;
}

.module-card:hover::before { opacity: 1; }

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.module-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.module-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--xuan);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.module-desc {
  color: var(--yinshu);
  margin-bottom: 20px;
  font-size: 14px;
}

.module-price {
  font-size: 13px;
  color: var(--earth);
  font-weight: 500;
  margin-bottom: 24px;
}

.module-tags {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  padding: 4px 12px;
  background: var(--gaosu);
  border-radius: 999px;
  color: var(--yinshu);
}

/* ============ 五行能量条 ============ */
.wuxing-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wuxing-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wuxing-bar-label {
  width: 60px;
  font-size: 14px;
  font-weight: 500;
}

.wuxing-bar-track {
  flex: 1;
  height: 10px;
  background: var(--gaosu);
  border-radius: 999px;
  overflow: hidden;
}

.wuxing-bar-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.8s ease;
}

.wuxing-wood  { background: var(--wood); }
.wuxing-fire  { background: var(--fire); }
.wuxing-earth { background: var(--earth); }
.wuxing-metal { background: #B8B0A0; }   /* 铅白底色太浅，进度条用稍深的金属灰 */
.wuxing-water { background: var(--water); }

.wuxing-bar-value {
  width: 40px;
  font-size: 13px;
  color: var(--yinshu);
  text-align: right;
}

/* ============ 卡片通用 ============ */
.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow);
  border: none;
}

.card-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--xuan);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Noto Serif SC', serif;
}

/* ============ 每日水滴 ============ */
.daily-drop {
  background: linear-gradient(135deg, #EEF3F8, var(--gaosu));
  border-radius: var(--radius-md);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.daily-drop::before {
  content: "💧";
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 80px;
  opacity: 0.10;
}

.daily-drop-date {
  color: var(--earth);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.daily-drop-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--xuan);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.daily-drop-content {
  color: var(--mo);
  line-height: 1.9;
  margin-bottom: 24px;
}

/* ============ 家族入口 · 五行五色 ============ */
.family-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.family-card {
  padding: 36px 16px;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s;
  color: white;
  font-weight: 500;
}

.family-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.family-wood  { background: var(--wood); }
.family-fire  { background: var(--fire); }
.family-earth { background: var(--earth); }
.family-metal { background: #888880; color: white; }   /* 铅白底色太浅，金系卡片改用深金属色 */
.family-water { background: var(--water); }

.family-icon {
  font-size: 44px;
  margin-bottom: 12px;
}

.family-name {
  font-size: 18px;
  font-family: 'Noto Serif SC', serif;
  letter-spacing: 2px;
}

.family-count {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 6px;
}

/* ============ 案例库 ============ */
.case-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.case-tab {
  padding: 8px 20px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: var(--mo);
}

.case-tab:hover, .case-tab.active {
  background: var(--xuan);
  color: white;
  border-color: var(--xuan);
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.2s;
}

.case-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.case-question {
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--xuan);
  line-height: 1.6;
  font-family: 'Noto Serif SC', serif;
}

.case-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--yinshu);
}

/* ============ 口碑墙 ============ */
.reviews {
  columns: 3;
  column-gap: 20px;
}

.review-item {
  break-inside: avoid;
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
  border: none;
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--water);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
  font-family: 'Noto Serif SC', serif;
}

.review-name {
  font-weight: 500;
  font-size: 14px;
}

.review-tag {
  font-size: 12px;
  color: var(--yinshu);
}

.review-content {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mo);
}

.review-stars {
  color: var(--earth);
  font-size: 14px;
  margin-top: 12px;
  letter-spacing: 2px;
}

/* ============ Footer ============ */
.footer {
  background: var(--xuan);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 24px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: white;
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: 4px;
}

.footer-col h4 {
  color: white;
  font-size: 13px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 2px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: white;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

/* ============ 表单 ============ */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--mo);
}

.form-input, .form-select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: white;
  font-family: inherit;
  transition: border-color 0.2s;
  line-height: 1.6;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--water);
}

.form-hint {
  font-size: 12px;
  color: var(--yinshu);
  margin-top: 8px;
  line-height: 1.6;
}

/* 时辰选择网格 */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-option {
  padding: 14px 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.time-option:hover {
  border-color: var(--water);
}

.time-option.selected {
  background: var(--water);
  color: white;
  border-color: var(--water);
}

.time-option-name {
  font-size: 14px;
  font-weight: 500;
}

.time-option-range {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 2px;
}

/* 性别选择 */
.gender-options {
  display: flex;
  gap: 12px;
}

.gender-option {
  flex: 1;
  padding: 18px;
  text-align: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: white;
  transition: all 0.2s;
}

.gender-option:hover { border-color: var(--water); }
.gender-option.selected {
  background: var(--water);
  color: white;
  border-color: var(--water);
}

/* ============ 进度条 ============ */
.progress {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 8px;
}

.progress-step {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 999px;
  position: relative;
}

.progress-step.active {
  background: var(--water);
}

.progress-label {
  text-align: center;
  font-size: 13px;
  color: var(--yinshu);
  margin-bottom: 24px;
}

/* ============ 结果页 ============ */
.result-hero {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(180deg, #EEF3F8 0%, var(--gaosu) 100%);
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  position: relative;
}

.result-mascot {
  width: 200px;
  height: 200px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #1661AB, #0E4A82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  box-shadow: 0 16px 60px rgba(22, 97, 171, 0.30);
  position: relative;
  overflow: hidden;
}

.result-mascot::before {
  content: "";
  position: absolute;
  top: 18%;
  left: 22%;
  width: 35%;
  height: 35%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(12px);
}

.result-pillar {
  font-family: 'Noto Serif SC', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--xuan);
  margin-bottom: 8px;
  letter-spacing: 4px;
}

.result-meme {
  display: inline-block;
  background: var(--earth);
  color: white;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: 1px;
}

.trait-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trait-tag {
  background: white;
  border: 1px solid var(--border);
  color: var(--xuan);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 400;
  font-size: 14px;
}

.strength-weakness {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sw-card {
  padding: 28px;
  border-radius: var(--radius-md);
}

.sw-strength {
  background: rgba(120, 146, 98, 0.08);
  border: 1px solid rgba(120, 146, 98, 0.20);
}

.sw-weakness {
  background: rgba(200, 155, 64, 0.08);
  border: 1px solid rgba(200, 155, 64, 0.20);
}

.sw-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
  font-family: 'Noto Serif SC', serif;
}

.sw-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sw-list li {
  font-size: 14px;
  padding-left: 22px;
  position: relative;
  line-height: 1.7;
}

.sw-strength .sw-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--wood);
  font-weight: 700;
}

.sw-weakness .sw-list li::before {
  content: "!";
  position: absolute;
  left: 0;
  color: var(--earth);
  font-weight: 700;
}

.match-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.match-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--gaosu);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.match-item:hover {
  background: white;
  box-shadow: var(--shadow);
}

.match-emoji {
  font-size: 40px;
  margin-bottom: 12px;
}

.match-name {
  font-weight: 500;
  margin-bottom: 6px;
  font-family: 'Noto Serif SC', serif;
}

.match-reason {
  font-size: 12px;
  color: var(--yinshu);
  line-height: 1.6;
}

.cta-card {
  background: rgba(200, 155, 64, 0.06);
  border: 1px solid rgba(200, 155, 64, 0.30);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-content h4 {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--xuan);
  letter-spacing: 1px;
}

.cta-content p {
  color: var(--yinshu);
  font-size: 14px;
}

.cta-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--earth);
  margin-right: 12px;
  font-family: 'Noto Serif SC', serif;
}

/* ============ 套餐选择 ============ */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plan-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.plan-card:hover, .plan-card.selected {
  border-color: var(--water);
  box-shadow: var(--shadow);
}

.plan-card.recommended {
  border-color: var(--earth);
}

.plan-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--earth);
  color: white;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
}

.plan-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  font-family: 'Noto Serif SC', serif;
}

.plan-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--xuan);
  margin-bottom: 6px;
  font-family: 'Noto Serif SC', serif;
}

.plan-price small {
  font-size: 14px;
  color: var(--yinshu);
  font-weight: 400;
}

.plan-desc {
  color: var(--yinshu);
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  font-size: 13px;
}

.plan-features li {
  padding: 8px 0;
  color: var(--mo);
  line-height: 1.6;
}

.plan-features li::before {
  content: "✓ ";
  color: var(--water);
  font-weight: 700;
}

/* ============ 报告 ============ */
.report-toc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.toc-num {
  width: 36px;
  height: 36px;
  background: var(--water);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  flex-shrink: 0;
  font-family: 'Noto Serif SC', serif;
}

.toc-info {
  flex: 1;
}

.toc-title {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 4px;
}

.toc-meta {
  font-size: 12px;
  color: var(--yinshu);
}

.toc-locked {
  color: var(--text-lighter);
  font-size: 18px;
}

.report-preview {
  background: white;
  border-radius: var(--radius-md);
  padding: 40px;
  border: none;
  box-shadow: var(--shadow);
  margin-top: 24px;
  position: relative;
}

.report-preview h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 22px;
  margin-bottom: 18px;
  color: var(--xuan);
  letter-spacing: 1px;
}

.report-preview p {
  margin-bottom: 14px;
  line-height: 1.9;
}

.report-mask {
  position: relative;
  max-height: 300px;
  overflow: hidden;
}

.report-mask::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, white);
}

.unlock-cta {
  text-align: center;
  padding: 56px 24px;
  background: rgba(200, 155, 64, 0.06);
  border-radius: var(--radius-md);
  margin-top: 32px;
  border: 1.5px dashed var(--earth);
}

.unlock-cta h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--xuan);
  letter-spacing: 1px;
}

.unlock-cta p {
  color: var(--yinshu);
  margin-bottom: 28px;
}

/* ============ 个人中心 ============ */
.me-header {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 40px;
  background: linear-gradient(135deg, #EEF3F8, var(--gaosu));
  border-radius: var(--radius-md);
  margin-bottom: 32px;
}

.me-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--water), var(--primary-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 12px 32px rgba(22, 97, 171, 0.25);
}

.me-info h2 {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  color: var(--xuan);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.me-info p {
  color: var(--yinshu);
  font-size: 14px;
}

.me-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.stat-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  border: none;
  box-shadow: var(--shadow);
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--water);
  font-family: 'Noto Serif SC', serif;
}

.stat-label {
  font-size: 13px;
  color: var(--yinshu);
  margin-top: 6px;
}

.me-list {
  background: white;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.me-list-item {
  display: flex;
  align-items: center;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.me-list-item:last-child { border-bottom: none; }
.me-list-item:hover { background: var(--gaosu); }

.me-list-icon {
  width: 40px;
  height: 40px;
  background: var(--gaosu);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-right: 18px;
}

.me-list-content {
  flex: 1;
}

.me-list-title { font-weight: 500; font-size: 15px; }
.me-list-desc { font-size: 13px; color: var(--yinshu); margin-top: 4px; }

.me-list-arrow {
  color: var(--text-lighter);
  font-size: 20px;
}

.subscribe-card {
  background: linear-gradient(135deg, var(--xuan), var(--water));
  color: white;
  border-radius: var(--radius-md);
  padding: 40px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.subscribe-card::before {
  content: "💎";
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 80px;
  opacity: 0.10;
}

.subscribe-card h3 {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.subscribe-features {
  list-style: none;
  margin: 18px 0 24px;
}

.subscribe-features li {
  padding: 5px 0;
  font-size: 14px;
  line-height: 1.7;
}

.subscribe-features li::before {
  content: "✓ ";
  margin-right: 6px;
}

.subscribe-price {
  font-size: 32px;
  font-weight: 700;
  font-family: 'Noto Serif SC', serif;
  margin-bottom: 16px;
}

.btn-white {
  background: white;
  color: var(--xuan);
}

.sub-badge {
  display: inline-block;
  background: var(--earth);
  color: white;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ============ 响应式 ============ */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .modules { grid-template-columns: 1fr; }
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .case-list { grid-template-columns: 1fr; }
  .reviews { columns: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-title { font-size: 32px; letter-spacing: 1px; }
  .strength-weakness { grid-template-columns: 1fr; }
  .match-list { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; }
  .report-toc { grid-template-columns: 1fr; }
  .me-stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0 40px; }
}

/* ============ Demo 内测模式（保留暖橙金视觉，作为副 CTA 系列） ============ */
.demo-banner {
  background: linear-gradient(90deg, rgba(200, 155, 64, 0.12), rgba(200, 155, 64, 0.06), rgba(200, 155, 64, 0.12));
  color: #8B6E2C;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(200, 155, 64, 0.20);
  position: sticky;
  top: 0;
  z-index: 101;
  letter-spacing: 0.5px;
}
.demo-banner strong { color: var(--earth); font-weight: 700; }

.demo-tag {
  display: inline-block;
  background: var(--earth);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 12px;
  margin-left: 8px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

.demo-original-price {
  font-size: 14px;
  color: var(--yinshu);
  text-decoration: line-through;
  margin-left: 8px;
  margin-right: 4px;
  font-weight: 400;
}
