/* ============================================================
   绝妙企服 · 绝妙合规局 —— 官网全局样式
   设计风格：对齐 jmqyfw.com（Tailwind 主题复刻）
   主色 #5A4773 / 深紫 #473A5C / 墨紫 #3d3250 / 淡紫 #E2DCEC
   强调 香槟金 #D7BE8C · 交替背景 #EDE6D9 · 卡片圆角 16px 无边框上浮
   ============================================================ */

:root {
  --ink: #2B2333;
  --ink-soft: #6A6376;
  --muted: #98909E;
  --purple: #5A4773;
  --purple-deep: #473A5C;
  --purple-darker: #3d3250;
  --purple-mid: #7A6A93;
  --purple-lighter: #9C8FB3;
  --purple-light: #E2DCEC;          /* 淡紫底（badge/图标/提示框底色） */
  --purple-line: #E2DCEC;           /* 淡紫边框 */
  --accent: #D7BE8C;                /* 香槟金 */
  --accent-light: #E5D3AE;
  --paper: #F5F0E8;                 /* 页面底 */
  --bg-alt: #EDE6D9;                /* 交替区块底 */
  --card: #ffffff;
  --line: #E3DACB;                  /* 细分割线 */
  --bikeng: #a87466;
  --bikeng-light: #f6edea;
  --zhengce: #6b7d8f;
  --zhengce-light: #ecf0f4;
  --shadow: 0 1px 3px rgba(45, 36, 53, .06);
  --shadow-lift: 0 14px 32px rgba(61, 50, 80, .14);
  --radius: 12px;
  --radius-lg: 16px;
  --font-sans: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, "Noto Sans", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--purple-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

/* ---------- 布局容器（1200px，对齐 jmqyfw） ---------- */

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 88px;
}


/* ---------- 顶部导航（毛玻璃白 + 淡紫细边，sticky） ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(226, 220, 236, .55);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 11px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.2;
}

.brand:hover { text-decoration: none; }

.brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #5A4773 0%, #3d3250 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(61, 50, 80, .30);
}

.brand small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1.5px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover { color: var(--purple-deep); text-decoration: none; }

.nav-links a.active {
  color: var(--purple-deep);
  border-bottom-color: var(--purple);
  font-weight: 600;
}


/* ---------- 页面顶部 Hero（深紫渐变横幅，对齐 jmqyfw） ---------- */

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(560px 400px at 10% -10%, rgba(226, 220, 236, .20), transparent 60%),
    radial-gradient(520px 360px at 94% 0%, rgba(139, 123, 155, .26), transparent 62%),
    linear-gradient(135deg, #3d3250 0%, #473A5C 52%, #5A4773 100%);
}

.home-hero { padding: 92px 28px 88px; }
.page-hero { padding: 68px 28px 76px; }

/* hero 紧邻的 main 收紧顶部间距，视觉衔接更顺 */
.home-hero + main,
.page-hero + main { padding-top: 36px; }

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .05;
  pointer-events: none;
}

.home-hero h1,
.page-hero h1 {
  position: relative;
  z-index: 1;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 18px;
}

.page-hero h1 { font-size: 34px; }

.home-hero h1 .accent,
.page-hero h1 .accent {
  color: var(--accent-light);
  font-weight: 700;
}

.home-hero .lead,
.page-hero .lead {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.95;
  color: rgba(255, 255, 255, .76);
}

.page-hero .lead { font-size: 15.5px; max-width: 640px; }

@media (max-width: 720px) {
  .home-hero { padding: 56px 24px 64px; }
  .page-hero { padding: 48px 24px 56px; }
  .home-hero h1 { font-size: 30px; }
  .page-hero h1 { font-size: 26px; }
}


/* ---------- 通用大标题 ---------- */

.section-title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: var(--purple-deep);
  letter-spacing: .5px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ---------- 交替区块背景（浅紫灰，全宽） ---------- */

.section-alt {
  background: var(--bg-alt);
  margin-inline: calc(50% - 50vw);
  padding: 64px max(24px, calc(50vw - 588px));
}

@media (max-width: 720px) {
  .section-alt { padding: 48px 24px; }
}

/* ---------- 按钮（圆角 12px 实心紫，对齐 jmqyfw） ---------- */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.btn:hover { text-decoration: none; transform: translateY(-2px); }

/* 类名保留 btn-gold / slogan-gold（历史沿用），视觉为实心莫兰迪紫 */
.btn-gold {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(90, 71, 115, .28);
}

.btn-gold:hover {
  background: var(--purple-deep);
  box-shadow: 0 8px 22px rgba(90, 71, 115, .36);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, .6);
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.btn-ghost:hover { background: rgba(255, 255, 255, .16); }

/* 浅底页面里的幽灵按钮 */
.btn-ghost.on-light {
  border-color: var(--purple);
  color: var(--purple-deep);
  background: transparent;
}

.btn-ghost.on-light:hover { background: var(--purple-light); }

/* ---------- 文章中心：分类筛选 ---------- */

.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 36px;
}

.cat-tab {
  padding: 8px 22px;
  border: 1px solid var(--purple-line);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.cat-tab:hover { border-color: var(--purple); color: var(--purple-deep); }

.cat-tab.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  box-shadow: 0 4px 14px rgba(90, 71, 115, .30);
}

/* ---------- 文章卡片列表 ---------- */

.articles-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: all .25s;
}

.article-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.article-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.article-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.article-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.cat-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: var(--purple-light);
  color: var(--purple-deep);
}

.cat-badge.bikeng { background: var(--bikeng-light); color: var(--bikeng); }
.cat-badge.zhengce { background: var(--zhengce-light); color: var(--zhengce); }

.hidden { display: none !important; }

/* ---------- 文章页 ---------- */

.article-hero {
  text-align: center;
  padding: 16px 0 36px;
  border-bottom: 1px solid var(--purple-line);
  margin-bottom: 36px;
}

.article-hero h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 14px;
  color: var(--ink);
}

.article-hero .meta {
  font-size: 14px;
  color: var(--muted);
}

.article-body {
  max-width: 740px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-soft);
}

.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 36px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--purple);
  line-height: 1.4;
}

.article-body p { margin-bottom: 14px; }

.article-body ul, .article-body ol {
  margin: 0 0 14px;
  padding-left: 24px;
}

.article-body li { margin-bottom: 8px; }

.article-body b, .article-body strong { color: var(--ink); }

.article-body code {
  background: var(--purple-light);
  color: var(--purple-deep);
  padding: 2px 7px;
  border-radius: 6px;
  font-size: 14px;
  font-family: "SF Mono", Consolas, "Microsoft YaHei", monospace;
}

/* ---------- 提示框 ---------- */

.note {
  background: rgba(226, 220, 236, .35);
  border: 1px solid var(--purple-line);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
}

.note strong { color: var(--purple-deep); }


/* ---------- 通用卡片网格 ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow);
  transition: all .25s;
}

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

.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: var(--radius-lg);
  background: rgba(226, 220, 236, .45);
  font-size: 26px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

.card li { margin-bottom: 5px; }

/* ---------- 栏目入口（首页三栏） ---------- */

.column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.column-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--card);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--purple);
  padding: 24px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow);
  transition: all .25s;
}

.column-card.bikeng { border-top-color: var(--bikeng); }
.column-card.zhengce { border-top-color: var(--zhengce); }

.column-card:hover {
  text-decoration: none;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.column-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
}

.column-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.column-card .more { font-size: 14px; font-weight: 600; color: var(--purple); margin-top: 6px; }

/* ---------- 页面小节间距 ---------- */

.section { margin-bottom: 64px; }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--purple-deep);
}

.section-head .more-link { font-size: 14px; font-weight: 600; color: var(--purple); white-space: nowrap; }
.section-head .more-link:hover { color: var(--purple-deep); text-decoration: none; }

/* ---------- 关于页 / 人物 ---------- */

.persona {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.persona .avatar {
  width: 130px;
  height: 130px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #5A4773 0%, #3d3250 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 6px 18px rgba(61, 50, 80, .28);
}

.persona h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.persona .role { font-size: 14px; color: var(--purple); font-weight: 600; margin-bottom: 12px; }
.persona p { font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.85; }

/* ---------- 价值观点条 ---------- */

.value-list { list-style: none; padding: 0; }

.value-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}

.value-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--purple-light);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  padding: 24px 26px;
  box-shadow: var(--shadow);
  transition: box-shadow .2s, transform .2s;
}

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

.faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.faq-item h3::before { content: "Q \00b7 "; color: var(--purple); }

.faq-item p { font-size: 15px; color: var(--ink-soft); line-height: 1.85; }

.faq-item p::before { content: "A \00b7 "; color: var(--muted); font-weight: 600; }

/* ---------- 联系页 ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all .25s;
}

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

.contact-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: var(--radius-lg);
  background: rgba(226, 220, 236, .45);
  font-size: 26px;
  margin-bottom: 16px;
}

.contact-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-card p { font-size: 14px; color: var(--muted); line-height: 1.8; }

.contact-card .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-deep);
  margin: 6px 0 4px;
  word-break: break-all;
}

.contact-card .value a {
  color: var(--purple-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-card .value a:hover { color: var(--purple); }

/* ---------- 在线咨询表单 ---------- */

.form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  max-width: 760px;
  margin: 0 auto;
}

.form-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 4px;
}

.form-card .form-tip {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.form-field label .req { color: var(--bikeng); }

.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(90, 71, 115, .14);
}

.form-field textarea { min-height: 110px; resize: vertical; }
.form-field .hint { font-size: 12.5px; color: var(--muted); }
.form-field .error-msg { font-size: 12.5px; color: var(--bikeng); display: none; }
.form-field.has-error input { border-color: var(--bikeng); }
.form-field.has-error .error-msg { display: block; }

.form-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-actions .privacy {
  font-size: 12.5px;
  color: var(--muted);
  flex-basis: 100%;
}

.form-success {
  display: none;
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  text-align: center;
}

.form-success.show { display: block; }

.form-success .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5A4773 0%, #3d3250 100%);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(61, 50, 80, .28);
}

.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-success p { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 6px; }

.form-success pre {
  text-align: left;
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-soft);
  white-space: pre-wrap;
  word-break: break-all;
  margin: 16px 0 20px;
  font-family: inherit;
}

/* ---------- CTA 横幅（深紫渐变大圆角） ---------- */

.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #473A5C 0%, #3d3250 100%);
  border-radius: 24px;
  padding: 56px 32px;
  text-align: center;
  color: #fff;
  box-shadow: 0 18px 44px rgba(61, 50, 80, .24);
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 220, 236, .16), transparent 65%);
  top: -180px;
  right: -100px;
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 220, 236, .12), transparent 65%);
  bottom: -140px;
  left: -80px;
  pointer-events: none;
}

.cta-banner h2,
.cta-banner p,
.cta-banner .btn { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .76);
  margin-bottom: 28px;
}

/* ---------- 页脚（墨紫底 + 金色 slogan） ---------- */

.site-footer {
  background: var(--purple-darker);
  color: rgba(255, 255, 255, .8);
  padding: 52px 24px 30px;
  margin-top: 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-inner p { font-size: 14px; color: rgba(255, 255, 255, .62); }

.footer-inner a { color: rgba(255, 255, 255, .9); }
.footer-inner a:hover { color: var(--accent-light); }

.slogan-gold {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-light);
  letter-spacing: .5px;
}

.disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .42);
  text-align: center;
}

.footer-meta {
  max-width: 1200px;
  margin: 14px auto 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .42);
  text-align: center;
}

.footer-meta a { color: rgba(255, 255, 255, .55); text-decoration: none; }
.footer-meta a:hover { color: var(--accent-light); }
.footer-meta .dot { margin: 0 10px; color: rgba(255, 255, 255, .3); }

/* ---------- 关于页：品牌说明（双卡） ---------- */

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.brand-card {
  background: var(--card);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: 30px 28px 26px;
  box-shadow: var(--shadow);
  transition: all .25s;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-left-color: var(--purple-deep);
}

.brand-card .brand-tag {
  display: inline-block;
  padding: 3px 12px;
  background: var(--purple-light);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: .5px;
}

.brand-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--purple-darker);
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.brand-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 10px;
}

.brand-card .hl {
  color: var(--purple-deep);
  font-weight: 600;
}

.brand-card .brand-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--purple-line);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .5px;
}

@media (max-width: 720px) {
  .brand-grid { grid-template-columns: 1fr; }
}

/* ---------- 服务页：四大服务 2×2 网格 ---------- */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .fit {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-card .fit-tag {
  display: inline-block;
  margin-right: 6px;
  padding: 1px 10px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 600;
  vertical-align: 1px;
}

.service-card ul {
  flex: 1;
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

.service-card li { margin-bottom: 7px; }

.service-card .service-note {
  margin: 12px 0 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bikeng-light);
  color: var(--bikeng);
  font-size: 13.5px;
  line-height: 1.7;
}

.service-card .service-link {
  display: inline-block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--purple-line);
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  transition: color .2s;
}

.service-card .service-link:hover { color: var(--purple-deep); text-decoration: none; }

@media (max-width: 720px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---------- 服务页：合作流程步骤（横向三步骤） ---------- */

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  align-items: stretch;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--purple-line);
  padding: 34px 28px;
  text-align: center;
  position: relative;
  transition: all .25s;
}

.step-card:first-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  border-right: none;
}

.step-card:nth-child(2) {
  border-right: none;
}

.step-card:last-child {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.step-card:hover {
  background: rgba(226, 220, 236, .30);
  border-color: var(--purple-line);
}

.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(90, 71, 115, .28);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 260px;
  margin: 0 auto;
}

/* 步骤间箭头 */
.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid var(--purple-line);
  z-index: 2;
}

.step-card:not(:last-child):hover::after {
  border-left-color: var(--purple);
}

@media (max-width: 720px) {
  .step-grid { grid-template-columns: 1fr; gap: 14px; }
  .step-card { border-radius: var(--radius-lg) !important; border-right: 1px solid var(--purple-line) !important; }
  .step-card:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -18px;
    transform: translateX(50%) rotate(90deg);
  }
}

/* ---------- 右下角悬浮咨询组件 ---------- */

.float-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  font-family: var(--font-sans);
}

.float-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(61, 50, 80, .38);
  transition: all .25s;
}

.float-btn:hover {
  background: var(--purple-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 50, 80, .46);
}

.float-btn .float-btn-icon { font-size: 18px; line-height: 1; }
.float-btn .float-btn-text { letter-spacing: 1px; }

.float-panel {
  width: 320px;
  max-width: calc(100vw - 48px);
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(45, 36, 53, .20);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.float-widget.open .float-panel { display: flex; }

.float-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.float-head strong { font-size: 16px; color: var(--ink); }

.float-close {
  border: none;
  background: var(--bg-alt);
  color: var(--muted);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: all .2s;
}

.float-close:hover { background: var(--purple-light); color: var(--purple-deep); }

.float-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.float-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}

.float-action:hover {
  text-decoration: none;
  border-color: var(--purple);
  background: rgba(226, 220, 236, .30);
}

.float-action .fa-icon { font-size: 20px; }

.float-action small {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--muted);
}

.float-form { display: flex; flex-direction: column; gap: 10px; }

.float-form input,
.float-form textarea {
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.float-form input:focus,
.float-form textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(90, 71, 115, .14);
}

.float-form textarea { min-height: 64px; resize: vertical; }

.float-form .float-error { font-size: 12.5px; color: var(--bikeng); display: none; }
.float-form.has-error .float-error { display: block; }
.float-form.has-error input { border-color: var(--bikeng); }

.float-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
}

.float-result {
  display: none;
  flex-direction: column;
  gap: 10px;
}

.float-widget.show-result .float-form { display: none; }
.float-widget.show-result .float-result { display: flex; }

.float-result p { font-size: 13.5px; color: var(--ink-soft); }

.float-result pre {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
  white-space: pre-wrap;
  word-break: break-all;
  font-family: inherit;
  margin: 0;
}

.float-result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.float-result-actions .btn {
  padding: 9px 0;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
}

.float-toast {
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  background: var(--purple-darker);
  color: #fff;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(45, 36, 53, .30);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}

.float-toast.show { opacity: 1; }

@media (max-width: 640px) {
  .float-widget { right: 16px; bottom: 16px; }
  .float-panel { width: calc(100vw - 32px); }
}

/* ---------- 响应式 ---------- */

@media (max-width: 880px) {
  .site-header .nav { grid-template-columns: 1fr; gap: 14px; }
  .site-header .nav-links { gap: 16px; justify-content: flex-start; }
}

@media (max-width: 720px) {
  .article-hero h1 { font-size: 23px; }
  .section-title { font-size: 24px; }
  .persona { grid-template-columns: 1fr; }
  .persona .avatar { margin: 0 auto; }
  .form-card, .form-success { padding: 28px 20px; }
  .cta-banner { padding: 40px 22px; }
}

@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; gap: 6px; }
}

/* ============================================================
   全站动画（2026-08-25 新增）
   前置：reveal.js 会给 <html> 加 .reveal-init，
   无 JS 时这些规则不生效，内容直接可见，不会白屏。
   ============================================================ */

/* 滚动渐入：进入视口前淡入上浮 */
html.reveal-init .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.22, .61, .36, 1),
              transform .7s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--d, 0s);
}

html.reveal-init .reveal.in {
  opacity: 1;
  transform: none;
}

/* 顶部 Hero 标题入场（首屏即动，不依赖 JS） */
.home-hero h1, .home-hero .lead,
.page-hero h1, .page-hero .lead,
.article-hero h1, .article-hero .meta {
  animation: hero-rise .8s cubic-bezier(.22, .61, .36, 1) both;
}

.home-hero .lead, .page-hero .lead, .article-hero .meta {
  animation-delay: .14s;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* CTA 横幅光晕缓慢呼吸 */
.cta-banner::before,
.cta-banner::after {
  animation: glow-breathe 7s ease-in-out infinite;
}

.cta-banner::after { animation-delay: -3.5s; }

@keyframes glow-breathe {
  0%, 100% { opacity: .65; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.14); }
}

/* 卡片图标 hover 微动 */
.card .icon,
.contact-card .icon,
.brand-card .icon,
.persona .avatar {
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}

.card:hover .icon,
.contact-card:hover .icon,
.brand-card:hover .icon,
.persona:hover .avatar {
  transform: translateY(-4px) scale(1.06);
}

/* 导航：滚动后顶栏加深 + 阴影（.scrolled 由 reveal.js 添加） */
.site-header {
  transition: box-shadow .3s, background .3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 28px rgba(61, 50, 80, .12);
}

/* 导航链接 hover 微浮 */
.nav-links a {
  transition: color .2s, border-color .2s, transform .25s;
}

.nav-links a:hover { transform: translateY(-1px); }

/* 系统开启「减弱动态效果」时，全部动画退化为直接显示 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.reveal-init .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   首页全屏 Hero（科技感 + 视频背景 + 右侧 SVG 图形）
   ========================================================= */
.hero-cinematic {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 28px 100px;
  text-align: left;
  overflow: hidden;
  background: #151020;
}
.hero-cinematic::after {
  z-index: 0;
  opacity: .05;
}

.hero-media,
.hero-video,
.hero-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media { z-index: -2; }
.hero-video { z-index: -1; opacity: .5; }
.hero-video-fallback {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 30%, rgba(90, 71, 115, .55) 0%, transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(215, 190, 140, .18) 0%, transparent 40%),
    radial-gradient(circle at 50% 120%, rgba(61, 50, 80, .7) 0%, transparent 50%),
    linear-gradient(135deg, #151020 0%, #241d32 45%, #3d3250 100%);
  background-size: 200% 200%;
  animation: hero-aurora 18s ease-in-out infinite;
}
.hero-video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 70%);
  mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 70%);
}

.hero-dim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(20, 15, 30, .96) 0%, rgba(20, 15, 30, .72) 42%, rgba(20, 15, 30, .22) 100%),
    radial-gradient(circle at 70% 50%, transparent 0%, rgba(20, 15, 30, .55) 75%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero-copy { max-width: 620px; }

.hero-eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #E5D3AE;
  background: rgba(215, 190, 140, .12);
  border: 1px solid rgba(215, 190, 140, .25);
  opacity: 0;
  animation: hero-fade .7s .1s forwards;
}

.hero-copy h1 {
  font-size: 58px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: .5px;
  margin: 0 0 22px;
  color: #fff;
}
.hero-copy h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(32px);
  animation: hero-line-rise .85s cubic-bezier(.22, .61, .36, 1) forwards;
}
.hero-copy h1 .line:nth-child(1) { animation-delay: .18s; }
.hero-copy h1 .line:nth-child(2) { animation-delay: .32s; }
.hero-copy h1 .accent { color: #E5D3AE; }

.hero-copy .lead {
  max-width: 520px;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
  opacity: 0;
  animation: hero-fade .8s .52s forwards;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: hero-fade .8s .68s forwards;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(1.22) translateY(18px);
  animation: hero-visual-in 1.25s cubic-bezier(.22, .61, .36, 1) .28s forwards;
  transition: transform .6s cubic-bezier(.22, .61, .36, 1);
}
.hero-visual:hover { transform: scale(.96); }

.hero-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  overflow: visible;
}

.hero-ring-outer {
  transform-origin: center;
  animation: hero-rotate 80s linear infinite;
}
.hero-ring-mid {
  transform-origin: center;
  animation: hero-rotate-reverse 100s linear infinite;
}
.hero-nodes { opacity: 0; animation: hero-fade 1s .6s forwards; }
.hero-node-web { stroke-dasharray: 1; stroke-dashoffset: 1; animation: hero-draw 1.4s .9s forwards; }
.hero-shield { stroke-dasharray: 1; stroke-dashoffset: 1; animation: hero-draw 1.2s .7s forwards; }
.hero-check { stroke-dasharray: 1; stroke-dashoffset: 1; animation: hero-draw .8s 1.1s forwards; }
.hero-trend { stroke-dasharray: 1; stroke-dashoffset: 1; animation: hero-draw 1.1s 1s forwards; }
.hero-trend-dot { opacity: 0; animation: hero-pop .5s 1.6s forwards; }
.hero-coin-1 { animation: hero-float 5s ease-in-out infinite; }
.hero-coin-2 { animation: hero-float 5.8s ease-in-out infinite .8s; }
.hero-spark { opacity: 0; animation: hero-sparkle 3.5s ease-in-out infinite; }
.hero-spark:nth-of-type(2) { animation-delay: .9s; }
.hero-spark:nth-of-type(3) { animation-delay: 1.8s; }
.hero-spark:nth-of-type(4) { animation-delay: 2.6s; }

@keyframes hero-aurora {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes hero-line-rise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-visual-in {
  from { opacity: 0; transform: scale(1.22) translateY(18px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes hero-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes hero-rotate-reverse {
  from { transform: rotate(360deg); }
  to   { transform: rotate(0deg); }
}
@keyframes hero-draw {
  to { stroke-dashoffset: 0; }
}
@keyframes hero-pop {
  from { opacity: 0; transform: scale(0); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes hero-sparkle {
  0%, 100% { opacity: 0; transform: scale(.6); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: center;
  }
  .hero-copy { margin: 0 auto; }
  .hero-copy h1 { font-size: 46px; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .hero-dim {
    background:
      linear-gradient(180deg, rgba(20, 15, 30, .96) 0%, rgba(20, 15, 30, .8) 45%, rgba(20, 15, 30, .45) 100%),
      radial-gradient(circle at 50% 80%, transparent 0%, rgba(20, 15, 30, .55) 75%);
  }
}

@media (max-width: 640px) {
  .hero-cinematic {
    min-height: auto;
    padding: 100px 22px 72px;
  }
  .hero-copy h1 { font-size: 34px; }
  .hero-copy .lead { font-size: 15.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-visual { max-width: 300px; }
}

/* ============================================================
   服务页 · 产品体系版（2026-09-06 新增）
   分层列表 / 对比双栏 / 数据表格 / 行业卡 / 服务边界
   ============================================================ */

/* ---------- 小标题（区块内的三级标题） ---------- */

.sub-heading {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin: 30px 0 16px;
  padding-left: 12px;
  border-left: 3px solid var(--accent);
  line-height: 1.5;
}

.plain-text {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.95;
}

/* ---------- 产品分层列表 ---------- */

.tier-list { display: flex; flex-direction: column; gap: 14px; }

.tier-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: stretch;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}

.tier-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }

.tier-item .tier-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(226, 220, 236, .45);
  color: var(--purple-deep);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 20px 8px;
}

.tier-item.main {
  border: 1.5px solid var(--purple);
  box-shadow: 0 10px 26px rgba(90, 71, 115, .18);
}

.tier-item.main .tier-badge {
  background: linear-gradient(135deg, #5A4773 0%, #3d3250 100%);
  color: #fff;
  font-size: 15px;
}

.tier-body { padding: 20px 26px; }

.tier-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tier-tag {
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
}

.tier-tag.hot {
  background: rgba(215, 190, 140, .22);
  color: #8a6f3f;
}

.tier-body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.tier-body strong { color: var(--purple-deep); }

@media (max-width: 640px) {
  .tier-item { grid-template-columns: 1fr; }
  .tier-item .tier-badge { padding: 10px; }
  .tier-body { padding: 18px 20px; }
}

/* ---------- 卖点卡的对比说明 ---------- */

.card-vs {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--purple-line);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

.card-vs::before {
  content: "传统代理记账 ";
  color: var(--purple);
  font-weight: 600;
}

/* ---------- 传统代账 vs 合规账 双栏对比 ---------- */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 8px;
}

.compare-col {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.compare-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
  letter-spacing: .5px;
}

.compare-col ul { list-style: none; padding: 0; }

.compare-col li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 9px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.compare-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
}

.compare-col.hl {
  border: 1.5px solid var(--purple);
  box-shadow: 0 10px 26px rgba(90, 71, 115, .16);
}

.compare-col.hl h4 { color: var(--purple-deep); font-size: 16px; }
.compare-col.hl li { color: var(--ink); }
.compare-col.hl li::before { background: var(--purple); }
.compare-col.hl strong { color: var(--purple-deep); }

@media (max-width: 720px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ---------- 数据表格 ---------- */

.table-wrap {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 8px;
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 560px;
}

.data-table th,
.data-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  line-height: 1.7;
  vertical-align: middle;
}

.data-table thead th {
  background: rgba(226, 220, 236, .32);
  color: var(--purple-deep);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.data-table thead th:first-child { border-radius: var(--radius) 0 0 0; }
.data-table thead th:last-child { border-radius: 0 var(--radius) 0 0; }
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: rgba(226, 220, 236, .16); }
.data-table td strong { color: var(--purple-deep); }

/* 价格表 */

.price-table { min-width: 720px; }
.price-table thead th { text-align: center; font-size: 12.5px; }
.price-table th:first-child { text-align: left; }

.price-table .price {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-deep);
  white-space: nowrap;
}

.price-table .unit {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}

/* 对比表：普通代账 vs 合规账（2026-09-12） */

.compare-table { min-width: 640px; }

.compare-table tbody td:first-child {
  font-weight: 700;
  color: var(--purple-deep);
  white-space: nowrap;
  width: 92px;
}

.compare-table .hl-col {
  background: rgba(226, 220, 236, .22);
}

.compare-table thead th.hl-col {
  background: rgba(226, 220, 236, .5);
  color: var(--purple-deep);
}

.compare-table tbody tr:hover .hl-col { background: rgba(226, 220, 236, .34); }

/* ---------- 财税风险自查清单（2026-09-12） ---------- */

.check-group {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 24px;
  margin-bottom: 18px;
}

.check-group h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--purple-deep);
}

.check-group .check-hint {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

.check-list { list-style: none; margin: 0; padding: 0; }

.check-list li { border-top: 1px solid var(--line); }

.check-list li:first-child { border-top: none; }

.check-list label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 2px;
  cursor: pointer;
  font-size: 14.5px;
  line-height: 1.75;
  transition: background .18s ease;
}

.check-list label:hover { background: rgba(226, 220, 236, .18); }

.check-list input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--purple);
  cursor: pointer;
}

.check-result {
  position: sticky;
  bottom: 0;
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  padding: 20px 24px;
  border-top: 3px solid var(--accent);
}

.check-result .check-count {
  font-size: 15px;
  color: var(--ink);
}

.check-result .check-count strong {
  font-size: 26px;
  color: var(--purple-deep);
  margin: 0 4px;
  vertical-align: -2px;
}

.check-result .check-tip {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 8px 0 16px;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .check-group { padding: 18px 16px; }
  .check-result { padding: 18px 16px; }
}

.price-note,
.fit-line {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
}

.fit-line { margin-top: 22px; }

.fit-line .fit-tag {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 600;
  vertical-align: 1px;
}

/* 升级路线表 */

.matrix-table { min-width: 620px; }
.matrix-table td:first-child { white-space: nowrap; }

/* ---------- 行业卡 ---------- */

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.industry-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--purple);
  transition: transform .25s, box-shadow .25s;
}

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

.industry-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ind-tag {
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--purple-light);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 600;
}

.industry-card dl { display: grid; grid-template-columns: 88px 1fr; gap: 8px 14px; }

.industry-card dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1.7;
}

.industry-card dd {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.8;
  margin: 0;
}

.ind-value {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgba(226, 220, 236, .30);
  border-left: 3px solid var(--purple);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.85;
}

.ind-warn {
  display: inline-block;
  margin-top: 6px;
  color: var(--bikeng);
  font-size: 13px;
}

@media (max-width: 860px) {
  .industry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .industry-card dl { grid-template-columns: 1fr; gap: 2px 0; }
  .industry-card dd { margin-bottom: 10px; }
}

/* ---------- 服务边界双卡 ---------- */

.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.boundary-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}

.boundary-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.boundary-card.do { border-left: 4px solid var(--purple); }
.boundary-card.do h3 { color: var(--purple-deep); }
.boundary-card.do h3::before { content: "\2713"; color: var(--purple); }

.boundary-card.dont { border-left: 4px solid var(--bikeng); }
.boundary-card.dont h3 { color: var(--bikeng); }
.boundary-card.dont h3::before { content: "\2715"; color: var(--bikeng); }

.boundary-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.9;
}

.boundary-card li { margin-bottom: 7px; }

@media (max-width: 720px) {
  .boundary-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   信任背书 · 资质证明 + 真人 IP（2026-09-12 新增）
   ============================================================ */

/* 顶部导航：显形电话按钮 */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--purple-deep);
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(226, 220, 236, .40);
  transition: all .2s;
}
.nav-phone:hover {
  text-decoration: none;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 6px 16px rgba(90, 71, 115, .30);
}
.nav-phone .ico { font-size: 15px; }

/* 资质证书卡 */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.cert-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.cert-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f1f6;
  padding: 16px;
  min-height: 190px;
}
.cert-frame img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(45, 36, 53, .14);
}
.cert-cap { padding: 18px 22px 22px; }
.cert-cap h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.cert-cap .cert-no {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: .2px;
  word-break: break-all;
}
.cert-cap p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.8; margin-top: 10px; }
.cert-badge-ok {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(215, 190, 140, .22);
  color: #8a6f3f;
  font-size: 12px;
  font-weight: 600;
}
.cert-verify {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(150deg, rgba(226, 220, 236, .35), rgba(248, 247, 250, .92));
}
.cert-verify .verify-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  font-size: 46px;
}
.cert-verify .cert-cap { padding-top: 0; }

/* 真人 IP 卡 */
.founder-card {
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  margin-top: 30px;
}
.founder-card .founder-avatar {
  width: 176px;
  height: 176px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(61, 50, 80, .24);
}
.founder-card .founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-card h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.founder-card .role { font-size: 14px; font-weight: 600; color: var(--purple); margin-bottom: 12px; }
.founder-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.9; margin-bottom: 10px; }
.founder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.founder-meta strong { color: var(--purple-deep); }

/* ============================================================
   2026-09-12 二次补充：TSC5 信用等级卡 · 行业案例页
   ============================================================ */

/* TSC5 信用等级：2026-09-14 起改用真实证书扫描件 img/tsc5-cert.jpg，
   原「文字徽章版」样式（.cert-badge-frame / .tsc-badge*）已弃用并移除 */

/* 「行业案例」分类徽章（金色） */
.cat-badge.anli { background: rgba(215, 190, 140, .22); color: #8a6f3f; }

/* 案例页：问题 / 做法 / 结果 三段式 */
.case-steps { display: grid; gap: 14px; margin: 22px 0 8px; }
.case-step {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: start;
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow);
}
.case-step .step-tag { font-size: 13.5px; font-weight: 700; color: var(--purple-deep); line-height: 1.5; }
.case-step .step-tag small { display: block; font-weight: 500; color: var(--muted); font-size: 11.5px; letter-spacing: .5px; margin-top: 2px; }
.case-step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; margin: 0; }
.case-step ul { margin: 0; padding-left: 20px; }
.case-step li { font-size: 14.5px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 6px; }
@media (max-width: 640px) {
  .case-step { grid-template-columns: 1fr; gap: 6px; }
}

/* 关于页头像：改为真实图片 */
.persona .avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }

/* 隐私政策页 */
.policy-page { max-width: 820px; margin: 0 auto; }
.policy-page h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--purple);
  line-height: 1.4;
}
.policy-page p, .policy-page li { font-size: 15px; color: var(--ink-soft); line-height: 1.95; }
.policy-page p { margin-bottom: 12px; }
.policy-page ul { margin: 0 0 14px; padding-left: 22px; }
.policy-page li { margin-bottom: 8px; }
.policy-page .policy-meta { text-align: center; color: var(--muted); font-size: 13.5px; }

@media (max-width: 720px) {
  .cert-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; text-align: center; padding: 26px; }
  .founder-card .founder-avatar { margin: 0 auto; width: 144px; height: 144px; }
  .founder-meta { justify-content: center; }
  .nav-phone { font-size: 13px; padding: 8px 12px; }
}
