/* ====================================
   道如意心理 - 公共样式
   设计稿基准：soft-mindfulness-glow
   ==================================== */

:root {
  /* 主色系 */
  --color-primary: #2C5F7C;        /* 深蓝宝石 */
  --color-primary-light: #7AAEC0;  /* 中蓝 */
  --color-primary-dark: #1F3A52;   /* 深色板块 */
  --color-darker: #152838;         /* 更深/footer */

  /* 背景色 */
  --color-bg: #FFFFFF;
  --color-bg-light: #E8F5F9;       /* 淡蓝 */
  --color-bg-section: #F0F7FA;     /* 区块背景 */
  --color-bg-image: #D0E8F0;       /* 图片占位 */

  /* 强调色 */
  --color-pink: #FFB2C1;           /* 柔粉 */
  --color-green: #C7E5D4;          /* 柔绿 */
  --color-light-accent: #A8CEDD;

  /* 微信绿 */
  --color-wechat: #07C160;
  --color-wechat-light: #E8F8EE;

  /* 文字 */
  --color-text: #1F3A52;           /* 主要文字 */
  --color-text-body: #5A7A8C;      /* 正文 */
  --color-text-muted: #8FA4B0;     /* 辅助 */
  --color-text-on-dark: #E8F5F9;   /* 深色背景上的文字 */

  /* 边框/分割 */
  --color-border: #E5E9EC;
  --color-border-light: #F0F4F6;

  /* 状态色 */
  --color-status-synced: #07C160;
  --color-status-synced-bg: #E8F8EE;
  --color-status-pending: #FF9500;
  --color-status-pending-bg: #FFF8E6;
  --color-status-draft: #5A7A8C;
  --color-status-draft-bg: #F0F2F5;

  /* 字体 */
  --font-serif: 'Noto Serif SC', 'Songti SC', 'STSong', serif;
  --font-sans: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-deco: 'Cormorant Garamond', 'Times New Roman', serif;

  /* 圆角 */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(31, 58, 82, 0.06);
  --shadow: 0 4px 16px rgba(31, 58, 82, 0.08);
  --shadow-md: 0 6px 24px rgba(31, 58, 82, 0.1);
  --shadow-lg: 0 12px 36px rgba(31, 58, 82, 0.12);

  /* 间距 */
  --container-width: 1200px;
  --container-padding: 24px;
  --section-py: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
ul, ol { list-style: none; }

/* ===== 排版 ===== */
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--color-text); font-weight: 700; line-height: 1.3; }
.eyebrow {
  font-family: var(--font-deco);
  font-size: 13px;
  color: var(--color-primary-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-style: italic;
  margin-bottom: 12px;
}

/* ===== 容器 ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ===== 按钮 ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(44, 95, 124, 0.25);
}
.btn-primary:hover { background: #234a61; color: #fff; transform: translateY(-1px); }
.btn-wechat {
  background: var(--color-wechat);
  color: #fff;
  box-shadow: 0 4px 12px rgba(7, 193, 96, 0.25);
}
.btn-wechat:hover { background: #06a052; color: #fff; }
.btn-outline {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }
.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.25); }

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  transition: all 0.3s;
}
.header.scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: var(--shadow-sm); }
.header-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}
.logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-deco);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}
.nav { display: flex; gap: 36px; }
.nav a {
  font-size: 14px;
  color: var(--color-text-body);
  position: relative;
  padding: 4px 0;
}
.nav a:hover, .nav a.active { color: var(--color-primary); }
.nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
}
.header-cta { display: flex; gap: 12px; align-items: center; }
.mobile-menu-btn { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 8px; }
.mobile-menu-btn span { display: block; width: 20px; height: 2px; background: var(--color-text); position: relative; }
.mobile-menu-btn span::before, .mobile-menu-btn span::after {
  content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: var(--color-text);
}
.mobile-menu-btn span::before { top: -6px; }
.mobile-menu-btn span::after { top: 6px; }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(180deg, #E8F5F9 0%, #F0F7FA 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero::before {
  width: 500px; height: 500px;
  background: rgba(168, 206, 221, 0.4);
  top: -200px; right: -100px;
}
.hero::after {
  width: 400px; height: 400px;
  background: rgba(255, 178, 193, 0.25);
  bottom: -150px; left: -100px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-text);
}
.hero p {
  font-size: 17px;
  color: var(--color-text-body);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 13px; color: var(--color-text-muted); }

/* ===== Section 通用 ===== */
section { padding: var(--section-py) 0; }
.section-light { background: var(--color-bg-light); }
.section-white { background: #fff; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: 36px; margin-bottom: 12px; }
.section-header p { color: var(--color-text-body); font-size: 15px; max-width: 600px; margin: 0 auto; }

/* ===== 服务卡片 ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-image));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 13px; color: var(--color-text-body); line-height: 1.6; }

/* ===== 实力卡片 ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.why-card.featured { grid-column: span 2; background: linear-gradient(135deg, #fff, var(--color-bg-light)); }
.why-num {
  font-family: var(--font-deco);
  font-size: 36px;
  font-style: italic;
  color: var(--color-primary-light);
  margin-bottom: 8px;
}
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--color-text-body); }

/* ===== 创始人 ===== */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.founder-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--color-bg-image), var(--color-bg-light));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.founder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.founder-info h2 { font-size: 32px; margin-bottom: 16px; }
.founder-info .role { color: var(--color-primary); font-size: 14px; margin-bottom: 20px; font-weight: 500; }
.founder-info p { color: var(--color-text-body); margin-bottom: 14px; line-height: 1.8; }

/* ===== 平台双卡 ===== */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.platform-card {
  background: linear-gradient(135deg, #1F3A52 0%, #152838 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--color-text-on-dark);
  position: relative;
  overflow: hidden;
}
.platform-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168, 206, 221, 0.15), transparent 70%);
  border-radius: 50%;
}
.platform-card h3 { color: #fff; font-size: 24px; margin-bottom: 12px; }
.platform-card .eyebrow { color: var(--color-light-accent); }
.platform-card p { color: var(--color-light-accent); margin-bottom: 24px; line-height: 1.7; }
.platform-card .btn { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.platform-card .btn:hover { background: rgba(255, 255, 255, 0.2); }

/* ===== 案例数据 ===== */
.cases-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.case-stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--color-border-light);
}
.case-stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.case-stat-label { color: var(--color-text-body); font-size: 14px; }
.case-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.case-tag {
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--color-text-body);
}

/* ===== 博客卡片 ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  transition: all 0.3s;
  cursor: pointer;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-cover {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--color-bg-image), var(--color-light-accent));
  position: relative;
}
.blog-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.4), transparent 50%);
}
.blog-card-body { padding: 20px 24px 24px; }
.blog-card-cat {
  display: inline-block;
  font-size: 12px;
  color: var(--color-primary);
  background: var(--color-bg-light);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}
.blog-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.5; }
.blog-card p { font-size: 13px; color: var(--color-text-body); line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--color-text-muted);
}
.blog-card-meta .wechat-tag {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--color-wechat-light);
  color: var(--color-wechat);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

/* ===== 公众号区块 ===== */
.wechat-section {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, #fff 100%);
  padding: 80px 0;
}
.wechat-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.wechat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}
.wechat-qr {
  width: 200px; height: 200px;
  margin: 0 auto 20px;
  background: #fff;
  border: 2px solid var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
.wechat-qr img, .wechat-qr svg { width: 100%; height: 100%; object-fit: contain; }
.wechat-name { font-family: var(--font-serif); font-size: 18px; margin-bottom: 4px; }
.wechat-id { color: var(--color-text-muted); font-size: 13px; margin-bottom: 20px; }
.wechat-flow { padding: 0; }
.wechat-flow h3 { font-size: 22px; margin-bottom: 24px; }
.wechat-flow-steps {
  display: flex;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 32px;
}
.wechat-step {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--color-border-light);
  position: relative;
}
.wechat-step-num {
  width: 32px; height: 32px;
  background: var(--color-wechat);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  margin: 0 auto 12px;
}
.wechat-step h4 { font-size: 14px; margin-bottom: 6px; }
.wechat-step p { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; }
.wechat-step-arrow {
  align-self: center;
  color: var(--color-primary-light);
  font-size: 20px;
}
.wechat-stats {
  display: flex;
  justify-content: space-around;
  padding: 24px;
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
}
.wechat-stat { text-align: center; }
.wechat-stat-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}
.wechat-stat-label { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; }

/* ===== Footer ===== */
.footer {
  background: var(--color-darker);
  color: var(--color-text-on-dark);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}
.footer-brand p {
  color: var(--color-light-accent);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-weight: 500;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: var(--color-light-accent);
  font-size: 13px;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 12px;
}

/* ===== 预约咨询弹窗 ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 40, 56, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 24px;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.modal-overlay.active .modal-card { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--color-bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--color-text-body);
  transition: all 0.2s;
}
.modal-close:hover { background: var(--color-bg-image); color: var(--color-text); }
.modal-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.modal-card .modal-sub {
  color: var(--color-text-body);
  font-size: 14px;
  margin-bottom: 24px;
}
.modal-qr-wrap {
  display: inline-block;
  padding: 12px;
  background: #fff;
  border: 2px solid var(--color-bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.modal-qr-wrap img, .modal-qr-wrap svg { width: 220px; height: 220px; display: block; }
.modal-tips {
  font-size: 14px;
  color: var(--color-text-body);
  margin-bottom: 8px;
}
.modal-hours {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.modal-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ===== 通用工具 ===== */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(168, 206, 221, 0.15), transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 178, 193, 0.1), transparent 50%);
}
.cta-section > .container { position: relative; z-index: 2; }
.cta-section h2 { color: #fff; font-size: 32px; margin-bottom: 16px; }
.cta-section p { color: var(--color-light-accent); margin-bottom: 32px; }

/* ====================================
   搜索框样式
   ==================================== */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #F0F7FA;
  border-radius: 24px;
  padding: 0 4px 0 16px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.header-search:focus-within {
  border-color: var(--color-primary-light);
  background: #fff;
  box-shadow: 0 2px 8px rgba(44, 95, 124, 0.1);
}
.header-search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13px;
  color: var(--color-text);
  width: 200px;
  padding: 8px 0;
  font-family: inherit;
}
.header-search input::placeholder { color: var(--color-text-muted); }
.search-btn {
  border: none;
  background: var(--color-primary);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.search-btn:hover { background: var(--color-primary-dark); }

/* 搜索建议下拉 */
.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(31, 58, 82, 0.15);
  z-index: 1000;
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
}
.suggest-item {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-body);
  transition: background 0.15s;
}
.suggest-item:hover { background: #F0F7FA; color: var(--color-primary); }

/* ====================================
   面包屑导航
   ==================================== */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
}
.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--color-primary-dark); text-decoration: underline; }
.breadcrumb span { color: var(--color-text-body); }

/* ====================================
   FAQ 模块
   ==================================== */
.faq-list { margin-top: 24px; }
.faq-list details {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.faq-list details[open] { box-shadow: 0 4px 12px rgba(44, 95, 124, 0.12); }
.faq-list summary {
  font-size: 16px;
  color: var(--color-text);
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  font-size: 20px;
  color: var(--color-primary-light);
  transition: transform 0.2s;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { margin-top: 12px; color: var(--color-text-body); line-height: 1.7; }

/* ====================================
   搜索结果页
   ==================================== */
.search-page { padding: 40px 0 80px; }
.search-box-large {
  display: flex;
  max-width: 600px;
  margin: 0 auto 32px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 12px rgba(31, 58, 82, 0.1);
  overflow: hidden;
}
.search-box-large input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 16px;
  outline: none;
  color: var(--color-text);
}
.search-box-large button {
  padding: 0 32px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}
.search-box-large button:hover { background: var(--color-primary-dark); }
.search-results-info {
  text-align: center;
  color: var(--color-text-body);
  margin-bottom: 24px;
}
.search-result-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid #E8F5F9;
}
.search-result-card:hover {
  box-shadow: 0 4px 16px rgba(44, 95, 124, 0.12);
  transform: translateY(-2px);
}
.search-result-type {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}
.search-result-type.consultant { background: #E8F5F9; color: #2C5F7C; }
.search-result-type.service { background: #E8F8EE; color: #07C160; }
.search-result-type.case { background: #FFF8E6; color: #FF9500; }
.search-result-type.article { background: #F0F2F5; color: #5A7A8C; }
.search-result-card h3 { font-size: 18px; color: var(--color-text); margin-bottom: 8px; }
.search-result-card p { color: var(--color-text-body); font-size: 14px; line-height: 1.6; }
.search-result-meta { font-size: 12px; color: var(--color-text-muted); margin-top: 8px; }
.highlight { background: #FFF3CD; padding: 0 2px; border-radius: 2px; }
.search-no-result {
  text-align: center;
  padding: 60px 20px;
}
.search-hot-words {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.search-hot-words a {
  padding: 6px 16px;
  background: #F0F7FA;
  border-radius: 20px;
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.2s;
}
.search-hot-words a:hover { background: var(--color-primary); color: #fff; }

/* ===== 导航下拉（二级栏目） ===== */
.nav-item { position: relative; }
.nav-has-child { display: inline-block; }
.nav-has-child > a .caret { font-size: 10px; opacity: 0.7; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(31,58,82,0.12);
  padding: 8px 0;
  z-index: 50;
}
.nav-has-child:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--color-text-body) !important;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: #F0F7FA; color: var(--color-primary) !important; }

/* ===== 移动端搜索图标 ===== */
.mobile-search-btn {
  display: none;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border: none; background: transparent; color: var(--color-primary);
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-search-btn { display: inline-flex; }
  .header-search { display: none; position: absolute; top: 56px; left: 12px; right: 12px; background: #fff; padding: 8px; border-radius: 10px; box-shadow: 0 8px 30px rgba(31,58,82,0.12); }
  .header-search.open { display: flex; }
  .nav { display: none; }
  .nav-has-child:hover .nav-dropdown { display: none; }
}

/* ===== 面包屑 ===== */
.breadcrumb a:hover { text-decoration: underline; }

