/* ============================================================
   智数盒子官网 · 各页面专属样式
   ============================================================ */

/* ============================================================
   首页 · 痛点网格（去红色刺眼，改为沉稳深色）
   ============================================================ */
.pain-grid .card--red { padding: var(--sp-5); }
.pain-grid .card__title { font-size: 16px; color: var(--text-1); margin-bottom: var(--sp-2); }
.pain-grid .card__text { font-size: 14px; color: var(--text-3); line-height: 1.6; }

/* ============================================================
   首页 · 解决方案列表
   ============================================================ */
.solution-list { display: grid; gap: var(--sp-4); max-width: 900px; margin: 0 auto; }
.solution-card {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-6);
}
.solution-card .card__icon { margin-bottom: 0; flex-shrink: 0; }
.solution-card .card__title { margin-bottom: var(--sp-2); }
.solution-card .card__text { font-size: 14px; line-height: 1.8; }
@media (max-width: 600px) {
  .solution-card { flex-direction: column; padding: var(--sp-5); }
  .solution-card .card__icon { margin-bottom: var(--sp-3); }
}

/* ============================================================
   首页 · USP Banner（去装饰圆，纯色）
   ============================================================ */
.usp-banner {
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: var(--sp-12);
  color: #fff;
  text-align: center;
  position: relative;
}
.usp-banner::before { display: none; }
.usp-banner__title {
  color: #fff;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  margin-bottom: var(--sp-3);
  position: relative;
}
.usp-banner__highlight {
  font-size: 1.3em;
  color: #fff;
  font-weight: 800;
  border-bottom: 3px solid var(--brand-primary);
  padding-bottom: 2px;
}
.usp-banner__sub {
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  position: relative;
}
.usp-banner__row {
  display: flex;
  justify-content: center;
  gap: var(--sp-10);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
  position: relative;
}
.usp-banner__item { text-align: center; }
.usp-banner__num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #60A5FA;
  line-height: 1;
}
.usp-banner__lbl {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--sp-2);
}

/* ============================================================
   首页 · 产品形态展示
   ============================================================ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}
.product-showcase__text h3 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: var(--sp-6);
  color: var(--text-1);
}
.product-showcase__text .btn { margin-top: var(--sp-6); }
.product-showcase .steps--vertical {
  flex-direction: column;
  gap: var(--sp-3);
}
.product-showcase .steps--vertical .step { text-align: left; padding: var(--sp-4); display: flex; align-items: center; gap: var(--sp-4); }
.product-showcase .steps--vertical .step__num { margin: 0; }
.product-showcase .steps--vertical .step__title { margin-bottom: 2px; }
.product-showcase .steps--vertical .step { position: relative; }
.product-showcase .steps--vertical .step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 56px;
  bottom: -16px;
  width: 2px;
  background: var(--border-b);
  border-radius: 1px;
}

/* CSS 绘制的盒子占位图 */
.product-showcase__visual { display: flex; justify-content: center; align-items: center; min-height: 340px; }
.device-mockup {
  position: relative;
  width: 280px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-mockup__box {
  width: 240px;
  height: 150px;
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  border: 1px solid #334155;
}
.device-mockup__box::before {
  content: '智数盒子';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}
.device-mockup__led {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.device-mockup__port {
  position: absolute;
  bottom: -1px;
  width: 24px;
  height: 6px;
  background: #475569;
  border-radius: 0 0 2px 2px;
}
.device-mockup__port:nth-of-type(3) { left: 30%; }
.device-mockup__port:nth-of-type(4) { right: 30%; }
.device-mockup__shadow {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 20px;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.15), transparent 70%);
}
.device-mockup__label {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  color: var(--text-3);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .product-showcase { grid-template-columns: 1fr; gap: var(--sp-8); }
  .product-showcase__visual { order: -1; min-height: 280px; }
}

/* ============================================================
   产品介绍 · 核心业务链
   ============================================================ */
.flow-chain {
  background: var(--ink-800);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  color: #fff;
}
.flow-chain h4 { color: #fff; margin-bottom: var(--sp-5); font-size: 16px; }
.flow-chain__line {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  font-size: 14px;
}
.flow-chain__line + .flow-chain__line { margin-top: var(--sp-4); }
.flow-chain__step {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.flow-chain__arrow { color: var(--text-4); font-weight: 700; }

/* ============================================================
   产品介绍 · 钱物票对应
   ============================================================ */
.match-table th { background: var(--bg-soft); color: var(--text-3); }

/* ============================================================
   功能详情 · 模块卡
   ============================================================ */
.module-section { margin-bottom: var(--sp-12); }
.module-section__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--border-1);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.module-section__num {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.module-card-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
.module-card { padding: var(--sp-6); }
.module-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.module-card__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.module-card__title { font-size: 17px; font-weight: 700; color: var(--text-1); margin: 0; }
.module-card__list li {
  font-size: 13px;
  color: var(--text-3);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.7;
}
.module-card__list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--text-4);
  font-weight: 700;
}
@media (max-width: 768px) {
  .module-card-list { grid-template-columns: 1fr; }
}

/* 功能详情侧边目录 */
.features-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-8);
  align-items: start;
}
.features-toc {
  position: sticky;
  top: 90px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: var(--sp-5);
}
.features-toc h5 {
  font-size: 12px;
  color: var(--text-4);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.features-toc a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 2px;
}
.features-toc a:hover { background: #fff; color: var(--brand-primary); }
@media (max-width: 1024px) {
  .features-layout { grid-template-columns: 1fr; }
  .features-toc { position: static; }
}

/* 角色看板网格 */
.role-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.role-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: var(--sp-5);
  text-align: center;
  transition: all var(--t);
}
.role-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.role-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-3);
  font-size: 22px;
}
.role-card__title { font-size: 15px; font-weight: 700; color: var(--text-1); margin-bottom: var(--sp-2); }
.role-card__desc { font-size: 12px; color: var(--text-3); line-height: 1.6; }
@media (max-width: 900px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }

/* 报表表格 */
.report-table .rpt-name { font-weight: 700; color: var(--text-1); }

/* ============================================================
   价格页 · 计算器外框
   ============================================================ */
.calc-box {
  background: var(--ink-800);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}
.calc-box h4 { color: #fff; margin-bottom: var(--sp-5); text-align: center; }
.calc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
}
.calc-row:last-child { border-bottom: none; padding-top: var(--sp-4); margin-top: var(--sp-2); font-size: 20px; font-weight: 800; }
.calc-row .calc-label { color: rgba(255, 255, 255, 0.6); }
.calc-row .calc-val--green { color: #34D399; }
.calc-row .calc-val--red { color: #F87171; }

/* 价格对比柱状图（纯 CSS） */
.tco-chart {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}
.tco-chart__title { font-size: 18px; font-weight: 700; text-align: center; margin-bottom: var(--sp-6); }
.tco-bars { display: flex; flex-direction: column; gap: var(--sp-3); max-width: 600px; margin: 0 auto; }
.tco-bar { display: grid; grid-template-columns: 120px 1fr 80px; gap: var(--sp-3); align-items: center; }
.tco-bar__name { font-size: 14px; font-weight: 600; color: var(--text-2); }
.tco-bar__track { background: var(--bg-soft); border-radius: var(--radius-sm); height: 28px; overflow: hidden; }
.tco-bar__fill { height: 100%; border-radius: var(--radius-sm); display: flex; align-items: center; padding-left: 12px; color: #fff; font-size: 12px; font-weight: 700; transition: width 0.6s var(--ease); }
.tco-bar__fill--red { background: linear-gradient(90deg, #EF4444, #DC2626); }
.tco-bar__fill--orange { background: linear-gradient(90deg, #F59E0B, #D97706); }
.tco-bar__fill--green { background: linear-gradient(90deg, #10B981, #059669); }
.tco-bar__value { font-size: 14px; font-weight: 700; color: var(--text-1); text-align: right; }

/* ============================================================
   行业案例
   ============================================================ */
.industry-card {
  padding: var(--sp-6);
  border-left: 4px solid var(--brand-primary);
}
.industry-card h3 { color: var(--brand-primary-d); margin-bottom: var(--sp-3); }
.industry-card__pain { color: var(--text-2); margin-bottom: var(--sp-3); }
.industry-card__flow {
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  padding: var(--sp-3) var(--sp-4);
  font-size: 13px;
  color: var(--text-3);
}
.industry-card__flow strong { color: var(--brand-primary); }

/* ============================================================
   关于页 · 创始人心声
   ============================================================ */
.story { max-width: 680px; margin: 0 auto; padding: var(--sp-12) 0; }
.story p {
  margin-bottom: var(--sp-6);
  color: var(--text-2);
  font-size: 16px;
  line-height: 2.1;
}
.story .story-highlight {
  background: var(--grad-blue-soft);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-5) var(--sp-6);
  margin: var(--sp-5) 0;
}
.story .story-highlight p { color: var(--brand-primary-d); font-size: 18px; line-height: 1.9; margin: 0; }
.story .sign {
  text-align: right;
  margin-top: var(--sp-12);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-1);
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .story { padding: var(--sp-8) 0; }
  .story p { font-size: 15px; }
  .story .story-highlight p { font-size: 16px; }
}

/* ============================================================
   联系页
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}
.contact-methods { display: flex; flex-direction: column; gap: var(--sp-4); }
.contact-method {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
}
.contact-method__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  background: var(--grad-blue-soft);
  color: var(--brand-primary);
}
.contact-method__title { font-weight: 700; color: var(--text-1); margin-bottom: var(--sp-1); }
.contact-method__desc { font-size: 14px; color: var(--text-3); }
.contact-form { background: #fff; border: 1px solid var(--border-1); border-radius: var(--radius-lg); padding: var(--sp-6); }
.contact-form h3 { margin-bottom: var(--sp-5); }
.form-group { margin-bottom: var(--sp-4); }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2); margin-bottom: var(--sp-2); }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-sm);
  font-size: 15px;
  background: var(--bg-soft);
  transition: all var(--t-fast);
}
.form-control:focus { outline: none; border-color: var(--brand-primary); background: #fff; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); }
textarea.form-control { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   下载中心
   ============================================================ */
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
.resource-card {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.resource-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--grad-blue-soft);
  color: var(--brand-primary);
}
.resource-card__title { font-weight: 700; color: var(--text-1); }
.resource-card__desc { font-size: 13px; color: var(--text-3); flex: 1; }
.resource-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-2);
}
.resource-card__btn { font-size: 13px; font-weight: 600; color: var(--brand-primary); }
@media (max-width: 900px) { .resource-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .resource-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
/* ============================================================
   FAQ 页面（玻璃质感 + 搜索 + 图标导航）
   ============================================================ */
.faq-layout { display: grid; grid-template-columns: 220px 1fr; gap: var(--sp-8); align-items: start; }

/* 搜索框 */
.faq-search {
  max-width: 520px;
  margin: 0 auto var(--sp-10);
  position: relative;
}
.faq-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-pill);
  font-size: 15px;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.faq-search input:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.faq-search input::placeholder { color: var(--text-4); }
.faq-search__icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-4);
  pointer-events: none;
}

/* 侧边栏（玻璃质感 + 图标导航 + 计数）*/
.faq-cats {
  position: sticky;
  top: 90px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
}
.faq-cats h5 {
  font-size: 12px;
  color: var(--text-4);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
  padding: 0 var(--sp-3);
}
.faq-cats a {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-2);
  transition: all var(--t-fast);
  border-left: 3px solid transparent;
  margin-bottom: 2px;
}
.faq-cats a svg { width: 16px; height: 16px; color: var(--text-4); flex-shrink: 0; }
.faq-cats a:hover {
  background: var(--bg-tint-b);
  color: var(--brand-primary);
  border-left-color: var(--brand-primary);
}
.faq-cats a:hover svg { color: var(--brand-primary); }
.faq-cats a .faq-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-4);
  background: var(--bg-soft);
  padding: 1px 7px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.faq-cats a:hover .faq-count { background: rgba(37, 99, 235, 0.1); color: var(--brand-primary); }

/* 分类标题（左侧蓝色竖线装饰）*/
.faq-section { margin-bottom: var(--sp-10); }
.faq-section__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-bottom: var(--sp-3);
  border-bottom: 2px solid var(--border-1);
}
.faq-section__title::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--grad-primary);
  border-radius: 2px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cats { position: static; }
}
@media (max-width: 768px) {
  .faq-cats { display: none; }
}

/* ============================================================
   博客首页
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 280px; gap: var(--sp-8); }
.post-list { display: flex; flex-direction: column; gap: var(--sp-5); }
.post-card {
  display: flex;
  gap: var(--sp-5);
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--radius);
  padding: var(--sp-5);
  transition: all var(--t);
}
.post-card:hover { box-shadow: var(--shadow); border-color: var(--border-b); }
.post-card__thumb {
  width: 160px;
  height: 110px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  background: var(--grad-blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.post-card__body { flex: 1; }
.post-card__meta { display: flex; gap: var(--sp-3); font-size: 12px; color: var(--text-4); margin-bottom: var(--sp-2); }
.post-card__title { font-size: 17px; font-weight: 700; color: var(--text-1); margin-bottom: var(--sp-2); }
.post-card__title a:hover { color: var(--brand-primary); }
.post-card__excerpt { font-size: 14px; color: var(--text-3); line-height: 1.7; }
.blog-sidebar { display: flex; flex-direction: column; gap: var(--sp-5); }
.blog-widget { background: var(--bg-soft); border-radius: var(--radius); padding: var(--sp-5); }
.blog-widget h5 { font-size: 14px; font-weight: 700; margin-bottom: var(--sp-4); }
.blog-widget ul li { padding: 6px 0; font-size: 14px; }
.blog-widget ul li a:hover { color: var(--brand-primary); }
@media (max-width: 900px) { .blog-layout { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .post-card { flex-direction: column; } .post-card__thumb { width: 100%; height: 130px; } }

/* ============================================================
   价格页 · 大字 Hero（在 hero--sm 基础上放大标题）
   ============================================================ */
.hero--pricing .hero__title { font-size: clamp(28px, 4vw, 40px); letter-spacing: 1px; }
.hero--pricing .hero__slogan { max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============================================================
   价格页 · ROI 双列对比
   ============================================================ */
.roi-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.roi-compare-grid .calc-box { margin: 0; max-width: none; }
.roi-compare-grid .calc-box h4 { margin-bottom: var(--sp-4); }
@media (max-width: 768px) { .roi-compare-grid { grid-template-columns: 1fr; } }

/* ============================================================
   价格页 · 七大卖点（双列 callout）
   ============================================================ */
.selling-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.selling-points .callout { margin: 0; }
.selling-points .callout p:first-child { font-size: 17px; }
.selling-points .callout p:last-child { font-size: 13px; color: var(--text-3); margin-top: var(--sp-2); }
@media (max-width: 768px) { .selling-points { grid-template-columns: 1fr; } }

/* ============================================================
   价格页 · TCO 柱状图填充文字防溢出
   ============================================================ */
.tco-bar__fill { white-space: nowrap; overflow: hidden; }

/* ============================================================
   博客首页 · 补充样式
   ============================================================ */
.post-card__cat {
  color: var(--brand-primary);
  font-weight: 600;
}
.blog-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-widget__list li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-2);
}
.blog-widget__list li:last-child { border-bottom: none; }
.blog-widget__list a {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  display: block;
}
.blog-widget__list a:hover { color: var(--brand-primary); }
.blog-widget__count {
  display: inline-block;
  margin-left: 6px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--bg-tint-b);
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 700;
}
.blog-widget--subscribe p {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: var(--sp-3);
}
.blog-subscribe { display: flex; flex-direction: column; gap: var(--sp-2); }

/* ============================================================
   下载中心 · 演示账号 callout 增强
   ============================================================ */
.download-demo {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  padding: var(--sp-8);
}
.download-demo__body { flex: 1; }
.download-demo__body h4 { font-size: 22px; margin-bottom: var(--sp-3); }
.download-demo__body p { font-size: 15px; line-height: 1.8; }
.download-demo__list {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}
.download-demo__list li {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 600;
}
.download-demo__action {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .download-demo { flex-direction: column; align-items: stretch; }
  .download-demo__action { flex-direction: column; }
}

/* ============================================================
   联系页 · 补充样式
   ============================================================ */
.contact-method__content { flex: 1; }
.contact-method__qr {
  margin-top: var(--sp-4);
  width: 110px;
  height: 110px;
}
.pain-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.pain-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.pain-check:hover { background: var(--bg-tint-b); color: var(--brand-primary-d); }
.pain-check input { accent-color: var(--brand-primary); }
@media (max-width: 600px) { .pain-checks { grid-template-columns: 1fr; } }

.demo-option {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.demo-option .card__icon { margin: 0 auto var(--sp-4); }
.demo-option__time {
  font-size: 13px;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.demo-option__featured {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-blue);
}
.demo-option .btn { margin-top: auto; }

/* ============================================================
   行业案例页 · industry-card 增强
   ============================================================ */
.industry-card .industry-card__head {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-3);
}
.industry-card .industry-card__head .card__icon {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  font-size: 22px;
  flex-shrink: 0;
}
.industry-card .industry-card__head h3 { margin: 0; font-size: 20px; }
.industry-card__tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-primary);
  background: var(--bg-tint-b);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--sp-4);
}
.industry-card__pain {
  color: var(--text-2);
  line-height: 1.9;
  margin-bottom: var(--sp-4);
}
.industry-card__flow {
  font-size: 13px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .industry-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   行业案例页 · 客户画像表格
   ============================================================ */
.profile-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
.profile-tables .table { background: #fff; border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .profile-tables { grid-template-columns: 1fr; } }

/* ============================================================
   行业场景页 · 场景卡（统一三层结构）
   ============================================================ */
.case-card { display: flex; flex-direction: column; }
.case-card__tags {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-3);
}
.case-card .card__title { font-size: 17px; margin-bottom: var(--sp-4); }

.case-card__field {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 13px;
  line-height: 1.6;
}
.case-card__field:last-of-type { border-bottom: none; }
.case-card__field-label {
  color: var(--text-4);
  flex-shrink: 0;
  width: 56px;
  font-weight: 600;
}
.case-card__field-value { color: var(--text-2); }

.case-card__solution {
  margin-top: auto;
  padding: var(--sp-3) var(--sp-4);
  background: var(--bg-tint-b);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--brand-primary);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}
@media (max-width: 900px) { .case-grid { grid-template-columns: 1fr; } }

/* ============================================================
   关于页 · 公司信息
   ============================================================ */
.company-info {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0 0;
}
.company-info li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--sp-3);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-2);
  font-size: 14px;
}
.company-info li:last-child { border-bottom: none; }
.company-info__lbl {
  color: var(--text-4);
  font-size: 13px;
}
.company-info__val {
  color: var(--text-1);
  font-weight: 600;
}
@media (max-width: 480px) {
  .company-info li { grid-template-columns: 1fr; gap: 2px; }
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
}
.promise-item {
  padding: var(--sp-4);
  background: var(--bg-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--success);
}
.promise-item__title { font-size: 15px; color: var(--text-1); margin-bottom: 4px; }
.promise-item__desc { font-size: 13px; color: var(--text-3); line-height: 1.7; }

/* 品牌承诺温和版（深底浅化） */
.cta-band--soft { background: var(--ink-800); }
.cta-band--soft .cta-band__title { font-weight: 700; }

/* ============================================================
   产品介绍页 · 核心业务链步骤配色
   ============================================================ */
.flow-chain__step--blue   { background: #1D4ED8; }
.flow-chain__step--green  { background: #059669; }
.flow-chain__step--orange { background: #D97706; }
.flow-chain__step--purple { background: #7C3AED; }
.flow-chain__step--cyan   { background: #0891B2; }
.flow-chain__step--red    { background: #DC2626; }
.flow-chain__line--label {
  font-size: 12px;
  color: var(--text-on-dark-3);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: var(--sp-1);
}

/* ============================================================
   功能详情页 · 锚点滚动偏移（避免被吸顶头遮挡）
   ============================================================ */
.features-main [id],
.module-section[id],
.section[id] { scroll-margin-top: 90px; }
.features-main { min-width: 0; }
.features-main .section-head { text-align: left; margin-left: 0; }

/* ============================================================
   通用响应式 · 双列/三列网格在窄屏堆叠
   （base.css 仅折叠了 grid-4，这里补齐 grid-2 / grid-3）
   ============================================================ */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   下载中心 · 资源状态徽章
   ============================================================ */
.resource-card__btn--soon {
  color: var(--text-4);
  cursor: not-allowed;
  font-weight: 500;
}
.resource-card__status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}
.resource-card__status--ready { background: var(--bg-tint-g); color: var(--success); }
.resource-card__status--soon { background: var(--bg-soft); color: var(--text-4); }

/* ============================================================
   法律文档页 · 顶部锚点导航（胶囊按钮）
   ============================================================ */
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}
.legal-nav .btn--pill {
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}
.legal-nav .btn--pill .icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: -3px;
}

/* ============================================================
   法律文档页 · 条文正文样式
   ============================================================ */
.legal-doc { max-width: 760px; margin: 0 auto; }
.legal-doc h2 { font-size: 24px; font-weight: 800; margin: var(--sp-12) 0 var(--sp-6); padding-bottom: var(--sp-3); border-bottom: 2px solid var(--border-1); }
.legal-doc h3 { font-size: 16px; font-weight: 700; color: var(--text-1); margin: var(--sp-6) 0 var(--sp-3); }
.legal-doc p { font-size: 14px; color: var(--text-2); line-height: 1.9; margin-bottom: var(--sp-3); }
.legal-doc ol, .legal-doc ul { font-size: 14px; color: var(--text-2); line-height: 1.9; margin: var(--sp-3) 0 var(--sp-3) var(--sp-5); }
.legal-doc li { margin-bottom: var(--sp-2); }
.legal-doc strong { color: var(--text-1); }
.legal-doc .updated-date { font-size: 13px; color: var(--text-4); margin-bottom: var(--sp-4); }

/* 锚点滚动偏移（避免被吸顶头遮挡） */
.legal-doc[id], section[id] { scroll-margin-top: 90px; }

/* ============================================================
   首页 · feature-split 视觉 mock v2
   ============================================================ */

/* 经营看板 mini */
.dash-mini { background:#fff; padding:var(--sp-3); }
.dash-mini__stats { display:grid; grid-template-columns:1fr 1fr; gap:var(--sp-2); margin-bottom:var(--sp-3); }
.dash-mini__stat { background:var(--bg-soft); padding:10px var(--sp-3); border-radius:var(--radius-xs); border:1px solid var(--border-2); }
.dash-mini__stat-lbl { font-size:9px; color:var(--text-4); margin-bottom:2px; text-transform:uppercase; letter-spacing:0.5px; }
.dash-mini__stat-val { font-size:16px; font-weight:800; color:var(--brand-primary); }
.dash-mini__chart { display:flex; align-items:flex-end; gap:4px; height:64px; padding:var(--sp-2); background:var(--bg-soft); border-radius:var(--radius-xs); }
.dash-mini__bar { flex:1; background:linear-gradient(180deg,var(--brand-accent),var(--brand-primary)); border-radius:2px 2px 0 0; opacity:0.75; }
.dash-mini__labels { display:flex; gap:4px; margin-top:4px; }
.dash-mini__label { flex:1; text-align:center; font-size:8px; color:var(--text-4); }

/* 业务流程节点 */
.flow-nodes { display:flex; flex-direction:column; gap:var(--sp-2); }
.flow-node { display:flex; align-items:center; gap:var(--sp-3); padding:10px var(--sp-3); background:#fff; border:1px solid var(--border-1); border-radius:var(--radius-sm); transition:all var(--t-fast); }
.flow-node__icon { width:28px; height:28px; border-radius:var(--radius-xs); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.flow-node__text { font-size:13px; color:var(--text-2); font-weight:600; }
.flow-node__status { margin-left:auto; font-size:11px; font-weight:600; padding:2px 8px; border-radius:var(--radius-pill); }
.flow-node--done .flow-node__icon { background:var(--bg-tint-g); color:var(--success); }
.flow-node--done .flow-node__status { background:var(--bg-tint-g); color:var(--success); }
.flow-node--active .flow-node__icon { background:var(--bg-tint-b); color:var(--brand-primary); }
.flow-node--active .flow-node__status { background:var(--bg-tint-b); color:var(--brand-primary); }
.flow-node--active { border-color:var(--border-b); box-shadow:0 0 0 3px rgba(37,99,235,0.06); }
.flow-node--pending .flow-node__icon { background:var(--bg-soft); color:var(--text-4); }
.flow-node--pending .flow-node__status { background:var(--bg-soft); color:var(--text-4); }

/* 开箱步骤 */
.setup-steps { display:flex; flex-direction:column; gap:var(--sp-4); }
.setup-step { display:flex; gap:var(--sp-3); align-items:flex-start; }
.setup-step__num { width:32px; height:32px; border-radius:50%; background:linear-gradient(135deg,var(--brand-primary),var(--brand-primary-d)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:800; flex-shrink:0; box-shadow:0 2px 8px rgba(37,99,235,0.25); }
.setup-step__body { flex:1; }
.setup-step__title { font-size:14px; font-weight:700; color:var(--text-1); margin-bottom:2px; }
.setup-step__desc { font-size:12px; color:var(--text-3); }
.setup-step__time { font-size:11px; color:var(--brand-primary); font-weight:600; margin-top:3px; }
.setup-step:not(:last-child)::after { content:''; position:absolute; left:16px; top:36px; width:2px; height:calc(100% - 24px); background:var(--border-b); border-radius:1px; }
.setup-step { position:relative; }

/* ============================================================
   博客文章页排版 .article-content
   ============================================================ */
.article-content {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-2);
  word-break: break-word;
}
.article-content h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-1);
  margin: 2.2em 0 0.8em;
  padding-left: 12px;
  border-left: 4px solid var(--brand-primary);
  line-height: 1.4;
}
.article-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin: 1.8em 0 0.6em;
}
.article-content p { margin: 0 0 1.1em; }
.article-content h2 + p, .article-content h3 + p { margin-top: 0; }
.article-content strong { color: var(--text-1); font-weight: 700; }
.article-content ul, .article-content ol {
  margin: 0 0 1.2em;
  padding-left: 1.4em;
}
.article-content ul { list-style: none; padding-left: 0; }
.article-content ul li {
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 0.6em;
}
.article-content ul li::before {
  content: '';
  position: absolute;
  left: 0.3em;
  top: 0.75em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--brand-primary);
  opacity: 0.7;
}
.article-content ol li { margin-bottom: 0.6em; }
.article-content ol > li::marker {
  color: var(--brand-primary);
  font-weight: 700;
}
.article-content li > ul, .article-content li > ol { margin: 0.5em 0 0; }
.article-content a {
  color: var(--brand-primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed rgba(37, 99, 235, 0.4);
  transition: border-color 0.15s;
}
.article-content a:hover { border-bottom-color: var(--brand-primary); }
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 1.5em 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}
.article-content blockquote {
  margin: 1.5em 0;
  padding: 14px 20px;
  background: var(--bg-soft);
  border-left: 4px solid var(--brand-primary);
  border-radius: 0 10px 10px 0;
  color: var(--text-3);
}
.article-content blockquote p:last-child { margin-bottom: 0; }
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
  font-size: 14px;
}
.article-content th {
  background: var(--bg-soft);
  color: var(--text-2);
  font-weight: 700;
  text-align: left;
  padding: 10px 14px;
  border-bottom: 2px solid var(--border-1);
}
.article-content td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border-1);
  color: var(--text-2);
}
.article-content tr:hover td { background: rgba(37, 99, 235, 0.02); }
.article-content code {
  background: var(--bg-soft);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.88em;
  color: var(--brand-primary-d);
}
.article-content pre {
  background: var(--ink-900);
  color: #e2e8f0;
  padding: 18px 20px;
  border-radius: 10px;
  overflow-x: auto;
  margin: 1.5em 0;
}
.article-content pre code { background: none; color: inherit; padding: 0; }
.article-content hr {
  border: none;
  height: 1px;
  background: var(--border-1);
  margin: 2.5em auto;
  width: 60%;
}
@media (max-width: 600px) {
  .article-content { font-size: 15px; }
  .article-content h2 { font-size: 19px; }
  .article-content h3 { font-size: 16px; }
  .article-content table { font-size: 13px; }
  .article-content th, .article-content td { padding: 8px 10px; }
}
