/* ============================================
   易策 YICE - 命理咨询服务网站
   红白色 · 古朴典雅 · 中式传统美学
   ============================================ */

/* 字体通过 enqueue-scripts.php 加载，无需在此导入 */

/* ---- CSS 变量系统 ---- */
:root {
  /* 朱红古典 - 主色 */
  --brown-900: #3C0D12;
  --brown-800: #5A1820;
  --brown-700: #7C2430;
  --brown-600: #982E34;
  --brown-500: #C23333;
  --brown-400: #B0685C;
  --brown-300: #C89488;
  --brown-200: #DDBCB0;
  --brown-100: #EDD6CC;

  /* 暖白 / 宣纸色 */
  --cream-50: #FDFCFA;
  --cream-100: #FAF7F2;
  --cream-200: #F5EDE0;
  --cream-300: #EDE1CE;
  --cream-400: #DDD0B8;

  /* 朱砂红 - 点缀 */
  --cinnabar: #C23333;
  --cinnabar-light: #D84842;

  /* 墨色 */
  --ink: #1C1512;
  --ink-light: #3A302B;

  /* 尺寸 */
  --content-max: 1100px;
  --content-narrow: 720px;
  --article-max: 780px;
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 16px;

  /* 间距 */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
}

/* ---- 基础重置 ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif SC", "Inter", -apple-system, serif;
  background: var(--cream-100);
  color: var(--ink);
  line-height: 1.8;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

/* ---- 主容器 ---- */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

.container-narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

/* ---- 主内容区 ---- */
.site-main {
  width: 100%;
  overflow-x: hidden;
}

/* ---- 防止图片和 iframe 导致溢出 ---- */
img, iframe, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

/* ---- 防止表格导致溢出 ---- */
table {
  max-width: 100%;
}

/* ---- 导航栏 ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-300);
  transition: all 0.3s ease;
}

.navbar-scrolled {
  box-shadow: 0 2px 20px rgba(45, 31, 20, 0.08);
}

.navbar-inner,
.nav-container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.875rem var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo */
.logo,
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}

.logo-symbol,
.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brown-700);
  color: var(--cream-200);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
  font-weight: 700;
  border: 1px solid var(--brown-500);
}

.logo-text,
.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main,
.logo-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--brown-800);
}

.logo-sub,
.logo-subtitle {
  font-size: 0.6rem;
  color: var(--brown-400);
  letter-spacing: 0.15em;
  font-family: "Inter", sans-serif;
}

/* 导航链接 */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--brown-600);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--brown-800);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brown-500);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* 导航下拉菜单 */
.nav-item {
  position: relative;
}

.nav-item.has-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item.has-dropdown > .nav-link svg {
  transition: transform 0.3s;
}

.nav-item.has-dropdown:hover > .nav-link svg {
  transform: rotate(180deg);
}

/* 二级菜单容器 */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 200;
  list-style: none;
  margin: 0;
}

.nav-item:hover > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* 下拉菜单内部 */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--cream-50);
  z-index: 1;
}

.nav-dropdown > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown > li:first-child a {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.nav-dropdown > li:last-child a {
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.nav-dropdown > li:only-child a {
  border-radius: var(--radius-lg);
}

.nav-dropdown-link {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--brown-600);
  text-decoration: none;
  background: var(--cream-50);
  border-bottom: 1px solid var(--cream-200);
  transition: all 0.2s;
  white-space: nowrap;
  min-width: 160px;
  text-align: center;
}

.nav-dropdown li:last-child .nav-dropdown-link {
  border-bottom: none;
}

.nav-dropdown-link:hover {
  background: var(--cream-200);
  color: var(--brown-800);
}

/* 下拉菜单阴影效果 */
.nav-dropdown {
  filter: drop-shadow(0 12px 36px rgba(45, 31, 20, 0.12));
}

/* 导航语言切换器 */
.nav-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.75rem;
}

.yice-lang-btn,
.nav-lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown-600);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.yice-lang-btn:hover,
.nav-lang-btn:hover {
  background: var(--cream-200);
  color: var(--brown-800);
}

.yice-lang-btn.active,
.nav-lang-btn.active {
  background: var(--brown-500);
  color: #fff;
  border-color: var(--brown-500);
}

@media (max-width: 768px) {
  .nav-lang-switcher {
    margin-right: 0.5rem;
    gap: 0.5rem;
  }
  
  .yice-lang-btn,
  .nav-lang-btn {
    min-width: 48px;
    min-height: 48px;
    font-size: 0.875rem;
  }
}

/* 导航 CTA 按钮 */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--brown-500);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.3s;
}

.nav-cta:hover {
  background: var(--brown-600);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

/* 按钮样式 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: "Noto Serif SC", serif;
}

.btn-primary {
  background: var(--brown-700);
  color: var(--cream-100);
}

.btn-primary:hover {
  background: var(--brown-500);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(123, 91, 58, 0.3);
}

.btn-secondary {
  background: var(--cream-200);
  color: var(--brown-700);
  border: 1px solid var(--brown-200);
}

.btn-secondary:hover {
  background: var(--brown-700);
  color: var(--cream-100);
  border-color: var(--brown-700);
}

.btn-outline {
  background: transparent;
  color: var(--brown-700);
  border: 1px solid var(--brown-300);
}

.btn-outline:hover {
  border-color: var(--brown-700);
  background: var(--brown-700);
  color: var(--cream-100);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ---- Hero 区域 ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-800);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(160, 132, 92, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(160, 132, 92, 0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 4rem 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(160, 132, 92, 0.15);
  border: 1px solid rgba(160, 132, 92, 0.35);
  color: var(--brown-300);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  border-radius: var(--radius-sm);
}

.hero-title {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--cream-100);
  line-height: 1.2;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--brown-300);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Hero 玄学风格 ---- */
.hero-mystic {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--brown-900) 0%, #2a1f15 50%, var(--brown-800) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-mystic::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(160, 132, 92, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(139, 58, 58, 0.06) 0%, transparent 40%);
}

.hero-mystic-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2rem var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* 星空背景 */
.starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  display: block;
}

.star {
  position: absolute;
  background: var(--cream-100);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50% { opacity: var(--opacity); transform: scale(1); }
}

.hero-mystic-text {
  color: var(--cream-100);
}

.hero-seal {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--brown-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transform: rotate(3deg);
}

.hero-seal-inner {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cinnabar);
}

.hero-subtitle {
  font-size: 0.8125rem;
  letter-spacing: 0.25em;
  color: var(--brown-300);
  margin-bottom: 0.75rem;
}

.hero-title-mystic {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--cream-100);
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-desc-mystic {
  margin-bottom: 2rem;
}

.hero-desc-mystic p {
  color: var(--brown-200);
  line-height: 1.9;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* 八卦展示 */
.hero-mystic-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 100%;
}

.bagua-showcase {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  flex-shrink: 0;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.taichi {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--brown-900) 50%, var(--cream-200) 50%);
  animation: slowSpin 60s linear infinite;
  box-shadow: 0 0 60px rgba(160, 132, 92, 0.35);
}

.taichi::before, .taichi::after {
  content: '';
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.taichi::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brown-900);
  box-shadow: inset 0 0 0 21px var(--cream-200);
}

.taichi::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream-200);
  box-shadow: inset 0 0 0 21px var(--brown-900);
}

.bagua-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: slowSpin 90s linear infinite;
}

.bagua-symbol {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.bagua-symbol .yang {
  width: 34px;
  height: 3px;
  background: var(--cream-200);
  border-radius: 1px;
}

.bagua-symbol .yin {
  display: flex;
  gap: 7px;
}

.bagua-symbol .yin span {
  width: 13px;
  height: 3px;
  background: var(--cream-200);
  border-radius: 1px;
}

.bagua-symbol.top { top: 67px; left: 50%; transform: translateX(-50%); }
.bagua-symbol.top-right { top: 97px; right: 97px; transform: rotate(45deg); }
.bagua-symbol.right { top: 50%; right: 67px; transform: translateY(-50%) rotate(90deg); }
.bagua-symbol.bottom-right { bottom: 97px; right: 97px; transform: rotate(135deg); }
.bagua-symbol.bottom { bottom: 67px; left: 50%; transform: translateX(-50%) rotate(180deg); }
.bagua-symbol.bottom-left { bottom: 97px; left: 97px; transform: rotate(225deg); }
.bagua-symbol.left { top: 50%; left: 67px; transform: translateY(-50%) rotate(270deg); }
.bagua-symbol.top-left { top: 97px; left: 97px; transform: rotate(315deg); }

.text-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: textRingRotate 45s linear infinite reverse;
  overflow: visible;
  pointer-events: none;
}

@keyframes textRingRotate {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.text-ring-label {
  position: absolute;
  font-size: 0.85rem;
  color: var(--brown-400);
  letter-spacing: 0.25em;
  font-family: "Noto Serif SC", serif;
  opacity: 0.45;
  white-space: nowrap;
}

.text-ring-label.top { top: 0; left: 50%; transform: translateX(-50%); }
.text-ring-label.right { right: 0; top: 50%; transform: translateY(-50%); }
.text-ring-label.bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.text-ring-label.left { left: 0; top: 50%; transform: translateY(-50%); }
.text-ring-label.top-right { top: 50px; right: 50px; }
.text-ring-label.bottom-right { bottom: 50px; right: 50px; }
.text-ring-label.bottom-left { bottom: 50px; left: 50px; }
.text-ring-label.top-left { top: 50px; left: 50px; }

/* ---- 分隔线 - 古朴 ---- */
.divider-mystic {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown-200), transparent);
}

.divider-symbol {
  width: 2rem;
  height: 2rem;
  color: var(--brown-400);
}

.divider-symbol svg {
  width: 100%;
  height: 100%;
}

/* ---- Section ---- */
.section {
  padding: var(--spacing-3xl) 0;
}

.section-alt {
  background: var(--cream-200);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brown-400);
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.section-title {
  font-family: "Noto Serif SC", serif;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--brown-800);
}

.section-desc {
  font-size: 1rem;
  color: var(--brown-500);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ---- 大师介绍区 ---- */
.master-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-50);
}

.master-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 4rem;
  align-items: center;
}

.master-portrait {
  display: flex;
  justify-content: center;
}

.master-portrait-frame {
  position: relative;
  width: 260px;
  height: 320px;
}

.master-portrait-deco {
  position: absolute;
  inset: -8px;
  border: 1px solid var(--brown-200);
  border-radius: var(--radius-md);
}

.master-portrait-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, var(--cream-300), var(--cream-200));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brown-100);
}

.master-portrait-character {
  font-family: "Noto Serif SC", serif;
  font-size: 6rem;
  color: var(--brown-300);
  font-weight: 700;
}

.master-content-badge {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brown-400);
  font-family: "Inter", sans-serif;
}

.master-title {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-800);
  margin: 0.5rem 0 0.25rem;
}

.master-subtitle {
  color: var(--brown-500);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.master-bio p {
  color: var(--brown-600);
  line-height: 1.9;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.master-achievements {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.master-achievement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-300);
}

.achievement-icon {
  width: 2rem;
  height: 2rem;
  color: var(--brown-500);
  flex-shrink: 0;
}

.achievement-icon svg {
  width: 100%;
  height: 100%;
}

.achievement-label {
  font-size: 0.75rem;
  color: var(--brown-400);
}

.achievement-value {
  font-family: "Noto Serif SC", serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown-800);
}

/* ---- 服务网格 ---- */
.services-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-200);
}

.services-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.services-header-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brown-400);
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.services-header-title {
  font-family: "Noto Serif SC", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
}

.services-header-desc {
  font-size: 1rem;
  color: var(--brown-500);
  max-width: 580px;
  margin: 0 auto;
}

.services-grid-mystic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card-mystic {
  background: var(--cream-50);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
}

.service-card-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brown-400), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card-mystic:hover .service-card-glow {
  opacity: 1;
}

.service-card-mystic:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(45, 31, 20, 0.1);
  border-color: var(--brown-300);
}

.service-icon-mystic {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--brown-600);
  border: 1px solid var(--cream-300);
}

.service-icon-mystic svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-title-mystic,
.service-name-mystic {
  font-family: "Noto Serif SC", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.service-en-mystic {
  font-size: 0.7rem;
  color: var(--brown-400);
  letter-spacing: 0.15em;
  font-family: "Inter", sans-serif;
  margin-bottom: 0.75rem;
}

.service-desc-mystic {
  font-size: 0.8125rem;
  color: var(--brown-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-link-mystic {
  font-size: 0.8125rem;
  color: var(--brown-500);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: color 0.3s ease;
}

.service-link-mystic:hover {
  color: var(--cinnabar);
}

.service-link-mystic svg {
  transition: transform 0.3s ease;
}

.service-link-mystic:hover svg {
  transform: translateX(3px);
}

/* ---- 首页标准版 - 区块头部 ---- */
.services-mystic {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-200);
}

.section-header-mystic {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-label-mystic {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brown-400);
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.section-title-mystic {
  font-family: "Noto Serif SC", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
}

.section-desc-mystic {
  font-size: 1rem;
  color: var(--brown-500);
  max-width: 580px;
  margin: 0 auto;
}

/* ---- 首页标准版 - 文章区 ---- */
.articles-mystic {
  padding: var(--spacing-3xl) 0;
  background: var(--brown-800);
}

.articles-mystic .section-header-mystic {
  color: var(--cream-100);
}

.articles-mystic .section-label-mystic {
  color: var(--brown-300);
}

.articles-mystic .section-title-mystic {
  color: var(--cream-100);
}

.articles-mystic .section-desc-mystic {
  color: var(--brown-200);
}

.articles-grid-mystic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card-mystic {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  display: block;
}

.article-card-mystic:hover {
  box-shadow: 0 8px 25px rgba(45, 31, 20, 0.15);
  transform: translateY(-3px);
}

.article-img-mystic {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-200));
}

.article-img-mystic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body-mystic {
  padding: 1.25rem;
}

.article-meta-mystic {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--brown-400);
  margin-bottom: 0.5rem;
}

.article-cat-mystic {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: rgba(123, 91, 58, 0.1);
  color: var(--brown-500);
  font-size: 0.6875rem;
  border-radius: var(--radius-sm);
}

.article-title-mystic {
  font-family: "Noto Serif SC", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.article-excerpt-mystic {
  font-size: 0.8125rem;
  color: var(--brown-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- 首页标准版 - CTA ---- */
.cta-mystic {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(160deg, #0d0a07 0%, var(--brown-900) 50%, #1a130d 100%);
  text-align: center;
  color: var(--cream-100);
}

.cta-content-mystic {
  max-width: 640px;
  margin: 0 auto;
}

.cta-mystic .section-label-mystic {
  color: var(--brown-300);
}

.cta-title-mystic {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--cream-100);
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.cta-desc-mystic {
  font-size: 1rem;
  color: var(--brown-200);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.cta-buttons-mystic {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-extra-content {
  padding: var(--spacing-2xl) 0;
  background: var(--cream-100);
}

/* ---- 易学理念 ---- */
.philosophy-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-200);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.philosophy-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.philosophy-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-500);
}

.philosophy-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.philosophy-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.philosophy-desc {
  font-size: 0.8125rem;
  color: var(--brown-500);
  line-height: 1.7;
}

/* ---- 对比区 ---- */
.comparison-section {
  padding: var(--spacing-3xl) 0;
  background: var(--brown-800);
  position: relative;
  overflow: hidden;
}

.comparison-bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(160, 132, 92, 0.06) 0%, transparent 60%);
}

.comparison-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  position: relative;
}

.comparison-header-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brown-300);
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.comparison-header-title {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 0.75rem;
}

.comparison-header-desc {
  font-size: 1rem;
  color: var(--brown-300);
  max-width: 560px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
}

.comparison-card {
  background: rgba(250, 247, 242, 0.05);
  border: 1px solid rgba(160, 132, 92, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.comparison-card.featured {
  background: rgba(160, 132, 92, 0.12);
  border-color: var(--brown-400);
  transform: scale(1.03);
}

.comparison-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--brown-300);
}

.comparison-icon svg {
  width: 100%;
  height: 100%;
}

.comparison-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream-100);
  margin-bottom: 0.25rem;
}

.comparison-subtitle {
  font-size: 0.8125rem;
  color: var(--brown-300);
  margin-bottom: 1rem;
}

.comparison-price-value {
  font-family: "Noto Serif SC", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brown-200);
  display: block;
  margin-bottom: 1rem;
}

.comparison-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.comparison-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--brown-200);
  border-bottom: 1px solid rgba(160, 132, 92, 0.1);
}

.comparison-feature-item svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.comparison-feature-item svg.check {
  color: var(--brown-300);
}

.comparison-feature-item svg.cross {
  color: var(--brown-600);
}

.comparison-cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  letter-spacing: 0.08em;
  font-family: "Noto Serif SC", serif;
}

.comparison-cta.primary {
  background: var(--brown-500);
  color: var(--cream-100);
}

.comparison-cta.primary:hover {
  background: var(--brown-400);
}

.comparison-cta.secondary {
  background: transparent;
  color: var(--brown-200);
  border: 1px solid rgba(160, 132, 92, 0.3);
}

.comparison-cta.secondary:hover {
  background: rgba(160, 132, 92, 0.15);
}

/* ---- 文章区 ---- */
.articles-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-100);
}

.articles-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.articles-header-seal {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--brown-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.articles-header-seal-inner {
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  color: var(--cinnabar);
  font-weight: 700;
}

.articles-header-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--brown-400);
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.articles-header-title {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
}

.articles-header-desc {
  color: var(--brown-500);
  max-width: 500px;
  margin: 0 auto 1rem;
}

.articles-header-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--brown-500);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.articles-header-link:hover {
  color: var(--cinnabar);
}

.articles-featured-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.featured-article-main {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.featured-article-main:hover {
  box-shadow: 0 8px 30px rgba(45, 31, 20, 0.1);
  border-color: var(--brown-200);
}

.featured-article-image {
  height: 220px;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-200));
  position: relative;
}

.featured-article-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.375rem 0.875rem;
  background: var(--cinnabar);
  color: var(--cream-100);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
}

.featured-article-content {
  padding: 1.5rem;
}

.featured-article-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(123, 91, 58, 0.1);
  color: var(--brown-500);
  font-size: 0.75rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.featured-article-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.featured-article-excerpt {
  font-size: 0.875rem;
  color: var(--brown-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.featured-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-article-date {
  font-size: 0.8125rem;
  color: var(--brown-400);
}

.featured-article-link {
  font-size: 0.8125rem;
  color: var(--brown-500);
  font-weight: 500;
}

.featured-articles-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-article-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.25rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.featured-article-item:hover {
  border-color: var(--brown-200);
  box-shadow: 0 4px 15px rgba(45, 31, 20, 0.08);
}

.featured-article-item .item-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: rgba(123, 91, 58, 0.1);
  color: var(--brown-500);
  font-size: 0.6875rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.featured-article-item .item-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.375rem;
  line-height: 1.4;
}

.featured-article-item .item-excerpt {
  font-size: 0.8125rem;
  color: var(--brown-500);
  line-height: 1.6;
  margin-bottom: 0.375rem;
}

.featured-article-item .item-date {
  font-size: 0.75rem;
  color: var(--brown-400);
}

/* 更多文章 */
.more-articles {
  margin-top: 2.5rem;
}

.more-articles-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.more-articles-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.more-article-card {
  flex: 0 0 200px;
  text-decoration: none;
  color: inherit;
}

.more-article-image {
  height: 100px;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-200));
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
}

.more-article-tag {
  display: inline-block;
  font-size: 0.6875rem;
  color: var(--brown-400);
  margin-bottom: 0.375rem;
}

.more-article-title {
  font-family: "Noto Serif SC", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brown-700);
  line-height: 1.4;
}

/* ---- 底部CTA ---- */
.footer-cta-section {
  position: relative;
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(160deg, var(--brown-900), var(--brown-800));
  text-align: center;
  overflow: hidden;
}

.footer-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(160, 132, 92, 0.1) 0%, transparent 60%);
}

.footer-cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer-cta-seal {
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid var(--brown-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.footer-cta-seal-inner {
  font-family: "Noto Serif SC", serif;
  font-size: 1.75rem;
  color: var(--cinnabar);
  font-weight: 700;
}

.footer-cta-title {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream-100);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-cta-desc {
  color: var(--brown-200);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-cta-buttons .btn-primary {
  background: var(--brown-500);
}

.footer-cta-buttons .btn-primary:hover {
  background: var(--brown-400);
}

.footer-cta-buttons .btn-outline {
  border-color: rgba(160, 132, 92, 0.4);
  color: var(--brown-200);
}

.footer-cta-buttons .btn-outline:hover {
  background: rgba(160, 132, 92, 0.15);
  border-color: var(--brown-300);
}

/* ---- 页脚 ---- */
.footer {
  background: var(--brown-900);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream-100);
}

.footer-logo .logo-icon {
  background: var(--brown-600);
  border-color: var(--brown-400);
}

.footer-logo .logo-name {
  color: var(--cream-100);
}

.footer-logo .logo-subtitle {
  color: var(--brown-400);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact svg {
  flex-shrink: 0;
  color: var(--brown-400);
}

.footer-contact span {
  font-size: 0.875rem;
  color: var(--brown-400);
}

.footer-legal-links {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(160, 132, 92, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand .logo-symbol {
  background: var(--brown-500);
  color: var(--cream-100);
  border-color: var(--brown-400);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--brown-400);
  line-height: 1.8;
  max-width: 280px;
}

.footer-title {
  font-family: "Noto Serif SC", serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cream-200);
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--brown-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--brown-200);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--brown-400);
  margin-bottom: 0.875rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(160, 132, 92, 0.15);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--brown-600);
  letter-spacing: 0.05em;
}

/* ---- 面包屑 ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--spacing-md) 0;
  font-size: 0.875rem;
  color: var(--brown-400);
}

.breadcrumb a {
  color: var(--brown-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: var(--brown-600);
}

.breadcrumb-separator {
  color: var(--brown-200);
}

/* ---- 移动端菜单 ---- */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 64px;
  height: 48px;
  background: var(--cream-100);
  border: 1px solid var(--brown-300);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px 8px;
  gap: 3px;
}

.mobile-menu-btn span:not(.menu-text) {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--brown-700);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.mobile-menu-btn .menu-text {
  display: block;
  font-size: 0.65rem;
  color: var(--brown-700);
  margin-top: 2px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}

.mobile-menu-btn:hover {
  background: var(--cream-200);
  border-color: var(--brown-500);
}

.mobile-menu-btn:hover span:not(.menu-text) {
  background-color: var(--brown-900);
}

.mobile-menu-btn:hover .menu-text {
  color: var(--brown-900);
}

/* 菜单按钮激活状态 */
.mobile-menu-btn.active {
  background: var(--brown-500);
  border-color: var(--brown-500);
}

.mobile-menu-btn.active span:not(.menu-text) {
  background-color: #fff;
}

.mobile-menu-btn.active .menu-text {
  color: #fff;
}

/* 移动端菜单遮罩 */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 31, 20, 0.5);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 380px;
  background: var(--cream-100);
  z-index: 200;
  overflow-y: auto;
  flex-direction: column;
  box-shadow: -4px 0 20px rgba(45, 31, 20, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem var(--spacing-md);
  border-bottom: 1px solid var(--cream-300);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--cream-200);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--brown-700);
  padding: 0;
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  background: var(--brown-200);
  color: var(--brown-900);
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-links {
  flex: 1;
  padding: 1rem var(--spacing-md);
}

.mobile-menu-links li {
  list-style: none;
}

.mobile-menu-links a {
  display: block;
  padding: 1rem 0.5rem;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--brown-800);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-300);
  font-family: "Noto Serif SC", serif;
  line-height: 1.5;
  transition: all 0.2s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a:focus {
  color: var(--brown-900);
  background: var(--cream-200);
  padding-left: 0.75rem;
}

/* 移动端下拉菜单 */
.mobile-menu-links .sub-menu,
.mobile-menu-links .nav-dropdown {
  display: none;
  padding-left: 1rem;
  border-left: 2px solid var(--cream-300);
  margin: 0.5rem 0;
}

.mobile-menu-links .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-links .menu-item-has-children > a::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown-600);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-200);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.mobile-menu-links .menu-item-has-children.expanded > a::after {
  content: '−';
  background: var(--brown-300);
  color: var(--brown-900);
}

.mobile-menu-links .menu-item-has-children > a:hover::after {
  background: var(--brown-300);
  color: var(--brown-900);
}

.mobile-menu-links .menu-item-has-children.expanded > .sub-menu,
.mobile-menu-links .menu-item-has-children.expanded > .nav-dropdown {
  display: block;
}

.mobile-menu-links .sub-menu a,
.mobile-menu-links .nav-dropdown a {
  font-size: 0.9375rem;
  padding: 0.875rem 0;
  color: var(--brown-600);
  border-bottom: none;
}

.mobile-menu-links .sub-menu a:hover,
.mobile-menu-links .nav-dropdown a:hover {
  color: var(--brown-800);
}

.mobile-menu-links .sub-menu li:last-child a,
.mobile-menu-links .nav-dropdown li:last-child a {
  border-bottom: 1px solid var(--cream-200);
}

.mobile-menu-footer {
  padding: 1.5rem var(--spacing-md);
  border-top: 1px solid var(--cream-300);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-cta-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  background: var(--brown-600);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all 0.3s;
  min-height: 48px;
  line-height: 1.5;
}

.mobile-cta-btn:hover {
  background: var(--brown-700);
  transform: translateY(-1px);
}

.mobile-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  color: var(--brown-700);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--brown-300);
  border-radius: var(--radius-md);
  transition: all 0.3s;
  min-height: 48px;
}

.mobile-phone-link:hover {
  border-color: var(--brown-500);
  background: var(--cream-200);
  color: var(--brown-900);
}

.mobile-phone-link svg {
  width: 16px;
  height: 16px;
}

.mobile-menu-inner {
  padding: 1.5rem var(--spacing-md);
}

.mobile-menu-link {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  color: var(--brown-700);
  text-decoration: none;
  border-bottom: 1px solid var(--cream-200);
  font-family: "Noto Serif SC", serif;
}

/* ---- 页面头部 ---- */
.page-hero {
  background: linear-gradient(160deg, var(--brown-800), var(--brown-700));
  padding: 8rem 0 4rem;
  color: var(--cream-100);
}

.page-hero .breadcrumb {
  color: var(--brown-300);
  margin-bottom: 1.5rem;
}

.page-hero .breadcrumb a {
  color: var(--brown-300);
}

.page-hero .breadcrumb a:hover {
  color: var(--cream-200);
}

.page-title {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: var(--brown-200);
  max-width: 600px;
}

/* ---- 返回顶部 ---- */
/* ---- 浮动联系按钮 ---- */
.floating-contact {
  position: fixed;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.floating-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.floating-contact.active .floating-buttons {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.floating-btn svg {
  width: 20px;
  height: 20px;
}

.floating-btn-phone {
  background: var(--brown-500);
}

.floating-btn-booking {
  background: var(--cinnabar);
}

.floating-btn-wechat {
  background: #07c160;
}

.floating-main-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brown-800);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: background 0.3s, transform 0.2s;
}

.floating-main-btn:hover {
  background: var(--brown-700);
  transform: scale(1.05);
}

.floating-main-btn .icon-close {
  display: none;
}

.floating-contact.active .floating-main-btn .icon-chat {
  display: none;
}

.floating-contact.active .floating-main-btn .icon-close {
  display: block;
}

.floating-main-btn svg {
  width: 24px;
  height: 24px;
}

.floating-main-btn .icon-chat,
.floating-main-btn .icon-close {
  width: 24px;
  height: 24px;
}

/* 微信二维码弹出 */
.wechat-qr-popup {
  display: none;
  position: absolute;
  right: 60px;
  bottom: 0;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  text-align: center;
  white-space: nowrap;
}

.floating-btn-wechat:hover .wechat-qr-popup {
  display: block;
}

.wechat-qr-popup img {
  width: 140px;
  height: 140px;
  display: block;
  margin-bottom: 0.5rem;
}

.wechat-qr-popup span {
  font-size: 0.75rem;
  color: var(--brown-500);
}

/* ---- 回到顶部 ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2.5rem;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--brown-700);
  color: var(--cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 90;
  border: 1px solid var(--brown-500);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--brown-500);
}

.back-to-top svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---- 悬浮客服 ---- */
.float-contact {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  z-index: 90;
}

.float-contact-menu {
  position: absolute;
  bottom: 4rem;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.float-contact.active .float-contact-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream-50);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--brown-700);
  box-shadow: 0 4px 20px rgba(45, 31, 20, 0.15);
  white-space: nowrap;
  border: 1px solid var(--cream-300);
}

.float-contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-contact-icon.phone {
  background: rgba(123, 91, 58, 0.1);
  color: var(--brown-500);
}

.float-contact-icon.booking {
  background: rgba(139, 58, 58, 0.1);
  color: var(--cinnabar);
}

.float-contact-icon.wechat {
  background: rgba(58, 139, 76, 0.1);
  color: #3a8b4c;
}

.float-contact-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: var(--cream-50);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(45, 31, 20, 0.15);
  border: 1px solid var(--cream-300);
  text-decoration: none;
  color: var(--brown-700);
}

.float-contact-qr img {
  width: 140px;
  height: 140px;
  border-radius: 6px;
  border: 1px solid var(--cream-300);
}

.float-contact-qr-text {
  font-size: 0.75rem;
  color: var(--brown-500);
  text-align: center;
}

/* 微信二维码悬浮弹出 */
.float-contact-wechat {
  position: relative;
}

.float-contact-qr-popup {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(45, 31, 20, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.float-contact-wechat:hover .float-contact-qr-popup {
  opacity: 1;
  visibility: visible;
}

.float-contact-qr-popup::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--cream-50);
}

.float-contact-qr-popup img {
  width: 140px;
  height: 140px;
  border-radius: 8px;
  display: block;
}

.float-contact-qr-popup .qr-text {
  text-align: center;
  font-size: 0.75rem;
  color: var(--brown-400);
  margin-top: 8px;
}

.float-contact-icon svg {
  width: 1rem;
  height: 1rem;
}

.float-contact-text {
  font-size: 0.8125rem;
  font-weight: 500;
}

.float-contact-label {
  font-size: 0.6875rem;
  color: var(--brown-400);
}

.float-contact-main {
  width: 3rem;
  height: 3rem;
  background: var(--brown-700);
  color: var(--cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(45, 31, 20, 0.25);
  border: 1px solid var(--brown-500);
  transition: all 0.3s ease;
}

.float-contact-main:hover {
  background: var(--brown-500);
}

.float-contact-main svg {
  width: 1.25rem;
  height: 1.25rem;
}

.float-contact-tooltip {
  display: none;
}

/* ---- 起名页面 ---- */
.naming-hero {
  background: linear-gradient(160deg, var(--brown-800) 0%, var(--brown-700) 100%);
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.ink-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(160, 132, 92, 0.08) 0%, transparent 50%);
}

.naming-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.naming-hero-text { color: var(--cream-100); }

.naming-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border: 1px solid rgba(160, 132, 92, 0.35);
  color: var(--brown-300);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
}

.naming-hero-title {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.naming-hero-desc {
  color: var(--brown-200);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.naming-stats {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.naming-stat-value {
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-300);
}

.naming-stat-label {
  font-size: 0.75rem;
  color: var(--brown-400);
}

.name-showcase {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(160, 132, 92, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  backdrop-filter: blur(5px);
}

.name-showcase-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(160, 132, 92, 0.15);
}

.name-showcase-title {
  font-size: 0.75rem;
  color: var(--brown-300);
  letter-spacing: 0.1em;
}

.name-characters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.name-char-box {
  width: 5rem;
  height: 5rem;
  border: 1px solid var(--brown-400);
  display: flex;
  align-items: center;
  justify-content: center;
}

.name-char {
  font-family: "Noto Serif SC", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cream-200);
}

.name-analysis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.analysis-item {
  text-align: center;
}

.analysis-label {
  font-size: 0.6875rem;
  color: var(--brown-400);
  margin-bottom: 0.25rem;
}

.analysis-value {
  font-size: 0.8125rem;
  color: var(--cream-200);
  font-weight: 500;
}

/* 起名原则 */
.principles-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-100);
}

.principles-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.principles-header h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.principles-header p {
  color: var(--brown-500);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.principle-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.principle-card:hover {
  border-color: var(--brown-200);
  box-shadow: 0 6px 20px rgba(45, 31, 20, 0.08);
}

.principle-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--brown-500);
}

.principle-icon svg {
  width: 100%;
  height: 100%;
}

.principle-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.principle-desc {
  font-size: 0.8125rem;
  color: var(--brown-500);
  line-height: 1.6;
}

/* 服务类型 */
.service-types-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-200);
}

.service-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-type-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-type-card:hover {
  box-shadow: 0 8px 25px rgba(45, 31, 20, 0.1);
}

.service-type-header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--cream-300);
}

.service-type-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-600);
}

.service-type-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-type-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--brown-800);
}

.service-type-content {
  padding: 1.5rem;
}

.service-type-content p {
  font-size: 0.875rem;
  color: var(--brown-500);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--brown-600);
}

.service-features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--brown-500);
  flex-shrink: 0;
}

/* 案例 */
.examples-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-100);
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.example-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.example-card:hover {
  border-color: var(--brown-200);
}

.example-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(123, 91, 58, 0.1);
  color: var(--brown-500);
  font-size: 0.6875rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.example-name {
  font-family: "Noto Serif SC", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown-800);
  letter-spacing: 0.2em;
  margin-bottom: 0.25rem;
}

.example-pinyin {
  font-size: 0.8125rem;
  color: var(--brown-400);
  font-family: "Inter", sans-serif;
  margin-bottom: 0.75rem;
}

.example-meaning {
  font-size: 0.875rem;
  color: var(--brown-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.example-analysis {
  display: flex;
  gap: 1rem;
}

.example-analysis-item {
  font-size: 0.8125rem;
  color: var(--brown-500);
}

/* 流程 */
.process-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-200);
}

.process-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.process-header h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.process-header p {
  color: var(--brown-500);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.process-step-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
}

.step-number-circle {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--brown-700);
  color: var(--cream-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
}

.step-title-text {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.375rem;
}

.step-desc-text {
  font-size: 0.8125rem;
  color: var(--brown-500);
  line-height: 1.6;
}

/* FAQ */
.faq-section {
  padding: var(--spacing-3xl) 0;
  background: var(--cream-100);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.faq-header h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.faq-header p {
  color: var(--brown-500);
}

.faq-content {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cream-300);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
}

.faq-question span {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brown-800);
}

.faq-question svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brown-400);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 0.9375rem;
  color: var(--brown-600);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* ---- CTA 区域 ---- */
.cta-section {
  background: var(--cream-200);
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.cta-title {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-800);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1rem;
  color: var(--brown-500);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- 404 ---- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
}

.error-content {
  text-align: center;
  padding: 2rem;
}

.error-code {
  font-family: "Noto Serif SC", serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--brown-800);
  line-height: 1;
}

.error-code span {
  color: var(--cinnabar);
}

/* ---- 工具类 ---- */
.text-center { text-align: center; }

.w-4 { width: 1rem; }
.w-6 { width: 1.5rem; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }

/* ---- 响应式 ---- */
@media (max-width: 1024px) {
  .services-grid-mystic {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .articles-grid-mystic {
    grid-template-columns: repeat(2, 1fr);
  }

  .master-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .comparison-card.featured {
    transform: none;
  }

  .hero-mystic-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .naming-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .articles-featured-layout {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-types-grid {
    grid-template-columns: 1fr;
  }

  .examples-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }
  
  /* 平板设备浮动按钮调整 */
  .floating-contact {
    right: 1.25rem;
  }
  
  .back-to-top {
    right: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
  }
}

/* 小屏幕菜单适配 */
@media (max-width: 480px) {
  .mobile-menu {
    max-width: 100%;
    width: 100%;
  }
  
  .mobile-menu-header {
    padding: 0.75rem 1rem;
  }
  
  .mobile-menu-links {
    padding: 0.5rem 1rem;
  }
  
  .mobile-menu-links a {
    padding: 1.125rem 0;
    font-size: 1.125rem;
  }
  
  .mobile-menu-footer {
    padding: 1rem;
  }
  
  .mobile-cta-btn,
  .mobile-phone-link {
    min-height: 52px;
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .services-grid-mystic {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid-mystic {
    grid-template-columns: 1fr;
  }

  .cta-buttons-mystic {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta, .hero-buttons {
    flex-direction: column;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .principles-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .master-achievements {
    grid-template-columns: 1fr;
  }
}

  /* 移动端浮动按钮适配 */
  .floating-contact {
    right: 1rem;
  }
  
  .floating-main-btn {
    width: 48px;
    height: 48px;
  }
  
  .back-to-top {
    right: 1rem;
    bottom: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }

  .bagua-showcase {
    width: 280px;
    height: 280px;
  }

  .taichi {
    width: 100px;
    height: 100px;
  }

  .taichi::before, .taichi::after {
    width: 50px;
    height: 50px;
  }

  .taichi::before {
    box-shadow: inset 0 0 0 14px var(--cream-200);
  }

  .taichi::after {
    box-shadow: inset 0 0 0 14px var(--brown-900);
  }

  .bagua-symbol .yang {
    width: 24px;
    height: 2px;
  }

  .bagua-symbol .yin span {
    width: 9px;
    height: 2px;
  }

  .bagua-symbol .yin {
    gap: 5px;
  }

  .bagua-symbol.top { top: 45px; }
  .bagua-symbol.top-right { top: 65px; right: 65px; }
  .bagua-symbol.right { right: 45px; }
  .bagua-symbol.bottom-right { bottom: 65px; right: 65px; }
  .bagua-symbol.bottom { bottom: 45px; }
  .bagua-symbol.bottom-left { bottom: 65px; left: 65px; }
  .bagua-symbol.left { left: 45px; }
  .bagua-symbol.top-left { top: 65px; left: 65px; }

  .text-ring-label.top-right { top: 25px; right: 25px; }
  .text-ring-label.bottom-right { bottom: 25px; right: 25px; }
  .text-ring-label.bottom-left { bottom: 25px; left: 25px; }
  .text-ring-label.top-left { top: 25px; left: 25px; }
}

/* ---- 滚动条 ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream-200);
}

::-webkit-scrollbar-thumb {
  background: var(--brown-300);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brown-400);
}

::selection {
  background: var(--brown-500);
  color: var(--cream-100);
}

[v-cloak] { display: none; }

/* ---- 按钮变体 ---- */
.btn-primary.light {
  background: var(--cream-100);
  color: var(--brown-700);
}

.btn-primary.light:hover {
  background: var(--brown-500);
  color: var(--cream-100);
}

.btn-secondary.light {
  background: transparent;
  color: var(--cream-200);
  border-color: rgba(160, 132, 92, 0.3);
}

.btn-secondary.light:hover {
  background: var(--cream-100);
  color: var(--brown-700);
}

.btn-primary.small,
.btn-secondary.small {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
}

/* ---- 表单样式 ---- */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.375rem;
  color: var(--brown-700);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.3s ease;
  background: var(--cream-50);
  font-family: "Noto Serif SC", serif;
  color: var(--brown-800);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brown-400);
}

.form-group textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.required {
  color: var(--cinnabar);
}

/* ---- 关于页面 ---- */
.about-hero {
  background: linear-gradient(160deg, var(--brown-900), var(--brown-800));
  padding: 8rem 0 5rem;
  color: var(--cream-100);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(160, 132, 92, 0.1) 0%, transparent 50%);
}

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

.about-hero h1 {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.125rem;
  color: var(--brown-200);
  line-height: 1.8;
}

.about-section {
  padding: 5rem 0;
}

.about-section.alt {
  background: var(--cream-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--brown-800);
}

.about-content p {
  font-size: 1rem;
  color: var(--brown-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-visual {
  background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
  border-radius: var(--radius-lg);
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-300);
}

.about-visual-text {
  font-family: "Noto Serif SC", serif;
  font-size: 8rem;
  color: var(--brown-200);
  font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
}

.value-number {
  font-family: "Noto Serif SC", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brown-500);
  margin-bottom: 0.5rem;
}

.value-label {
  font-size: 0.9375rem;
  color: var(--brown-500);
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brown-400);
}

.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background: var(--brown-500);
  border-radius: 50%;
  border: 2px solid var(--cream-100);
  box-shadow: 0 0 0 2px var(--brown-400);
}

.timeline-year {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-500);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.375rem;
}

.timeline-content p {
  font-size: 0.9375rem;
  color: var(--brown-500);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.team-card:hover {
  border-color: var(--brown-200);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 31, 20, 0.08);
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif SC", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown-500);
  border: 2px solid var(--cream-400);
}

.team-name {
  font-family: "Noto Serif SC", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--brown-800);
}

.team-title {
  font-size: 0.8125rem;
  color: var(--brown-500);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.8125rem;
  color: var(--brown-400);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- 页面内容盒子 ---- */
.page-section {
  padding: var(--spacing-2xl) 0;
}

.page-box {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.page-header h1 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--brown-500);
  margin-bottom: 2rem;
}

.page-content {
  color: var(--brown-600);
  line-height: 1.9;
}

.page-content h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content ul, .page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.page-content li {
  margin-bottom: 0.5rem;
}

/* ---- 预约表单 ---- */
.booking-section {
  padding: var(--spacing-2xl) 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.form-card {
  background: var(--cream-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
}

.form-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--brown-500);
  margin-bottom: 1.5rem;
}

.info-card {
  background: var(--cream-50);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
  margin-bottom: 1rem;
}

.info-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-300);
}

/* ---- 文章列表 & 详情 ---- */
.article-list-section {
  padding: var(--spacing-2xl) 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.article-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.article-card:hover {
  box-shadow: 0 8px 25px rgba(45, 31, 20, 0.1);
  border-color: var(--brown-200);
}

.article-image {
  height: 160px;
  background: linear-gradient(135deg, var(--cream-300), var(--cream-200));
}

.article-content {
  padding: 1.25rem;
}

.article-tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  background: rgba(123, 91, 58, 0.1);
  color: var(--brown-500);
  font-size: 0.6875rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
}

.article-title {
  font-family: "Noto Serif SC", serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.article-excerpt {
  font-size: 0.8125rem;
  color: var(--brown-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .booking-layout {
    grid-template-columns: 1fr;
  }
}

/* ---- 预约页面新样式 ---- */
.booking-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.booking-form-wrap {
  background: var(--cream-50);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
}

.booking-form-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-300);
}

.booking-form-header h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
  color: var(--brown-800);
  margin-bottom: 0.75rem;
}

.booking-form-header p {
  color: var(--brown-600);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.booking-form-desc {
  color: var(--brown-500);
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.booking-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-info-card {
  background: var(--cream-50);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
}

.booking-info-card h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-300);
}

.booking-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cream-200);
}

.booking-info-item:last-child {
  border-bottom: none;
}

.booking-info-item svg {
  flex-shrink: 0;
  color: var(--brown-500);
  margin-top: 0.125rem;
}

.booking-info-item strong {
  display: block;
  font-size: 0.875rem;
  color: var(--brown-800);
  margin-bottom: 0.25rem;
}

.booking-info-item p {
  font-size: 0.875rem;
  color: var(--brown-600);
  margin: 0;
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--brown-700);
}

.booking-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--brown-600);
  color: var(--cream-100);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* 底部图片区域 */
.booking-images-section {
  padding: var(--spacing-2xl) 0;
  background: var(--cream-100);
  margin-top: var(--spacing-2xl);
}

.booking-images-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.booking-image-card {
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
  padding: 1.5rem;
  text-align: center;
}

.booking-image-wrap {
  width: 180px;
  height: 180px;
  max-width: 100%;
  background: var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-image-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}}

.booking-image-card h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  color: var(--brown-800);
  margin-bottom: 0.25rem;
}

.booking-image-card p {
  font-size: 0.875rem;
  color: var(--brown-500);
  margin: 0;
}

.booking-content-section {
  padding: var(--spacing-2xl) 0;
}

/* 表单成功提示 */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-300);
}

.form-success h3 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  color: var(--brown-800);
  margin-bottom: 1rem;
}

.form-success p {
  color: var(--brown-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-images-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .booking-image-card {
    padding: 0.75rem;
  }
  
  .booking-image-wrap {
    width: 80px;
    height: 80px;
  }
  
  .booking-image-card h3 {
    font-size: 0.75rem;
  }
  
  .booking-image-card p {
    font-size: 0.6875rem;
  }
}

/* ============================================
   404 Page Styles
   ============================================ */

    .error-page {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(160deg, var(--brown-800) 0%, var(--brown-700) 50%, var(--brown-800) 100%);
      position: relative;
      overflow: hidden;
    }
    .error-page::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 50%, rgba(160, 132, 92, 0.08) 0%, transparent 50%);
    }
    .error-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 2rem;
    }
    .error-code {
      font-family: 'Noto Serif SC', serif;
      font-size: clamp(6rem, 15vw, 12rem);
      font-weight: 700;
      color: var(--brown-500);
      line-height: 1;
      letter-spacing: 0.1em;
      margin-bottom: 1rem;
    }
    .error-code span {
      display: inline-block;
      color: var(--cinnabar);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.7; transform: scale(0.95); }
    }
    
    /* 404 推荐链接 */
    .error-suggestions {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(160, 132, 92, 0.2);
    }
    
    .error-suggestions p {
      color: var(--brown-400);
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
    }
    
    .error-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem 1rem;
    }
    
    .error-links a {
      color: var(--cream-300);
      text-decoration: none;
      font-size: 0.9375rem;
      position: relative;
      transition: color 0.3s;
    }
    
    .error-links a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--cinnabar);
      transition: width 0.3s;
    }
    
    .error-links a:hover {
      color: var(--cream-100);
    }
    
    .error-links a:hover::after {
      width: 100%;
    }

/* ============================================
   Homepage Marketing Styles
   ============================================ */

    /* ======== 营销首页专属样式 ======== */

    /* === Hero - 全屏暗色叙事 === */
    .lp-hero {
      min-height: 100vh;
      background: linear-gradient(170deg, #0d0a07 0%, var(--brown-900) 40%, #1a130d 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      text-align: center;
      color: var(--cream-100);
    }
    .lp-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 30% 50%, rgba(194,51,51,0.06) 0%, transparent 40%),
        radial-gradient(circle at 70% 40%, rgba(176,104,92,0.08) 0%, transparent 40%);
    }
    .lp-hero::after {
      content: '道';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 28rem;
      font-weight: 900;
      color: rgba(176,104,92,0.018);
      pointer-events: none;
      line-height: 1;
    }
    .lp-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 780px;
      padding: 2rem var(--spacing-md);
    }
    .lp-hero-overtitle {
      font-size: 0.8rem;
      letter-spacing: 0.35em;
      color: var(--brown-400);
      margin-bottom: 2rem;
      font-family: "Inter", sans-serif;
    }
    .lp-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 700;
      line-height: 1.35;
      letter-spacing: 0.06em;
      margin-bottom: 2rem;
    }
    .lp-hero h1 em {
      font-style: normal;
      color: var(--brown-300);
    }
    .lp-hero-lines {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      margin-bottom: 2.5rem;
    }
    .lp-hero-lines p {
      font-size: 1.05rem;
      color: var(--brown-200);
      line-height: 1.8;
    }
    .lp-hero-cta {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }
    .lp-hero-cta .btn-primary { background: var(--brown-500); }
    .lp-hero-cta .btn-outline { border-color: rgba(176,104,92,0.4); color: var(--brown-200); }
    .lp-hero-trust {
      display: flex;
      gap: 2.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    .lp-hero-trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .lp-hero-trust-num {
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--brown-300);
    }
    .lp-hero-trust-label {
      font-size: 0.75rem;
      color: var(--brown-400);
      margin-top: 0.15rem;
    }

    /* === 故事叙述 - 你是否也这样 === */
    .lp-story {
      padding: 5rem 0;
      background: var(--cream-50);
    }
    .lp-story-inner {
      max-width: 780px;
      margin: 0 auto;
    }
    .lp-story-quote {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--brown-800);
      text-align: center;
      margin-bottom: 2.5rem;
      line-height: 1.5;
      position: relative;
      padding: 0 1rem;
    }
    .lp-story-quote::before {
      content: '\201C';
      position: absolute;
      top: -1.5rem;
      left: -0.5rem;
      font-size: 4rem;
      color: var(--brown-300);
      opacity: 0.3;
      font-family: "Noto Serif SC", serif;
      line-height: 1;
    }
    .lp-story-body p {
      font-size: 1rem;
      line-height: 2.1;
      color: var(--brown-700);
      margin-bottom: 1.2rem;
      text-indent: 2em;
    }
    .lp-story-body p strong {
      color: var(--brown-900);
    }
    .lp-story-divider {
      width: 40px;
      height: 2px;
      background: var(--brown-300);
      margin: 2rem auto;
    }

    /* === 痛点密集网格 === */
    .lp-pains {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .lp-section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .lp-section-tag {
      display: inline-block;
      font-size: 0.75rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.75rem;
      font-family: "Inter", sans-serif;
    }
    .lp-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--brown-900);
      margin-bottom: 0.6rem;
    }
    .lp-section-header p {
      font-size: 0.95rem;
      color: var(--brown-600);
      max-width: 560px;
      margin: 0 auto;
    }
    .lp-pain-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .lp-pain-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      transition: all 0.3s ease;
    }
    .lp-pain-card:hover {
      border-color: var(--brown-200);
      box-shadow: 0 6px 25px rgba(80,60,30,0.06);
      transform: translateY(-2px);
    }
    .lp-pain-icon {
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(194,51,51,0.08);
      border-radius: 50%;
      flex-shrink: 0;
      color: var(--cinnabar);
    }
    .lp-pain-icon svg { width: 22px; height: 22px; }
    .lp-pain-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.4rem;
    }
    .lp-pain-card p {
      font-size: 0.87rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* === 转折区 - 电影感 === */
    .lp-turning {
      padding: 5rem 0;
      background: linear-gradient(160deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .lp-turning::before {
      content: '悟';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.02);
      pointer-events: none;
    }
    .lp-turning-inner {
      position: relative;
      z-index: 1;
      max-width: 700px;
      margin: 0 auto;
    }
    .lp-turning-seal {
      width: 64px;
      height: 64px;
      border: 2px solid var(--brown-400);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      transform: rotate(3deg);
    }
    .lp-turning-seal span {
      font-family: "Noto Serif SC", serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--cinnabar);
    }
    .lp-turning h2 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 700;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }
    .lp-turning h2 em {
      font-style: normal;
      color: var(--brown-300);
    }
    .lp-turning-body p {
      font-size: 1rem;
      line-height: 2;
      color: var(--brown-200);
      margin-bottom: 0.8rem;
    }

    /* === 命理解读 === */
    .lp-explain {
      padding: 5rem 0;
      background: var(--cream-50);
    }
    .lp-explain-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .lp-explain-text h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--brown-900);
      margin-bottom: 1.25rem;
    }
    .lp-explain-text p {
      font-size: 0.95rem;
      line-height: 2;
      color: var(--brown-700);
      margin-bottom: 1rem;
    }
    .lp-explain-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .lp-explain-card {
      background: var(--cream-200);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s;
    }
    .lp-explain-card:hover {
      border-color: var(--brown-300);
      transform: translateY(-3px);
    }
    .lp-explain-char {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--brown-700);
      margin-bottom: 0.4rem;
    }
    .lp-explain-label {
      font-size: 0.82rem;
      color: var(--brown-500);
      font-weight: 500;
    }
    .lp-explain-desc {
      font-size: 0.78rem;
      color: var(--brown-400);
      margin-top: 0.3rem;
      line-height: 1.5;
    }

    /* === 全部服务 - 故事卡片 === */
    .lp-services {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .lp-service-stories {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .lp-service-story {
      display: grid;
      grid-template-columns: 1fr 100px;
      gap: 1.75rem;
      align-items: start;
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
    }
    .lp-service-story:hover {
      border-color: var(--brown-300);
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
      transform: translateY(-2px);
    }
    .lp-ss-visual {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .lp-ss-char {
      font-family: "Noto Serif SC", serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--brown-300);
    }
    .lp-ss-content h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.3rem;
    }
    .lp-ss-en {
      font-size: 0.72rem;
      letter-spacing: 1px;
      color: var(--brown-400);
      margin-bottom: 0.6rem;
      font-family: "Inter", sans-serif;
    }
    .lp-ss-scenario {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--brown-600);
      margin-bottom: 0.75rem;
    }
    .lp-ss-scenario em {
      font-style: normal;
      color: var(--brown-800);
      font-weight: 500;
    }
    .lp-ss-tags {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
    }
    .lp-ss-tags span {
      display: inline-block;
      padding: 0.25rem 0.6rem;
      background: rgba(176,104,92,0.08);
      border: 1px solid rgba(176,104,92,0.12);
      border-radius: 3px;
      font-size: 0.75rem;
      color: var(--brown-500);
    }
    .lp-ss-arrow {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.82rem;
      color: var(--brown-500);
      margin-top: 0.5rem;
      font-weight: 500;
    }
    .lp-ss-arrow svg { width: 14px; height: 14px; }

    .lp-service-story-icon {
      width: 2.5rem;
      height: 2.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brown-500);
      flex-shrink: 0;
    }
    .lp-service-story-icon svg {
      width: 1.25rem;
      height: 1.25rem;
    }
    .lp-service-story-text {
      flex: 1;
    }
    .lp-service-story-text h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.3rem;
    }
    .lp-service-story-text p {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--brown-600);
      margin-bottom: 0.75rem;
    }
    .lp-service-story-tag {
      font-size: 0.72rem;
      letter-spacing: 1px;
      color: var(--brown-400);
      margin-bottom: 0.6rem;
      font-family: "Inter", sans-serif;
    }
    .lp-service-story-scenario {
      font-size: 0.88rem;
      line-height: 1.8;
      color: var(--brown-700);
      margin-bottom: 0.75rem;
      padding: 0.75rem 1rem;
      background: rgba(176,104,92,0.05);
      border-left: 3px solid var(--brown-300);
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    }
    .lp-service-story-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.85rem;
      color: var(--brown-500);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    .lp-service-story-link:hover {
      color: var(--cinnabar);
    }
    .lp-service-story-visual {
      width: 100px;
      height: 100px;
      background: linear-gradient(135deg, var(--brown-800), var(--brown-700));
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .lp-service-story--reverse {
      direction: rtl;
    }
    .lp-service-story--reverse > * {
      direction: ltr;
    }

    /* === 数据条 === */
    .lp-stats-bar {
      padding: 3.5rem 0;
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .lp-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      text-align: center;
    }
    .lp-stat-val {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--brown-300);
      margin-bottom: 0.3rem;
    }
    .lp-stat-lbl {
      font-size: 0.82rem;
      color: var(--brown-400);
    }

    /* === 为何选择我们 - 交错布局 === */
    .lp-why {
      padding: 5rem 0;
      background: var(--cream-50);
    }
    .lp-why-items {
      display: flex;
      flex-direction: column;
      gap: 4rem;
      margin-top: 3rem;
    }
    .lp-why-item {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: center;
    }
    .lp-why-item:nth-child(even) {
      direction: rtl;
    }
    .lp-why-item:nth-child(even) > * {
      direction: ltr;
    }
    .lp-why-visual {
      background: linear-gradient(135deg, var(--cream-200), var(--cream-300));
      border-radius: var(--radius-lg);
      border: 1px solid var(--cream-400);
      min-height: 260px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .lp-why-visual-char {
      font-family: "Noto Serif SC", serif;
      font-size: 7rem;
      font-weight: 700;
      color: var(--brown-200);
      opacity: 0.6;
    }
    .lp-why-text h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .lp-why-text p {
      font-size: 0.92rem;
      line-height: 1.9;
      color: var(--brown-600);
      margin-bottom: 0.8rem;
    }
    .lp-why-points {
      list-style: none;
      padding: 0;
      margin-top: 1rem;
    }
    .lp-why-points li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.5rem 0;
      font-size: 0.88rem;
      color: var(--brown-700);
    }
    .lp-why-points li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* === 信任背书 === */
    .lp-proof {
      padding: 5rem 0;
      background: var(--cream-100);
    }
    .lp-proof-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .lp-proof-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem;
      text-align: center;
      transition: all 0.3s ease;
    }
    .lp-proof-card:hover {
      border-color: var(--brown-200);
      box-shadow: 0 6px 25px rgba(80,60,30,0.06);
      transform: translateY(-2px);
    }
    .lp-proof-icon {
      width: 46px;
      height: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(194,51,51,0.08);
      border-radius: 50%;
      margin: 0 auto 1rem;
      color: var(--cinnabar);
    }
    .lp-proof-icon svg { width: 22px; height: 22px; }
    .lp-proof-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.4rem;
    }
    .lp-proof-card p {
      font-size: 0.87rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* === 客户故事 === */
    .lp-testimonials {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .lp-testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .lp-testi-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    .lp-testi-card:hover {
      border-color: var(--brown-200);
      box-shadow: 0 8px 25px rgba(80,60,30,0.06);
    }
    .lp-testi-quote {
      position: relative;
      flex: 1;
    }
    .lp-testi-quote::before {
      content: '\201C';
      font-family: "Noto Serif SC", serif;
      font-size: 3rem;
      color: var(--brown-300);
      opacity: 0.3;
      line-height: 1;
      display: block;
      margin-bottom: -0.5rem;
    }
    .lp-testi-text {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--brown-700);
      margin-bottom: 1.25rem;
    }
    .lp-testi-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1rem;
      border-top: 1px solid var(--cream-300);
    }
    .lp-testi-name {
      font-family: "Noto Serif SC", serif;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--brown-800);
    }
    .lp-testi-info {
      font-size: 0.75rem;
      color: var(--brown-400);
      margin-top: 0.1rem;
    }
    .lp-testi-stars {
      display: flex;
      gap: 2px;
    }
    .lp-testi-stars svg {
      width: 14px;
      height: 14px;
      fill: var(--brown-400);
      stroke: none;
    }

    /* === 流程 === */
    .lp-process {
      padding: 5rem 0;
      background: var(--brown-800);
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .lp-process::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 70% 50%, rgba(176,104,92,0.06) 0%, transparent 50%);
    }
    .lp-process-flow,
    .lp-process-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      position: relative;
      max-width: 960px;
      margin: 0 auto;
    }
    .lp-process-flow::before,
    .lp-process-steps::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(90deg, var(--brown-300), var(--brown-400), var(--brown-300));
    }
    .lp-pstep,
    .lp-process-step {
      text-align: center;
      position: relative;
    }
    .lp-pstep-num,
    .lp-process-num {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream-50);
      border: 2px solid var(--brown-400);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--brown-600);
      position: relative;
      z-index: 1;
    }
    .lp-pstep h3,
    .lp-process-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--cream-100);
      margin-bottom: 0.4rem;
    }
    .lp-pstep p,
    .lp-process-step p {
      font-size: 0.8rem;
      line-height: 1.5;
      color: var(--brown-200);
      padding: 0 0.5rem;
    }

    /* === 顾虑解答 === */
    .lp-concerns {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .lp-concern-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .lp-concern-item {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-md);
      margin-bottom: 0.75rem;
      overflow: hidden;
      transition: all 0.3s;
    }
    .lp-concern-item:hover { border-color: var(--brown-300); }
    .lp-concern-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.15rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }
    .lp-concern-q span {
      font-family: "Noto Serif SC", serif;
      font-size: 0.95rem;
      color: var(--brown-800);
      font-weight: 500;
    }
    .lp-concern-q svg {
      width: 18px;
      height: 18px;
      color: var(--brown-400);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .lp-concern-item.active .lp-concern-q svg { transform: rotate(180deg); }
    .lp-concern-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s;
    }
    .lp-concern-item.active .lp-concern-a { max-height: 400px; }
    .lp-concern-a-inner {
      padding: 0 1.5rem 1.15rem;
      font-size: 0.9rem;
      line-height: 1.85;
      color: var(--brown-600);
    }

    /* === 客户评价（testimonial 别名） === */
    .lp-testimonial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .lp-testimonial-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem;
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
    }
    .lp-testimonial-card:hover {
      border-color: var(--brown-200);
      box-shadow: 0 8px 25px rgba(80,60,30,0.06);
    }
    .lp-testimonial-stars {
      display: flex;
      gap: 2px;
      margin-bottom: 1rem;
    }
    .lp-testimonial-stars svg {
      width: 14px;
      height: 14px;
      fill: var(--brown-400);
      stroke: none;
    }
    .lp-testimonial-text {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--brown-600);
      flex: 1;
      margin-bottom: 1.5rem;
    }
    .lp-testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding-top: 1rem;
      border-top: 1px solid var(--cream-300);
    }
    .lp-testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--brown-800);
      color: var(--cream-100);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      font-size: 0.9rem;
      flex-shrink: 0;
    }
    .lp-testimonial-name {
      font-weight: 600;
      font-size: 0.88rem;
      color: var(--brown-800);
    }
    .lp-testimonial-title {
      font-size: 0.78rem;
      color: var(--brown-400);
    }

    /* === FAQ === */
    .lp-faq {
      padding: 5rem 0;
      background: var(--cream-100);
    }
    .lp-faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .lp-faq-item {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.3s;
    }
    .lp-faq-item:hover {
      border-color: var(--brown-200);
    }
    .lp-faq-item summary {
      padding: 1.25rem 1.5rem;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brown-800);
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .lp-faq-item summary::-webkit-details-marker { display: none; }
    .lp-faq-item summary::after {
      content: '+';
      font-size: 1.25rem;
      color: var(--brown-400);
      flex-shrink: 0;
      transition: transform 0.3s;
    }
    .lp-faq-item[open] summary::after {
      content: '−';
    }
    .lp-faq-answer {
      padding: 0 1.5rem 1.25rem;
    }
    .lp-faq-answer p {
      font-size: 0.9rem;
      line-height: 1.85;
      color: var(--brown-600);
    }

    /* === 额外内容 === */
    .lp-extra-content {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }

    /* === 最终 CTA 别名 === */
    .lp-final-cta-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }
    .lp-final-cta-seal {
      width: 72px;
      height: 72px;
      border: 2px solid var(--brown-400);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      transform: rotate(3deg);
    }
    .lp-final-cta-seal span {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--cinnabar);
    }
    .lp-final-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .lp-final-cta-btns .btn-primary { background: var(--brown-500); }
    .lp-final-cta-btns .btn-outline { border-color: rgba(176,104,92,0.4); color: var(--brown-200); }
    .lp-final-cta-note {
      font-size: 0.82rem;
      color: var(--brown-300);
      letter-spacing: 0.05em;
    }

    /* === 最终 CTA === */
    .lp-final-cta {
      padding: 6rem 0;
      background: linear-gradient(160deg, #0d0a07 0%, var(--brown-900) 50%, #1a130d 100%);
      text-align: center;
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .lp-final-cta::before {
      content: '缘';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 24rem;
      font-weight: 900;
      color: rgba(176,104,92,0.018);
      pointer-events: none;
    }
    .lp-final-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }
    .lp-final-seal {
      width: 72px;
      height: 72px;
      border: 2px solid var(--brown-400);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 2rem;
      transform: rotate(3deg);
    }
    .lp-final-seal span {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--cinnabar);
    }
    .lp-final-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 1.25rem;
      line-height: 1.4;
    }
    .lp-final-cta > .container > .lp-final-inner > p {
      font-size: 1rem;
      color: var(--brown-200);
      line-height: 1.9;
      margin-bottom: 2.5rem;
    }
    .lp-final-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .lp-final-btns .btn-primary { background: var(--brown-500); }
    .lp-final-btns .btn-outline { border-color: rgba(176,104,92,0.4); color: var(--brown-200); }
    .lp-final-tags {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .lp-final-tags span {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.82rem;
      color: var(--brown-300);
    }
    .lp-final-tags svg { width: 14px; height: 14px; }

    /* === Responsive === */
    @media (max-width: 1024px) {
      .lp-pain-grid { grid-template-columns: 1fr; }
      .lp-explain-grid { grid-template-columns: 1fr; }
      .lp-service-story { grid-template-columns: 1fr 80px; gap: 1.25rem; }
      .lp-ss-visual { width: 80px; height: 80px; }
      .lp-ss-char { font-size: 2rem; }
      .lp-why-item, .lp-why-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
      .lp-why-item:nth-child(even) > * { direction: ltr; }
      .lp-why-visual { min-height: 200px; }
      .lp-testi-grid { grid-template-columns: 1fr; }
      .lp-testimonial-grid { grid-template-columns: 1fr; }
      .lp-proof-grid { grid-template-columns: repeat(2, 1fr); }
      .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
      .lp-process-flow, .lp-process-steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
      .lp-process-flow::before, .lp-process-steps::before { display: none; }
    }
    @media (max-width: 768px) {
      .lp-hero h1 { font-size: 2.2rem; }
      .lp-hero-trust { gap: 1.5rem; }
      .lp-hero-cta { flex-direction: column; align-items: center; }
      .lp-process-flow, .lp-process-steps { grid-template-columns: repeat(2, 1fr); }
      .lp-service-story { grid-template-columns: 1fr; }
      .lp-ss-visual { width: 100%; height: 80px; }
      .lp-proof-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .lp-hero h1 { font-size: 1.8rem; }
      .lp-stats-grid { grid-template-columns: 1fr 1fr; }
      .lp-process-flow, .lp-process-steps { grid-template-columns: 1fr; }
      .lp-final-btns { flex-direction: column; align-items: center; }
      .lp-final-tags { flex-direction: column; align-items: center; gap: 0.6rem; }
    }
  

/* ============================================
   About Page Styles
   ============================================ */

      .ab-cta {
        padding: 5rem 0;
        background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
        color: var(--cream-100);
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .ab-cta::before {
        content: '道';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: "Noto Serif SC", serif;
        font-size: 20rem;
        font-weight: 900;
        color: rgba(176,104,92,0.025);
        pointer-events: none;
      }
      .ab-cta h2 {
        font-family: "Noto Serif SC", serif;
        font-size: 2.2rem;
        margin-bottom: 1rem;
        position: relative;
      }
      .ab-cta p {
        font-size: 1.05rem;
        color: var(--brown-200);
        margin-bottom: 2rem;
        line-height: 1.8;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
      }
      .ab-cta-btns {
        display: flex;
        justify-content: center;
        gap: 1rem;
        position: relative;
      }
      .ab-cta-btns .btn-primary { background: var(--brown-500); border-color: var(--brown-500); }
      .ab-cta-btns .btn-outline { border-color: rgba(176,104,92,0.35); color: var(--brown-200); }
      @media (max-width: 480px) {
        .ab-cta h2 { font-size: 1.6rem; }
        .ab-cta-btns { flex-direction: column; align-items: center; }
      }
    

/* ============================================
   Bazi Service Styles
   ============================================ */

    /* ---- 八字页面专属样式 ---- */

    /* Hero */
    .bazi-hero {
      background: linear-gradient(160deg, var(--brown-900) 0%, #1a130d 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
    }
    .bazi-hero-inner {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3rem;
      align-items: center;
    }
    .bazi-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.15);
      border: 1px solid rgba(176,104,92,0.25);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .bazi-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: var(--brown-700);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 0.7rem;
      color: var(--cream-200);
    }
    .bazi-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: 0.1em;
      margin-bottom: 1.25rem;
    }
    .bazi-hero-desc {
      color: var(--brown-200);
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 520px;
    }
    .bazi-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .bazi-stat-item {
      display: flex;
      flex-direction: column;
    }
    .bazi-stat-num {
      font-family: "Noto Serif SC", serif;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--brown-300);
    }
    .bazi-stat-label {
      font-size: 0.8rem;
      color: var(--brown-400);
      margin-top: 0.25rem;
    }
    .bazi-hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* 命盘示例 */
    .bazi-pan {
      background: rgba(90,24,32,0.5);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      backdrop-filter: blur(10px);
    }
    .bazi-pan-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.25rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid rgba(176,104,92,0.15);
    }
    .bazi-pan-tag {
      font-size: 0.75rem;
      color: var(--brown-300);
      background: rgba(176,104,92,0.15);
      padding: 0.2rem 0.6rem;
      border-radius: 3px;
    }
    .bazi-pan-date {
      font-size: 0.8rem;
      color: var(--brown-400);
      font-family: "Noto Serif SC", serif;
    }
    .bazi-pan-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .bazi-pillar {
      text-align: center;
    }
    .pillar-label {
      font-size: 0.7rem;
      color: var(--brown-400);
      margin-bottom: 0.5rem;
      letter-spacing: 0.15em;
    }
    .pillar-content {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .pillar-char {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      aspect-ratio: 1;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: var(--radius-md);
      position: relative;
    }
    .pillar-char .wx-label {
      position: absolute;
      bottom: 3px;
      right: 5px;
      font-size: 0.55rem;
      font-weight: 400;
      opacity: 0.7;
    }
    .pillar-char.wood { background: rgba(76,133,72,0.2); color: #7db87a; border: 1px solid rgba(76,133,72,0.3); }
    .pillar-char.fire { background: rgba(180,70,60,0.2); color: #d47a72; border: 1px solid rgba(180,70,60,0.3); }
    .pillar-char.earth { background: rgba(180,140,60,0.2); color: #c8a85a; border: 1px solid rgba(180,140,60,0.3); }
    .pillar-char.metal { background: rgba(200,200,200,0.12); color: #c8c0b4; border: 1px solid rgba(200,200,200,0.2); }
    .pillar-char.water { background: rgba(60,100,170,0.2); color: #7a9dd4; border: 1px solid rgba(60,100,170,0.3); }
    .bazi-pan-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0.75rem;
      border-top: 1px solid rgba(176,104,92,0.15);
      font-size: 0.8rem;
      color: var(--brown-400);
    }

    /* 五行图示 */
    .wuxing-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .wuxing-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-top: 2.5rem;
    }
    .wuxing-circle {
      position: relative;
      width: 300px;
      height: 300px;
      margin: 0 auto;
    }
    .wx-item {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.25rem;
    }
    .wx-char {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 700;
    }
    .wx-desc {
      font-size: 0.7rem;
      color: var(--brown-500);
    }
    .wx-wood .wx-char { background: rgba(76,133,72,0.15); color: #4c8548; border: 1px solid rgba(76,133,72,0.3); }
    .wx-fire .wx-char { background: rgba(180,70,60,0.12); color: #b4463c; border: 1px solid rgba(180,70,60,0.25); }
    .wx-earth .wx-char { background: rgba(180,140,60,0.15); color: #a08030; border: 1px solid rgba(180,140,60,0.3); }
    .wx-metal .wx-char { background: rgba(176,104,92,0.15); color: var(--brown-500); border: 1px solid rgba(176,104,92,0.3); }
    .wx-water .wx-char { background: rgba(60,100,170,0.12); color: #3c64aa; border: 1px solid rgba(60,100,170,0.25); }
    /* 五行五角分布 */
    .wx-wood { top: 0; left: 50%; transform: translateX(-50%); }
    .wx-fire { top: 38%; right: 0; }
    .wx-earth { bottom: 5%; right: 12%; }
    .wx-metal { bottom: 5%; left: 12%; }
    .wx-water { top: 38%; left: 0; }
    .wx-center-char {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      color: var(--brown-400);
      opacity: 0.5;
    }
    .wx-legend {
      margin-top: 1.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: var(--brown-500);
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    /* 五行详情卡片 */
    .wx-detail-cards {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .wx-detail-card {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.25rem;
      background: var(--cream-50);
      border-radius: var(--radius-md);
      border: 1px solid var(--cream-300);
    }
    .wx-detail-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-weight: 700;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .wx-detail-card h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.25rem;
    }
    .wx-detail-card p {
      font-size: 0.85rem;
      color: var(--brown-600);
      line-height: 1.6;
    }

    /* 天干地支 */
    .tiandizhi-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .tiandizhi-title {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--brown-700);
      margin-bottom: 1rem;
      text-align: center;
    }
    .tiangan-grid {
      display: grid;
      grid-template-columns: repeat(10, 1fr);
      gap: 0.5rem;
      margin-bottom: 2.5rem;
    }
    .dizhi-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 0.5rem;
    }
    .tg-item, .dz-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.2rem;
      padding: 0.75rem 0.25rem;
      border-radius: var(--radius-md);
      font-family: "Noto Serif SC", serif;
      transition: transform 0.2s;
    }
    .tg-item:hover, .dz-item:hover { transform: translateY(-2px); }
    .tg-char, .dz-char {
      font-size: 1.25rem;
      font-weight: 700;
    }
    .tg-label, .dz-label {
      font-size: 0.6rem;
      opacity: 0.7;
    }
    .tg-item.wood, .dz-item.wood { background: rgba(76,133,72,0.1); color: #4c8548; }
    .tg-item.fire, .dz-item.fire { background: rgba(180,70,60,0.08); color: #b4463c; }
    .tg-item.earth, .dz-item.earth { background: rgba(180,140,60,0.1); color: #a08030; }
    .tg-item.metal, .dz-item.metal { background: rgba(176,104,92,0.12); color: var(--brown-600); }
    .tg-item.water, .dz-item.water { background: rgba(60,100,170,0.08); color: #3c64aa; }

    /* 分析范围 */
    .scope-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-50);
    }
    .scope-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .scope-card {
      background: var(--cream-100);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem;
    }
    .scope-card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .scope-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(176,104,92,0.12);
      border-radius: var(--radius-md);
      color: var(--brown-500);
    }
    .scope-icon svg { width: 22px; height: 22px; }
    .scope-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--brown-800);
    }
    .scope-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .scope-list li {
      font-size: 0.88rem;
      color: var(--brown-600);
      line-height: 1.5;
      padding-left: 1.25rem;
      position: relative;
    }
    .scope-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
    }
    .scope-list li strong {
      color: var(--brown-800);
    }

    /* 富贵层次 */
    .fortune-section {
      padding: var(--spacing-2xl) 0;
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .fortune-levels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .fortune-card {
      background: rgba(250,247,242,0.06);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      text-align: center;
    }
    .fortune-badge {
      display: inline-block;
      padding: 0.25rem 0.75rem;
      border-radius: 2rem;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .fortune-badge.top { background: rgba(196,169,122,0.25); color: var(--brown-300); }
    .fortune-badge.mid { background: rgba(176,104,92,0.2); color: var(--brown-400); }
    .fortune-badge.low { background: rgba(120,100,80,0.2); color: var(--brown-400); }
    .fortune-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }
    .fortune-card p {
      font-size: 0.85rem;
      color: var(--brown-200);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .fortune-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      justify-content: center;
    }
    .fortune-tags span {
      font-size: 0.72rem;
      padding: 0.2rem 0.5rem;
      background: rgba(176,104,92,0.12);
      border-radius: 3px;
      color: var(--brown-300);
    }
    .fortune-notice {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.25rem 1.5rem;
      background: rgba(194,51,51,0.15);
      border: 1px solid rgba(194,51,51,0.25);
      border-radius: var(--radius-md);
    }
    .fortune-notice svg {
      width: 24px;
      height: 24px;
      color: var(--cinnabar-light);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .fortune-notice h5 {
      font-size: 0.9rem;
      margin-bottom: 0.25rem;
      color: var(--cream-200);
    }
    .fortune-notice p {
      font-size: 0.82rem;
      color: var(--brown-200);
      line-height: 1.6;
    }

    /* 流程时间线 */
    .bazi-process {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .timeline-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 2.5rem;
      position: relative;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .timeline-steps::before {
      content: '';
      position: absolute;
      left: 24px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--cream-400);
    }
    .timeline-item {
      display: flex;
      gap: 1.5rem;
      padding-bottom: 2rem;
      position: relative;
    }
    .timeline-num {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--brown-700);
      color: var(--cream-200);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 0.9rem;
      font-weight: 700;
      flex-shrink: 0;
      z-index: 1;
    }
    .timeline-item-content h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.35rem;
      margin-top: 0.15rem;
    }
    .timeline-item-content p {
      font-size: 0.88rem;
      color: var(--brown-600);
      line-height: 1.6;
    }

    /* CTA */
    .bazi-cta {
      background: linear-gradient(160deg, var(--brown-900), #1a130d);
      padding: 4.5rem 0;
      text-align: center;
      color: var(--cream-100);
    }
    .bazi-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
    }
    .bazi-cta p {
      color: var(--brown-200);
      margin-bottom: 2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }
    .cta-features {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 1.5rem;
      font-size: 0.85rem;
      color: var(--brown-300);
    }
    .cta-features span {
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .cta-features svg {
      width: 16px;
      height: 16px;
      color: var(--brown-300);
    }

    /* 响应式 */
    @media (max-width: 1024px) {
      .bazi-hero-inner { grid-template-columns: 1fr; }
      .bazi-pan { max-width: 450px; }
      .wuxing-content { grid-template-columns: 1fr; }
      .scope-grid { grid-template-columns: 1fr; }
      .fortune-levels { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .bazi-hero-stats { gap: 1.5rem; }
      .tiangan-grid { grid-template-columns: repeat(5, 1fr); }
      .dizhi-grid { grid-template-columns: repeat(6, 1fr); }
    }
  

/* ============================================
   Fengshui Service Styles
   ============================================ */

    /* ======== 堪舆风水页面专属样式 ======== */

    /* Hero */
    .fs-hero {
      background: linear-gradient(155deg, #1a1410 0%, var(--brown-900) 40%, #0d0a07 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .fs-hero::before {
      content: '风';
      position: absolute;
      top: 50%;
      right: 3%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 26rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
      line-height: 1;
    }
    .fs-hero-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 4rem;
      align-items: center;
    }
    .fs-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .fs-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
    }
    .fs-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .fs-hero-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--brown-200);
      margin-bottom: 2rem;
      max-width: 540px;
    }
    .fs-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.2rem;
    }
    .fs-stat-val {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--cream-100);
    }
    .fs-stat-lbl {
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-top: 0.2rem;
    }
    .fs-hero-btns {
      display: flex;
      gap: 1rem;
    }
    .fs-hero-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .fs-hero-btns .btn-primary:hover {
      background: var(--brown-600);
    }
    .fs-hero-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }

    /* Hero - 八卦方位展示卡片 */
    .fs-bagua-card {
      background: rgba(20,16,12,0.7);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: 12px;
      padding: 2rem;
      backdrop-filter: blur(10px);
    }
    .fs-bagua-card-title {
      font-size: 0.85rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .fs-bagua-card-title span:last-child {
      font-size: 0.75rem;
      opacity: 0.6;
    }
    .fs-bagua-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .fs-bagua-cell {
      aspect-ratio: 1;
      border: 1px solid rgba(176,104,92,0.25);
      border-radius: 6px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(176,104,92,0.04);
      position: relative;
      transition: all 0.3s ease;
    }
    .fs-bagua-cell:hover {
      background: rgba(176,104,92,0.12);
      border-color: rgba(176,104,92,0.4);
    }
    .fs-bagua-cell.center {
      background: rgba(176,104,92,0.1);
      border-color: rgba(176,104,92,0.3);
    }
    .fs-bagua-name {
      font-family: "Noto Serif SC", serif;
      font-size: 0.75rem;
      color: var(--brown-300);
      margin-bottom: 0.2rem;
    }
    .fs-bagua-char {
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--cream-200);
    }
    .fs-bagua-info {
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.1);
      border-radius: 6px;
      padding: 0.6rem 0.8rem;
      font-size: 0.75rem;
      color: var(--brown-300);
      text-align: center;
      line-height: 1.5;
    }

    /* 何谓堪舆 */
    .fs-intro {
      padding: 5rem 0;
    }
    .fs-intro-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .fs-intro-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 1rem;
    }
    .fs-intro-body {
      max-width: 800px;
      margin: 0 auto;
    }
    .fs-intro-body p {
      font-size: 1rem;
      line-height: 2;
      color: var(--brown-700);
      text-indent: 2em;
      margin-bottom: 1rem;
    }

    /* 风水五要 */
    .fs-principles {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .fs-section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .fs-section-tag {
      display: inline-block;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .fs-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .fs-section-header p {
      font-size: 1rem;
      color: var(--brown-600);
    }
    .fs-principles-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    .fs-principle-card {
      text-align: center;
      padding: 2rem 1.2rem;
      background: white;
      border-radius: 10px;
      border: 1px solid var(--cream-400);
      transition: all 0.3s ease;
    }
    .fs-principle-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
      border-color: var(--brown-300);
    }
    .fs-principle-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
    }
    .fs-principle-card:nth-child(1) .fs-principle-icon { background: #d1fae5; color: #065f46; }
    .fs-principle-card:nth-child(2) .fs-principle-icon { background: #fecaca; color: #991b1b; }
    .fs-principle-card:nth-child(3) .fs-principle-icon { background: #fef3c7; color: #92400e; }
    .fs-principle-card:nth-child(4) .fs-principle-icon { background: #dbeafe; color: #1e40af; }
    .fs-principle-card:nth-child(5) .fs-principle-icon { background: #ede9fe; color: #5b21b6; }
    .fs-principle-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .fs-principle-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* 服务类型 */
    .fs-services {
      padding: 5rem 0;
    }
    .fs-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .fs-service-card {
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
    }
    .fs-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(80,60,30,0.1);
    }
    .fs-service-top {
      padding: 2rem 1.8rem 1.5rem;
      background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-900) 100%);
      color: white;
      position: relative;
      overflow: hidden;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .fs-service-top::after {
      content: attr(data-char);
      position: absolute;
      bottom: -15px;
      right: 10px;
      font-family: "Noto Serif SC", serif;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }
    .fs-service-label {
      font-size: 0.75rem;
      color: var(--brown-300);
      letter-spacing: 1px;
      margin-bottom: 0.6rem;
    }
    .fs-service-top h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .fs-service-top p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--brown-200);
    }
    .fs-service-bottom {
      padding: 1.5rem 1.8rem 2rem;
    }
    .fs-service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .fs-service-features li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0;
      font-size: 0.9rem;
      color: var(--brown-700);
      border-bottom: 1px solid var(--cream-300);
    }
    .fs-service-features li:last-child {
      border-bottom: none;
    }
    .fs-service-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* 八卦方位参考 */
    .fs-bagua-ref {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
    }
    .fs-bagua-ref .fs-section-header h2 { color: var(--cream-100); }
    .fs-bagua-ref .fs-section-header p { color: var(--brown-300); }
    .fs-bagua-ref .fs-section-tag { color: var(--brown-400); }
    .fs-bagua-ref-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .fs-trigram-card {
      text-align: center;
      padding: 2rem 1.2rem;
      border-radius: 10px;
      border: 1px solid rgba(176,104,92,0.15);
      background: rgba(176,104,92,0.04);
      transition: all 0.3s ease;
    }
    .fs-trigram-card:hover {
      background: rgba(176,104,92,0.1);
      border-color: rgba(176,104,92,0.3);
      transform: translateY(-3px);
    }
    .fs-trigram-symbol {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border: 2px solid rgba(176,104,92,0.3);
      background: rgba(176,104,92,0.06);
      color: var(--brown-300);
    }
    .fs-trigram-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--cream-200);
      margin-bottom: 0.3rem;
    }
    .fs-trigram-direction {
      font-size: 0.8rem;
      color: var(--brown-400);
      margin-bottom: 0.8rem;
    }
    .fs-trigram-element {
      display: inline-block;
      padding: 0.25rem 0.7rem;
      background: rgba(176,104,92,0.12);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: 1rem;
      font-size: 0.75rem;
      color: var(--brown-300);
      margin-bottom: 0.8rem;
    }
    .fs-trigram-chars {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.4rem;
    }
    .fs-trigram-chars span {
      display: inline-block;
      padding: 0.2rem 0.5rem;
      background: rgba(176,104,92,0.08);
      border: 1px solid rgba(176,104,92,0.12);
      border-radius: 4px;
      font-size: 0.8rem;
      color: var(--brown-200);
    }

    /* 服务特色 */
    .fs-features {
      padding: 5rem 0;
    }
    .fs-features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .fs-feature-card {
      text-align: center;
      padding: 2rem 1.5rem;
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      transition: all 0.3s ease;
    }
    .fs-feature-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
      border-color: var(--brown-300);
    }
    .fs-feature-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream-200);
      border-radius: 50%;
      color: var(--brown-600);
    }
    .fs-feature-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.6rem;
    }
    .fs-feature-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* 流程 */
    .fs-process {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .fs-process-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .fs-process-flow::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--brown-300), var(--brown-400), var(--brown-300));
    }
    .fs-step {
      text-align: center;
      position: relative;
    }
    .fs-step-num {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 2px solid var(--brown-400);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--brown-600);
      position: relative;
      z-index: 1;
    }
    .fs-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.5rem;
    }
    .fs-step p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--brown-600);
      padding: 0 0.5rem;
    }

    /* FAQ */
    .fs-faq {
      padding: 5rem 0;
    }
    .fs-faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .fs-faq-item {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 10px;
      margin-bottom: 0.8rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .fs-faq-item:hover {
      border-color: var(--brown-300);
    }
    .fs-faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }
    .fs-faq-q span {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--brown-800);
      font-weight: 500;
    }
    .fs-faq-q svg {
      width: 20px;
      height: 20px;
      color: var(--brown-400);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .fs-faq-item.active .fs-faq-q svg {
      transform: rotate(180deg);
    }
    .fs-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .fs-faq-item.active .fs-faq-a {
      max-height: 300px;
    }
    .fs-faq-a-inner {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--brown-600);
    }

    /* CTA */
    .fs-cta {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .fs-cta::before {
      content: '居';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
    }
    .fs-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .fs-cta p {
      font-size: 1.05rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .fs-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      position: relative;
    }
    .fs-cta-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .fs-cta-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }
    .fs-cta-tags {
      display: flex;
      justify-content: center;
      gap: 2rem;
      position: relative;
    }
    .fs-cta-tags span {
      font-size: 0.85rem;
      color: var(--brown-300);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .fs-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .fs-bagua-card { max-width: 400px; }
      .fs-principles-grid { grid-template-columns: repeat(3, 1fr); }
      .fs-bagua-ref-grid { grid-template-columns: repeat(2, 1fr); }
      .fs-features-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .fs-hero { padding: 6rem 0 3rem; }
      .fs-hero h1 { font-size: 2.4rem; }
      .fs-hero-stats { gap: 1.5rem; }
      .fs-principles-grid { grid-template-columns: repeat(2, 1fr); }
      .fs-services-grid { grid-template-columns: 1fr; }
      .fs-bagua-ref-grid { grid-template-columns: 1fr; }
      .fs-features-grid { grid-template-columns: 1fr; }
      .fs-process-flow { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .fs-process-flow::before { display: none; }
    }
    @media (max-width: 480px) {
      .fs-hero h1 { font-size: 2rem; }
      .fs-hero-stats { flex-direction: column; gap: 0.8rem; }
      .fs-hero-btns { flex-direction: column; }
      .fs-principles-grid { grid-template-columns: 1fr; }
      .fs-bagua-grid { grid-template-columns: repeat(3, 1fr); gap: 0.3rem; }
      .fs-bagua-char { font-size: 1.1rem; }
      .fs-bagua-name { font-size: 0.65rem; }
      .fs-process-flow { grid-template-columns: 1fr; }
    }
  

/* ============================================
   Liuyao Service Styles
   ============================================ */

    /* ======== 六爻页面专属样式 ======== */

    /* Hero */
    .ly-hero {
      background: linear-gradient(160deg, var(--brown-900) 0%, #0f0b08 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .ly-hero::before {
      content: '卦';
      position: absolute;
      bottom: -40px;
      right: 5%;
      font-family: "Noto Serif SC", serif;
      font-size: 22rem;
      font-weight: 700;
      color: rgba(176,104,92,0.03);
      pointer-events: none;
      line-height: 1;
    }
    .ly-hero-grid {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 4rem;
      align-items: center;
    }
    .ly-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.12);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .ly-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: var(--brown-700);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 0.7rem;
      color: var(--cream-200);
    }
    .ly-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: 0.15em;
      margin-bottom: 1.25rem;
    }
    .ly-hero-desc {
      color: var(--brown-200);
      line-height: 1.85;
      margin-bottom: 2rem;
      max-width: 520px;
    }
    .ly-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .ly-stat { display: flex; flex-direction: column; }
    .ly-stat-num { font-family: "Noto Serif SC", serif; font-size: 1.7rem; font-weight: 700; color: var(--brown-300); }
    .ly-stat-label { font-size: 0.78rem; color: var(--brown-400); margin-top: 0.2rem; }

    /* 卦象可视化 */
    .ly-gua-visual {
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: var(--radius-lg);
      padding: 2rem;
      text-align: center;
    }
    .ly-gua-title {
      font-family: "Noto Serif SC", serif;
      font-size: 0.85rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
      letter-spacing: 0.1em;
    }
    .ly-gua-lines { display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
    .ly-gua-row { display: flex; align-items: center; gap: 1rem; }
    .ly-line-yang {
      width: 140px;
      height: 10px;
      background: linear-gradient(to right, var(--brown-500), var(--brown-400));
      border-radius: 2px;
    }
    .ly-line-yin {
      width: 140px;
      height: 10px;
      display: flex;
      justify-content: space-between;
    }
    .ly-line-yin span {
      width: 60px;
      height: 10px;
      background: linear-gradient(to right, var(--brown-500), var(--brown-400));
      border-radius: 2px;
    }
    .ly-yao-label {
      font-size: 0.72rem;
      color: var(--brown-400);
      font-family: "Noto Serif SC", serif;
      width: 40px;
      text-align: right;
    }
    .ly-yao-info {
      font-size: 0.68rem;
      color: var(--brown-500);
      width: 50px;
      text-align: left;
    }
    .ly-gua-name {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--brown-300);
      margin-top: 1.25rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(176,104,92,0.15);
    }

    /* 起卦方法 */
    .ly-method-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .ly-method-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
      margin-top: 2.5rem;
    }
    .ly-method-cards { display: flex; flex-direction: column; gap: 1rem; }
    .ly-method-card {
      padding: 1.5rem;
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      cursor: pointer;
      transition: all 0.3s;
      border-left: 3px solid transparent;
    }
    .ly-method-card.active { border-left-color: var(--brown-500); background: var(--cream-100); }
    .ly-method-card:hover { background: var(--cream-100); }
    .ly-method-card-head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.5rem;
    }
    .ly-method-card-num {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--brown-800);
      color: var(--cream-200);
      font-family: "Noto Serif SC", serif;
      font-size: 0.75rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .ly-method-card h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      font-size: 1.05rem;
    }
    .ly-method-card p {
      font-size: 0.85rem;
      color: var(--brown-600);
      line-height: 1.7;
      padding-left: 2.75rem;
    }
    .ly-method-detail {
      padding: 2rem;
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
    }
    .ly-method-detail h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--brown-800);
      margin-bottom: 1rem;
    }
    .ly-method-detail p {
      font-size: 0.9rem;
      color: var(--brown-600);
      line-height: 1.85;
      margin-bottom: 1rem;
    }
    .ly-method-steps {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .ly-method-step {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      padding: 0.6rem 0;
    }
    .ly-method-step-n {
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(176,104,92,0.12);
      font-size: 0.65rem;
      font-weight: 700;
      color: var(--brown-600);
      flex-shrink: 0;
      margin-top: 2px;
    }
    .ly-method-step span { font-size: 0.85rem; color: var(--brown-600); line-height: 1.6; }

    /* 六亲体系 */
    .ly-liuqin-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .ly-liuqin-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .ly-liuqin-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.25rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }
    .ly-liuqin-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
    .ly-liuqin-char {
      width: 52px;
      height: 52px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.3rem;
      font-weight: 700;
      border-radius: 50%;
    }
    .ly-liuqin-card:nth-child(1) .ly-liuqin-char { background: rgba(76,133,72,0.12); color: #4c8548; border: 1px solid rgba(76,133,72,0.25); }
    .ly-liuqin-card:nth-child(2) .ly-liuqin-char { background: rgba(180,70,60,0.1); color: #b4463c; border: 1px solid rgba(180,70,60,0.2); }
    .ly-liuqin-card:nth-child(3) .ly-liuqin-char { background: rgba(60,100,170,0.1); color: #3c64aa; border: 1px solid rgba(60,100,170,0.2); }
    .ly-liuqin-card:nth-child(4) .ly-liuqin-char { background: rgba(180,140,60,0.12); color: #a08030; border: 1px solid rgba(180,140,60,0.25); }
    .ly-liuqin-card:nth-child(5) .ly-liuqin-char { background: rgba(160,100,160,0.1); color: #8860a0; border: 1px solid rgba(160,100,160,0.2); }
    .ly-liuqin-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--brown-800); margin-bottom: 0.35rem; }
    .ly-liuqin-card p { font-size: 0.82rem; color: var(--brown-600); line-height: 1.6; }

    /* 应用场景 */
    .ly-scene-section {
      padding: var(--spacing-2xl) 0;
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .ly-scene-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .ly-scene-card {
      background: rgba(250,247,242,0.04);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      transition: background 0.3s;
    }
    .ly-scene-card:hover { background: rgba(250,247,242,0.07); }
    .ly-scene-icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-md);
      background: rgba(176,104,92,0.12);
      color: var(--brown-300);
      margin-bottom: 1.25rem;
    }
    .ly-scene-icon svg { width: 20px; height: 20px; }
    .ly-scene-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--cream-100); margin-bottom: 0.75rem; font-size: 1.05rem; }
    .ly-scene-card p { font-size: 0.85rem; color: var(--brown-200); line-height: 1.7; }

    /* 注意事项 */
    .ly-notice-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-50);
    }
    .ly-notice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2.5rem;
    }
    .ly-notice-box {
      padding: 2rem;
      border-radius: var(--radius-lg);
      border: 1px solid;
    }
    .ly-notice-box.do { background: rgba(76,133,72,0.04); border-color: rgba(76,133,72,0.2); }
    .ly-notice-box.dont { background: rgba(180,70,60,0.03); border-color: rgba(180,70,60,0.15); }
    .ly-notice-box h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .ly-notice-box.do h3 { color: #4c8548; }
    .ly-notice-box.dont h3 { color: #b4463c; }
    .ly-notice-box h3 svg { width: 20px; height: 20px; }
    .ly-notice-list { list-style: none; padding: 0; margin: 0; }
    .ly-notice-list li {
      display: flex;
      gap: 0.5rem;
      align-items: flex-start;
      padding: 0.5rem 0;
      font-size: 0.88rem;
      color: var(--brown-700);
      line-height: 1.6;
    }
    .ly-notice-list li::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      margin-top: 8px;
      flex-shrink: 0;
    }
    .ly-notice-box.do .ly-notice-list li::before { background: #4c8548; }
    .ly-notice-box.dont .ly-notice-list li::before { background: #b4463c; }

    /* 流程 */
    .ly-process-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .ly-process-timeline {
      display: flex;
      flex-direction: column;
      gap: 0;
      margin-top: 2.5rem;
      max-width: 650px;
      margin-left: auto;
      margin-right: auto;
    }
    .ly-process-item {
      display: flex;
      gap: 1.5rem;
      position: relative;
      padding-bottom: 2rem;
    }
    .ly-process-item:last-child { padding-bottom: 0; }
    .ly-process-item::before {
      content: '';
      position: absolute;
      left: 19px;
      top: 40px;
      bottom: 0;
      width: 2px;
      background: var(--cream-400);
    }
    .ly-process-item:last-child::before { display: none; }
    .ly-process-num {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--brown-800);
      color: var(--cream-200);
      font-family: "Noto Serif SC", serif;
      font-size: 0.9rem;
      font-weight: 700;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .ly-process-content h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      font-size: 1.05rem;
      margin-bottom: 0.3rem;
      margin-top: 0.5rem;
    }
    .ly-process-content p { font-size: 0.88rem; color: var(--brown-600); line-height: 1.7; }

    /* FAQ */
    .ly-faq-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .ly-faq-list { max-width: 750px; margin: 2rem auto 0; }
    .ly-faq-item { border-bottom: 1px solid var(--cream-300); }
    .ly-faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 0;
      cursor: pointer;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brown-800);
      transition: color 0.3s;
    }
    .ly-faq-q:hover { color: var(--brown-500); }
    .ly-faq-q svg { width: 20px; height: 20px; color: var(--brown-400); transition: transform 0.3s; flex-shrink: 0; }
    .ly-faq-item.active .ly-faq-q svg { transform: rotate(180deg); }
    .ly-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .ly-faq-item.active .ly-faq-a { max-height: 300px; }
    .ly-faq-a-inner { padding: 0 0 1.25rem; font-size: 0.88rem; color: var(--brown-600); line-height: 1.8; }

    /* CTA */
    .ly-cta {
      background: linear-gradient(160deg, var(--brown-900), #0f0b08);
      padding: 5rem 0;
      text-align: center;
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .ly-cta::before {
      content: '筮';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 18rem;
      font-weight: 700;
      color: rgba(176,104,92,0.03);
      pointer-events: none;
    }
    .ly-cta h2 { font-family: "Noto Serif SC", serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; }
    .ly-cta > .container > p { color: var(--brown-200); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; position: relative; }
    .ly-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
    .ly-cta-features { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; font-size: 0.85rem; color: var(--brown-300); position: relative; }
    .ly-cta-features span { display: flex; align-items: center; gap: 0.35rem; }
    .ly-cta-features svg { width: 16px; height: 16px; color: var(--brown-300); }

    @media (max-width: 1024px) {
      .ly-hero-grid { grid-template-columns: 1fr; }
      .ly-gua-visual { max-width: 360px; margin: 2rem auto 0; }
      .ly-method-grid { grid-template-columns: 1fr; }
      .ly-liuqin-grid { grid-template-columns: repeat(3, 1fr); }
      .ly-scene-grid { grid-template-columns: repeat(2, 1fr); }
      .ly-notice-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .ly-liuqin-grid { grid-template-columns: 1fr 1fr; }
      .ly-scene-grid { grid-template-columns: 1fr; }
    }
  

/* ============================================
   Naming Service Styles
   ============================================ */

    /* ======== 赐名页面专属样式 ======== */

    /* Hero */
    .nm-hero {
      background: linear-gradient(155deg, #1a1410 0%, var(--brown-900) 40%, #0d0a07 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .nm-hero::before {
      content: '名';
      position: absolute;
      top: 50%;
      right: 3%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 26rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
      line-height: 1;
    }
    .nm-hero-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 4rem;
      align-items: center;
    }
    .nm-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .nm-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
    }
    .nm-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .nm-hero-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--brown-200);
      margin-bottom: 2rem;
      max-width: 540px;
    }
    .nm-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.2rem;
    }
    .nm-stat-val {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--cream-100);
    }
    .nm-stat-lbl {
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-top: 0.2rem;
    }
    .nm-hero-btns {
      display: flex;
      gap: 1rem;
    }
    .nm-hero-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .nm-hero-btns .btn-primary:hover {
      background: var(--brown-600);
    }
    .nm-hero-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }

    /* Hero - 汉字展示卡片 */
    .nm-char-card {
      background: rgba(20,16,12,0.7);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: 12px;
      padding: 2rem;
      backdrop-filter: blur(10px);
    }
    .nm-char-card-title {
      font-size: 0.85rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nm-char-card-title span:last-child {
      font-size: 0.75rem;
      opacity: 0.6;
    }
    .nm-char-display {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 1.8rem;
    }
    .nm-char-box {
      width: 100px;
      height: 100px;
      border: 2px solid rgba(176,104,92,0.3);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(176,104,92,0.04);
      position: relative;
    }
    .nm-char-box::before {
      content: '';
      position: absolute;
      top: 4px;
      left: 4px;
      right: 4px;
      bottom: 4px;
      border: 1px solid rgba(176,104,92,0.1);
      border-radius: 4px;
    }
    .nm-char {
      font-family: "Noto Serif SC", serif;
      font-size: 2.8rem;
      font-weight: 700;
      color: var(--brown-300);
    }
    .nm-char-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }
    .nm-char-info-item {
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.1);
      border-radius: 6px;
      padding: 0.6rem 0.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .nm-char-info-label {
      font-size: 0.75rem;
      color: var(--brown-400);
    }
    .nm-char-info-value {
      font-size: 0.8rem;
      color: var(--cream-200);
      font-weight: 500;
    }

    /* 何谓赐名 */
    .nm-intro {
      padding: 5rem 0;
    }
    .nm-intro-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .nm-intro-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 1rem;
    }
    .nm-intro-body {
      max-width: 800px;
      margin: 0 auto;
    }
    .nm-intro-body p {
      font-size: 1rem;
      line-height: 2;
      color: var(--brown-700);
      text-indent: 2em;
      margin-bottom: 1rem;
    }

    /* 取名要则 */
    .nm-principles {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .nm-section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .nm-section-tag {
      display: inline-block;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .nm-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .nm-section-header p {
      font-size: 1rem;
      color: var(--brown-600);
    }
    .nm-principles-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    .nm-principle-card {
      text-align: center;
      padding: 2rem 1.2rem;
      background: white;
      border-radius: 10px;
      border: 1px solid var(--cream-400);
      transition: all 0.3s ease;
    }
    .nm-principle-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
      border-color: var(--brown-300);
    }
    .nm-principle-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
    }
    .nm-principle-card:nth-child(1) .nm-principle-icon { background: #fef3c7; color: #92400e; }
    .nm-principle-card:nth-child(2) .nm-principle-icon { background: #dbeafe; color: #1e40af; }
    .nm-principle-card:nth-child(3) .nm-principle-icon { background: #d1fae5; color: #065f46; }
    .nm-principle-card:nth-child(4) .nm-principle-icon { background: #fce7f3; color: #9d174d; }
    .nm-principle-card:nth-child(5) .nm-principle-icon { background: #ede9fe; color: #5b21b6; }
    .nm-principle-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .nm-principle-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* 服务类型 */
    .nm-services {
      padding: 5rem 0;
    }
    .nm-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .nm-service-card {
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
    }
    .nm-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(80,60,30,0.1);
    }
    .nm-service-top {
      padding: 2rem 1.8rem 1.5rem;
      background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-900) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .nm-service-top::after {
      content: attr(data-char);
      position: absolute;
      bottom: -15px;
      right: 10px;
      font-family: "Noto Serif SC", serif;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }
    .nm-service-label {
      font-size: 0.75rem;
      color: var(--brown-300);
      letter-spacing: 1px;
      margin-bottom: 0.6rem;
    }
    .nm-service-top h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .nm-service-top p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--brown-200);
    }
    .nm-service-bottom {
      padding: 1.5rem 1.8rem 2rem;
    }
    .nm-service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .nm-service-features li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0;
      font-size: 0.9rem;
      color: var(--brown-700);
      border-bottom: 1px solid var(--cream-300);
    }
    .nm-service-features li:last-child {
      border-bottom: none;
    }
    .nm-service-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* 五行配字 */
    .nm-wuxing {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
    }
    .nm-wuxing .nm-section-header h2 { color: var(--cream-100); }
    .nm-wuxing .nm-section-header p { color: var(--brown-300); }
    .nm-wuxing .nm-section-tag { color: var(--brown-400); }
    .nm-wuxing-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.2rem;
    }
    .nm-wx-card {
      text-align: center;
      padding: 2rem 1rem;
      border-radius: 10px;
      border: 1px solid rgba(176,104,92,0.15);
      background: rgba(176,104,92,0.04);
      transition: all 0.3s ease;
    }
    .nm-wx-card:hover {
      background: rgba(176,104,92,0.1);
      border-color: rgba(176,104,92,0.3);
    }
    .nm-wx-symbol {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
    }
    .nm-wx-card:nth-child(1) .nm-wx-symbol { background: rgba(74,222,128,0.15); color: #4ade80; }
    .nm-wx-card:nth-child(2) .nm-wx-symbol { background: rgba(248,113,113,0.15); color: #f87171; }
    .nm-wx-card:nth-child(3) .nm-wx-symbol { background: rgba(251,191,36,0.15); color: #fbbf24; }
    .nm-wx-card:nth-child(4) .nm-wx-symbol { background: rgba(226,232,240,0.15); color: #e2e8f0; }
    .nm-wx-card:nth-child(5) .nm-wx-symbol { background: rgba(96,165,250,0.15); color: #60a5fa; }
    .nm-wx-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--cream-200);
      margin-bottom: 0.5rem;
    }
    .nm-wx-card .nm-wx-attr {
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1rem;
    }
    .nm-wx-chars {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.4rem;
    }
    .nm-wx-chars span {
      display: inline-block;
      padding: 0.2rem 0.5rem;
      background: rgba(176,104,92,0.08);
      border: 1px solid rgba(176,104,92,0.12);
      border-radius: 4px;
      font-size: 0.8rem;
      color: var(--brown-200);
    }

    /* 案例展示 */
    .nm-cases {
      padding: 5rem 0;
    }
    .nm-cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .nm-case-card {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      padding: 2rem;
      transition: all 0.3s ease;
    }
    .nm-case-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
    }
    .nm-case-tag {
      display: inline-block;
      padding: 0.25rem 0.8rem;
      background: var(--cream-200);
      border-radius: 2rem;
      font-size: 0.75rem;
      color: var(--brown-500);
      margin-bottom: 1rem;
    }
    .nm-case-name {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--brown-900);
      letter-spacing: 0.5rem;
      margin-bottom: 0.3rem;
    }
    .nm-case-pinyin {
      font-size: 0.85rem;
      color: var(--brown-400);
      letter-spacing: 1px;
      margin-bottom: 1rem;
    }
    .nm-case-meaning {
      font-size: 0.9rem;
      line-height: 1.8;
      color: var(--brown-700);
      margin-bottom: 1.2rem;
      padding-bottom: 1.2rem;
      border-bottom: 1px solid var(--cream-300);
    }
    .nm-case-meta {
      display: flex;
      gap: 1rem;
    }
    .nm-case-meta-item {
      flex: 1;
      background: var(--cream-100);
      border-radius: 6px;
      padding: 0.5rem 0.8rem;
      text-align: center;
    }
    .nm-case-meta-label {
      font-size: 0.7rem;
      color: var(--brown-400);
      margin-bottom: 0.15rem;
    }
    .nm-case-meta-value {
      font-size: 0.85rem;
      color: var(--brown-800);
      font-weight: 600;
    }

    /* 流程 */
    .nm-process {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .nm-process-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .nm-process-flow::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--brown-300), var(--brown-400), var(--brown-300));
    }
    .nm-step {
      text-align: center;
      position: relative;
    }
    .nm-step-num {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 2px solid var(--brown-400);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--brown-600);
      position: relative;
      z-index: 1;
    }
    .nm-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.5rem;
    }
    .nm-step p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--brown-600);
      padding: 0 0.5rem;
    }

    /* 注意事项 */
    .nm-notice {
      padding: 5rem 0;
    }
    .nm-notice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }
    .nm-notice-box {
      padding: 2rem;
      border-radius: 12px;
    }
    .nm-notice-box.positive {
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
    }
    .nm-notice-box.negative {
      background: #fef2f2;
      border: 1px solid #fecaca;
    }
    .nm-notice-box h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.2rem;
      margin-bottom: 1.2rem;
    }
    .nm-notice-box.positive h3 { color: #166534; }
    .nm-notice-box.negative h3 { color: #991b1b; }
    .nm-notice-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .nm-notice-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.9rem;
      line-height: 1.6;
      padding: 0.5rem 0;
    }
    .nm-notice-box.positive .nm-notice-list li { color: #15803d; }
    .nm-notice-box.negative .nm-notice-list li { color: #b91c1c; }
    .nm-notice-list li::before {
      flex-shrink: 0;
      margin-top: 0.15rem;
    }
    .nm-notice-box.positive .nm-notice-list li::before {
      content: '\2713';
      color: #16a34a;
      font-weight: 700;
    }
    .nm-notice-box.negative .nm-notice-list li::before {
      content: '\2717';
      color: #dc2626;
      font-weight: 700;
    }

    /* FAQ */
    .nm-faq {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .nm-faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .nm-faq-item {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 10px;
      margin-bottom: 0.8rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .nm-faq-item:hover {
      border-color: var(--brown-300);
    }
    .nm-faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }
    .nm-faq-q span {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--brown-800);
      font-weight: 500;
    }
    .nm-faq-q svg {
      width: 20px;
      height: 20px;
      color: var(--brown-400);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .nm-faq-item.active .nm-faq-q svg {
      transform: rotate(180deg);
    }
    .nm-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .nm-faq-item.active .nm-faq-a {
      max-height: 300px;
    }
    .nm-faq-a-inner {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--brown-600);
    }

    /* CTA */
    .nm-cta {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .nm-cta::before {
      content: '赐';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
    }
    .nm-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .nm-cta p {
      font-size: 1.05rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .nm-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      position: relative;
    }
    .nm-cta-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .nm-cta-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }
    .nm-cta-tags {
      display: flex;
      justify-content: center;
      gap: 2rem;
      position: relative;
    }
    .nm-cta-tags span {
      font-size: 0.85rem;
      color: var(--brown-300);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .nm-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .nm-char-card { max-width: 400px; }
      .nm-principles-grid { grid-template-columns: repeat(3, 1fr); }
      .nm-wuxing-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .nm-hero { padding: 6rem 0 3rem; }
      .nm-hero h1 { font-size: 2.4rem; }
      .nm-hero-stats { gap: 1.5rem; }
      .nm-principles-grid { grid-template-columns: repeat(2, 1fr); }
      .nm-services-grid { grid-template-columns: 1fr; }
      .nm-wuxing-grid { grid-template-columns: repeat(2, 1fr); }
      .nm-cases-grid { grid-template-columns: 1fr; }
      .nm-process-flow { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .nm-process-flow::before { display: none; }
      .nm-notice-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .nm-hero h1 { font-size: 2rem; }
      .nm-hero-stats { flex-direction: column; gap: 0.8rem; }
      .nm-hero-btns { flex-direction: column; }
      .nm-principles-grid { grid-template-columns: 1fr; }
      .nm-wuxing-grid { grid-template-columns: 1fr; }
      .nm-process-flow { grid-template-columns: 1fr; }
    }
  

/* ============================================
   Qimen Service Styles
   ============================================ */

    /* ======== 奇门遁甲页面专属样式 ======== */

    /* Hero区 */
    .qm-hero {
      background: linear-gradient(160deg, var(--brown-900) 0%, #0f0b08 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .qm-hero::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(176,104,92,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .qm-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .qm-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.12);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .qm-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: var(--brown-700);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 0.7rem;
      color: var(--cream-200);
    }
    .qm-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: 0.15em;
      margin-bottom: 1.25rem;
    }
    .qm-hero-desc {
      color: var(--brown-200);
      line-height: 1.85;
      margin-bottom: 2rem;
      max-width: 520px;
    }
    .qm-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.5rem;
    }
    .qm-stat { display: flex; flex-direction: column; }
    .qm-stat-num {
      font-family: "Noto Serif SC", serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--brown-300);
    }
    .qm-stat-label {
      font-size: 0.78rem;
      color: var(--brown-400);
      margin-top: 0.2rem;
    }
    .qm-hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* 同心盘可视化 */
    .qm-pan-visual {
      position: relative;
      width: 380px;
      height: 380px;
      margin: 0 auto;
    }
    .qm-ring {
      position: absolute;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .qm-ring-outer {
      width: 380px;
      height: 380px;
      top: 0;
      left: 0;
      border: 1px solid rgba(176,104,92,0.2);
      background: rgba(176,104,92,0.04);
      animation: qm-spin 90s linear infinite;
    }
    .qm-ring-mid {
      width: 270px;
      height: 270px;
      top: 55px;
      left: 55px;
      border: 1px solid rgba(176,104,92,0.25);
      background: rgba(176,104,92,0.06);
      animation: qm-spin-reverse 60s linear infinite;
    }
    .qm-ring-inner {
      width: 170px;
      height: 170px;
      top: 105px;
      left: 105px;
      border: 1px solid rgba(176,104,92,0.3);
      background: rgba(176,104,92,0.08);
      animation: qm-spin 45s linear infinite;
    }
    .qm-ring-core {
      width: 80px;
      height: 80px;
      top: 150px;
      left: 150px;
      background: linear-gradient(135deg, var(--brown-700), var(--brown-800));
      border: 1px solid rgba(176,104,92,0.4);
      font-family: "Noto Serif SC", serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--cream-200);
      letter-spacing: 0.05em;
    }
    @keyframes qm-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes qm-spin-reverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

    /* 盘上标注 */
    .qm-ring-label {
      position: absolute;
      font-size: 0.72rem;
      font-family: "Noto Serif SC", serif;
      color: var(--brown-300);
      background: rgba(45,31,20,0.85);
      padding: 0.15rem 0.45rem;
      border-radius: 3px;
      white-space: nowrap;
      letter-spacing: 0.05em;
    }
    /* 外圈-八神标注 (8方位) */
    .qm-ring-outer .qm-ring-label:nth-child(1) { top: 8px; left: 50%; transform: translateX(-50%); } /* 南-值符 */
    .qm-ring-outer .qm-ring-label:nth-child(2) { top: 55px; right: 55px; } /* 西南-螣蛇 */
    .qm-ring-outer .qm-ring-label:nth-child(3) { right: 8px; top: 50%; transform: translateY(-50%); } /* 西-太阴 */
    .qm-ring-outer .qm-ring-label:nth-child(4) { bottom: 55px; right: 55px; } /* 西北-六合 */
    .qm-ring-outer .qm-ring-label:nth-child(5) { bottom: 8px; left: 50%; transform: translateX(-50%); } /* 北-白虎 */
    .qm-ring-outer .qm-ring-label:nth-child(6) { bottom: 55px; left: 55px; } /* 东北-玄武 */
    .qm-ring-outer .qm-ring-label:nth-child(7) { left: 8px; top: 50%; transform: translateY(-50%); } /* 东-九地 */
    .qm-ring-outer .qm-ring-label:nth-child(8) { top: 55px; left: 55px; } /* 东南-九天 */
    /* 中圈-八门标注 (8方位) */
    .qm-ring-mid .qm-ring-label:nth-child(1) { top: 6px; left: 50%; transform: translateX(-50%); } /* 南-休门 */
    .qm-ring-mid .qm-ring-label:nth-child(2) { top: 40px; right: 40px; } /* 西南-生门 */
    .qm-ring-mid .qm-ring-label:nth-child(3) { right: 6px; top: 50%; transform: translateY(-50%); } /* 西-伤门 */
    .qm-ring-mid .qm-ring-label:nth-child(4) { bottom: 40px; right: 40px; } /* 西北-杜门 */
    .qm-ring-mid .qm-ring-label:nth-child(5) { bottom: 6px; left: 50%; transform: translateX(-50%); } /* 北-景门 */
    .qm-ring-mid .qm-ring-label:nth-child(6) { bottom: 40px; left: 40px; } /* 东北-死门 */
    .qm-ring-mid .qm-ring-label:nth-child(7) { left: 6px; top: 50%; transform: translateY(-50%); } /* 东-惊门 */
    .qm-ring-mid .qm-ring-label:nth-child(8) { top: 40px; left: 40px; } /* 东南-开门 */
    /* 内圈-八卦标注 (8方位) */
    .qm-ring-inner .qm-ring-label:nth-child(1) { top: 4px; left: 50%; transform: translateX(-50%); } /* 南-离卦 */
    .qm-ring-inner .qm-ring-label:nth-child(2) { top: 26px; right: 26px; } /* 西南-坤卦 */
    .qm-ring-inner .qm-ring-label:nth-child(3) { right: 4px; top: 50%; transform: translateY(-50%); } /* 西-兑卦 */
    .qm-ring-inner .qm-ring-label:nth-child(4) { bottom: 26px; right: 26px; } /* 西北-乾卦 */
    .qm-ring-inner .qm-ring-label:nth-child(5) { bottom: 4px; left: 50%; transform: translateX(-50%); } /* 北-坎卦 */
    .qm-ring-inner .qm-ring-label:nth-child(6) { bottom: 26px; left: 26px; } /* 东北-艮卦 */
    .qm-ring-inner .qm-ring-label:nth-child(7) { left: 4px; top: 50%; transform: translateY(-50%); } /* 东-震卦 */
    .qm-ring-inner .qm-ring-label:nth-child(8) { top: 26px; left: 26px; } /* 东南-巽卦 */
    /* 盘名标注 */
    .qm-pan-labels {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      pointer-events: none;
    }
    .qm-pan-tag {
      position: absolute;
      font-size: 0.65rem;
      padding: 0.15rem 0.5rem;
      border-radius: 2px;
      font-family: "Noto Serif SC", serif;
      letter-spacing: 0.1em;
    }
    .qm-pan-tag.sky { top: -12px; right: -8px; background: rgba(100,140,180,0.2); color: #8ab4d6; border: 1px solid rgba(100,140,180,0.3); }
    .qm-pan-tag.human { top: 42px; right: -20px; background: rgba(180,140,60,0.15); color: #c8a85a; border: 1px solid rgba(180,140,60,0.25); }
    .qm-pan-tag.earth { bottom: 42px; right: -16px; background: rgba(120,160,80,0.15); color: #8cb85a; border: 1px solid rgba(120,160,80,0.25); }
    .qm-pan-tag.god { bottom: -12px; right: -8px; background: rgba(160,100,160,0.15); color: #c08ac0; border: 1px solid rgba(160,100,160,0.25); }

    /* 四盘体系 */
    .sipan-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .sipan-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 2.5rem;
    }
    .sipan-layers {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .sipan-layer {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.25rem 1.5rem;
      border-left: 3px solid;
      position: relative;
      transition: background 0.3s;
    }
    .sipan-layer:hover { background: rgba(176,104,92,0.05); }
    .sipan-layer::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 1.5rem;
      right: 0;
      height: 1px;
      background: var(--cream-300);
    }
    .sipan-layer:last-child::after { display: none; }
    .sipan-layer.sky { border-color: #6c8faa; }
    .sipan-layer.human { border-color: #b89840; }
    .sipan-layer.earth { border-color: #6ca050; }
    .sipan-layer.god { border-color: #9868a0; }
    .sipan-layer-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.2rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .sipan-layer.sky .sipan-layer-icon { background: rgba(100,140,180,0.12); color: #5a8ab4; }
    .sipan-layer.human .sipan-layer-icon { background: rgba(180,140,60,0.12); color: #a08030; }
    .sipan-layer.earth .sipan-layer-icon { background: rgba(100,160,80,0.1); color: #5a9840; }
    .sipan-layer.god .sipan-layer-icon { background: rgba(160,100,160,0.1); color: #8860a0; }
    .sipan-layer h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.25rem;
      font-size: 1.05rem;
    }
    .sipan-layer p {
      font-size: 0.85rem;
      color: var(--brown-600);
      line-height: 1.6;
    }
    .sipan-desc {
      padding: 1.5rem;
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
    }
    .sipan-desc h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--brown-800);
      margin-bottom: 1rem;
    }
    .sipan-desc p {
      font-size: 0.9rem;
      color: var(--brown-600);
      line-height: 1.85;
      margin-bottom: 1rem;
    }
    .sipan-desc p:last-child { margin-bottom: 0; }
    .sipan-keypoint {
      display: flex;
      gap: 0.5rem;
      align-items: flex-start;
      padding: 0.75rem 1rem;
      background: rgba(176,104,92,0.06);
      border-radius: var(--radius-md);
      margin-top: 1rem;
    }
    .sipan-keypoint svg { width: 18px; height: 18px; color: var(--brown-500); flex-shrink: 0; margin-top: 2px; }
    .sipan-keypoint span { font-size: 0.85rem; color: var(--brown-700); line-height: 1.6; }

    /* 九星 */
    .jiuxing-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .jiuxing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 2.5rem;
      background: var(--cream-300);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .jx-cell {
      background: var(--cream-50);
      padding: 1.5rem;
      text-align: center;
      transition: background 0.3s;
    }
    .jx-cell:hover { background: var(--cream-100); }
    .jx-cell.center-cell {
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .jx-cell.center-cell .jx-nature { color: var(--brown-300); }
    .jx-cell.center-cell .jx-meaning { color: var(--brown-200); }
    .jx-num {
      font-family: "Noto Serif SC", serif;
      font-size: 0.7rem;
      color: var(--brown-400);
      margin-bottom: 0.5rem;
    }
    .jx-name {
      font-family: "Noto Serif SC", serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--brown-800);
      margin-bottom: 0.35rem;
    }
    .jx-cell.center-cell .jx-name { color: var(--cream-100); }
    .jx-nature {
      display: inline-block;
      font-size: 0.72rem;
      padding: 0.15rem 0.5rem;
      border-radius: 2rem;
      margin-bottom: 0.5rem;
    }
    .jx-nature.ji { background: rgba(76,133,72,0.12); color: #4c8548; }
    .jx-nature.xiong { background: rgba(180,70,60,0.1); color: #b4463c; }
    .jx-nature.ping { background: rgba(176,104,92,0.12); color: var(--brown-500); }
    .jx-nature.center-nature { background: rgba(200,180,120,0.2); }
    .jx-meaning {
      font-size: 0.8rem;
      color: var(--brown-600);
      line-height: 1.5;
    }

    /* 八门罗盘 */
    .bamen-section {
      padding: var(--spacing-2xl) 0;
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .bamen-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 2.5rem;
    }
    .bamen-compass {
      position: relative;
      width: 340px;
      height: 340px;
      margin: 0 auto;
    }
    .bamen-compass-bg {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid rgba(176,104,92,0.2);
      background: rgba(176,104,92,0.04);
    }
    .bamen-compass-inner {
      position: absolute;
      width: 130px;
      height: 130px;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      border: 1px solid rgba(176,104,92,0.2);
      background: rgba(176,104,92,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 0.85rem;
      color: var(--brown-300);
      flex-direction: column;
      gap: 0.25rem;
    }
    .bamen-compass-inner span:first-child {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cream-200);
    }
    .bamen-gate {
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.2rem;
      transform: translate(-50%, -50%);
    }
    .bamen-gate-char {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.05rem;
      font-weight: 700;
      border: 1px solid rgba(176,104,92,0.3);
    }
    .bamen-gate-char.gate-ji { background: rgba(76,133,72,0.2); color: #7db87a; border-color: rgba(76,133,72,0.35); }
    .bamen-gate-char.gate-xiong { background: rgba(180,70,60,0.2); color: #d47a72; border-color: rgba(180,70,60,0.35); }
    .bamen-gate-char.gate-ping { background: rgba(176,104,92,0.15); color: var(--brown-300); }
    .bamen-gate-label {
      font-size: 0.65rem;
      color: var(--brown-400);
    }
    /* 八门位置 - 正八方位 */
    .bamen-gate.south { top: 6%; left: 50%; }
    .bamen-gate.sw { top: 21%; left: 85%; }
    .bamen-gate.west { top: 50%; left: 94%; }
    .bamen-gate.nw { top: 79%; left: 85%; }
    .bamen-gate.north { top: 94%; left: 50%; }
    .bamen-gate.ne { top: 79%; left: 15%; }
    .bamen-gate.east { top: 50%; left: 6%; }
    .bamen-gate.se { top: 21%; left: 15%; }

    .bamen-detail-list {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }
    .bamen-detail-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1rem 1.25rem;
      background: rgba(250,247,242,0.05);
      border: 1px solid rgba(176,104,92,0.12);
      border-radius: var(--radius-md);
      transition: background 0.3s;
    }
    .bamen-detail-item:hover { background: rgba(250,247,242,0.08); }
    .bamen-detail-name {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
      width: 48px;
      flex-shrink: 0;
      color: var(--cream-200);
    }
    .bamen-detail-tag {
      font-size: 0.65rem;
      padding: 0.1rem 0.35rem;
      border-radius: 2px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .bamen-detail-tag.ji { background: rgba(76,133,72,0.25); color: #7db87a; }
    .bamen-detail-tag.xiong { background: rgba(180,70,60,0.25); color: #d47a72; }
    .bamen-detail-tag.ping { background: rgba(176,104,92,0.2); color: var(--brown-300); }
    .bamen-detail-text {
      font-size: 0.82rem;
      color: var(--brown-200);
      line-height: 1.5;
    }

    /* 三奇六仪 */
    .sanqi-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-50);
    }
    .sanqi-tabs {
      display: flex;
      gap: 0.5rem;
      margin-top: 2rem;
      margin-bottom: 2rem;
      justify-content: center;
    }
    .sanqi-tab {
      padding: 0.5rem 1.5rem;
      border: 1px solid var(--cream-400);
      border-radius: 2rem;
      font-family: "Noto Serif SC", serif;
      font-size: 0.9rem;
      color: var(--brown-600);
      cursor: pointer;
      background: transparent;
      transition: all 0.3s;
    }
    .sanqi-tab.active {
      background: var(--brown-800);
      color: var(--cream-100);
      border-color: var(--brown-800);
    }
    .sanqi-content { display: none; }
    .sanqi-content.active { display: block; }
    .sanqi-items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .liuyi-items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .sq-card {
      background: var(--cream-100);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .sq-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .sq-char {
      width: 56px;
      height: 56px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
    }
    .sq-card.wood .sq-char { background: rgba(76,133,72,0.12); color: #4c8548; border: 1px solid rgba(76,133,72,0.25); }
    .sq-card.fire .sq-char { background: rgba(180,70,60,0.1); color: #b4463c; border: 1px solid rgba(180,70,60,0.2); }
    .sq-card.earth .sq-char { background: rgba(180,140,60,0.12); color: #a08030; border: 1px solid rgba(180,140,60,0.25); }
    .sq-card.metal .sq-char { background: rgba(176,104,92,0.12); color: var(--brown-600); border: 1px solid rgba(176,104,92,0.25); }
    .sq-card.water .sq-char { background: rgba(60,100,170,0.1); color: #3c64aa; border: 1px solid rgba(60,100,170,0.2); }
    .sq-card h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.25rem;
    }
    .sq-alias {
      font-size: 0.75rem;
      color: var(--brown-500);
      margin-bottom: 0.75rem;
    }
    .sq-card p {
      font-size: 0.85rem;
      color: var(--brown-600);
      line-height: 1.65;
    }

    /* 应用场景 - 不同于原版的三列卡片 */
    .qm-use-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .qm-use-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .qm-use-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .qm-use-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }
    .qm-use-num {
      position: absolute;
      top: -8px;
      right: 12px;
      font-family: "Noto Serif SC", serif;
      font-size: 4rem;
      font-weight: 700;
      color: var(--cream-300);
      line-height: 1;
      pointer-events: none;
    }
    .qm-use-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(176,104,92,0.1);
      border-radius: var(--radius-md);
      color: var(--brown-500);
      margin-bottom: 1.25rem;
    }
    .qm-use-icon svg { width: 22px; height: 22px; }
    .qm-use-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.75rem;
    }
    .qm-use-card p {
      font-size: 0.88rem;
      color: var(--brown-600);
      line-height: 1.7;
      margin-bottom: 1rem;
    }
    .qm-use-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.35rem;
    }
    .qm-use-tags span {
      font-size: 0.7rem;
      padding: 0.15rem 0.5rem;
      background: rgba(176,104,92,0.08);
      border: 1px solid var(--cream-400);
      border-radius: 2rem;
      color: var(--brown-500);
    }

    /* 预测流程 - 横向步骤 */
    .qm-flow-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .qm-flow-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 0;
      margin-top: 2.5rem;
      position: relative;
    }
    .qm-flow-steps::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 10%;
      right: 10%;
      height: 2px;
      background: linear-gradient(to right, var(--cream-400), var(--brown-400), var(--cream-400));
    }
    .qm-flow-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .qm-flow-num {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream-50);
      border: 2px solid var(--brown-400);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brown-700);
    }
    .qm-flow-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.5rem;
    }
    .qm-flow-step p {
      font-size: 0.82rem;
      color: var(--brown-600);
      line-height: 1.5;
      max-width: 160px;
      margin: 0 auto;
    }

    /* FAQ */
    .qm-faq-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-50);
    }
    .qm-faq-list {
      max-width: 750px;
      margin: 2rem auto 0;
    }
    .qm-faq-item {
      border-bottom: 1px solid var(--cream-300);
    }
    .qm-faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.25rem 0;
      cursor: pointer;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brown-800);
      transition: color 0.3s;
    }
    .qm-faq-q:hover { color: var(--brown-500); }
    .qm-faq-q svg {
      width: 20px;
      height: 20px;
      color: var(--brown-400);
      transition: transform 0.3s;
      flex-shrink: 0;
    }
    .qm-faq-item.active .qm-faq-q svg { transform: rotate(180deg); }
    .qm-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .qm-faq-item.active .qm-faq-a { max-height: 300px; }
    .qm-faq-a-inner {
      padding: 0 0 1.25rem;
      font-size: 0.88rem;
      color: var(--brown-600);
      line-height: 1.8;
    }

    /* CTA */
    .qm-cta {
      background: linear-gradient(160deg, var(--brown-900), #0f0b08);
      padding: 5rem 0;
      text-align: center;
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .qm-cta::before {
      content: '遁';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 18rem;
      font-weight: 700;
      color: rgba(176,104,92,0.03);
      pointer-events: none;
    }
    .qm-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.75rem;
      position: relative;
    }
    .qm-cta > .container > p {
      color: var(--brown-200);
      max-width: 520px;
      margin: 0 auto 2rem;
      line-height: 1.7;
      position: relative;
    }
    .qm-cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
    }
    .qm-cta-features {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
      font-size: 0.85rem;
      color: var(--brown-300);
      position: relative;
    }
    .qm-cta-features span {
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .qm-cta-features svg {
      width: 16px;
      height: 16px;
      color: var(--brown-300);
    }

    /* 响应式 */
    @media (max-width: 1024px) {
      .qm-hero-grid { grid-template-columns: 1fr; }
      .qm-pan-visual { width: 320px; height: 320px; margin-top: 2rem; }
      .qm-ring-outer { width: 320px; height: 320px; }
      .qm-ring-mid { width: 230px; height: 230px; top: 45px; left: 45px; }
      .qm-ring-inner { width: 145px; height: 145px; top: 87px; left: 87px; }
      .qm-ring-core { width: 70px; height: 70px; top: 125px; left: 125px; }
      .sipan-grid { grid-template-columns: 1fr; }
      .bamen-layout { grid-template-columns: 1fr; }
      .bamen-compass { margin-bottom: 2rem; }
      .qm-use-grid { grid-template-columns: repeat(2, 1fr); }
      .qm-flow-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
      .qm-flow-steps::before { display: none; }
    }
    @media (max-width: 768px) {
      .qm-hero-stats { gap: 1.5rem; }
      .jiuxing-grid { grid-template-columns: repeat(3, 1fr); }
      .sanqi-items { grid-template-columns: 1fr; }
      .liuyi-items { grid-template-columns: 1fr; }
      .qm-use-grid { grid-template-columns: 1fr; }
      .qm-flow-steps { grid-template-columns: 1fr; gap: 1rem; }
    }
  

/* ============================================
   Ziwei Service Styles
   ============================================ */

    /* ======== 紫微斗数页面专属样式 ======== */

    /* Hero */
    .zw-hero {
      background: linear-gradient(160deg, #0a0712 0%, var(--brown-900) 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .zw-hero::before {
      content: '';
      position: absolute;
      top: -20%;
      right: -5%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(140,100,180,0.06) 0%, transparent 70%);
      pointer-events: none;
    }
    .zw-hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .zw-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(140,100,180,0.1);
      border: 1px solid rgba(140,100,180,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: #c0a0d8;
      margin-bottom: 1.5rem;
    }
    .zw-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: rgba(140,100,180,0.2);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 0.7rem;
      color: #d0b8e8;
    }
    .zw-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: 0.15em;
      margin-bottom: 1.25rem;
    }
    .zw-hero-desc { color: var(--brown-200); line-height: 1.85; margin-bottom: 2rem; max-width: 520px; }
    .zw-hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; }
    .zw-stat { display: flex; flex-direction: column; }
    .zw-stat-num { font-family: "Noto Serif SC", serif; font-size: 1.7rem; font-weight: 700; color: #c0a0d8; }
    .zw-stat-label { font-size: 0.78rem; color: var(--brown-400); margin-top: 0.2rem; }

    /* 命盘可视化 - 4x4宫格 */
    .zw-plate {
      background: rgba(140,100,180,0.04);
      border: 1px solid rgba(140,100,180,0.12);
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .zw-plate-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(4, 1fr);
    }
    .zw-palace {
      border: 1px solid rgba(140,100,180,0.1);
      padding: 0.6rem 0.5rem;
      text-align: center;
      min-height: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: background 0.3s;
    }
    .zw-palace:hover { background: rgba(140,100,180,0.06); }
    .zw-palace-name {
      font-family: "Noto Serif SC", serif;
      font-size: 0.72rem;
      color: #c0a0d8;
      margin-bottom: 0.2rem;
    }
    .zw-palace-star {
      font-family: "Noto Serif SC", serif;
      font-size: 0.62rem;
      color: var(--brown-300);
      line-height: 1.4;
    }
    .zw-palace.center {
      grid-column: 2 / 4;
      grid-row: 2 / 4;
      background: rgba(140,100,180,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 0.25rem;
    }
    .zw-palace.center .zw-palace-name {
      font-size: 1rem;
      font-weight: 700;
      color: #d0b8e8;
    }
    .zw-palace.center .zw-palace-star { font-size: 0.7rem; color: var(--brown-400); }

    /* 十四主星 */
    .zw-stars-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .zw-stars-group { margin-top: 2.5rem; }
    .zw-stars-group-title {
      font-family: "Noto Serif SC", serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--brown-700);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 1px solid var(--cream-400);
    }
    .zw-stars-row {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .zw-star-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 1.25rem 0.75rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .zw-star-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.05); }
    .zw-star-char {
      width: 44px;
      height: 44px;
      margin: 0 auto 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.15rem;
      font-weight: 700;
      border-radius: 50%;
      background: rgba(140,100,180,0.1);
      color: #7858a0;
      border: 1px solid rgba(140,100,180,0.2);
    }
    .zw-star-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--brown-800); font-size: 0.9rem; margin-bottom: 0.2rem; }
    .zw-star-attr { font-size: 0.72rem; color: var(--brown-500); }

    /* 十二宫位 */
    .zw-gong-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .zw-gong-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 2.5rem;
    }
    .zw-gong-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 1.75rem 1.25rem;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .zw-gong-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
    .zw-gong-num {
      position: absolute;
      top: -5px;
      right: 8px;
      font-family: "Noto Serif SC", serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--cream-300);
      line-height: 1;
      pointer-events: none;
    }
    .zw-gong-card h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
    .zw-gong-card p { font-size: 0.85rem; color: var(--brown-600); line-height: 1.65; }

    /* 四化飞星 */
    .zw-sihua-section {
      padding: var(--spacing-2xl) 0;
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .zw-sihua-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .zw-sihua-card {
      background: rgba(250,247,242,0.04);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: background 0.3s;
    }
    .zw-sihua-card:hover { background: rgba(250,247,242,0.07); }
    .zw-sihua-char {
      width: 56px;
      height: 56px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      border-radius: 50%;
    }
    .zw-sihua-card:nth-child(1) .zw-sihua-char { background: rgba(76,133,72,0.15); color: #7db87a; border: 1px solid rgba(76,133,72,0.3); }
    .zw-sihua-card:nth-child(2) .zw-sihua-char { background: rgba(180,70,60,0.15); color: #d47a72; border: 1px solid rgba(180,70,60,0.3); }
    .zw-sihua-card:nth-child(3) .zw-sihua-char { background: rgba(60,100,170,0.15); color: #7a9ed4; border: 1px solid rgba(60,100,170,0.3); }
    .zw-sihua-card:nth-child(4) .zw-sihua-char { background: rgba(176,104,92,0.15); color: var(--brown-300); border: 1px solid rgba(176,104,92,0.3); }
    .zw-sihua-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--cream-100); margin-bottom: 0.35rem; }
    .zw-sihua-card p { font-size: 0.85rem; color: var(--brown-200); line-height: 1.65; }

    /* 分析维度 */
    .zw-analysis-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-50);
    }
    .zw-analysis-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .zw-analysis-card {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      padding: 1.5rem;
      background: var(--cream-100);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      transition: background 0.3s;
    }
    .zw-analysis-card:hover { background: var(--cream-200); }
    .zw-analysis-icon {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(140,100,180,0.08);
      border-radius: var(--radius-md);
      color: #7858a0;
      flex-shrink: 0;
    }
    .zw-analysis-icon svg { width: 22px; height: 22px; }
    .zw-analysis-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--brown-800); margin-bottom: 0.35rem; font-size: 1rem; }
    .zw-analysis-card p { font-size: 0.85rem; color: var(--brown-600); line-height: 1.65; }

    /* 流程 */
    .zw-process-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .zw-process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .zw-process-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      text-align: center;
      position: relative;
    }
    .zw-process-num {
      width: 48px;
      height: 48px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--brown-800);
      color: var(--cream-200);
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
    }
    .zw-process-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--brown-800); margin-bottom: 0.5rem; }
    .zw-process-card p { font-size: 0.85rem; color: var(--brown-600); line-height: 1.6; }

    /* FAQ */
    .zw-faq-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .zw-faq-list { max-width: 750px; margin: 2rem auto 0; }
    .zw-faq-item { border-bottom: 1px solid var(--cream-300); }
    .zw-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-family: "Noto Serif SC", serif; font-size: 1rem; font-weight: 600; color: var(--brown-800); transition: color 0.3s; }
    .zw-faq-q:hover { color: var(--brown-500); }
    .zw-faq-q svg { width: 20px; height: 20px; color: var(--brown-400); transition: transform 0.3s; flex-shrink: 0; }
    .zw-faq-item.active .zw-faq-q svg { transform: rotate(180deg); }
    .zw-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .zw-faq-item.active .zw-faq-a { max-height: 300px; }
    .zw-faq-a-inner { padding: 0 0 1.25rem; font-size: 0.88rem; color: var(--brown-600); line-height: 1.8; }

    /* CTA */
    .zw-cta {
      background: linear-gradient(160deg, #0a0712, var(--brown-900));
      padding: 5rem 0;
      text-align: center;
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .zw-cta::before {
      content: '星';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 18rem;
      font-weight: 700;
      color: rgba(140,100,180,0.03);
      pointer-events: none;
    }
    .zw-cta h2 { font-family: "Noto Serif SC", serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; }
    .zw-cta > .container > p { color: var(--brown-200); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; position: relative; }
    .zw-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
    .zw-cta-features { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; font-size: 0.85rem; color: var(--brown-300); position: relative; }
    .zw-cta-features span { display: flex; align-items: center; gap: 0.35rem; }
    .zw-cta-features svg { width: 16px; height: 16px; }

    @media (max-width: 1024px) {
      .zw-hero-grid { grid-template-columns: 1fr; }
      .zw-plate { max-width: 420px; margin: 2rem auto 0; }
      .zw-stars-row { grid-template-columns: repeat(4, 1fr); }
      .zw-gong-grid { grid-template-columns: repeat(3, 1fr); }
      .zw-sihua-grid { grid-template-columns: repeat(2, 1fr); }
      .zw-analysis-grid { grid-template-columns: 1fr; }
      .zw-process-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .zw-stars-row { grid-template-columns: repeat(3, 1fr); }
      .zw-gong-grid { grid-template-columns: repeat(2, 1fr); }
      .zw-sihua-grid { grid-template-columns: 1fr; }
      .zw-process-grid { grid-template-columns: 1fr; }
    }
  

/* ============================================
   Ceremony Service Styles
   ============================================ */

    /* ======== 择吉页面专属样式 ======== */

    /* Hero */
    .cr-hero {
      background: linear-gradient(155deg, #1a1410 0%, var(--brown-900) 40%, #0d0a07 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .cr-hero::before {
      content: '吉';
      position: absolute;
      top: 50%;
      right: 3%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 26rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
      line-height: 1;
    }
    .cr-hero-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 4rem;
      align-items: center;
    }
    .cr-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .cr-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
    }
    .cr-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .cr-hero-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--brown-200);
      margin-bottom: 2rem;
      max-width: 540px;
    }
    .cr-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.2rem;
    }
    .cr-stat-val {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--cream-100);
    }
    .cr-stat-lbl {
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-top: 0.2rem;
    }
    .cr-hero-btns {
      display: flex;
      gap: 1rem;
    }
    .cr-hero-btns .btn-primary { background: var(--brown-500); border-color: var(--brown-500); }
    .cr-hero-btns .btn-primary:hover { background: var(--brown-600); }
    .cr-hero-btns .btn-outline { border-color: rgba(176,104,92,0.35); color: var(--brown-200); }

    /* Hero - 日历卡片 */
    .cr-cal-card {
      background: rgba(20,16,12,0.7);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: 12px;
      padding: 2rem;
      backdrop-filter: blur(10px);
    }
    .cr-cal-card-title {
      font-size: 0.85rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cr-cal-card-title span:last-child { font-size: 0.75rem; opacity: 0.6; }
    .cr-cal-date {
      text-align: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(176,104,92,0.12);
    }
    .cr-cal-year {
      font-size: 0.85rem;
      color: var(--brown-400);
      margin-bottom: 0.3rem;
    }
    .cr-cal-day {
      font-family: "Noto Serif SC", serif;
      font-size: 4rem;
      font-weight: 700;
      color: var(--brown-300);
      line-height: 1.1;
    }
    .cr-cal-lunar {
      font-size: 0.9rem;
      color: var(--brown-300);
      margin-top: 0.3rem;
    }
    .cr-cal-info {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.8rem;
    }
    .cr-cal-info-item {
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.1);
      border-radius: 6px;
      padding: 0.6rem 0.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .cr-cal-info-label { font-size: 0.75rem; color: var(--brown-400); }
    .cr-cal-info-value { font-size: 0.8rem; color: var(--cream-200); font-weight: 500; }
    .cr-cal-yi, .cr-cal-ji {
      margin-top: 1rem;
      padding: 0.8rem;
      border-radius: 6px;
    }
    .cr-cal-yi {
      background: rgba(74,222,128,0.06);
      border: 1px solid rgba(74,222,128,0.12);
    }
    .cr-cal-ji {
      background: rgba(248,113,113,0.06);
      border: 1px solid rgba(248,113,113,0.12);
    }
    .cr-cal-yi-label {
      font-size: 0.75rem;
      color: #4ade80;
      margin-bottom: 0.3rem;
    }
    .cr-cal-ji-label {
      font-size: 0.75rem;
      color: #f87171;
      margin-bottom: 0.3rem;
    }
    .cr-cal-yi-tags, .cr-cal-ji-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
    }
    .cr-cal-yi-tags span {
      padding: 0.15rem 0.5rem;
      background: rgba(74,222,128,0.08);
      border-radius: 3px;
      font-size: 0.75rem;
      color: #86efac;
    }
    .cr-cal-ji-tags span {
      padding: 0.15rem 0.5rem;
      background: rgba(248,113,113,0.08);
      border-radius: 3px;
      font-size: 0.75rem;
      color: #fca5a5;
    }

    /* 何谓择吉 */
    .cr-intro {
      padding: 5rem 0;
    }
    .cr-intro-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .cr-intro-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 1rem;
    }
    .cr-intro-body {
      max-width: 800px;
      margin: 0 auto;
    }
    .cr-intro-body p {
      font-size: 1rem;
      line-height: 2;
      color: var(--brown-700);
      text-indent: 2em;
      margin-bottom: 1rem;
    }

    /* 通用段落标题样式 */
    .cr-section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .cr-section-tag {
      display: inline-block;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .cr-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .cr-section-header p {
      font-size: 1rem;
      color: var(--brown-600);
    }

    /* 择吉要素 */
    .cr-principles {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .cr-principles-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    .cr-principle-card {
      text-align: center;
      padding: 2rem 1.2rem;
      background: white;
      border-radius: 10px;
      border: 1px solid var(--cream-400);
      transition: all 0.3s ease;
    }
    .cr-principle-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
      border-color: var(--brown-300);
    }
    .cr-principle-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
    }
    .cr-principle-card:nth-child(1) .cr-principle-icon { background: #fef3c7; color: #92400e; }
    .cr-principle-card:nth-child(2) .cr-principle-icon { background: #dbeafe; color: #1e40af; }
    .cr-principle-card:nth-child(3) .cr-principle-icon { background: #d1fae5; color: #065f46; }
    .cr-principle-card:nth-child(4) .cr-principle-icon { background: #fce7f3; color: #9d174d; }
    .cr-principle-card:nth-child(5) .cr-principle-icon { background: #ede9fe; color: #5b21b6; }
    .cr-principle-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .cr-principle-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* 服务类型 */
    .cr-services {
      padding: 5rem 0;
    }
    .cr-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .cr-service-card {
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
    }
    .cr-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(80,60,30,0.1);
    }
    .cr-service-top {
      padding: 2rem 1.8rem 1.5rem;
      background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-900) 100%);
      color: white;
      position: relative;
      overflow: hidden;
      min-height: 200px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .cr-service-top::after {
      content: attr(data-char);
      position: absolute;
      bottom: -15px;
      right: 10px;
      font-family: "Noto Serif SC", serif;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }
    .cr-service-label {
      font-size: 0.75rem;
      color: var(--brown-300);
      letter-spacing: 1px;
      margin-bottom: 0.6rem;
    }
    .cr-service-top h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .cr-service-top p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--brown-200);
    }
    .cr-service-bottom {
      padding: 1.5rem 1.8rem 2rem;
    }
    .cr-service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .cr-service-features li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0;
      font-size: 0.9rem;
      color: var(--brown-700);
      border-bottom: 1px solid var(--cream-300);
    }
    .cr-service-features li:last-child { border-bottom: none; }
    .cr-service-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* 十二建星 */
    .cr-stars {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
    }
    .cr-stars .cr-section-header h2 { color: var(--cream-100); }
    .cr-stars .cr-section-header p { color: var(--brown-300); }
    .cr-stars .cr-section-tag { color: var(--brown-400); }
    .cr-stars-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
    }
    .cr-star-card {
      text-align: center;
      padding: 1.5rem 0.8rem;
      border-radius: 10px;
      border: 1px solid rgba(176,104,92,0.15);
      background: rgba(176,104,92,0.04);
      transition: all 0.3s ease;
    }
    .cr-star-card:hover {
      background: rgba(176,104,92,0.1);
      border-color: rgba(176,104,92,0.3);
    }
    .cr-star-symbol {
      width: 50px;
      height: 50px;
      margin: 0 auto 0.8rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.3rem;
      font-weight: 700;
    }
    .cr-star-card.ji .cr-star-symbol { background: rgba(74,222,128,0.15); color: #4ade80; }
    .cr-star-card.xiong .cr-star-symbol { background: rgba(248,113,113,0.15); color: #f87171; }
    .cr-star-card.zhong .cr-star-symbol { background: rgba(251,191,36,0.15); color: #fbbf24; }
    .cr-star-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 0.95rem;
      color: var(--cream-200);
      margin-bottom: 0.3rem;
    }
    .cr-star-card .cr-star-attr {
      font-size: 0.75rem;
      color: var(--brown-300);
    }

    /* 流程 */
    .cr-process {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .cr-process-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .cr-process-flow::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--brown-300), var(--brown-400), var(--brown-300));
    }
    .cr-step {
      text-align: center;
      position: relative;
    }
    .cr-step-num {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 2px solid var(--brown-400);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--brown-600);
      position: relative;
      z-index: 1;
    }
    .cr-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.5rem;
    }
    .cr-step p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--brown-600);
      padding: 0 0.5rem;
    }

    /* FAQ */
    .cr-faq {
      padding: 5rem 0;
    }
    .cr-faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .cr-faq-item {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 10px;
      margin-bottom: 0.8rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .cr-faq-item:hover { border-color: var(--brown-300); }
    .cr-faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }
    .cr-faq-q span {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--brown-800);
      font-weight: 500;
    }
    .cr-faq-q svg {
      width: 20px;
      height: 20px;
      color: var(--brown-400);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .cr-faq-item.active .cr-faq-q svg { transform: rotate(180deg); }
    .cr-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .cr-faq-item.active .cr-faq-a { max-height: 300px; }
    .cr-faq-a-inner {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--brown-600);
    }

    /* CTA */
    .cr-cta {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cr-cta::before {
      content: '择';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
    }
    .cr-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .cr-cta p {
      font-size: 1.05rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .cr-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      position: relative;
    }
    .cr-cta-btns .btn-primary { background: var(--brown-500); border-color: var(--brown-500); }
    .cr-cta-btns .btn-outline { border-color: rgba(176,104,92,0.35); color: var(--brown-200); }

    /* Responsive */
    @media (max-width: 1024px) {
      .cr-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .cr-cal-card { max-width: 400px; }
      .cr-principles-grid { grid-template-columns: repeat(3, 1fr); }
      .cr-stars-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .cr-hero { padding: 6rem 0 3rem; }
      .cr-hero h1 { font-size: 2.4rem; }
      .cr-hero-stats { gap: 1.5rem; }
      .cr-principles-grid { grid-template-columns: repeat(2, 1fr); }
      .cr-services-grid { grid-template-columns: 1fr; }
      .cr-stars-grid { grid-template-columns: repeat(2, 1fr); }
      .cr-process-flow { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .cr-process-flow::before { display: none; }
    }
    @media (max-width: 480px) {
      .cr-hero h1 { font-size: 2rem; }
      .cr-hero-stats { flex-direction: column; gap: 0.8rem; }
      .cr-hero-btns { flex-direction: column; }
      .cr-principles-grid { grid-template-columns: 1fr; }
      .cr-stars-grid { grid-template-columns: 1fr; }
      .cr-process-flow { grid-template-columns: 1fr; }
    }
  

/* ============================================
   Worship Service Styles
   ============================================ */

    /* ======== 祭祀祈福页面专属样式 ======== */

    /* Hero */
    .wp-hero {
      background: linear-gradient(155deg, #1a1410 0%, var(--brown-900) 40%, #0d0a07 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .wp-hero::before {
      content: '祈';
      position: absolute;
      top: 50%;
      right: 3%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 26rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
      line-height: 1;
    }
    .wp-hero-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 4rem;
      align-items: center;
    }
    .wp-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .wp-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
    }
    .wp-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .wp-hero-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--brown-200);
      margin-bottom: 2rem;
      max-width: 540px;
    }
    .wp-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.2rem;
    }
    .wp-stat-val {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--cream-100);
    }
    .wp-stat-lbl {
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-top: 0.2rem;
    }
    .wp-hero-btns {
      display: flex;
      gap: 1rem;
    }
    .wp-hero-btns .btn-primary { background: var(--brown-500); border-color: var(--brown-500); }
    .wp-hero-btns .btn-primary:hover { background: var(--brown-600); }
    .wp-hero-btns .btn-outline { border-color: rgba(176,104,92,0.35); color: var(--brown-200); }

    /* Hero - 祭坛卡片 */
    .wp-altar-card {
      background: rgba(20,16,12,0.7);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: 12px;
      padding: 2rem;
      backdrop-filter: blur(10px);
    }
    .wp-altar-card-title {
      font-size: 0.85rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .wp-altar-card-title span:last-child { font-size: 0.75rem; opacity: 0.6; }
    .wp-altar-center {
      text-align: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(176,104,92,0.12);
    }
    .wp-altar-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 0.8rem;
      border: 2px solid rgba(176,104,92,0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--brown-300);
      background: rgba(176,104,92,0.04);
    }
    .wp-altar-label {
      font-size: 0.9rem;
      color: var(--brown-300);
    }
    .wp-altar-items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.6rem;
      margin-bottom: 1.2rem;
    }
    .wp-altar-item {
      text-align: center;
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.1);
      border-radius: 8px;
      padding: 0.8rem 0.5rem;
    }
    .wp-altar-item-icon {
      font-family: "Noto Serif SC", serif;
      font-size: 1.2rem;
      color: var(--brown-300);
      margin-bottom: 0.3rem;
    }
    .wp-altar-item-name {
      font-size: 0.75rem;
      color: var(--brown-400);
    }
    .wp-altar-note {
      text-align: center;
      font-size: 0.78rem;
      color: var(--brown-400);
      font-style: italic;
      padding-top: 0.8rem;
      border-top: 1px solid rgba(176,104,92,0.08);
    }

    /* 通用段落标题 */
    .wp-section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .wp-section-tag {
      display: inline-block;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .wp-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .wp-section-header p {
      font-size: 1rem;
      color: var(--brown-600);
    }

    /* 何谓祭祀 */
    .wp-intro {
      padding: 5rem 0;
    }
    .wp-intro-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .wp-intro-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 1rem;
    }
    .wp-intro-body {
      max-width: 800px;
      margin: 0 auto;
    }
    .wp-intro-body p {
      font-size: 1rem;
      line-height: 2;
      color: var(--brown-700);
      text-indent: 2em;
      margin-bottom: 1rem;
    }

    /* 祭祀时节 */
    .wp-seasons {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .wp-seasons-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    .wp-season-card {
      text-align: center;
      padding: 2rem 1.2rem;
      background: white;
      border-radius: 10px;
      border: 1px solid var(--cream-400);
      transition: all 0.3s ease;
    }
    .wp-season-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
      border-color: var(--brown-300);
    }
    .wp-season-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
    }
    .wp-season-card:nth-child(1) .wp-season-icon { background: #d1fae5; color: #065f46; }
    .wp-season-card:nth-child(2) .wp-season-icon { background: #fef3c7; color: #92400e; }
    .wp-season-card:nth-child(3) .wp-season-icon { background: #fce7f3; color: #9d174d; }
    .wp-season-card:nth-child(4) .wp-season-icon { background: #dbeafe; color: #1e40af; }
    .wp-season-card:nth-child(5) .wp-season-icon { background: #ede9fe; color: #5b21b6; }
    .wp-season-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.4rem;
    }
    .wp-season-card .wp-season-date {
      font-size: 0.8rem;
      color: var(--brown-400);
      margin-bottom: 0.8rem;
    }
    .wp-season-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* 服务类型 */
    .wp-services {
      padding: 5rem 0;
    }
    .wp-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .wp-service-card {
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
    }
    .wp-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(80,60,30,0.1);
    }
    .wp-service-top {
      padding: 2rem 1.8rem 1.5rem;
      background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-900) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .wp-service-top::after {
      content: attr(data-char);
      position: absolute;
      bottom: -15px;
      right: 10px;
      font-family: "Noto Serif SC", serif;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }
    .wp-service-label {
      font-size: 0.75rem;
      color: var(--brown-300);
      letter-spacing: 1px;
      margin-bottom: 0.6rem;
    }
    .wp-service-top h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .wp-service-top p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--brown-200);
    }
    .wp-service-bottom {
      padding: 1.5rem 1.8rem 2rem;
    }
    .wp-service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .wp-service-features li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0;
      font-size: 0.9rem;
      color: var(--brown-700);
      border-bottom: 1px solid var(--cream-300);
    }
    .wp-service-features li:last-child { border-bottom: none; }
    .wp-service-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* 供品详解 */
    .wp-offerings {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
    }
    .wp-offerings .wp-section-header h2 { color: var(--cream-100); }
    .wp-offerings .wp-section-header p { color: var(--brown-300); }
    .wp-offerings .wp-section-tag { color: var(--brown-400); }
    .wp-offerings-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 1rem;
    }
    .wp-offering-card {
      text-align: center;
      padding: 1.5rem 0.8rem;
      border-radius: 10px;
      border: 1px solid rgba(176,104,92,0.15);
      background: rgba(176,104,92,0.04);
      transition: all 0.3s ease;
    }
    .wp-offering-card:hover {
      background: rgba(176,104,92,0.1);
      border-color: rgba(176,104,92,0.3);
    }
    .wp-offering-symbol {
      width: 50px;
      height: 50px;
      margin: 0 auto 0.8rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.3rem;
      font-weight: 700;
      background: rgba(176,104,92,0.15);
      color: var(--brown-200);
    }
    .wp-offering-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 0.95rem;
      color: var(--cream-200);
      margin-bottom: 0.3rem;
    }
    .wp-offering-card .wp-offering-desc {
      font-size: 0.75rem;
      color: var(--brown-300);
    }

    /* 流程 */
    .wp-process {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .wp-process-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .wp-process-flow::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--brown-300), var(--brown-400), var(--brown-300));
    }
    .wp-step {
      text-align: center;
      position: relative;
    }
    .wp-step-num {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 2px solid var(--brown-400);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--brown-600);
      position: relative;
      z-index: 1;
    }
    .wp-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.5rem;
    }
    .wp-step p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--brown-600);
      padding: 0 0.5rem;
    }

    /* 注意事项 */
    .wp-notice {
      padding: 5rem 0;
    }
    .wp-notice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 900px;
      margin: 0 auto;
    }
    .wp-notice-box {
      padding: 2rem;
      border-radius: 12px;
    }
    .wp-notice-box.positive { background: #f0fdf4; border: 1px solid #bbf7d0; }
    .wp-notice-box.negative { background: #fef2f2; border: 1px solid #fecaca; }
    .wp-notice-box h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.2rem;
      margin-bottom: 1.2rem;
    }
    .wp-notice-box.positive h3 { color: #166534; }
    .wp-notice-box.negative h3 { color: #991b1b; }
    .wp-notice-list { list-style: none; padding: 0; margin: 0; }
    .wp-notice-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.9rem;
      line-height: 1.6;
      padding: 0.5rem 0;
    }
    .wp-notice-box.positive .wp-notice-list li { color: #15803d; }
    .wp-notice-box.negative .wp-notice-list li { color: #b91c1c; }
    .wp-notice-list li::before { flex-shrink: 0; margin-top: 0.15rem; }
    .wp-notice-box.positive .wp-notice-list li::before { content: '\2713'; color: #16a34a; font-weight: 700; }
    .wp-notice-box.negative .wp-notice-list li::before { content: '\2717'; color: #dc2626; font-weight: 700; }

    /* FAQ */
    .wp-faq {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .wp-faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .wp-faq-item {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 10px;
      margin-bottom: 0.8rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .wp-faq-item:hover { border-color: var(--brown-300); }
    .wp-faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }
    .wp-faq-q span {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--brown-800);
      font-weight: 500;
    }
    .wp-faq-q svg {
      width: 20px; height: 20px;
      color: var(--brown-400);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .wp-faq-item.active .wp-faq-q svg { transform: rotate(180deg); }
    .wp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .wp-faq-item.active .wp-faq-a { max-height: 300px; }
    .wp-faq-a-inner {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--brown-600);
    }

    /* CTA */
    .wp-cta {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .wp-cta::before {
      content: '愿';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
    }
    .wp-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .wp-cta p {
      font-size: 1.05rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .wp-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      position: relative;
    }
    .wp-cta-btns .btn-primary { background: var(--brown-500); border-color: var(--brown-500); }
    .wp-cta-btns .btn-outline { border-color: rgba(176,104,92,0.35); color: var(--brown-200); }
    .wp-cta-tags {
      display: flex;
      justify-content: center;
      gap: 2rem;
      position: relative;
    }
    .wp-cta-tags span { font-size: 0.85rem; color: var(--brown-300); }

    /* Responsive */
    @media (max-width: 1024px) {
      .wp-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .wp-altar-card { max-width: 400px; }
      .wp-seasons-grid { grid-template-columns: repeat(3, 1fr); }
      .wp-offerings-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .wp-hero { padding: 6rem 0 3rem; }
      .wp-hero h1 { font-size: 2.4rem; }
      .wp-hero-stats { gap: 1.5rem; }
      .wp-seasons-grid { grid-template-columns: repeat(2, 1fr); }
      .wp-services-grid { grid-template-columns: 1fr; }
      .wp-offerings-grid { grid-template-columns: repeat(2, 1fr); }
      .wp-process-flow { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .wp-process-flow::before { display: none; }
      .wp-notice-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .wp-hero h1 { font-size: 2rem; }
      .wp-hero-stats { flex-direction: column; gap: 0.8rem; }
      .wp-hero-btns { flex-direction: column; }
      .wp-seasons-grid { grid-template-columns: 1fr; }
      .wp-offerings-grid { grid-template-columns: 1fr; }
      .wp-process-flow { grid-template-columns: 1fr; }
    }
  

/* ============================================
   Articles Archive Styles
   ============================================ */

    /* ======== 文章列表页专属样式 ======== */

    /* Hero */
    .at-hero {
      background: linear-gradient(155deg, #1a1410 0%, var(--brown-900) 40%, #0d0a07 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .at-hero::before {
      content: '文';
      position: absolute;
      top: 50%;
      right: 3%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 26rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
      line-height: 1;
    }
    .at-hero-inner {
      max-width: 680px;
    }
    .at-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .at-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
    }
    .at-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .at-hero-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--brown-200);
      margin-bottom: 2rem;
    }
    .at-hero-stats {
      display: flex;
      gap: 2.5rem;
    }
    .at-stat-val {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--cream-100);
    }
    .at-stat-lbl {
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-top: 0.2rem;
    }

    /* 分类筛选 */
    .at-filter {
      padding: 3rem 0 0;
    }
    .at-filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
    }
    .at-filter-tab {
      padding: 0.5rem 1.3rem;
      font-size: 0.88rem;
      color: var(--brown-500);
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 2rem;
      cursor: pointer;
      transition: all 0.25s ease;
      font-family: "Noto Serif SC", serif;
    }
    .at-filter-tab:hover {
      border-color: var(--brown-300);
      color: var(--brown-700);
    }
    .at-filter-tab.active {
      background: var(--brown-500);
      color: var(--cream-100);
      border-color: var(--brown-500);
    }

    /* 置顶精选 */
    .at-featured {
      padding: 3rem 0;
    }
    .at-featured-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    .at-featured-card:hover {
      box-shadow: 0 12px 40px rgba(80,60,30,0.1);
      border-color: var(--brown-300);
    }
    .at-featured-visual {
      background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-900) 100%);
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
      min-height: 320px;
    }
    .at-featured-visual::before {
      content: '易';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 14rem;
      font-weight: 900;
      color: rgba(176,104,92,0.04);
      line-height: 1;
    }
    .at-featured-pin {
      position: absolute;
      top: 1.2rem;
      left: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.3rem 0.8rem;
      background: rgba(176,104,92,0.2);
      border: 1px solid rgba(176,104,92,0.3);
      border-radius: 2rem;
      font-size: 0.72rem;
      color: var(--brown-300);
      letter-spacing: 1px;
    }
    .at-featured-icon {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--brown-300);
      position: relative;
      margin-bottom: 1.5rem;
    }
    .at-featured-quote {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--brown-300);
      text-align: center;
      line-height: 1.8;
      position: relative;
      font-style: italic;
    }
    .at-featured-body {
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .at-featured-tag {
      display: inline-block;
      padding: 0.25rem 0.7rem;
      background: rgba(194,51,51,0.1);
      color: var(--brown-500);
      font-size: 0.75rem;
      border-radius: 3px;
      margin-bottom: 1rem;
      width: fit-content;
    }
    .at-featured-body h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--brown-900);
      margin-bottom: 1rem;
      line-height: 1.4;
    }
    .at-featured-body p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--brown-600);
      margin-bottom: 1.5rem;
    }
    .at-featured-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.8rem;
      color: var(--brown-400);
    }
    .at-featured-meta span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    .at-featured-meta svg {
      width: 14px;
      height: 14px;
    }
    .at-featured-readmore {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1.5rem;
      font-size: 0.88rem;
      color: var(--brown-500);
      font-weight: 500;
      transition: gap 0.25s ease;
    }
    .at-featured-card:hover .at-featured-readmore {
      gap: 0.7rem;
    }
    .at-featured-readmore svg {
      width: 16px;
      height: 16px;
    }

    /* 文章网格 */
    .at-articles {
      padding: 0 0 5rem;
    }
    .at-section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .at-section-tag {
      display: inline-block;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .at-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .at-section-header p {
      font-size: 1rem;
      color: var(--brown-600);
    }
    .at-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .at-card {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 10px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .at-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 35px rgba(80,60,30,0.1);
      border-color: var(--brown-300);
    }
    .at-card-top {
      padding: 1.8rem 1.5rem 1.2rem;
      background: linear-gradient(135deg, var(--cream-200) 0%, var(--cream-100) 100%);
      position: relative;
      overflow: hidden;
    }
    .at-card-top::after {
      content: attr(data-char);
      position: absolute;
      bottom: -12px;
      right: 8px;
      font-family: "Noto Serif SC", serif;
      font-size: 5rem;
      font-weight: 900;
      color: rgba(194,51,51,0.04);
      line-height: 1;
    }
    .at-card-tag {
      display: inline-block;
      padding: 0.2rem 0.6rem;
      background: rgba(194,51,51,0.1);
      color: var(--brown-500);
      font-size: 0.72rem;
      border-radius: 3px;
      margin-bottom: 0.8rem;
    }
    .at-card-top h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--brown-900);
      line-height: 1.5;
    }
    .at-card-body {
      padding: 1.2rem 1.5rem 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .at-card-excerpt {
      font-size: 0.85rem;
      line-height: 1.7;
      color: var(--brown-600);
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 1rem;
    }
    .at-card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.75rem;
      color: var(--brown-400);
      padding-top: 0.8rem;
      border-top: 1px solid var(--cream-300);
    }
    .at-card-meta span {
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }
    .at-card-meta svg {
      width: 13px;
      height: 13px;
    }

    /* 分页 */
    .at-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 3rem;
    }
    .at-page-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 8px;
      border: 1px solid var(--cream-400);
      background: white;
      font-family: "Noto Serif SC", serif;
      font-size: 0.9rem;
      color: var(--brown-600);
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .at-page-btn:hover {
      border-color: var(--brown-300);
      color: var(--brown-800);
    }
    .at-page-btn.active {
      background: var(--brown-500);
      color: var(--cream-100);
      border-color: var(--brown-500);
    }
    .at-page-btn svg {
      width: 16px;
      height: 16px;
    }

    /* CTA */
    .at-cta {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .at-cta::before {
      content: '学';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
    }
    .at-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .at-cta p {
      font-size: 1.05rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .at-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      position: relative;
    }
    .at-cta-btns .btn-primary { background: var(--brown-500); border-color: var(--brown-500); }
    .at-cta-btns .btn-outline { border-color: rgba(176,104,92,0.35); color: var(--brown-200); }

    /* Responsive */
    @media (max-width: 1024px) {
      .at-featured-card { grid-template-columns: 1fr; }
      .at-featured-visual { min-height: 240px; }
    }
    @media (max-width: 768px) {
      .at-hero { padding: 6rem 0 3rem; }
      .at-hero h1 { font-size: 2.4rem; }
      .at-hero-stats { gap: 1.5rem; }
      .at-grid { grid-template-columns: 1fr; }
      .at-filter-tabs { gap: 0.4rem; }
      .at-filter-tab { padding: 0.4rem 1rem; font-size: 0.82rem; }
    }
    @media (max-width: 480px) {
      .at-hero h1 { font-size: 2rem; }
      .at-hero-stats { flex-direction: column; gap: 0.8rem; }
      .at-cta h2 { font-size: 1.6rem; }
      .at-cta-btns { flex-direction: column; align-items: center; }
    }
  

/* ============================================
   Article Detail Styles
   ============================================ */

    /* ======== 文章详情页专属样式 ======== */

    /* 标签 */
    .ad-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      padding-top: 2rem;
      margin-top: 2rem;
      border-top: 1px solid var(--cream-300);
    }
    .ad-tags a {
      display: inline-block;
      padding: 0.3rem 0.9rem;
      font-size: 0.82rem;
      color: var(--brown-500);
      background: var(--cream-200);
      border: 1px solid var(--cream-400);
      border-radius: 2rem;
      transition: all 0.25s ease;
      text-decoration: none;
    }
    .ad-tags a:hover {
      background: var(--brown-500);
      color: var(--cream-100);
      border-color: var(--brown-500);
    }

    /* 上一篇 / 下一篇 */
    .ad-nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .ad-nav-item {
      padding: 1.5rem;
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 10px;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .ad-nav-item:hover {
      border-color: var(--brown-300);
      box-shadow: 0 6px 24px rgba(80,60,30,0.08);
      transform: translateY(-2px);
    }
    .ad-nav-label {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.78rem;
      color: var(--brown-400);
      letter-spacing: 1px;
      margin-bottom: 0.6rem;
    }
    .ad-nav-label svg {
      width: 14px;
      height: 14px;
      stroke: var(--brown-400);
    }
    .ad-nav-item.next .ad-nav-label {
      justify-content: flex-end;
    }
    .ad-nav-title {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--brown-800);
      line-height: 1.5;
    }
    .ad-nav-item.next {
      text-align: right;
    }

    /* CTA */
    .ad-cta {
      padding: 4.5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .ad-cta::before {
      content: '易';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
    }
    .ad-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .ad-cta p {
      font-size: 1.02rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .ad-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      position: relative;
    }
    .ad-cta-btns .btn-primary { background: var(--brown-500); border-color: var(--brown-500); }
    .ad-cta-btns .btn-outline { border-color: rgba(176,104,92,0.35); color: var(--brown-200); }

    /* Responsive */
    @media (max-width: 768px) {
      .ad-nav { grid-template-columns: 1fr; }
      .ad-nav-item.next { text-align: left; }
      .ad-nav-item.next .ad-nav-label { justify-content: flex-start; }
    }
    @media (max-width: 480px) {
      .ad-cta h2 { font-size: 1.6rem; }
      .ad-cta-btns { flex-direction: column; align-items: center; }
    }
  

/* ============================================
   Teaching Page Styles
   ============================================ */

    /* ======== 学堂页面专属样式 ======== */

    /* Hero */
    .tc-hero {
      background: linear-gradient(160deg, var(--brown-900) 0%, #0f0b08 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .tc-hero::before {
      content: '学';
      position: absolute;
      bottom: -60px;
      right: 5%;
      font-family: "Noto Serif SC", serif;
      font-size: 24rem;
      font-weight: 700;
      color: rgba(176,104,92,0.03);
      pointer-events: none;
      line-height: 1;
    }
    .tc-hero-inner { max-width: 700px; position: relative; z-index: 1; }
    .tc-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.12);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .tc-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: var(--brown-700);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 0.7rem;
      color: var(--cream-200);
    }
    .tc-hero h1 { font-family: "Noto Serif SC", serif; font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
    .tc-hero-desc { color: var(--brown-200); line-height: 1.85; margin-bottom: 2rem; max-width: 580px; }
    .tc-hero-stats { display: flex; gap: 2.5rem; margin-bottom: 2.5rem; }
    .tc-stat { display: flex; flex-direction: column; }
    .tc-stat-num { font-family: "Noto Serif SC", serif; font-size: 1.7rem; font-weight: 700; color: var(--brown-300); }
    .tc-stat-label { font-size: 0.78rem; color: var(--brown-400); margin-top: 0.2rem; }

    /* 理念 */
    .tc-philosophy-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .tc-philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .tc-philosophy-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .tc-philosophy-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
    .tc-philosophy-char {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      border-radius: 50%;
      background: rgba(176,104,92,0.1);
      color: var(--brown-600);
      border: 1px solid rgba(176,104,92,0.2);
    }
    .tc-philosophy-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--brown-800); margin-bottom: 0.5rem; font-size: 1.1rem; }
    .tc-philosophy-card p { font-size: 0.88rem; color: var(--brown-600); line-height: 1.7; }

    /* 课程体系 */
    .tc-courses-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-100);
    }
    .tc-course-card {
      display: grid;
      grid-template-columns: 100px 1fr auto;
      gap: 2rem;
      align-items: start;
      padding: 2rem;
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      margin-bottom: 1.5rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .tc-course-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }
    .tc-course-visual {
      width: 100px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius-lg);
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .tc-course-card:nth-child(1) .tc-course-visual { background: rgba(176,104,92,0.1); color: var(--brown-600); border: 1px solid rgba(176,104,92,0.2); }
    .tc-course-card:nth-child(2) .tc-course-visual { background: rgba(76,133,72,0.08); color: #4c8548; border: 1px solid rgba(76,133,72,0.2); }
    .tc-course-card:nth-child(3) .tc-course-visual { background: rgba(180,70,60,0.06); color: #b4463c; border: 1px solid rgba(180,70,60,0.15); }
    .tc-course-card:nth-child(4) .tc-course-visual { background: rgba(60,100,170,0.08); color: #3c64aa; border: 1px solid rgba(60,100,170,0.18); }
    .tc-course-body h3 { font-family: "Noto Serif SC", serif; font-size: 1.2rem; font-weight: 700; color: var(--brown-800); margin-bottom: 0.5rem; }
    .tc-course-body .tc-course-sub { font-size: 0.78rem; color: var(--brown-500); margin-bottom: 0.75rem; }
    .tc-course-body p { font-size: 0.9rem; color: var(--brown-600); line-height: 1.75; margin-bottom: 1rem; }
    .tc-course-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
    .tc-course-tags span { font-size: 0.7rem; padding: 0.15rem 0.5rem; background: rgba(176,104,92,0.08); border: 1px solid var(--cream-400); border-radius: 2rem; color: var(--brown-500); }
    .tc-course-meta {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      font-size: 0.82rem;
      color: var(--brown-600);
      min-width: 130px;
      padding: 0.75rem 1rem;
      background: var(--cream-100);
      border-radius: var(--radius-md);
      border: 1px solid var(--cream-300);
    }
    .tc-course-meta strong { color: var(--brown-800); }

    /* 教学特色 */
    .tc-features-section {
      padding: var(--spacing-2xl) 0;
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .tc-features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
    }
    .tc-feature-card {
      background: rgba(250,247,242,0.04);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: var(--radius-lg);
      padding: 2rem 1.25rem;
      text-align: center;
      transition: background 0.3s;
    }
    .tc-feature-card:hover { background: rgba(250,247,242,0.07); }
    .tc-feature-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: rgba(176,104,92,0.12);
      color: var(--brown-300);
    }
    .tc-feature-icon svg { width: 22px; height: 22px; }
    .tc-feature-card h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--cream-100); margin-bottom: 0.5rem; }
    .tc-feature-card p { font-size: 0.85rem; color: var(--brown-200); line-height: 1.65; }

    /* 学习路径 */
    .tc-path-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-50);
    }
    .tc-path-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 2.5rem;
      position: relative;
    }
    .tc-path-steps::before {
      content: '';
      position: absolute;
      top: 36px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(to right, var(--cream-400), var(--brown-400), var(--cream-400));
    }
    .tc-path-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .tc-path-num {
      width: 72px;
      height: 72px;
      margin: 0 auto 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      background: var(--cream-100);
      border: 2px solid var(--brown-400);
      border-radius: 50%;
    }
    .tc-path-num-label { font-family: "Noto Serif SC", serif; font-size: 0.65rem; color: var(--brown-500); }
    .tc-path-num-val { font-family: "Noto Serif SC", serif; font-size: 1.1rem; font-weight: 700; color: var(--brown-700); }
    .tc-path-step h3 { font-family: "Noto Serif SC", serif; font-weight: 600; color: var(--brown-800); margin-bottom: 0.5rem; }
    .tc-path-step p { font-size: 0.82rem; color: var(--brown-600); line-height: 1.5; max-width: 180px; margin: 0 auto; }

    /* FAQ */
    .tc-faq-section {
      padding: var(--spacing-2xl) 0;
      background: var(--cream-200);
    }
    .tc-faq-list { max-width: 750px; margin: 2rem auto 0; }
    .tc-faq-item { border-bottom: 1px solid var(--cream-400); }
    .tc-faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-family: "Noto Serif SC", serif; font-size: 1rem; font-weight: 600; color: var(--brown-800); transition: color 0.3s; }
    .tc-faq-q:hover { color: var(--brown-500); }
    .tc-faq-q svg { width: 20px; height: 20px; color: var(--brown-400); transition: transform 0.3s; flex-shrink: 0; }
    .tc-faq-item.active .tc-faq-q svg { transform: rotate(180deg); }
    .tc-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .tc-faq-item.active .tc-faq-a { max-height: 300px; }
    .tc-faq-a-inner { padding: 0 0 1.25rem; font-size: 0.88rem; color: var(--brown-600); line-height: 1.8; }

    /* CTA */
    .tc-cta {
      background: linear-gradient(160deg, var(--brown-900), #0f0b08);
      padding: 5rem 0;
      text-align: center;
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .tc-cta::before {
      content: '道';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 18rem;
      font-weight: 700;
      color: rgba(176,104,92,0.03);
      pointer-events: none;
    }
    .tc-cta h2 { font-family: "Noto Serif SC", serif; font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; position: relative; }
    .tc-cta > .container > p { color: var(--brown-200); max-width: 520px; margin: 0 auto 2rem; line-height: 1.7; position: relative; }
    .tc-cta-contact {
      display: flex;
      gap: 2rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
      position: relative;
    }
    .tc-cta-contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--brown-200);
    }
    .tc-cta-contact-item svg { width: 18px; height: 18px; color: var(--brown-300); }

    @media (max-width: 1024px) {
      .tc-philosophy-grid { grid-template-columns: 1fr; }
      .tc-course-card { grid-template-columns: 80px 1fr; }
      .tc-course-meta { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1rem; min-width: auto; margin-top: 0.5rem; grid-column: 1 / -1; }
      .tc-features-grid { grid-template-columns: repeat(2, 1fr); }
      .tc-path-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
      .tc-path-steps::before { display: none; }
    }
    @media (max-width: 768px) {
      .tc-course-card { grid-template-columns: 1fr; }
      .tc-course-visual { width: 60px; height: 60px; font-size: 1.5rem; }
      .tc-features-grid { grid-template-columns: 1fr; }
      .tc-path-steps { grid-template-columns: 1fr; }
    }
  

/* ============================================
   Australia Region Styles
   ============================================ */

    /* ======== 澳洲地区服务页专属样式 ======== */

    /* Hero */
    .au-hero {
      background: linear-gradient(160deg, #1a130d 0%, var(--brown-900) 40%, #0f0b08 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .au-hero::before {
      content: '澳';
      position: absolute;
      top: 50%;
      right: 3%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 22rem;
      font-weight: 900;
      color: rgba(176,104,92,0.02);
      pointer-events: none;
      line-height: 1;
    }
    .au-hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 3.5rem;
      align-items: center;
    }
    .au-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.12);
      border: 1px solid rgba(176,104,92,0.25);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .au-badge-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      background: var(--brown-700);
      border-radius: 50%;
      font-size: 0.65rem;
      color: var(--cream-200);
    }
    .au-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      letter-spacing: 0.08em;
      margin-bottom: 1.2rem;
      line-height: 1.25;
    }
    .au-hero h1 span {
      color: var(--brown-300);
    }
    .au-hero-desc {
      font-size: 1.02rem;
      color: var(--brown-200);
      line-height: 1.9;
      margin-bottom: 2rem;
      max-width: 530px;
    }
    .au-hero-tags {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .au-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.35rem 0.8rem;
      background: rgba(176,104,92,0.08);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: 4px;
      font-size: 0.8rem;
      color: var(--brown-300);
    }
    .au-hero-tag svg {
      width: 14px;
      height: 14px;
      opacity: 0.7;
    }
    .au-hero-btns {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .au-hero-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .au-hero-btns .btn-primary:hover {
      background: var(--brown-600);
    }
    .au-hero-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }

    /* Hero 右侧数据卡 */
    .au-hero-card {
      background: rgba(90,24,32,0.5);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: var(--radius-lg);
      padding: 2rem;
      backdrop-filter: blur(10px);
    }
    .au-hero-card-title {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--cream-200);
      margin-bottom: 1.5rem;
      padding-bottom: 0.75rem;
      border-bottom: 1px solid rgba(176,104,92,0.15);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .au-hero-card-title small {
      font-size: 0.75rem;
      color: var(--brown-400);
      font-weight: 400;
    }
    .au-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 1.5rem;
    }
    .au-stat-box {
      text-align: center;
      padding: 1.2rem 0.5rem;
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.12);
      border-radius: var(--radius-md);
    }
    .au-stat-num {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--brown-300);
      margin-bottom: 0.2rem;
    }
    .au-stat-label {
      font-size: 0.75rem;
      color: var(--brown-400);
    }
    .au-hero-card-note {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.8rem 1rem;
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.1);
      border-radius: var(--radius-md);
      font-size: 0.8rem;
      color: var(--brown-300);
      line-height: 1.5;
    }
    .au-hero-card-note svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--brown-400);
    }

    /* 文案区块 - 引言 */
    .au-intro {
      padding: 5rem 0;
      background: var(--cream-50);
    }
    .au-intro-inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }
    .au-intro-seal {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.5rem;
      border: 2px solid var(--brown-400);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--cinnabar);
      transform: rotate(3deg);
    }
    .au-intro h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--brown-900);
      margin-bottom: 1.25rem;
    }
    .au-intro-text {
      font-size: 1.02rem;
      line-height: 2;
      color: var(--brown-700);
      text-align: left;
    }
    .au-intro-text p {
      text-indent: 2em;
      margin-bottom: 0.8rem;
    }

    /* 痛点区块 */
    .au-painpoints {
      padding: 5rem 0;
      background: var(--brown-800);
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .au-painpoints::before {
      content: '困';
      position: absolute;
      top: 50%;
      left: 5%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 18rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
      line-height: 1;
    }
    .au-painpoints .section-tag {
      display: block;
      text-align: center;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .au-painpoints h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--cream-100);
      text-align: center;
      margin-bottom: 0.8rem;
    }
    .au-painpoints .section-desc {
      text-align: center;
      color: var(--brown-200);
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }
    .au-pain-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .au-pain-card {
      background: rgba(250,247,242,0.04);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      transition: all 0.3s ease;
      position: relative;
    }
    .au-pain-card:hover {
      background: rgba(250,247,242,0.07);
      border-color: rgba(176,104,92,0.3);
      transform: translateY(-3px);
    }
    .au-pain-icon {
      width: 52px;
      height: 52px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 1.25rem;
      font-size: 1.3rem;
    }
    .au-pain-icon.red {
      background: rgba(194,51,51,0.2);
      color: var(--cinnabar-light);
    }
    .au-pain-icon.amber {
      background: rgba(180,140,60,0.15);
      color: #c8a85a;
    }
    .au-pain-icon.gray {
      background: rgba(176,104,92,0.12);
      color: var(--brown-300);
    }
    .au-pain-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--cream-200);
      margin-bottom: 0.6rem;
    }
    .au-pain-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--brown-200);
    }
    .au-pain-card .pain-num {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      font-family: "Noto Serif SC", serif;
      font-size: 2.5rem;
      font-weight: 700;
      color: rgba(176,104,92,0.08);
      line-height: 1;
    }

    /* 解决方案文案 */
    .au-solution {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .au-solution-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    .au-solution-text h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--brown-900);
      margin-bottom: 1.25rem;
    }
    .au-solution-text p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--brown-700);
      margin-bottom: 1rem;
    }
    .au-solution-highlights {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-top: 1.5rem;
    }
    .au-highlight-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.25rem;
      background: var(--cream-50);
      border-radius: var(--radius-md);
      border: 1px solid var(--cream-300);
    }
    .au-highlight-icon {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(176,104,92,0.12);
      border-radius: 50%;
      flex-shrink: 0;
      color: var(--brown-500);
    }
    .au-highlight-icon svg {
      width: 20px;
      height: 20px;
    }
    .au-highlight-item h3 {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      color: var(--brown-800);
      margin-bottom: 0.2rem;
      font-size: 0.95rem;
    }
    .au-highlight-item p {
      font-size: 0.85rem;
      color: var(--brown-600);
      line-height: 1.6;
      margin-bottom: 0;
    }
    /* 右侧视觉 */
    .au-solution-visual {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .au-solution-card {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      transition: all 0.3s ease;
    }
    .au-solution-card:hover {
      box-shadow: 0 8px 30px rgba(80,60,30,0.08);
      border-color: var(--brown-300);
    }
    .au-solution-card-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.8rem;
    }
    .au-solution-card-num {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--brown-700);
      color: var(--cream-200);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 0.85rem;
      font-weight: 700;
      flex-shrink: 0;
    }
    .au-solution-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--brown-800);
    }
    .au-solution-card p {
      font-size: 0.88rem;
      line-height: 1.7;
      color: var(--brown-600);
    }

    /* 全部服务展示 */
    .au-services {
      padding: 5rem 0;
      background: var(--cream-50);
    }
    .au-section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .au-section-tag {
      display: inline-block;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .au-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .au-section-header p {
      font-size: 1rem;
      color: var(--brown-600);
    }
    .au-services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
    }
    .au-service-card {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: var(--radius-lg);
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      position: relative;
      overflow: hidden;
    }
    .au-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(80,60,30,0.1);
      border-color: var(--brown-300);
    }
    .au-service-card::after {
      content: attr(data-char);
      position: absolute;
      bottom: -10px;
      right: 5px;
      font-family: "Noto Serif SC", serif;
      font-size: 5rem;
      font-weight: 900;
      color: rgba(176,104,92,0.04);
      line-height: 1;
      pointer-events: none;
    }
    .au-service-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--cream-200);
      border-radius: 50%;
      color: var(--brown-600);
    }
    .au-service-icon svg {
      width: 26px;
      height: 26px;
    }
    .au-service-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--brown-900);
      margin-bottom: 0.6rem;
    }
    .au-service-card p {
      font-size: 0.85rem;
      line-height: 1.65;
      color: var(--brown-600);
      margin-bottom: 1rem;
    }
    .au-service-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.82rem;
      color: var(--brown-500);
      font-weight: 500;
      text-decoration: none;
    }
    .au-service-link svg {
      width: 14px;
      height: 14px;
    }

    /* 对比表格 */
    .au-comparison {
      padding: 5rem 0;
      background: var(--cream-100);
    }
    .au-compare-table {
      max-width: 900px;
      margin: 0 auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--cream-400);
      background: white;
    }
    .au-compare-row {
      display: grid;
      grid-template-columns: 2fr 1.2fr 1.2fr;
      border-bottom: 1px solid var(--cream-300);
    }
    .au-compare-row:last-child {
      border-bottom: none;
    }
    .au-compare-row.header {
      background: var(--brown-800);
      color: var(--cream-100);
    }
    .au-compare-cell {
      padding: 1rem 1.25rem;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
    }
    .au-compare-row.header .au-compare-cell {
      font-family: "Noto Serif SC", serif;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 1.1rem 1.25rem;
    }
    .au-compare-cell.feature {
      color: var(--brown-800);
      font-weight: 500;
      font-family: "Noto Serif SC", serif;
      background: var(--cream-50);
      border-right: 1px solid var(--cream-300);
    }
    .au-compare-cell.us {
      color: var(--brown-700);
      justify-content: center;
      text-align: center;
      border-right: 1px solid var(--cream-300);
      font-weight: 500;
    }
    .au-compare-cell.them {
      color: var(--brown-500);
      justify-content: center;
      text-align: center;
    }
    .au-compare-cell .check-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(76,133,72,0.12);
      color: #4c8548;
      margin-right: 0.4rem;
    }
    .au-compare-cell .cross-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(180,70,60,0.08);
      color: #b4463c;
      margin-right: 0.4rem;
    }
    .au-compare-cell .partial-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(180,140,60,0.1);
      color: #a08030;
      margin-right: 0.4rem;
    }
    .au-compare-row:nth-child(even):not(.header) {
      background: rgba(245,237,224,0.3);
    }
    .au-compare-row.header .au-compare-cell:nth-child(2) {
      background: rgba(176,104,92,0.15);
      border-left: 1px solid rgba(176,104,92,0.3);
      border-right: 1px solid rgba(176,104,92,0.3);
    }

    /* 介绍 + 反馈 */
    .au-about {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .au-about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .au-about-content h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--brown-900);
      margin-bottom: 1.25rem;
    }
    .au-about-content p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--brown-700);
      margin-bottom: 0.8rem;
    }
    .au-about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }
    .au-about-stat {
      text-align: center;
      padding: 1.25rem 0.5rem;
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-md);
    }
    .au-about-stat-num {
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--brown-700);
    }
    .au-about-stat-label {
      font-size: 0.78rem;
      color: var(--brown-500);
      margin-top: 0.2rem;
    }

    /* 客户反馈 */
    .au-testimonials {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }
    .au-testimonial-card {
      background: var(--cream-50);
      border: 1px solid var(--cream-300);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      position: relative;
    }
    .au-testimonial-card::before {
      content: '\201C';
      position: absolute;
      top: 0.75rem;
      left: 1.25rem;
      font-family: "Noto Serif SC", serif;
      font-size: 3rem;
      color: var(--brown-300);
      opacity: 0.3;
      line-height: 1;
    }
    .au-testimonial-text {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--brown-700);
      margin-bottom: 1rem;
      padding-left: 0.5rem;
    }
    .au-testimonial-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0.75rem;
      border-top: 1px solid var(--cream-300);
    }
    .au-testimonial-author {
      font-family: "Noto Serif SC", serif;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--brown-800);
    }
    .au-testimonial-location {
      font-size: 0.78rem;
      color: var(--brown-400);
    }
    .au-testimonial-stars {
      display: flex;
      gap: 2px;
    }
    .au-testimonial-stars svg {
      width: 14px;
      height: 14px;
      fill: var(--brown-400);
      stroke: none;
    }

    /* 服务城市 */
    .au-cities {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
    }
    .au-cities .au-section-header h2 {
      color: var(--cream-100);
    }
    .au-cities .au-section-header p {
      color: var(--brown-300);
    }
    .au-cities .au-section-tag {
      color: var(--brown-400);
    }
    .au-cities-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .au-city-card {
      text-align: center;
      padding: 2rem 1.2rem;
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: var(--radius-lg);
      background: rgba(176,104,92,0.04);
      transition: all 0.3s ease;
    }
    .au-city-card:hover {
      background: rgba(176,104,92,0.1);
      border-color: rgba(176,104,92,0.3);
      transform: translateY(-3px);
    }
    .au-city-icon {
      width: 52px;
      height: 52px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.3rem;
      font-weight: 700;
      border: 2px solid rgba(176,104,92,0.3);
      background: rgba(176,104,92,0.06);
      color: var(--brown-300);
    }
    .au-city-card h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--cream-200);
      margin-bottom: 0.3rem;
    }
    .au-city-card .au-city-en {
      font-size: 0.75rem;
      color: var(--brown-400);
      margin-bottom: 0.6rem;
      letter-spacing: 0.5px;
    }
    .au-city-card p {
      font-size: 0.82rem;
      line-height: 1.5;
      color: var(--brown-300);
    }

    /* CTA */
    .au-cta {
      padding: 5rem 0;
      background: linear-gradient(160deg, var(--brown-900), #1a130d);
      text-align: center;
      color: var(--cream-100);
      position: relative;
      overflow: hidden;
    }
    .au-cta::before {
      content: '缘';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.02);
      pointer-events: none;
    }
    .au-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .au-cta > .container > p {
      font-size: 1.05rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .au-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      position: relative;
    }
    .au-cta-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .au-cta-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }
    .au-cta-tags {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      position: relative;
    }
    .au-cta-tags span {
      display: flex;
      align-items: center;
      gap: 0.35rem;
      font-size: 0.85rem;
      color: var(--brown-300);
    }
    .au-cta-tags svg {
      width: 16px;
      height: 16px;
      color: var(--brown-300);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .au-hero-grid { grid-template-columns: 1fr; }
      .au-hero-card { max-width: 450px; }
      .au-pain-grid { grid-template-columns: repeat(2, 1fr); }
      .au-solution-inner { grid-template-columns: 1fr; }
      .au-services-grid { grid-template-columns: repeat(2, 1fr); }
      .au-about-grid { grid-template-columns: 1fr; }
      .au-cities-grid { grid-template-columns: repeat(2, 1fr); }
      .au-compare-table { overflow-x: auto; }
    }
    @media (max-width: 768px) {
      .au-hero { padding: 6rem 0 3rem; }
      .au-hero h1 { font-size: 2.2rem; }
      .au-pain-grid { grid-template-columns: 1fr; }
      .au-services-grid { grid-template-columns: 1fr; }
      .au-about-stats { grid-template-columns: repeat(3, 1fr); }
      .au-cities-grid { grid-template-columns: 1fr; }
      .au-compare-row { grid-template-columns: 1.5fr 1fr 1fr; }
      .au-compare-cell { padding: 0.75rem; font-size: 0.82rem; }
    }
    @media (max-width: 480px) {
      .au-hero h1 { font-size: 1.8rem; }
      .au-hero-btns { flex-direction: column; }
      .au-hero-tags { gap: 0.4rem; }
      .au-stats-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
      .au-cta-btns { flex-direction: column; align-items: center; }
      .au-cta-tags { flex-direction: column; align-items: center; gap: 0.8rem; }
    }
  

/* ============================================
   Blessing Page Styles
   ============================================ */

    /* ======== 祈福开光页面专属样式 ======== */

    /* Hero */
    .bl-hero {
      background: linear-gradient(155deg, #1a1410 0%, var(--brown-900) 40%, #0d0a07 100%);
      padding: 8rem 0 5rem;
      color: var(--cream-100);
      overflow: hidden;
      position: relative;
    }
    .bl-hero::before {
      content: '福';
      position: absolute;
      top: 50%;
      right: 3%;
      transform: translateY(-50%);
      font-family: "Noto Serif SC", serif;
      font-size: 26rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
      line-height: 1;
    }
    .bl-hero-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 4rem;
      align-items: center;
    }
    .bl-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      border-radius: 2rem;
      padding: 0.35rem 1rem;
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
    }
    .bl-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
    }
    .bl-hero h1 {
      font-family: "Noto Serif SC", serif;
      font-size: 3.2rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.2rem;
    }
    .bl-hero-desc {
      font-size: 1.05rem;
      line-height: 1.9;
      color: var(--brown-200);
      margin-bottom: 2rem;
      max-width: 540px;
    }
    .bl-hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-bottom: 2.2rem;
    }
    .bl-stat-val {
      font-family: "Noto Serif SC", serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--cream-100);
    }
    .bl-stat-lbl {
      font-size: 0.8rem;
      color: var(--brown-300);
      margin-top: 0.2rem;
    }
    .bl-hero-btns {
      display: flex;
      gap: 1rem;
    }
    .bl-hero-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .bl-hero-btns .btn-primary:hover {
      background: var(--brown-600);
    }
    .bl-hero-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }

    /* Hero - 开光物品展示卡片 */
    .bl-showcase-card {
      background: rgba(20,16,12,0.7);
      border: 1px solid rgba(176,104,92,0.15);
      border-radius: 12px;
      padding: 2rem;
      backdrop-filter: blur(10px);
    }
    .bl-showcase-title {
      font-size: 0.85rem;
      color: var(--brown-300);
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .bl-showcase-title span:last-child {
      font-size: 0.75rem;
      opacity: 0.6;
    }
    .bl-showcase-item {
      background: rgba(176,104,92,0.06);
      border: 1px solid rgba(176,104,92,0.12);
      border-radius: 8px;
      padding: 1.5rem;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .bl-showcase-item:last-child {
      margin-bottom: 0;
    }
    .bl-showcase-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(176,104,92,0.1);
      border: 1px solid rgba(176,104,92,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .bl-showcase-icon svg {
      width: 24px;
      height: 24px;
      color: var(--brown-300);
    }
    .bl-showcase-info {
      flex: 1;
    }
    .bl-showcase-info h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 0.95rem;
      color: var(--cream-200);
      margin-bottom: 0.25rem;
    }
    .bl-showcase-info p {
      font-size: 0.75rem;
      color: var(--brown-400);
      line-height: 1.4;
    }

    /* 何谓开光 */
    .bl-intro {
      padding: 5rem 0;
    }
    .bl-intro-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .bl-intro-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 1rem;
    }
    .bl-intro-body {
      max-width: 800px;
      margin: 0 auto;
    }
    .bl-intro-body p {
      font-size: 1rem;
      line-height: 2;
      color: var(--brown-700);
      text-indent: 2em;
      margin-bottom: 1rem;
    }

    /* 开光服务类型 */
    .bl-services {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .bl-section-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .bl-section-tag {
      display: inline-block;
      font-size: 0.8rem;
      color: var(--brown-400);
      letter-spacing: 2px;
      margin-bottom: 0.8rem;
    }
    .bl-section-header h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2rem;
      color: var(--brown-900);
      margin-bottom: 0.8rem;
    }
    .bl-section-header p {
      font-size: 1rem;
      color: var(--brown-600);
    }
    .bl-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
    .bl-service-card {
      border: 1px solid var(--cream-400);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      background: white;
    }
    .bl-service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(80,60,30,0.1);
    }
    .bl-service-top {
      padding: 2rem 1.8rem 1.5rem;
      background: linear-gradient(135deg, var(--brown-800) 0%, var(--brown-900) 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }
    .bl-service-top::after {
      content: attr(data-char);
      position: absolute;
      bottom: -15px;
      right: 10px;
      font-family: "Noto Serif SC", serif;
      font-size: 6rem;
      font-weight: 900;
      color: rgba(255,255,255,0.04);
      line-height: 1;
    }
    .bl-service-label {
      font-size: 0.75rem;
      color: var(--brown-300);
      letter-spacing: 1px;
      margin-bottom: 0.6rem;
    }
    .bl-service-top h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
    }
    .bl-service-top p {
      font-size: 0.9rem;
      line-height: 1.7;
      color: var(--brown-200);
    }
    .bl-service-bottom {
      padding: 1.5rem 1.8rem 2rem;
    }
    .bl-service-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .bl-service-features li {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 0;
      font-size: 0.9rem;
      color: var(--brown-700);
      border-bottom: 1px solid var(--cream-300);
    }
    .bl-service-features li:last-child {
      border-bottom: none;
    }
    .bl-service-features li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--brown-400);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* 开光仪式五步 */
    .bl-ritual {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
    }
    .bl-ritual .bl-section-header h2 { color: var(--cream-100); }
    .bl-ritual .bl-section-header p { color: var(--brown-300); }
    .bl-ritual .bl-section-tag { color: var(--brown-400); }
    .bl-ritual-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
    }
    .bl-ritual-step {
      text-align: center;
      padding: 2rem 1rem;
      border-radius: 10px;
      border: 1px solid rgba(176,104,92,0.15);
      background: rgba(176,104,92,0.04);
      transition: all 0.3s ease;
    }
    .bl-ritual-step:hover {
      background: rgba(176,104,92,0.1);
      border-color: rgba(176,104,92,0.3);
    }
    .bl-ritual-symbol {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Noto Serif SC", serif;
      font-size: 1.5rem;
      font-weight: 700;
    }
    .bl-ritual-step:nth-child(1) .bl-ritual-symbol { background: rgba(96,165,250,0.15); color: #60a5fa; }
    .bl-ritual-step:nth-child(2) .bl-ritual-symbol { background: rgba(251,191,36,0.15); color: #fbbf24; }
    .bl-ritual-step:nth-child(3) .bl-ritual-symbol { background: rgba(74,222,128,0.15); color: #4ade80; }
    .bl-ritual-step:nth-child(4) .bl-ritual-symbol { background: rgba(248,113,113,0.15); color: #f87171; }
    .bl-ritual-step:nth-child(5) .bl-ritual-symbol { background: rgba(168,85,247,0.15); color: #a855f7; }
    .bl-ritual-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--cream-200);
      margin-bottom: 0.5rem;
    }
    .bl-ritual-step p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--brown-300);
    }

    /* 服务流程 */
    .bl-process {
      padding: 5rem 0;
      background: var(--cream-200);
    }
    .bl-process-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }
    .bl-process-flow::before {
      content: '';
      position: absolute;
      top: 35px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, var(--brown-300), var(--brown-400), var(--brown-300));
    }
    .bl-step {
      text-align: center;
      position: relative;
    }
    .bl-step-num {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      border: 2px solid var(--brown-400);
      border-radius: 50%;
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--brown-600);
      position: relative;
      z-index: 1;
    }
    .bl-step h3 {
      font-family: "Noto Serif SC", serif;
      font-size: 1.1rem;
      color: var(--brown-900);
      margin-bottom: 0.5rem;
    }
    .bl-step p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--brown-600);
      padding: 0 0.5rem;
    }

    /* FAQ */
    .bl-faq {
      padding: 5rem 0;
    }
    .bl-faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .bl-faq-item {
      background: white;
      border: 1px solid var(--cream-400);
      border-radius: 10px;
      margin-bottom: 0.8rem;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .bl-faq-item:hover {
      border-color: var(--brown-300);
    }
    .bl-faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.2rem 1.5rem;
      cursor: pointer;
      user-select: none;
    }
    .bl-faq-q span {
      font-family: "Noto Serif SC", serif;
      font-size: 1rem;
      color: var(--brown-800);
      font-weight: 500;
    }
    .bl-faq-q svg {
      width: 20px;
      height: 20px;
      color: var(--brown-400);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .bl-faq-item.active .bl-faq-q svg {
      transform: rotate(180deg);
    }
    .bl-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .bl-faq-item.active .bl-faq-a {
      max-height: 300px;
    }
    .bl-faq-a-inner {
      padding: 0 1.5rem 1.2rem;
      font-size: 0.92rem;
      line-height: 1.8;
      color: var(--brown-600);
    }

    /* CTA */
    .bl-cta {
      padding: 5rem 0;
      background: linear-gradient(155deg, var(--brown-900) 0%, #0f0b08 100%);
      color: var(--cream-100);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .bl-cta::before {
      content: '光';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: "Noto Serif SC", serif;
      font-size: 20rem;
      font-weight: 900;
      color: rgba(176,104,92,0.025);
      pointer-events: none;
    }
    .bl-cta h2 {
      font-family: "Noto Serif SC", serif;
      font-size: 2.2rem;
      margin-bottom: 1rem;
      position: relative;
    }
    .bl-cta p {
      font-size: 1.05rem;
      color: var(--brown-200);
      margin-bottom: 2rem;
      line-height: 1.8;
      max-width: 560px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
    }
    .bl-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      position: relative;
    }
    .bl-cta-btns .btn-primary {
      background: var(--brown-500);
      border-color: var(--brown-500);
    }
    .bl-cta-btns .btn-outline {
      border-color: rgba(176,104,92,0.35);
      color: var(--brown-200);
    }
    .bl-cta-tags {
      display: flex;
      justify-content: center;
      gap: 2rem;
      position: relative;
    }
    .bl-cta-tags span {
      font-size: 0.85rem;
      color: var(--brown-300);
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .bl-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .bl-showcase-card { max-width: 400px; }
      .bl-ritual-steps { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .bl-hero { padding: 6rem 0 3rem; }
      .bl-hero h1 { font-size: 2.4rem; }
      .bl-hero-stats { gap: 1.5rem; }
      .bl-services-grid { grid-template-columns: 1fr; }
      .bl-ritual-steps { grid-template-columns: repeat(2, 1fr); }
      .bl-process-flow { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
      .bl-process-flow::before { display: none; }
    }
    @media (max-width: 480px) {
      .bl-hero h1 { font-size: 2rem; }
      .bl-hero-stats { flex-direction: column; gap: 0.8rem; }
      .bl-hero-btns { flex-direction: column; }
      .bl-ritual-steps { grid-template-columns: 1fr; }
      .bl-process-flow { grid-template-columns: 1fr; }
    }
  

/* ============================================
   奇门遁甲页面补充样式 - 九星八门
   ============================================ */

/* 九星 */
.jiuxing-section {
  padding: var(--spacing-2xl) 0;
  background: var(--cream-100);
}
.jiuxing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 2.5rem;
  background: var(--cream-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.jx-cell {
  background: var(--cream-50);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.jx-cell:hover { background: var(--cream-100); }
.jx-cell.center-cell {
  background: var(--brown-800);
  color: var(--cream-100);
}
.jx-cell.center-cell .jx-nature { color: var(--brown-300); }
.jx-cell.center-cell .jx-meaning { color: var(--brown-200); }
.jx-num {
  font-family: "Noto Serif SC", serif;
  font-size: 0.7rem;
  color: var(--brown-400);
  margin-bottom: 0.5rem;
}
.jx-name {
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 0.35rem;
}
.jx-cell.center-cell .jx-name { color: var(--cream-100); }
.jx-nature {
  display: inline-block;
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 2rem;
  margin-bottom: 0.5rem;
}
.jx-nature.ji { background: rgba(76,133,72,0.12); color: #4c8548; }
.jx-nature.xiong { background: rgba(180,70,60,0.1); color: #b4463c; }
.jx-nature.ping { background: rgba(176,104,92,0.12); color: var(--brown-500); }
.jx-nature.center-nature { background: rgba(200,180,120,0.2); }
.jx-meaning {
  font-size: 0.8rem;
  color: var(--brown-600);
  line-height: 1.5;
}

/* 八门罗盘 */
.bamen-section {
  padding: var(--spacing-2xl) 0;
  background: var(--brown-800);
  color: var(--cream-100);
}
.bamen-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2.5rem;
}
.bamen-compass {
  position: relative;
  width: 340px;
  height: 340px;
  margin: 0 auto;
}
.bamen-compass-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(176,104,92,0.2);
  background: rgba(176,104,92,0.04);
}
.bamen-compass-inner {
  position: absolute;
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(176,104,92,0.2);
  background: rgba(176,104,92,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif SC", serif;
  font-size: 0.85rem;
  color: var(--brown-300);
  flex-direction: column;
  gap: 0.25rem;
}
.bamen-compass-inner span:first-child {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream-200);
}
.bamen-gate {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transform: translate(-50%, -50%);
}
.bamen-gate-char {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif SC", serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: 1px solid rgba(176,104,92,0.3);
}
.bamen-gate-char.gate-ji { background: rgba(76,133,72,0.2); color: #7db87a; border-color: rgba(76,133,72,0.35); }
.bamen-gate-char.gate-xiong { background: rgba(180,70,60,0.2); color: #d47a72; border-color: rgba(180,70,60,0.35); }
.bamen-gate-char.gate-ping { background: rgba(176,104,92,0.15); color: var(--brown-300); }
.bamen-gate-label {
  font-size: 0.65rem;
  color: var(--brown-400);
}
/* 八门位置 - 正八方位 */
.bamen-gate.south { top: 6%; left: 50%; }
.bamen-gate.sw { top: 21%; left: 85%; }
.bamen-gate.west { top: 50%; left: 94%; }
.bamen-gate.nw { top: 79%; left: 85%; }
.bamen-gate.north { top: 94%; left: 50%; }
.bamen-gate.ne { top: 79%; left: 15%; }
.bamen-gate.east { top: 50%; left: 6%; }
.bamen-gate.se { top: 21%; left: 15%; }

.bamen-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.bamen-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(250,247,242,0.05);
  border: 1px solid rgba(176,104,92,0.12);
  border-radius: var(--radius-md);
  transition: background 0.3s;
}
.bamen-detail-item:hover { background: rgba(250,247,242,0.08); }
.bamen-detail-name {
  font-family: "Noto Serif SC", serif;
  font-size: 1rem;
  font-weight: 700;
  width: 48px;
  flex-shrink: 0;
  color: var(--cream-200);
}
.bamen-detail-tag {
  font-size: 0.65rem;
  padding: 0.1rem 0.35rem;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.bamen-detail-tag.ji { background: rgba(76,133,72,0.25); color: #7db87a; }
.bamen-detail-tag.xiong { background: rgba(180,70,60,0.25); color: #d47a72; }
.bamen-detail-tag.ping { background: rgba(176,104,92,0.2); color: var(--brown-300); }
.bamen-detail-text {
  font-size: 0.82rem;
  color: var(--brown-200);
  line-height: 1.5;
}

/* 奇门页面响应式 */
@media (max-width: 1024px) {
  .jiuxing-grid { grid-template-columns: repeat(3, 1fr); }
  .bamen-layout { grid-template-columns: 1fr; }
  .bamen-compass { margin-bottom: 2rem; }
}

/* ============================================
   营销首页补充样式 (从 index.html 提取)
   ============================================ */

.lp-dao-char {
  font-family: "Noto Serif SC", serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--brown-200);
  opacity: 0.4;
  margin-bottom: 1.5rem;
}

.lp-philosophy-desc {
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--brown-600);
  line-height: 2;
}

/* ============================================
   从 index.html 提取的补充样式
   ============================================ */

/* lp-advantages, lp-adv-grid, lp-adv-card, lp-adv-icon */
.lp-advantages {
  padding: 5rem 0;
  background: var(--cream-200);
}
.lp-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.lp-adv-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.lp-adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(60,13,18,0.08);
}
.lp-adv-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--brown-700), var(--brown-800));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif SC", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream-200);
}

/* lp-closing-quote, lp-closing-quote-inner, lp-closing-brush */
.lp-closing-quote {
  padding: 5rem 0;
  background: var(--cream-100);
  text-align: center;
}
.lp-closing-quote-inner {
  max-width: 680px;
  margin: 0 auto;
}
.lp-closing-brush {
  font-family: "Noto Serif SC", serif;
  font-size: 6rem;
  font-weight: 700;
  color: var(--brown-200);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}

/* lp-explain-text */
.lp-explain-text h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown-800);
  margin-bottom: 1rem;
}
.lp-explain-text p {
  font-size: 1rem;
  color: var(--brown-600);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* lp-proof-num */
.lp-proof-num {
  font-family: "Noto Serif SC", serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--brown-500);
  margin-bottom: 0.25rem;
}

/* lp-stories, lp-stories-grid, lp-story-card, lp-story-tag, lp-story-result */
.lp-stories {
  padding: 5rem 0;
  background: var(--cream-100);
}
.lp-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.lp-story-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}
.lp-story-card:hover {
  box-shadow: 0 8px 25px rgba(60,13,18,0.08);
  transform: translateY(-2px);
}
.lp-story-tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(194,51,51,0.08);
  border: 1px solid rgba(194,51,51,0.12);
  border-radius: 3px;
  font-size: 0.72rem;
  color: var(--cinnabar);
  font-weight: 600;
  margin-bottom: 1rem;
}
.lp-story-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--brown-500);
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-300);
  font-weight: 500;
}
.lp-story-result svg {
  width: 16px;
  height: 16px;
  color: #4c8548;
  flex-shrink: 0;
}

/* lp-tech, lp-tech-grid, lp-tech-card, lp-tech-card-top, lp-tech-icon, lp-tech-en, lp-tech-tags */
.lp-tech {
  padding: 5rem 0;
  background: var(--brown-800);
  color: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.lp-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-tech-card {
  background: rgba(250,247,242,0.04);
  border: 1px solid rgba(176,104,92,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.lp-tech-card:hover {
  background: rgba(176,104,92,0.08);
  border-color: rgba(176,104,92,0.3);
  transform: translateY(-3px);
}
.lp-tech-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.lp-tech-icon {
  width: 44px;
  height: 44px;
  background: rgba(176,104,92,0.15);
  border: 1px solid rgba(176,104,92,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif SC", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown-300);
  flex-shrink: 0;
}
.lp-tech-en {
  font-size: 0.65rem;
  color: var(--brown-400);
  letter-spacing: 0.15em;
  font-family: "Inter", sans-serif;
}
.lp-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* lp-turning-body */
.lp-turning-body {
  font-size: 1.05rem;
  color: var(--brown-200);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* lp-explain-text */
.lp-explain-text {
  max-width: 540px;
}

/* ============================================
   玄门版首页 (Xuanmen) 专属样式
   古典国学 · 水墨意境 · 竖排文字装饰
   ============================================ */

/* ---- 玄门 HERO ---- */
.xm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown-900);
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.xm-hero-ink-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 36, 48, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(90, 24, 32, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(60, 13, 18, 0.6) 0%, transparent 70%);
  opacity: 0.8;
}

.xm-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: var(--content-max);
  width: 100%;
}

.xm-hero-vertical-text {
  writing-mode: vertical-rl;
  font-size: 0.85rem;
  letter-spacing: 0.6em;
  color: rgba(200, 148, 136, 0.35);
  font-family: "Noto Serif SC", serif;
  user-select: none;
}

.xm-hero-vt-left { text-orientation: mixed; }
.xm-hero-vt-right { text-orientation: mixed; }

.xm-hero-center {
  text-align: center;
  flex: 1;
  max-width: 600px;
}

.xm-hero-seal-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.xm-hero-seal-char {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border: 2px solid var(--brown-400);
  border-radius: 50%;
  font-size: 2rem;
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
  color: var(--brown-300);
  background: rgba(124, 36, 48, 0.15);
}

.xm-hero-title {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream-100);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  font-family: "Noto Serif SC", serif;
}

.xm-hero-subtitle {
  font-size: 1rem;
  color: var(--brown-200);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.xm-hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.xm-hero-divider-line {
  width: 60px;
  height: 1px;
  background: var(--brown-400);
  opacity: 0.4;
}

.xm-hero-divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown-400);
  opacity: 0.6;
}

.xm-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.xm-hero-cta .btn-primary {
  background: var(--brown-500);
}

.xm-hero-cta .btn-outline {
  border-color: rgba(176, 104, 92, 0.4);
  color: var(--brown-200);
}

/* ---- 玄门 通用区块头部 ---- */
.xm-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.xm-section-header--left {
  text-align: left;
}

.xm-section-brush {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.8rem;
  font-family: "Noto Serif SC", serif;
  font-weight: 700;
  color: var(--brown-500);
  border: 1.5px solid var(--brown-300);
  border-radius: 50%;
  margin-bottom: 1rem;
  background: rgba(194, 51, 51, 0.05);
}

.xm-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif SC", serif;
}

.xm-section-header p {
  font-size: 0.95rem;
  color: var(--ink-light);
  max-width: 480px;
  margin: 0 auto;
}

.xm-section-header--left p {
  margin: 0;
}

/* ---- 玄门 道统传承时间线 ---- */
.xm-lineage {
  padding: 5rem 0;
  background: var(--cream-100);
}

.xm-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 60px;
}

.xm-timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--brown-300), var(--brown-300), transparent);
}

.xm-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
}

.xm-timeline-item:last-child {
  margin-bottom: 0;
}

.xm-timeline-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-100);
  z-index: 1;
}

.xm-timeline-era {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--brown-400);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brown-500);
  font-family: "Noto Serif SC", serif;
  background: var(--cream-50);
}

.xm-timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-family: "Noto Serif SC", serif;
}

.xm-timeline-content p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ---- 玄门 经典引言 ---- */
.xm-quote-section {
  padding: 4rem 0;
  background: var(--cream-200);
}

.xm-quote-scroll {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.xm-quote-ornament-top,
.xm-quote-ornament-bottom {
  width: 40px;
  height: 2px;
  background: var(--brown-300);
  margin: 0 auto 1.5rem;
}

.xm-quote-ornament-bottom {
  margin: 1.5rem auto 0;
}

.xm-quote-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: "Noto Serif SC", serif;
  border: none;
  padding: 0;
  margin: 0;
  quotes: none;
}

.xm-quote-source {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--brown-400);
  font-style: normal;
  letter-spacing: 0.1em;
}

/* ---- 玄门 八门方术 宫格 ---- */
.xm-arts {
  padding: 5rem 0;
  background: var(--cream-100);
}

.xm-arts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.xm-art-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.xm-art-card:hover {
  border-color: var(--brown-300);
  box-shadow: 0 4px 20px rgba(124, 36, 48, 0.08);
  transform: translateY(-2px);
}

.xm-art-char {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-500);
  border: 1.5px solid var(--brown-300);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-family: "Noto Serif SC", serif;
  background: rgba(194, 51, 51, 0.04);
}

.xm-art-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-family: "Noto Serif SC", serif;
}

.xm-art-card p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  flex: 1;
}

.xm-art-link {
  font-size: 0.8rem;
  color: var(--brown-500);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.xm-art-card:hover .xm-art-link {
  color: var(--brown-700);
}

/* ---- 玄门 大师介绍 ---- */
.xm-master {
  padding: 5rem 0;
  background: var(--cream-200);
}

.xm-master-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.xm-master-portrait {
  text-align: center;
}

.xm-master-portrait-frame {
  width: 200px;
  height: 200px;
  margin: 0 auto 1rem;
  border: 2px solid var(--brown-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-50), var(--cream-300));
}

.xm-master-portrait-char {
  font-size: 4rem;
  font-weight: 700;
  color: var(--brown-500);
  font-family: "Noto Serif SC", serif;
}

.xm-master-portrait-label {
  font-size: 0.85rem;
  color: var(--brown-400);
  letter-spacing: 0.2em;
  font-family: "Noto Serif SC", serif;
}

.xm-master-bio p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.9;
  margin-bottom: 0.75rem;
}

.xm-master-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.xm-master-stat {
  text-align: center;
  padding: 1rem 0.5rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
}

.xm-master-stat-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brown-500);
  font-family: "Noto Serif SC", serif;
}

.xm-master-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-light);
  margin-top: 0.25rem;
}

/* ---- 玄门 咨商方案 ---- */
.xm-plans {
  padding: 5rem 0;
  background: var(--cream-100);
}

.xm-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.xm-plan-card {
  position: relative;
  padding: 2.5rem 1.75rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.xm-plan-card:hover {
  border-color: var(--brown-300);
  box-shadow: 0 8px 30px rgba(124, 36, 48, 0.08);
}

.xm-plan-card--featured {
  border-color: var(--brown-400);
  background: var(--brown-900);
  color: var(--cream-100);
}

.xm-plan-card--featured .xm-plan-subtitle,
.xm-plan-card--featured .xm-plan-features li {
  color: var(--brown-200);
}

.xm-plan-card--featured h3 {
  color: var(--cream-100);
}

.xm-plan-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--brown-500);
  color: var(--cream-100);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 10px;
  letter-spacing: 0.1em;
}

.xm-plan-rank {
  width: 44px;
  height: 44px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brown-300);
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown-500);
  font-family: "Noto Serif SC", serif;
}

.xm-plan-card--featured .xm-plan-rank {
  border-color: var(--brown-400);
  color: var(--brown-300);
}

.xm-plan-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif SC", serif;
}

.xm-plan-subtitle {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.xm-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}

.xm-plan-features li {
  font-size: 0.85rem;
  color: var(--ink-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200, 148, 136, 0.15);
  padding-left: 1.2rem;
  position: relative;
}

.xm-plan-features li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--brown-500);
  font-weight: 700;
}

.xm-plan-btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid var(--brown-400);
  border-radius: var(--radius-md);
  color: var(--brown-500);
  text-decoration: none;
  transition: all 0.2s ease;
  letter-spacing: 0.05em;
}

.xm-plan-btn:hover {
  background: var(--brown-500);
  color: var(--cream-100);
  border-color: var(--brown-500);
}

.xm-plan-btn--primary {
  background: var(--brown-500);
  color: var(--cream-100);
  border-color: var(--brown-500);
}

.xm-plan-btn--primary:hover {
  background: var(--brown-700);
  border-color: var(--brown-700);
}

/* ---- 玄门 文章区 ---- */
.xm-articles {
  padding: 5rem 0;
  background: var(--cream-200);
}

.xm-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.xm-article-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.xm-article-card:hover {
  border-color: var(--brown-300);
  box-shadow: 0 4px 16px rgba(124, 36, 48, 0.06);
  transform: translateY(-2px);
}

.xm-article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brown-500);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.xm-article-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  font-family: "Noto Serif SC", serif;
  line-height: 1.5;
}

.xm-article-card p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.7;
  flex: 1;
}

.xm-article-date {
  font-size: 0.75rem;
  color: var(--brown-400);
  margin-top: 0.75rem;
}

.xm-articles-more {
  text-align: center;
  margin-top: 2rem;
}

.xm-articles-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-500);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.xm-articles-more-link:hover {
  color: var(--brown-700);
}

/* ---- 玄门 收束CTA ---- */
.xm-closing {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.xm-closing-bg {
  position: absolute;
  inset: 0;
  background: var(--brown-900);
  z-index: 0;
}

.xm-closing-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(124, 36, 48, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(90, 24, 32, 0.3) 0%, transparent 50%);
}

.xm-closing-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.xm-closing-brush {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(200, 148, 136, 0.25);
  font-family: "Noto Serif SC", serif;
  margin-bottom: 1rem;
}

.xm-closing-quote {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--cream-100);
  line-height: 2;
  letter-spacing: 0.08em;
  font-family: "Noto Serif SC", serif;
  border: none;
  padding: 0;
  margin: 0;
  quotes: none;
}

.xm-closing-source {
  display: block;
  font-size: 0.85rem;
  color: var(--brown-300);
  font-style: normal;
  margin-top: 0.75rem;
  letter-spacing: 0.1em;
}

.xm-closing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
}

.xm-closing-divider span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brown-400);
  opacity: 0.5;
}

.xm-closing-title {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  font-family: "Noto Serif SC", serif;
}

.xm-closing-desc {
  font-size: 0.95rem;
  color: var(--brown-200);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.xm-closing-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.xm-closing-cta .btn-primary {
  background: var(--brown-500);
}

.xm-closing-cta .btn-outline {
  border-color: rgba(176, 104, 92, 0.4);
  color: var(--brown-200);
}

/* ---- 玄门版 响应式 ---- */
@media (max-width: 900px) {
  .xm-arts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .xm-master-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .xm-section-header--left {
    text-align: center;
  }
  .xm-section-header--left p {
    margin: 0 auto;
  }
  .xm-master-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .xm-plans-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 640px) {
  .xm-hero-vertical-text {
    display: none;
  }
  .xm-hero {
    padding: 5rem 1rem 3rem;
  }
  .xm-hero-seal-char {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
  .xm-arts-grid {
    grid-template-columns: 1fr;
  }
  .xm-articles-grid {
    grid-template-columns: 1fr;
  }
  .xm-master-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .xm-timeline {
    padding-left: 50px;
  }
  .xm-timeline-marker {
    left: -50px;
  }
}


/* ============================================
   流量版首页 (Traffic) 专属样式
   现代网格 · 强信任感 · SEO与转化优化
   ============================================ */

/* ---- 流量版 HERO ---- */
.tf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem 4rem;
  overflow: hidden;
}

.tf-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, var(--brown-900) 0%, #2a0a10 50%, #1a0508 100%);
  z-index: 0;
}

.tf-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(194, 51, 51, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(124, 36, 48, 0.1) 0%, transparent 50%);
}

.tf-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.tf-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brown-200);
  border: 1px solid rgba(176, 104, 92, 0.3);
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.tf-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown-500);
  animation: tf-pulse 2s infinite;
}

@keyframes tf-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.tf-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--cream-100);
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
  font-family: "Noto Serif SC", serif;
}

.tf-hero-desc {
  font-size: 1rem;
  color: var(--brown-200);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.tf-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.tf-hero-actions .btn-primary {
  background: var(--brown-500);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.tf-hero-actions .btn-outline {
  border-color: rgba(176, 104, 92, 0.4);
  color: var(--brown-200);
}

.tf-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(176, 104, 92, 0.15);
}

.tf-hero-stat {
  text-align: center;
}

.tf-hero-stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream-100);
  font-family: "Noto Serif SC", serif;
}

.tf-hero-stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--brown-300);
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ---- 流量版 信任条 ---- */
.tf-trust-bar {
  padding: 1.25rem 0;
  background: var(--cream-200);
  border-bottom: 1px solid var(--cream-300);
}

.tf-trust-items {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.tf-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-light);
  letter-spacing: 0.03em;
}

.tf-trust-item svg {
  color: var(--brown-500);
  flex-shrink: 0;
}

/* ---- 流量版 通用区块头部 ---- */
.tf-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tf-section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brown-400);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.tf-section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  font-family: "Noto Serif SC", serif;
}

.tf-section-header p {
  font-size: 0.92rem;
  color: var(--ink-light);
  max-width: 500px;
  margin: 0 auto;
}

/* ---- 流量版 服务双列网格 ---- */
.tf-services {
  padding: 5rem 0;
  background: var(--cream-100);
}

.tf-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.tf-service-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  opacity: 0;
  transform: translateY(12px);
}

.tf-service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tf-service-card:hover {
  border-color: var(--brown-300);
  box-shadow: 0 4px 16px rgba(124, 36, 48, 0.06);
}

.tf-service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  background: var(--cream-100);
}

.tf-service-icon svg {
  width: 22px;
  height: 22px;
  color: var(--brown-500);
}

.tf-service-body {
  flex: 1;
  min-width: 0;
}

.tf-service-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-family: "Noto Serif SC", serif;
}

.tf-service-body p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.tf-service-arrow {
  flex-shrink: 0;
  color: var(--brown-400);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.tf-service-card:hover .tf-service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ---- 流量版 流程 ---- */
.tf-process {
  padding: 4rem 0;
  background: var(--brown-900);
}

.tf-process .tf-section-header h2 {
  color: var(--cream-100);
}

.tf-process .tf-section-header p {
  color: var(--brown-200);
}

.tf-process .tf-section-tag {
  color: var(--brown-300);
}

.tf-process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
}

.tf-process-step {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
  opacity: 0;
  transform: translateY(12px);
}

.tf-process-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tf-process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--brown-400);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown-300);
  margin-bottom: 0.75rem;
  font-family: "Inter", sans-serif;
}

.tf-process-step h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream-100);
  margin-bottom: 0.4rem;
  font-family: "Noto Serif SC", serif;
}

.tf-process-step p {
  font-size: 0.78rem;
  color: var(--brown-200);
  line-height: 1.6;
}

.tf-process-connector {
  width: 40px;
  height: 1px;
  background: var(--brown-400);
  opacity: 0.3;
  margin-top: 20px;
  flex-shrink: 0;
}

/* ---- 流量版 大师卡片 ---- */
.tf-master {
  padding: 5rem 0;
  background: var(--cream-100);
}

.tf-master-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-lg);
  align-items: center;
}

.tf-master-left {
  text-align: center;
}

.tf-master-avatar {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border: 2px solid var(--brown-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream-100), var(--cream-300));
}

.tf-master-avatar-char {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--brown-500);
  font-family: "Noto Serif SC", serif;
}

.tf-master-right .tf-section-tag {
  margin-bottom: 0.25rem;
}

.tf-master-right h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-family: "Noto Serif SC", serif;
}

.tf-master-subtitle {
  font-size: 0.85rem;
  color: var(--brown-400);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.tf-master-bio {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tf-master-highlights {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tf-master-highlight {
  text-align: center;
}

.tf-master-highlight-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--brown-500);
  font-family: "Noto Serif SC", serif;
}

.tf-master-highlight-label {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-light);
  margin-top: 0.15rem;
}

/* ---- 流量版 评价 ---- */
.tf-testimonials {
  padding: 5rem 0;
  background: var(--cream-200);
}

.tf-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.tf-testimonial-card {
  padding: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(12px);
}

.tf-testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tf-testimonial-card:hover {
  box-shadow: 0 4px 16px rgba(124, 36, 48, 0.06);
}

.tf-testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
  color: var(--brown-500);
}

.tf-testimonial-text {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-style: italic;
}

.tf-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tf-testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brown-900);
  color: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Noto Serif SC", serif;
}

.tf-testimonial-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}

.tf-testimonial-title {
  font-size: 0.72rem;
  color: var(--brown-400);
}

/* ---- 流量版 文章 ---- */
.tf-articles {
  padding: 5rem 0;
  background: var(--cream-100);
}

.tf-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.tf-article-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--cream-50);
  border: 1px solid var(--cream-300);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(12px);
}

.tf-article-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tf-article-card:hover {
  border-color: var(--brown-300);
  box-shadow: 0 4px 16px rgba(124, 36, 48, 0.06);
  transform: translateY(-2px);
}

.tf-article-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--brown-500);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.tf-article-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  font-family: "Noto Serif SC", serif;
  line-height: 1.5;
}

.tf-article-card p {
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.6;
  flex: 1;
}

.tf-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-300);
}

.tf-article-date {
  font-size: 0.72rem;
  color: var(--brown-400);
}

.tf-article-read {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brown-500);
}

.tf-articles-more {
  text-align: center;
  margin-top: 2rem;
}

.tf-articles-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-500);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.tf-articles-more-link:hover {
  color: var(--brown-700);
}

/* ---- 流量版 FAQ ---- */
.tf-faq {
  padding: 4rem 0;
  background: var(--cream-200);
}

.tf-faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.tf-faq-item {
  border-bottom: 1px solid var(--cream-300);
}

.tf-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  font-family: "Noto Serif SC", serif;
  letter-spacing: 0.03em;
}

.tf-faq-item summary::-webkit-details-marker {
  display: none;
}

.tf-faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brown-400);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tf-faq-item[open] summary::after {
  content: "−";
}

.tf-faq-answer {
  padding: 0 0 1.25rem;
}

.tf-faq-answer p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.8;
}

/* ---- 流量版 底部CTA ---- */
.tf-final-cta {
  position: relative;
  padding: 5rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.tf-final-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--brown-900) 0%, #1a0508 100%);
  z-index: 0;
}

.tf-final-cta-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(194, 51, 51, 0.12) 0%, transparent 60%);
}

.tf-final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.tf-final-cta-seal {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brown-400);
  border-radius: 50%;
  background: rgba(124, 36, 48, 0.15);
}

.tf-final-cta-seal span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brown-300);
  font-family: "Noto Serif SC", serif;
}

.tf-final-cta-inner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--cream-100);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-family: "Noto Serif SC", serif;
}

.tf-final-cta-inner p {
  font-size: 0.95rem;
  color: var(--brown-200);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.tf-final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tf-final-cta-actions .btn-primary {
  background: var(--brown-500);
}

.tf-final-cta-actions .btn-outline {
  border-color: rgba(176, 104, 92, 0.4);
  color: var(--brown-200);
}

.tf-final-cta-note {
  font-size: 0.78rem;
  color: var(--brown-300);
  letter-spacing: 0.05em;
}

/* ---- 流量版 响应式 ---- */
@media (max-width: 900px) {
  .tf-services-grid {
    grid-template-columns: 1fr;
  }
  .tf-master-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tf-master-highlights {
    justify-content: center;
  }
  .tf-testimonial-grid {
    grid-template-columns: 1fr;
  }
  .tf-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tf-process-steps {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .tf-process-connector {
    display: none;
  }
  .tf-process-step {
    flex: 0 0 calc(33.33% - 1rem);
  }
}

@media (max-width: 640px) {
  .tf-hero {
    padding: 5rem 1rem 3rem;
  }
  .tf-hero-stats {
    gap: 1.5rem;
  }
  .tf-hero-stat-num {
    font-size: 1.4rem;
  }
  .tf-hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .tf-trust-items {
    gap: 1rem;
  }
  .tf-trust-item span {
    font-size: 0.75rem;
  }
  .tf-articles-grid {
    grid-template-columns: 1fr;
  }
  .tf-process-step {
    flex: 0 0 100%;
  }
}
