:root {
  --bg-page: #F5F8FC;
  --bg-alt: #EEF4FB;
  --bg-card: #FFFFFF;
  --text-main: #142033;
  --text-sub: #5B6B7F;
  --line: rgba(20,40,80,.10);
  --brand: #2B7FFF;
  --brand-2: #00A8D8;
  --n950: #F5F8FC;
  --eb: #2B7FFF;
  --shadow-soft: 0 8px 28px rgba(20,40,80,.08);
  --body-font: "Space Grotesk", "Noto Sans SC", sans-serif;
  --heading-font: "Space Grotesk", "Noto Sans SC", sans-serif;
  /* 字号对齐来科信：body 16 / p 与导语 18 */
  --fs-body: 16px;
  --lh-body: 26px;
  --fs-p: 18px;
  --lh-p: 30px;
  --fs-lead: 18px;
  --lh-lead: 30px;
  --fs-h1: 70px;
  --fs-h1-hero: 72px;
  --fs-h2: 60px;
  --fs-h3: 32px;
  --fs-h4: 22px;
  --fs-h5: 18px;
  --fs-h6: 22px;
  --fs-tag: 16px;
  --fs-nav: 18px;
  --fs-nav-sub: 16px;
  --fs-btn: 18px;
}
body {
  background: var(--bg-page);
  color: var(--text-main);
  font-family: var(--body-font);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  overflow-x: hidden;
}

.pw {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 900px) { .pw { padding: 0 20px; } }

.max-w-7xl { max-width: 1700px !important; }

/* 首页 / 软件定制 / AI 应用：导航与首屏左右边距统一 */
#main-nav > .max-w-7xl,
.hero-section > .max-w-7xl,
.sw-hero > .pw,
.ai-hero > .pw {
  max-width: 1700px !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}
@media (max-width: 900px) {
  #main-nav > .max-w-7xl,
  .hero-section > .max-w-7xl,
  .sw-hero > .pw,
  .ai-hero > .pw {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ── 导航 ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245,248,252,.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all .45s;
}
#main-nav.scrolled {
  background: rgba(245,248,252,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(20,40,80,.06);
  box-shadow: 0 8px 24px rgba(20,40,80,.04);
}
#nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; transition: padding .45s;
}
#main-nav.scrolled #nav-inner { padding: 10px 0; }
.nav-brand{
  display:flex;align-items:center;gap:12px;text-decoration:none;min-width:0;flex-shrink:0;
}
#nav-logo-img{height:36px;width:auto;display:block;transition:height .45s;}
#main-nav.scrolled #nav-logo-img{height:30px;}
.nav-brand-line{
  width:1px;height:28px;flex-shrink:0;background:rgba(20,40,80,.22);transition:height .45s;
}
#main-nav.scrolled .nav-brand-line{height:22px;}
.nav-brand-meta{
  display:flex;flex-direction:column;justify-content:center;gap:1px;line-height:1.15;white-space:nowrap;
}
.nav-brand-meta em{
  font-style:normal;font-family:"Space Grotesk",sans-serif;font-size:11px;font-weight:700;
  letter-spacing:.08em;color:#5B6B7F;
}
.nav-brand-meta b{
  font-size:13px;font-weight:700;color:#142033;letter-spacing:.04em;
}
#main-nav.scrolled .nav-brand-meta em{font-size:10px;}
#main-nav.scrolled .nav-brand-meta b{font-size:12px;}
@media (max-width:420px){
  .nav-brand{gap:8px;}
  .nav-brand-meta b{font-size:12px;}
}
.nav-link {
  position: relative; color: var(--text-main); font-size: var(--fs-nav) !important; font-weight: 500;
  text-decoration: none; white-space: nowrap; transition: color .2s, font-size .45s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 3px;
  background: #2B7FFF; transition: width .3s; border-radius: 2px;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: #2B7FFF; font-weight: 700; }
#scroll-progress {
  position: absolute; left: 0; bottom: 0; height: 2px; width: 0; z-index: 110;
  pointer-events: none;
  /* 与导航 Tab 品牌蓝拉开：用浅青进度条，避免两根蓝线叠在一起 */
  background: linear-gradient(90deg, #7DD3FC 0%, #38BDF8 50%, #0EA5E9 100%);
  box-shadow: none;
  transition: width .08s linear;
  opacity: .85;
}
#main-nav.scrolled .nav-link { font-size: var(--fs-nav) !important; color: var(--text-main) !important; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: none; color: #fff; padding: 10px 28px; border-radius: 6px;
  font-weight: 700; font-size: var(--fs-btn); cursor: pointer; transition: all .3s;
}
.btn-primary:hover {
  box-shadow: 0 10px 24px rgba(43,127,255,.28);
  transform: translateY(-2px);
}
#mobile-menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  z-index: 120;
}
#mobile-menu.is-open { display: block; }
#mobile-menu a {
  display: block; padding: 10px 24px; color: var(--text-main);
  font-size: 18px; text-decoration: none;
}
#mobile-menu a:hover { color: var(--brand); background: rgba(43,127,255,.06); }
/* 手机端导航：不依赖 Tailwind / lucide，保证汉堡菜单可见 */
#mobile-toggle{
  display:inline-flex!important;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  width:44px;height:44px;margin:0;padding:0;
  border:none;background:transparent;cursor:pointer;
  color:#142033!important;
  -webkit-tap-highlight-color:transparent;
}
#mobile-toggle svg,
#mobile-toggle i{
  width:24px;height:24px;display:block;pointer-events:none;
}
@media (min-width:1024px){
  #mobile-toggle{display:none!important;}
}
@media (max-width:1023px){
  #nav-inner{gap:8px;}
  .nav-brand{min-width:0;max-width:calc(100% - 52px);}
  #nav-logo-img{max-width:120px;height:auto;max-height:36px;}
}

/* ── 右侧悬浮条 ── */
.fsb {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column;
}
.fbb {
  background: rgba(43,127,255,.9); color: #fff;
  padding: 11px 9px; font-size: 12px; writing-mode: vertical-rl; cursor: pointer;
}

/* ── 全站首屏：占满一屏，内容随高度疏朗铺开 ── */
.ph,
.page-hero,
.hero-section,
.sw-hero,
.sd-hero,
.mp-hero,
.app-hero,
.cs-hero,
.ai-hero,
.ab-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  box-sizing: border-box;
  padding-top: 88px;
  padding-bottom: clamp(32px, 5vh, 64px);
  position: relative;
  overflow: hidden;
}
/* 列表/资讯等：紧凑首屏，不占满一屏 */
.ph.ph-compact,
.page-hero.ph-compact {
  min-height: 0 !important;
  height: auto !important;
  justify-content: flex-start !important;
  padding-top: 108px !important;
  padding-bottom: 44px !important;
}
.ph.ph-compact > .pw,
.ph.ph-compact .ph-inner,
.ph.ph-compact .ph-content,
.page-hero.ph-compact > .page-wrap {
  flex: 0 0 auto !important;
  min-height: 0 !important;
  height: auto !important;
  justify-content: flex-start !important;
  gap: 14px !important;
}
/* 详情页顶栏：紧凑高度，不占满一屏 */
.detail-hero {
  min-height: 0;
  display: block;
  box-sizing: border-box;
  padding: 100px 0 36px;
  position: relative;
  overflow: hidden;
}
.ph > .pw,
.sw-hero > .pw,
.sd-hero > .pw,
.mp-hero > .pw,
.app-hero > .pw,
.cs-hero > .pw,
.ai-hero > .pw,
.ab-hero > .pw,
.page-hero > .max-w-7xl,
.page-hero > .page-wrap,
.hero-section > .max-w-7xl {
  width: 100%;
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

/* 双栏首屏：拉高可用高度、拉开左右与模块间距 */
.sw-hero-inner,
.sd-hero-inner,
.mp-hero-inner,
.app-hero-inner,
.cs-hero-inner,
.ai-hero-inner,
.ab-hero-inner {
  flex: 1 1 auto;
  width: 100%;
  min-height: calc(100vh - 140px);
  min-height: calc(100svh - 140px);
  gap: clamp(40px, 5.5vw, 88px) !important;
  align-items: center !important;
  align-content: center;
}

/* 左栏：标题/说明/标签/按钮/数据条按视口疏开 */
.sw-hero-inner > div:first-child,
.sd-hero-inner > div:first-child,
.mp-hero-inner > div:first-child,
.app-hero-inner > div:first-child,
.cs-hero-inner > div:first-child,
.ai-hero-inner > div:first-child,
.ab-hero-inner > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(14px, 2.2vh, 28px);
  padding: clamp(8px, 2vh, 28px) 0;
}
.sw-hero-inner > div:first-child > h1,
.sd-hero-inner > div:first-child > h1,
.mp-hero-inner > div:first-child > h1,
.app-hero-inner > div:first-child > h1,
.cs-hero-inner > div:first-child > h1,
.ai-hero-inner > div:first-child > h1,
.ab-hero-inner > div:first-child > h1,
.ph-content h1,
.page-hero h1,
.detail-hero h1 {
  margin: 0 !important;
  font-size: var(--fs-h1-hero) !important;
  line-height: 1.2 !important;
}
.sw-hero-inner > div:first-child > p,
.sd-hero-inner > div:first-child > p,
.mp-hero-inner > div:first-child > p,
.app-hero-inner > div:first-child > p,
.cs-hero-inner > div:first-child > p,
.ai-hero-inner > div:first-child > p,
.ab-hero-inner > div:first-child > p,
.ph-content p,
.page-hero p,
.detail-hero p {
  margin: 0 !important;
  font-size: var(--fs-lead) !important;
  line-height: var(--lh-lead) !important;
  max-width: 42rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px !important;
  margin-top: clamp(12px, 2.5vh, 28px) !important;
}
.hero-stat {
  padding: 18px 16px !important;
}

/* 右栏视觉：首屏占满高度，但组件自身不拉伸，避免仪表盘/流程图变形 */
.sw-hero-inner > :last-child,
.sd-hero-inner > :last-child,
.mp-hero-inner > :last-child,
.app-hero-inner > :last-child,
.cs-hero-inner > :last-child,
.ai-hero-inner > :last-child,
.ab-hero-inner > :last-child {
  min-height: 0;
  height: auto;
}
.sw-dash,
.hero-visual,
.hero-board,
.mp-stage,
.app-stage,
.ai-hero .hero-visual {
  flex: 0 1 auto;
  width: 100%;
  min-height: auto !important;
  height: auto !important;
}

.sw-hero .sw-dash,
.ai-hero .hero-visual,
.sd-hero .hero-board {
  max-width: min(100%, 680px);
  margin-left: auto;
  margin-right: auto;
}

/* 案例 / 关于我们：右侧是背景图卡片，必须保留高度，否则会被压没 */
.cs-hero .hero-visual,
.ab-hero .hero-visual {
  flex: 0 1 auto;
  width: 100%;
  max-width: min(100%, 720px);
  margin-left: auto;
  margin-right: auto;
  min-height: clamp(420px, 56vh, 620px) !important;
  height: auto !important;
}

.sw-hero .sw-dash {
  min-height: auto !important;
}

.ai-hero .hero-visual {
  max-width: min(100%, 760px) !important;
}

.sd-hero .hero-board {
  max-width: min(100%, 520px) !important;
  min-height: 0 !important;
  height: auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 16px !important;
}

.sd-hero .hb-head {
  margin-bottom: 0 !important;
  flex-shrink: 0;
}

.sd-hero .hb-diag-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 0;
}

.sd-hero .diag-code-panel {
  flex: 0 1 auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.sd-hero .diag-code-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  font-size: 14px !important;
  line-height: 1.75 !important;
}

.sd-hero .diag-results {
  flex: 0 0 auto;
  gap: 8px;
}

.sd-hero .diag-result-card {
  padding: 12px 14px;
}

.sd-hero .diag-result-card .ico {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  max-width: 34px !important;
  flex: 0 0 34px !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,127,255,.12);
  color: #7ee7ff;
}
.sd-hero .diag-result-card .ico svg { width: 16px; height: 16px; }
.sd-hero .diag-result-card.err .ico { background: rgba(239,68,68,.15); color: #f87171; }
.sd-hero .diag-result-card.warn .ico { background: rgba(245,158,11,.15); color: #fbbf24; }
.sd-hero .diag-result-card.ok .ico { background: rgba(16,185,129,.15); color: #6ee7b7; }
.sd-hero .diag-result-card > div:not(.ico) { flex: 1; min-width: 0; }
.sd-hero .diag-result-card b { display: block; font-size: 14px; color: #e2e8f0; margin-bottom: 2px; }
.sd-hero .diag-result-card span { font-size: 12px; color: #94a3b8; }
.sd-hero .diag-result-card em {
  font-style: normal;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.sd-hero .diag-result-card.err em { background: rgba(239,68,68,.2); color: #fca5a5; }
.sd-hero .diag-result-card.warn em { background: rgba(245,158,11,.2); color: #fde68a; }
.sd-hero .diag-result-card.ok em { background: rgba(16,185,129,.2); color: #a7f3d0; }

.sd-hero .hb-foot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sd-hero .hb-foot div {
  padding: 12px 10px;
  border-radius: 12px;
  text-align: center;
  background: rgba(4,12,24,.5);
  border: 1px solid rgba(43,127,255,.16);
}
.sd-hero .hb-foot b {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  color: #7ee7ff;
  margin-bottom: 2px;
}
.sd-hero .hb-foot span {
  font-size: 12px;
  color: #94a3b8;
}

/* 单栏 Banner（知识库/方案等）：内容区随高度疏开 */
.ph-inner,
.ph-content,
.detail-hero .pw > *,
.page-hero > .page-wrap > div:last-child {
  width: 100%;
}
.ph-inner,
.ph-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 3vh, 36px);
  min-height: calc(100vh - 160px);
  min-height: calc(100svh - 160px);
  max-width: 820px;
}
.ph-content .srch,
.ph-content .bc {
  margin-top: clamp(8px, 1.5vh, 20px);
}

/* 代理页等单栏首屏：内部模块随高度拉开 */
.page-hero > .page-wrap {
  gap: clamp(16px, 2.5vh, 28px);
}
.page-hero > .page-wrap > div[style*="max-width"] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(18px, 2.8vh, 36px);
  min-height: calc(100svh - 180px);
  padding: clamp(12px, 2vh, 28px) 0;
}
.page-hero > .page-wrap > div[style*="max-width"] > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.detail-hero .pw {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  min-height: 0;
}
.detail-hero h1 {
  font-size: var(--fs-h1-hero) !important;
}

@media (max-width: 1024px) {
  .sw-hero-inner,
  .sd-hero-inner,
  .mp-hero-inner,
  .app-hero-inner,
  .cs-hero-inner,
  .ai-hero-inner,
  .ab-hero-inner {
    min-height: 0;
    gap: 36px !important;
  }
  .sw-hero-inner > :last-child,
  .sd-hero-inner > :last-child,
  .mp-hero-inner > :last-child,
  .app-hero-inner > :last-child,
  .cs-hero-inner > :last-child,
  .ai-hero-inner > :last-child,
  .ab-hero-inner > :last-child,
  .sw-dash,
  .hero-visual,
  .hero-board,
  .mp-stage,
  .app-stage {
    min-height: 320px !important;
  }
  .hero-stats { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── 子页 Banner：文字左对齐，背景图右侧满屏 ── */
.ph {
  background: linear-gradient(135deg, #F5F8FC, #F5F8FC 55%, #EEF4FB);
}
.ph-bg {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(58vw, 900px); z-index: 1; pointer-events: none;
}
.ph-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 72% center;
  opacity: .5;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 68%);
  mask-image: linear-gradient(to right, transparent 0%, #000 68%);
}
.ph-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, #F5F8FC, rgba(11,26,46,.3) 55%, transparent);
}
.ph > .pw { position: relative; z-index: 2; }
.ph-inner {
  max-width: 760px;
  text-align: left;
}

/* ── 首屏科技结构板（无图、无假看板） ── */
.hero-board {
  position: relative;
  border-radius: 16px;
  padding: 26px 24px 24px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(0,212,255,.08), transparent 42%),
    radial-gradient(ellipse at 0% 100%, rgba(43,127,255,.06), transparent 40%),
    linear-gradient(165deg, rgba(14,30,56,.85), rgba(6,14,28,.92));
  border: 1px solid rgba(0,212,255,.15);
  box-shadow:
    0 12px 24px rgba(2,10,24,.25),
    inset 0 1px 0 rgba(255,255,255,.02);
}
.hero-board::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(43,127,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,127,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.9), transparent 92%);
}
.hero-board::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, #00D4FF 30%, #2B7FFF 70%, transparent);
  background-size: 200% 100%;
  animation: hbScan 3.6s linear infinite;
}
@keyframes hbScan {
  0% { background-position: 100% 0; opacity: .55; }
  50% { opacity: 1; }
  100% { background-position: -100% 0; opacity: .55; }
}
.hero-board > * { position: relative; z-index: 1; }
.hb-frame {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(0,212,255,.55);
  z-index: 2;
  pointer-events: none;
}
.hb-frame.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.hb-frame.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.hb-frame.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.hb-frame.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.hb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.hero-board .hb-title {
  font-size: 15px;
  color: #7ee7ff;
  letter-spacing: 2px;
  font-weight: 600;
  font-family: "Space Grotesk", "Noto Sans SC", sans-serif;
  text-transform: uppercase;
}
.hb-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #67D9FF;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,212,255,.3);
  background: rgba(0,212,255,.08);
}
.hb-live i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00D4FF;
  box-shadow: 0 0 8px rgba(0,212,255,.8);
  animation: hbPulse 1.5s ease-in-out infinite;
}
@keyframes hbPulse {
  0%, 100% { opacity: .4; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}
.hb-list { display: flex; flex-direction: column; gap: 10px; }
.hb-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 14px;
  border-radius: 12px;
  background: rgba(4,14,28,.4);
  border: 1px solid rgba(43,127,255,.1);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.hb-item:hover {
  border-color: rgba(0,212,255,.25);
  transform: translateX(3px);
  box-shadow: 0 0 15px rgba(43,127,255,.08);
}
.hb-item .n {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px; font-weight: 700;
  color: #67D9FF;
  background: linear-gradient(145deg, rgba(43,127,255,.22), rgba(0,212,255,.08));
  border: 1px solid rgba(0,212,255,.35);
  box-shadow: inset 0 0 12px rgba(0,212,255,.08);
}
.hb-item b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.hb-item span {
  font-size: 14px;
  line-height: 1.55;
  color: #94a3b8;
}
.hb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hb-card {
  position: relative;
  padding: 16px 14px;
  border-radius: 12px;
  background: rgba(4,14,28,.4);
  border: 1px solid rgba(43,127,255,.1);
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.hb-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00D4FF, #2B7FFF);
  opacity: .5;
}
.hb-card:hover {
  border-color: rgba(0,212,255,.25);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(2,10,24,.2), 0 0 10px rgba(43,127,255,.05);
}
.hb-card b {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.hb-card span {
  font-size: 14px;
  line-height: 1.55;
  color: #94a3b8;
}
@media (max-width: 640px) {
  .hb-grid { grid-template-columns: 1fr; }
}

/* ── 代码诊断与重构视觉 (Code Diagnosis) ── */
.hb-diag-body {
  padding: 16px 0 0;
}
.diag-code-panel {
  background: rgba(4, 10, 20, 0.6);
  border: 1px solid rgba(43, 127, 255, 0.15);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.diag-code-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
}
.diag-code-header span {
  font-size: 12px;
  color: #7BB8FF;
  letter-spacing: 1px;
}
.diag-status {
  font-size: 11px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  animation: pulseText 1.5s infinite;
}
.diag-code-content {
  font-family: 'Fira Code', 'Courier New', monospace;
  font-size: 13px;
  line-height: 1.6;
  color: #abb2bf;
  position: relative;
}
.diag-code-content .line {
  display: flex;
  align-items: center;
  padding: 0 4px;
  border-radius: 4px;
}
.diag-code-content .line i {
  width: 16px;
  color: #475569;
  font-size: 11px;
  font-style: normal;
  text-align: right;
  margin-right: 12px;
  user-select: none;
}
.diag-code-content .line.highlight-err {
  background: rgba(239, 68, 68, 0.15);
  border-left: 2px solid #ef4444;
}
.diag-code-content .line.highlight-warn {
  background: rgba(245, 158, 11, 0.15);
  border-left: 2px solid #f59e0b;
}
.c-keyword { color: #c678dd; }
.c-func { color: #61afef; }
.c-var { color: #e06c75; }
.c-comment { color: #5c6370; font-style: italic; }
.scan-line {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8, 0 0 20px #38bdf8;
  animation: codeScan 3s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes codeScan {
  0% { top: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

.diag-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.diag-result-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(6, 16, 32, 0.4);
  border: 1px solid rgba(43, 127, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  transition: .3s;
}
.diag-result-card:hover {
  background: rgba(11, 26, 46, 0.7);
  border-color: rgba(43, 127, 255, 0.25);
  transform: translateX(4px);
}
.diag-result-card.err { border-color: rgba(239, 68, 68, 0.3); }
.diag-result-card.warn { border-color: rgba(245, 158, 11, 0.3); }
.diag-result-card.ai { border-color: rgba(167, 139, 250, 0.3); }

.dr-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dr-icon svg { width: 16px; height: 16px; }
.diag-result-card.err .dr-icon { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.diag-result-card.warn .dr-icon { background: rgba(245, 158, 11, 0.15); color: #fbbf24; }
.diag-result-card.ai .dr-icon { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }

.dr-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dr-info b {
  font-size: 14px;
  color: #e2e8f0;
  font-weight: 600;
}
.dr-info span {
  font-size: 12px;
  color: #94a3b8;
}

.dr-action {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.diag-result-card.err .dr-action { background: rgba(239, 68, 68, 0.2); color: #fca5a5; }
.diag-result-card.warn .dr-action { background: rgba(245, 158, 11, 0.2); color: #fde68a; }
.diag-result-card.ai .dr-action { background: rgba(139, 92, 246, 0.2); color: #ddd6fe; }

/* ── 全站 CTA（与首页一致：蓝主按钮 + 橙次按钮） ── */
.btn-gold {
  background: linear-gradient(135deg, #F59E0B, #D97706);
  border: none;
  color: #fff !important;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all .3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  line-height: 1.2;
  box-sizing: border-box;
}
.btn-gold:hover {
  box-shadow: 0 0 20px rgba(245,158,11,.5);
  transform: translateY(-2px);
  color: #fff !important;
}
/* ── 底部：CTA + 页脚共用一张 cat_bg ── */
.site-end {
  position: relative;
  isolation: isolate;
  background-color: #071428;
  background-image:
    linear-gradient(180deg, rgba(6,16,42,.26) 0%, rgba(5,12,32,.40) 55%, rgba(5,12,32,.52) 100%),
    url('../images/cat_bg.png?v=2');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.site-end .cta-ban,
.site-end .cta-banner,
.site-end .ctab-ban,
.site-end .site-footer,
.site-end footer.py-12,
.site-end #site-footer,
.site-end #site-footer .site-footer,
.site-end #site-footer > footer {
  background: transparent !important;
  background-image: none !important;
}
.site-end .cta-ban::before,
.site-end .cta-banner::before,
.site-end .ctab-ban::before,
.site-end .site-footer::before {
  display: none !important;
}

/* ── CTA：通栏铺满一行，紧贴页脚 ── */
.cta-ban,
.cta-banner,
.ctab-ban {
  background: transparent !important;
  border: none !important;
  padding: 64px 20px 52px !important;
  margin: 0 !important;
  text-align: center;
  position: relative;
  z-index: auto;
  overflow: hidden !important;
  isolation: auto;
  width: 100% !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
#site-footer {
  display: block;
  position: relative;
  z-index: 1;
  background: transparent;
  overflow: visible !important;
}
.cta-ban::before,
.cta-banner::before,
.ctab-ban::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 18% 72%, rgba(103,232,249,.55) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 42% 28%, rgba(255,255,255,.45) 0 1px, transparent 2px),
    radial-gradient(circle at 78% 58%, rgba(147,197,253,.5) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 62% 82%, rgba(103,232,249,.4) 0 1px, transparent 2px),
    linear-gradient(rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 36px 36px, 36px 36px;
  mask-image: radial-gradient(ellipse 82% 78% at 50% 45%, #000 12%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 82% 78% at 50% 45%, #000 12%, transparent 80%);
  opacity: .18;
}
.cta-float,
.cta-ban .pw,
.cta-ban .cta-inner,
.cta-banner .pw,
.cta-banner > .max-w-4xl,
.ctab-ban .pw {
  position: relative;
  z-index: 1;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  max-width: min(1560px, 98vw) !important;
  width: 100%;
  margin: 0 auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  overflow: visible;
  text-align: center !important;
  background: transparent !important;
  box-shadow: none !important;
}
.cta-float::before,
.cta-ban .pw::before,
.cta-ban .cta-inner::before,
.cta-banner .pw::before,
.cta-banner > .max-w-4xl::before,
.ctab-ban .pw::before,
.cta-float::after,
.cta-ban .pw::after,
.cta-ban .cta-inner::after,
.cta-banner .pw::after,
.cta-banner > .max-w-4xl::after,
.ctab-ban .pw::after {
  display: none !important;
  content: none !important;
}

.cta-ban h2,
.cta-banner h2,
.ctab-ban h2,
.cta-float h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 3.1vw, 48px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 20px !important;
  line-height: 1.28;
  text-shadow: 0 2px 16px rgba(0,0,0,.15);
  white-space: nowrap !important;
  max-width: 100%;
}
.cta-ban .cta-sub,
.cta-banner .cta-sub,
.ctab-ban .cta-sub,
.cta-float .cta-sub {
  position: relative;
  z-index: 1;
  display: block !important;
  color: rgba(255,255,255,.90) !important;
  font-size: var(--fs-lead) !important;
  line-height: var(--lh-lead) !important;
  margin: 0 auto 40px !important;
  max-width: 880px;
}
.cta-actions,
.cta-float-row,
.cta-banner .flex.flex-wrap.gap-4 {
  position: relative;
  z-index: 1;
  display: flex !important;
  gap: 24px 44px !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  width: 100% !important;
  margin: 0 0 0 !important;
}
.cta-float-hotline,
.cta-float-contact {
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
  letter-spacing: .02em;
  color: rgba(255,255,255,.92) !important;
  white-space: normal !important;
  overflow: visible !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
/* 热线独占一行，勿与按钮并排 */
.cta-float-row .cta-float-phone {
  display: none !important;
}
.cta-float-hotline a,
.cta-float-hotline .cta-hotline-copy,
.cta-float-contact .cta-phone {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  color: rgba(255,255,255,.95) !important;
  font: inherit !important;
  text-decoration: none !important;
  cursor: pointer;
  white-space: nowrap !important;
}
.cta-float-hotline .cta-hotline-copy {
  margin-left: 18px !important;
}
.cta-float-hotline a:hover,
.cta-float-hotline .cta-hotline-copy:hover {
  color: #7DD3FC !important;
}
.cta-ban .btn-primary,
.cta-banner .btn-primary,
.ctab-ban .btn-primary,
.cta-float-btn {
  padding: 18px 40px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  border: none !important;
  color: #0B3A7A !important;
  background: #FFFFFF !important;
  box-shadow: 0 10px 28px rgba(0,40,90,.28) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.cta-ban .btn-primary:hover,
.cta-banner .btn-primary:hover,
.ctab-ban .btn-primary:hover,
.cta-float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,40,90,.36) !important;
  background: #F0F7FF !important;
  color: #0B3A7A !important;
}
.cta-ban .btn-gold,
.cta-banner .btn-gold,
.ctab-ban .btn-gold,
.cta-float-btn-ghost {
  display: inline-flex !important;
  padding: 18px 40px !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  color: #FFFFFF !important;
  background: rgba(0,200,255,.14) !important;
  border: 1.5px solid rgba(125,211,252,.75) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  align-items: center !important;
}
.cta-float-btn-ghost:hover {
  background: rgba(0,200,255,.24) !important;
  border-color: #7DD3FC !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
}
.cta-float-contact {
  /* 兼容旧类名：热线单独成行 */
  position: relative;
  z-index: 1;
  display: block !important;
  width: 100% !important;
  margin: 28px 0 0 !important;
  text-align: center !important;
}
/* 旧版直接挂在蓝卡下的手机号，也强制单独成行 */
.cta-float > .cta-phone {
  display: block !important;
  width: 100% !important;
  margin: 22px 0 0 !important;
  text-align: center !important;
}
.cta-ban .cta-phone,
.cta-banner .cta-phone,
.ctab-ban .cta-phone,
.cta-float .cta-phone {
  position: relative;
  z-index: 1;
  display: inline-block !important;
  width: auto;
  margin: 0 !important;
  padding: 0;
  font-size: 17px !important;
  font-weight: 600 !important;
  color: rgba(255,255,255,.95) !important;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-decoration: none !important;
}
a.cta-phone.cta-phone-link {
  cursor: pointer;
}
.cta-phone-label {
  display: inline-block;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.88);
}
.cta-float .cta-phone:hover {
  color: #fff !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.cta-float .cta-phone:hover .cta-phone-label {
  color: rgba(255,255,255,.95);
  text-decoration: none;
}
.cta-phone.is-copied {
  color: #6EE7B7 !important;
}
.cta-float-phone {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  color: #fff !important;
  text-decoration: none !important;
  margin-left: 0 !important;
  white-space: nowrap;
}
.cta-float-phone-ico {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  flex-shrink: 0;
}
.cta-float-phone-ico i,
.cta-float-phone-ico svg { width: 24px; height: 24px; color: #fff; }
.cta-float-phone-txt {
  display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left;
}
.cta-float-phone-txt small {
  font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.2;
}
.cta-float-phone-txt strong {
  font-size: 22px; font-weight: 800; color: #fff; letter-spacing: .02em; line-height: 1.2;
}
/* 页脚二维码 */
.footer-qr-row{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:16px!important;
  align-items:flex-start!important;
}
.footer-qr{
  width:140px!important;
  height:140px!important;
  border-radius:12px!important;
  background:#FFFFFF!important;
  overflow:hidden!important;
  margin:0 auto 10px!important;
  cursor:zoom-in!important;
  transition:transform .2s ease,box-shadow .2s ease!important;
}
.footer-qr:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 24px rgba(0,0,0,.28)!important;
}
.footer-qr img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  display:block!important;
  pointer-events:none;
}
.footer-qr-label{
  display:block!important;
  font-size:14px!important;
  line-height:1.35!important;
  color:rgba(255,255,255,.92)!important;
  text-align:center!important;
}
/* 二维码点击放大层 */
.qr-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(6,14,28,.72);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  cursor:zoom-out;
}
.qr-lightbox.is-open{display:flex;}
.qr-lightbox-panel{
  position:relative;
  max-width:min(420px,92vw);
  width:100%;
  padding:18px 18px 14px;
  border-radius:18px;
  background:#FFFFFF;
  box-shadow:0 24px 60px rgba(0,0,0,.35);
  cursor:default;
  text-align:center;
}
.qr-lightbox-panel img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  background:#fff;
}
.qr-lightbox-caption{
  margin-top:12px;
  font-size:15px;
  font-weight:600;
  color:#142033;
}
.qr-lightbox-close{
  position:absolute;
  top:10px;right:12px;
  width:32px;height:32px;
  border:none;
  border-radius:50%;
  background:rgba(20,40,80,.08);
  color:#142033;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}
.qr-lightbox-close:hover{background:rgba(20,40,80,.14);}
.floating-tip.floating-tip-qr img{cursor:zoom-in!important;}
.site-footer,
footer.py-12,
body > footer,
#site-footer .site-footer,
#site-footer > footer {
  position: relative;
  z-index: 1;
  padding: 72px 0 64px !important;
  margin-top: 0 !important;
  overflow: visible !important;
}
/* 页脚友情链接 + 版权行：全站左对齐、可换行 */
.site-footer .pt-6,
footer .pt-6,
#site-footer .pt-6 {
  align-items: flex-start !important;
  text-align: left !important;
}
.site-footer .footer-links,
footer .footer-links,
#site-footer .footer-links,
.site-footer .pt-6 > div:last-child,
footer .pt-6 > div:last-child,
#site-footer .pt-6 > div:last-child {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 8px 12px !important;
  max-width: 100% !important;
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  line-height: 1.7 !important;
  text-align: left !important;
  white-space: normal !important;
}
.site-footer .footer-links span,
footer .footer-links span,
#site-footer .footer-links span,
.site-footer .pt-6 > div:last-child span,
footer .pt-6 > div:last-child span,
#site-footer .pt-6 > div:last-child span {
  white-space: normal !important;
  overflow: visible !important;
  line-height: 1.7 !important;
  height: auto !important;
  max-height: none !important;
  max-width: 100% !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}
.site-footer .pt-6,
footer .pt-6,
#site-footer .pt-6 {
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: hidden !important;
}
.site-footer .footer-copy,
footer .footer-copy,
#site-footer .footer-copy,
.site-footer .pt-6 > div:first-child,
footer .pt-6 > div:first-child,
#site-footer .pt-6 > div:first-child {
  white-space: normal !important;
  overflow: visible !important;
  max-width: 100% !important;
  word-break: break-word !important;
}
@media (min-width: 768px) {
  .site-footer .pt-6,
  footer .pt-6,
  #site-footer .pt-6 {
    align-items: center !important;
  }
  .site-footer .footer-links,
  footer .footer-links,
  #site-footer .footer-links {
    width: auto !important;
    justify-content: flex-end !important;
    text-align: right !important;
  }
}
/* 移动端：加大页脚底边距，避免友情链接被底部咨询栏挡住 */
@media (max-width: 1023px) {
  .site-footer,
  footer.py-12,
  body > footer,
  #site-footer .site-footer,
  #site-footer > footer {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px)) !important;
  }
}
/* 移动端底部咨询栏：主次按钮统一白字 */
.mobile-consult-bar button{
  background: linear-gradient(135deg,#2B7FFF,#00C8FF) !important;
  color: #FFFFFF !important;
}
.mobile-consult-bar a{
  background: rgba(43,127,255,.25) !important;
  color: rgba(255,255,255,.92) !important;
  border: 1px solid rgba(43,127,255,.35) !important;
}
@media (max-width: 900px) {
  .cta-ban, .cta-banner, .ctab-ban {
    padding: 48px 18px 40px !important;
  }
  .cta-ban h2,
  .cta-banner h2,
  .ctab-ban h2,
  .cta-float h2 {
    white-space: normal !important;
    font-size: clamp(24px, 5.2vw, 34px) !important;
  }
}
@media (max-width: 640px) {
  .cta-ban, .cta-banner, .ctab-ban {
    margin: 0 !important;
    padding: 40px 16px 36px !important;
  }
  .cta-float,
  .cta-ban .pw,
  .cta-ban .cta-inner,
  .cta-banner .pw,
  .cta-banner > .max-w-4xl,
  .ctab-ban .pw {
    margin: 0 auto !important;
    padding: 0 !important;
    border-radius: 0 !important;
    max-width: 100% !important;
  }
  .cta-float-row{gap:16px 20px!important;}
  .cta-float-contact{margin-top:18px!important;gap:10px 20px!important;}
  .cta-float-phone{margin-left:0!important;}
  .cta-float-phone-txt strong { font-size: 18px; }
  .footer-qr{width:120px!important;height:120px!important;}
  .site-footer, footer.py-12, body > footer,
  #site-footer .site-footer, #site-footer > footer {
    padding: 56px 0 calc(120px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* ── 防空白：整块板块 / CTA / 页脚永不被入场动效隐藏 ── */
body > section.hm-reveal,
.cta-ban.hm-reveal,
.cta-banner.hm-reveal,
.site-footer.hm-reveal,
#site-footer.hm-reveal {
  opacity: 1 !important;
  transform: none !important;
}
.site-footer {
  position: relative;
  background: transparent !important;
  border-top: none;
  padding: 72px 0 64px !important;
  color: rgba(255,255,255,.96);
}
.site-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 8%, rgba(103,232,249,.55) 50%, transparent 92%);
  pointer-events: none;
  z-index: 1;
}
.footer-company-intro {
  line-height: 1.85 !important;
  color: rgba(255,255,255,.88) !important;
}
@media (min-width: 1024px) {
  .site-footer .grid.lg\:grid-cols-4 {
    grid-template-columns: 1.35fr .9fr 1fr 1.05fr;
  }
}
.site-footer a {
  color: rgba(255,255,255,.92) !important;
  transition: color .2s;
}
.site-footer a:hover { color: #7DD3FC !important; }
.site-footer .text-white,
.site-footer h3,
.site-footer p {
  color: #FFFFFF !important;
}
.site-footer .text-slate-400,
.site-footer .text-slate-500,
.site-footer .text-slate-600 {
  color: rgba(255,255,255,.9) !important;
}
.site-footer .text-slate-600.text-xs {
  color: rgba(255,255,255,.78) !important;
}
.site-footer .border-blue-900\/20,
.site-footer .border-b {
  border-color: rgba(255,255,255,.14) !important;
}

/* ── 全站页面加载遮罩 ── */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at 50% 35%, #EEF4FB 0%, #F5F8FC 55%, #EEF4FB 100%);
  transition: opacity .55s ease, visibility .55s ease;
}
#page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.is-loading { overflow: hidden; }
.loader-inner { text-align: center; position: relative; }
.loader-ring {
  width: 88px; height: 88px; margin: 0 auto 22px; position: relative;
}
.loader-ring::before,
.loader-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
}
.loader-ring::before {
  border-top-color: #00D4FF;
  border-right-color: rgba(43,127,255,.45);
  animation: hmLoaderSpin 1s linear infinite;
}
.loader-ring::after {
  inset: 10px;
  border-bottom-color: #2B7FFF;
  border-left-color: rgba(0,212,255,.3);
  animation: hmLoaderSpin 1.4s linear infinite reverse;
}
.loader-core {
  position: absolute;
  left: 50%; top: 50%;
  width: 42px; height: 42px;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  animation: hmLoaderPulse 1.6s ease-in-out infinite;
}
.loader-core img {
  width: 100%; height: 100%; object-fit: contain;
}
.loader-brand {
  color: #142033; font-size: 20px; font-weight: 700;
  letter-spacing: .5px; margin-bottom: 8px;
}
.loader-tip {
  color: #5B6B7F; font-size: 16px; margin-bottom: 18px;
}
.loader-bar {
  width: 160px; height: 3px; margin: 0 auto;
  border-radius: 999px; background: rgba(43,127,255,.18); overflow: hidden;
}
.loader-bar > i {
  display: block; height: 100%; width: 40%; border-radius: inherit;
  background: linear-gradient(90deg, #2B7FFF, #00D4FF);
  animation: hmLoaderBar 1.1s ease-in-out infinite;
}
@keyframes hmLoaderSpin { to { transform: rotate(360deg); } }
@keyframes hmLoaderPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 0 18px rgba(43,127,255,.35); }
  50% { transform: translate(-50%, -50%) scale(1.06); box-shadow: 0 0 28px rgba(0,212,255,.55); }
}
@keyframes hmLoaderBar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

/* ── 板块滚动入场（多形态，差异拉大） ── */
.hm-reveal {
  opacity: 0;
  will-change: opacity, transform, filter;
}
.hm-reveal.is-in {
  /* 入场结束后保持可见；避免 hover 等规则清掉 animation 后回落到 opacity:0 */
  opacity: 1;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(.22, 1, .36, 1);
  animation-duration: var(--hm-dur, .85s);
  animation-delay: var(--hm-delay, 0ms);
}

/* 默认：上浮 */
.hm-reveal.is-in,
.hm-reveal.hm-up.is-in { animation-name: hmInUp; }
/* 远距上浮 */
.hm-reveal.hm-up-far.is-in { animation-name: hmInUpFar; --hm-dur: 1s; }
/* 轻柔上浮 */
.hm-reveal.hm-up-soft.is-in { animation-name: hmInUpSoft; --hm-dur: .7s; }
/* 左滑 */
.hm-reveal.hm-left.is-in { animation-name: hmInLeft; --hm-dur: .9s; }
/* 右滑 */
.hm-reveal.hm-right.is-in { animation-name: hmInRight; --hm-dur: .9s; }
/* 缩放弹出 */
.hm-reveal.hm-pop.is-in { animation-name: hmInPop; --hm-dur: .75s; }
/* 放大淡入 */
.hm-reveal.hm-scale.is-in { animation-name: hmInScale; --hm-dur: .8s; }
/* 倾斜模糊 */
.hm-reveal.hm-tilt.is-in { animation-name: hmInTilt; --hm-dur: .95s; }
/* 模糊显现 */
.hm-reveal.hm-blur.is-in { animation-name: hmInBlur; --hm-dur: .85s; }
/* 裁切开 */
.hm-reveal.hm-clip.is-in { animation-name: hmInClip; --hm-dur: 1s; }

@keyframes hmInUp {
  from { opacity: 0; transform: translate3d(0, 36px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes hmInUpFar {
  from { opacity: 0; transform: translate3d(0, 72px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes hmInUpSoft {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes hmInLeft {
  from { opacity: 0; transform: translate3d(-80px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes hmInRight {
  from { opacity: 0; transform: translate3d(80px, 0, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes hmInPop {
  0% { opacity: 0; transform: scale(.78) translate3d(0, 20px, 0); }
  70% { opacity: 1; transform: scale(1.03) translate3d(0, 0, 0); }
  100% { opacity: 1; transform: none; }
}
@keyframes hmInScale {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: none; }
}
@keyframes hmInTilt {
  from { opacity: 0; transform: translate3d(0, 30px, 0) rotate(-2.5deg) scale(.94); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes hmInBlur {
  from { opacity: 0; transform: translate3d(0, 14px, 0); filter: blur(10px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes hmInClip {
  from { opacity: 0; transform: translate3d(0, 16px, 0); clip-path: inset(0 0 40% 0); }
  to { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  .loader-ring::before,
  .loader-ring::after,
  .loader-core,
  .loader-bar > i { animation: none; }
  .hm-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    animation: none !important;
  }
}

/* ── 首屏统一科技仪表盘视觉：替代错位代码图/旧看板 ── */
.hm-visual {
  --hm-accent: #00D4FF;
  --hm-accent-2: #2B7FFF;
  --hm-accent-soft: rgba(0, 212, 255, .16);
  position: relative;
  min-height: clamp(420px, 58vh, 640px);
  width: 100%;
  border-radius: 24px;
  padding: clamp(18px, 2.2vw, 30px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 55% 18%, var(--hm-accent-soft), transparent 44%),
    radial-gradient(ellipse at 88% 82%, rgba(43, 127, 255, .12), transparent 42%),
    linear-gradient(155deg, rgba(11, 30, 58, .92), rgba(3, 10, 22, .96));
  border: 1px solid color-mix(in srgb, var(--hm-accent) 34%, transparent);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, .36),
    inset 0 1px 0 rgba(255,255,255,.06),
    0 0 44px color-mix(in srgb, var(--hm-accent) 14%, transparent);
}
.hm-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(80,160,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,160,255,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse at center, #000 18%, transparent 82%);
}
.hm-visual::after {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--hm-accent) 80%, transparent), transparent);
  box-shadow: 0 0 22px var(--hm-accent);
  opacity: .55;
  animation: hmScanLine 5.5s ease-in-out infinite;
}
.hm-visual.green { --hm-accent: #22C55E; --hm-accent-2: #07C160; --hm-accent-soft: rgba(34, 197, 94, .18); }
.hm-visual.purple { --hm-accent: #A78BFA; --hm-accent-2: #7C3AED; --hm-accent-soft: rgba(124, 58, 237, .18); }
.hm-visual.gold { --hm-accent: #F59E0B; --hm-accent-2: #FBBF24; --hm-accent-soft: rgba(245, 158, 11, .18); }
.hm-visual-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.hm-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(2, 8, 20, .55);
  border: 1px solid rgba(255,255,255,.06);
}
.hm-visual-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #EAF6FF;
  letter-spacing: .08em;
}
.hm-visual-title i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--hm-accent);
  box-shadow: 0 0 16px var(--hm-accent);
}
.hm-visual-live {
  color: var(--hm-accent);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--hm-accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--hm-accent) 26%, transparent);
}
.hm-visual-main {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(220px, .84fr);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: center;
  padding: clamp(22px, 4vh, 42px) 0;
}
.hm-panel {
  border-radius: 20px;
  padding: clamp(18px, 2vw, 28px);
  background:
    radial-gradient(ellipse at 70% 16%, color-mix(in srgb, var(--hm-accent) 12%, transparent), transparent 42%),
    rgba(4, 13, 30, .66);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.hm-panel h3,
.hm-card b {
  color: #F8FBFF;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.35;
  margin: 0;
}
.hm-panel p,
.hm-card span {
  color: rgba(226, 232, 240, .68);
  font-size: 14px;
  line-height: 1.55;
  margin: 6px 0 0;
}
.hm-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
  height: clamp(130px, 22vh, 190px);
  margin: clamp(22px, 3vh, 34px) 0 18px;
}
.hm-bars i {
  display: block;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--hm-accent), var(--hm-accent-2));
  box-shadow: 0 0 16px color-mix(in srgb, var(--hm-accent) 34%, transparent);
  opacity: .88;
}
.hm-bars i:nth-child(1) { height: 34%; }
.hm-bars i:nth-child(2) { height: 58%; }
.hm-bars i:nth-child(3) { height: 46%; }
.hm-bars i:nth-child(4) { height: 76%; }
.hm-bars i:nth-child(5) { height: 64%; }
.hm-bars i:nth-child(6) { height: 88%; }
.hm-bars i:nth-child(7) { height: 70%; }
.hm-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hm-metric {
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
}
.hm-metric strong {
  display: block;
  color: var(--hm-accent);
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
}
.hm-metric span {
  color: rgba(226,232,240,.68);
  font-size: 12px;
}
.hm-cards {
  display: grid;
  gap: 14px;
}
.hm-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(3, 10, 24, .62);
  border: 1px solid rgba(255,255,255,.07);
}
.hm-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--hm-accent) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--hm-accent) 32%, transparent);
  display: grid;
  place-items: center;
  color: var(--hm-accent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--hm-accent) 18%, transparent);
}
.hm-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.hm-flow span {
  position: relative;
  text-align: center;
  color: rgba(226,232,240,.78);
  font-size: 13px;
  padding-top: 24px;
}
.hm-flow span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  border-radius: 50%;
  background: var(--hm-accent);
  box-shadow: 0 0 14px var(--hm-accent);
}
@keyframes hmScanLine {
  0%, 100% { transform: translateY(-150px); opacity: .12; }
  50% { transform: translateY(150px); opacity: .62; }
}
@media (max-width: 1024px) {
  .hm-visual { min-height: 420px; }
  .hm-visual-main { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hm-metrics,
  .hm-flow { grid-template-columns: repeat(2, 1fr); }
  .hm-card { grid-template-columns: 40px 1fr; }
  .hm-icon { width: 40px; height: 40px; }
}

/* 方案/知识库等单栏首屏：补充右侧仪表盘氛围，避免一屏内过空 */
.ph::before,
.page-hero::before,
.detail-hero::before {
  content: "";
  position: absolute;
  right: clamp(28px, 7vw, 120px);
  top: 50%;
  width: min(40vw, 620px);
  height: clamp(300px, 46vh, 520px);
  transform: translateY(-46%);
  border-radius: 24px;
  opacity: .52;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(90deg, transparent 18%, rgba(0,212,255,.36) 18% 19%, transparent 19% 100%),
    linear-gradient(180deg, transparent 24%, rgba(0,212,255,.30) 24% 25%, transparent 25% 100%),
    radial-gradient(circle at 72% 34%, rgba(0,212,255,.22), transparent 18%),
    linear-gradient(rgba(80,160,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,160,255,.08) 1px, transparent 1px),
    linear-gradient(155deg, rgba(15,35,66,.82), rgba(4,12,26,.72));
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(0,212,255,.22);
  box-shadow: 0 28px 80px rgba(0,0,0,.26), 0 0 42px rgba(0,212,255,.08);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 100%);
}
.ph::after,
.page-hero::after,
.detail-hero::after {
  content: "";
  position: absolute;
  right: clamp(68px, 10vw, 170px);
  top: 50%;
  width: min(28vw, 420px);
  height: clamp(120px, 20vh, 220px);
  transform: translateY(-34%);
  z-index: 1;
  opacity: .66;
  pointer-events: none;
  border-radius: 18px;
  background:
    linear-gradient(180deg, transparent 25%, rgba(0,212,255,.75) 25% 26%, transparent 26%),
    linear-gradient(90deg, rgba(43,127,255,.7) 0 12%, transparent 12% 18%, rgba(0,212,255,.72) 18% 34%, transparent 34% 44%, rgba(16,185,129,.72) 44% 58%, transparent 58% 68%, rgba(245,158,11,.72) 68% 82%, transparent 82%);
  filter: drop-shadow(0 0 16px rgba(0,212,255,.28));
}
@media (max-width: 1024px) {
  .ph::before,
  .ph::after,
  .page-hero::before,
  .page-hero::after,
  .detail-hero::before,
  .detail-hero::after {
    display: none;
  }
}

/* ── 首屏视觉方案二：光幕主视觉，减少卡片堆叠感 ── */
.hm-visual {
  min-height: clamp(430px, 58vh, 660px);
  padding: clamp(20px, 2.4vw, 34px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 52% 44%, color-mix(in srgb, var(--hm-accent) 20%, transparent), transparent 20%),
    radial-gradient(ellipse at 50% 68%, rgba(43,127,255,.26), transparent 38%),
    linear-gradient(150deg, rgba(10,31,58,.58), rgba(3,10,22,.9));
  border-color: color-mix(in srgb, var(--hm-accent) 28%, transparent);
}
.hm-visual::before {
  opacity: .26;
  background-image:
    linear-gradient(rgba(80,160,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,160,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 12%, transparent 78%);
}
.hm-visual::after {
  top: 64%;
  height: 2px;
  opacity: .42;
}
.hm-visual-inner {
  display: block;
  position: relative;
}
.hm-visual-top {
  position: absolute;
  left: clamp(16px, 2vw, 28px);
  right: clamp(16px, 2vw, 28px);
  top: clamp(16px, 2vw, 28px);
  z-index: 5;
  padding: 0;
  background: transparent;
  border: 0;
}
.hm-visual-title {
  font-size: 14px;
  letter-spacing: .04em;
}
.hm-visual-live {
  background: rgba(2, 8, 20, .62);
  backdrop-filter: blur(12px);
}
.hm-visual-main {
  display: block;
  position: relative;
  height: 100%;
  min-height: inherit;
  padding: 0;
}
.hm-panel {
  position: absolute;
  left: 50%;
  top: 52%;
  width: min(78%, 560px);
  min-height: clamp(250px, 36vh, 430px);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    radial-gradient(circle at 50% 42%, color-mix(in srgb, var(--hm-accent) 20%, transparent), transparent 28%),
    rgba(4, 13, 30, .34);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 28px 80px rgba(0,0,0,.28);
}
.hm-panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(62%, 300px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.12) 0 4%, transparent 5% 100%),
    conic-gradient(from 90deg, transparent 0 12%, var(--hm-accent) 12% 24%, transparent 24% 45%, var(--hm-accent-2) 45% 62%, transparent 62% 100%);
  filter: drop-shadow(0 0 24px color-mix(in srgb, var(--hm-accent) 34%, transparent));
  opacity: .7;
}
.hm-panel::after {
  content: "";
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 26%;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--hm-accent) 22%, transparent);
  filter: blur(20px);
}
.hm-panel h3 {
  position: relative;
  z-index: 2;
  max-width: 340px;
  font-size: clamp(22px, 2.1vw, 32px);
  line-height: 1.22;
}
.hm-panel p {
  position: relative;
  z-index: 2;
  max-width: 380px;
  font-size: 15px;
  color: rgba(226,232,240,.66);
}
.hm-bars,
.hm-metrics {
  display: none;
}
.hm-cards {
  position: absolute;
  right: clamp(10px, 3vw, 36px);
  top: 28%;
  width: min(42%, 280px);
  z-index: 4;
  gap: 12px;
}
.hm-card {
  grid-template-columns: 42px 1fr;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(3, 10, 24, .52);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.08);
}
.hm-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 13px;
}
.hm-card b {
  font-size: 15px;
}
.hm-card span {
  font-size: 12px;
}
.hm-flow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: clamp(22px, 4vh, 42px);
  z-index: 4;
}
.hm-flow span {
  font-size: 13px;
  color: rgba(226,232,240,.72);
}
@media (max-width: 1024px) {
  .hm-visual {
    min-height: 420px;
  }
  .hm-cards {
    width: min(48%, 260px);
    right: 18px;
  }
}
@media (max-width: 640px) {
  .hm-panel {
    width: 90%;
    min-height: 260px;
  }
  .hm-cards {
    display: none;
  }
  .hm-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── 首屏视觉方案三：科技场景图 + 少量业务浮层 ── */
.hero-scene {
  position: relative;
  width: 100%;
  min-height: clamp(440px, 58vh, 660px);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(3,10,24,.72) 0%, rgba(3,10,24,.24) 48%, rgba(3,10,24,.04) 100%),
    var(--scene-image) center/cover no-repeat;
  border: 0;
  box-shadow: none;
}
.hero-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0,212,255,.18), transparent 38%),
    linear-gradient(rgba(80,160,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80,160,255,.055) 1px, transparent 1px);
  background-size: auto, 46px 46px, 46px 46px;
  mix-blend-mode: screen;
}
.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2,8,20,.62), rgba(2,8,20,.18) 48%, rgba(2,8,20,.04));
}
.hero-scene-card {
  position: absolute;
  left: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 4vh, 52px);
  z-index: 3;
  max-width: min(420px, 78%);
  padding: clamp(20px, 2.5vw, 30px);
  border-radius: 22px;
  background: rgba(3, 10, 24, .46);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.hero-scene-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #67E8F9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}
.hero-scene-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D4FF;
  box-shadow: 0 0 16px #00D4FF;
}
.hero-scene-card h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.22;
}
.hero-scene-card p {
  margin: 12px 0 0;
  color: rgba(226,232,240,.78);
  font-size: 15px;
  line-height: 1.75;
}
.hero-scene-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.hero-scene-points span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #CFFAFE;
  font-size: 13px;
  background: rgba(0,212,255,.11);
  border: 1px solid rgba(0,212,255,.24);
}
.hero-scene.green {
  box-shadow: none;
}
.hero-scene.green .hero-scene-kicker,
.hero-scene.green .hero-scene-points span { color: #BBF7D0; }
.hero-scene.green .hero-scene-kicker::before { background:#22C55E; box-shadow:0 0 16px #22C55E; }
.hero-scene.green .hero-scene-points span { background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.24); }

/* 不同页面不同构图，避免所有首屏像同一个模板 */
.scene-home,
.scene-software {
  min-height: clamp(460px, 62vh, 700px);
  border-radius: 36px 0 0 36px;
  transform: translateX(3vw);
  background-position: center;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 12%);
}
.scene-home .hero-scene-card,
.scene-software .hero-scene-card {
  left: clamp(22px, 3vw, 44px);
  bottom: clamp(28px, 5vh, 70px);
}
.scene-ai {
  border-radius: 50%;
  aspect-ratio: 1;
  min-height: auto;
  width: min(58vh, 620px);
  margin: 0 auto;
  background-position: center;
  box-shadow: 0 0 80px rgba(0,212,255,.12);
}
.scene-ai::after {
  background: radial-gradient(circle, rgba(2,8,20,.1), rgba(2,8,20,.68));
}
.scene-ai .hero-scene-card {
  left: auto;
  right: -6%;
  bottom: 10%;
  max-width: 340px;
}
.scene-secondary {
  border-radius: 0 40px 40px 0;
  transform: translateX(2vw);
  background-position: center right;
  clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
}
.scene-secondary .hero-scene-card {
  left: clamp(18px, 2.5vw, 36px);
  bottom: 50%;
  transform: translateY(50%);
}
.scene-app {
  border-radius: 34px;
  width: min(82%, 520px);
  margin-left: auto;
  background-position: center;
  box-shadow: 0 36px 90px rgba(0,0,0,.22);
}
.scene-app .hero-scene-card {
  left: -14%;
  bottom: 12%;
}
.scene-miniapp {
  border-radius: 42% 58% 48% 52% / 48% 40% 60% 52%;
  background-position: center;
  transform: rotate(-1deg);
}
.scene-miniapp .hero-scene-card {
  left: auto;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(22px, 5vh, 64px);
  transform: rotate(1deg);
}
.scene-cases {
  border-radius: 36px;
  background-position: center;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 8% 100%, 0 88%);
}
.scene-cases .hero-scene-card {
  left: clamp(28px, 4vw, 60px);
  bottom: clamp(28px, 5vh, 72px);
}
.scene-about {
  border-radius: 0;
  background-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 16%, #000 100%);
}
.scene-about .hero-scene-card {
  left: auto;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(28px, 5vh, 72px);
}

@media (max-width: 1024px) {
  .scene-home,
  .scene-software,
  .scene-secondary,
  .scene-app,
  .scene-miniapp,
  .scene-cases,
  .scene-about,
  .scene-ai {
    width: 100%;
    transform: none;
    clip-path: none;
    mask-image: none;
    border-radius: 24px;
    aspect-ratio: auto;
  }
  .scene-ai .hero-scene-card,
  .scene-app .hero-scene-card,
  .scene-about .hero-scene-card {
    left: clamp(20px, 4vw, 34px);
    right: auto;
  }
}

/* 撤掉上一版伪仪表盘装饰，避免和真实场景图混杂 */
.ph::before,
.ph::after,
.page-hero::before,
.page-hero::after,
.detail-hero::before,
.detail-hero::after {
  display: none !important;
}

/* Ensure hero sections distribute space so stats stay above the fold */
.ph > .pw,
.sw-hero > .pw,
.sd-hero > .pw,
.mp-hero > .pw,
.app-hero > .pw,
.cs-hero > .pw,
.ai-hero > .pw,
.ab-hero > .pw,
.page-hero > .max-w-7xl,
.page-hero > .page-wrap,
.hero-section > .max-w-7xl {
  display: flex !important;
  flex-direction: column;
  flex: 1;
}

/* Make the inner content take up available space, pushing stats down */
.ai-hero-inner,
.sd-hero-inner,
.mp-hero-inner,
.app-hero-inner,
.cs-hero-inner,
.sw-hero-inner,
.hero-inner,
.ab-hero-inner,
.hero-home-grid {
  flex: 1;
  display: grid;
  align-items: center;
  min-height: 0 !important;
}

/* Adjust stats padding to fit nicely at the bottom */
.pt-12.pb-4 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: auto;
}

/* ── Stat Cards (Global) ── */
.stat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid rgba(20,40,80,.10);
  box-shadow: 0 8px 28px rgba(20,40,80,.06);
  position: relative;
  overflow: visible;
  min-height: 92px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 20%, var(--stat-glow, rgba(43,127,255,.35)), transparent 55%);
  opacity: 0.10;
}
.stat-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  max-width: 52px;
  flex: 0 0 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--stat-color, #2B7FFF) !important;
  background: color-mix(in srgb, var(--stat-color, #2B7FFF) 12%, #FFFFFF) !important;
  border: 1px solid color-mix(in srgb, var(--stat-color, #2B7FFF) 22%, transparent);
  box-shadow: none !important;
  position: relative;
  z-index: 1;
}
.stat-icon i,
.stat-icon svg {
  width: 24px !important;
  height: 24px !important;
  color: var(--stat-color, #2B7FFF) !important;
  stroke: var(--stat-color, #2B7FFF) !important;
}
.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 0.95;
  font-weight: 800;
  color: #142033 !important;
  text-shadow: none;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.stat-number .unit {
  font-size: 0.42em;
  font-weight: 700;
  margin-left: 2px;
  vertical-align: 0.18em;
  color: #2B7FFF !important;
}
.stat-title {
  color: #5B6B7F !important;
  font-size: 15px;
  font-weight: 600;
  margin-top: 6px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
/* 文字型能力卡：布局交给标签，字号交给 site-typography */
.stat-card h3.stat-number {
  font-family: var(--heading-font) !important;
  white-space: normal;
  margin: 0;
}
.stat-card p.stat-title {
  white-space: normal;
  margin: 6px 0 0 !important;
  font-weight: 400 !important;
}

/* 移动端只统一布局：单列、左图标右文案；不改各页原文，长文案可换行 */
@media (max-width: 1024px) {
  .hero-data-stats,
  .pt-12.pb-4,
  .pt-10.pb-2 {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  .hero-data-stats .grid,
  .pt-12.pb-4 > .grid,
  .pt-10.pb-2 > .grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .stat-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 14px 16px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }
  .stat-icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    flex: 0 0 52px !important;
    flex-shrink: 0 !important;
  }
  .stat-icon i,
  .stat-icon svg {
    width: 24px !important;
    height: 24px !important;
  }
  .stat-card > div:not(.stat-icon) {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: visible !important;
    text-align: left !important;
  }
  .stat-number {
    font-size: 22px !important;
    line-height: 1.2 !important;
  }
  .stat-card h3.stat-number {
    white-space: normal !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
  }
  .stat-title,
  .stat-card p.stat-title {
    white-space: normal !important;
    overflow: visible !important;
    word-break: break-word !important;
  }
}

/* ── Hero Chips (Global) ── */
.hero-chips {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px 10px !important;
  row-gap: 8px !important;
  align-content: start !important;
  grid-auto-rows: min-content !important;
  height: auto !important;
  margin: clamp(12px, 2vh, 20px) 0 !important;
  width: 100%;
  max-width: 580px;
}
@media (max-width: 1024px) {
  .hero-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px 8px !important;
    row-gap: 6px !important;
    max-width: 100% !important;
  }
}
.hero-chip {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  min-height: 40px !important;
  height: 40px !important;
  box-sizing: border-box !important;
  font-size: 14px !important;
  font-weight: 600;
  padding: 0 10px !important;
  border-radius: 6px !important;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .hero-chip {
    min-height: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
    padding: 0 8px !important;
  }
}
.hero-chip:nth-child(6n+1) { background: rgba(43,127,255,0.10) !important; border: 1px solid rgba(43,127,255,0.28) !important; color: #1D5FD0 !important; }
.hero-chip:nth-child(6n+2) { background: rgba(0,168,216,0.10) !important; border: 1px solid rgba(0,168,216,0.28) !important; color: #0B8FB8 !important; }
.hero-chip:nth-child(6n+3) { background: rgba(16,185,129,0.10) !important; border: 1px solid rgba(16,185,129,0.28) !important; color: #0F9F6E !important; }
.hero-chip:nth-child(6n+4) { background: rgba(59,130,246,0.10) !important; border: 1px solid rgba(59,130,246,0.28) !important; color: #2563EB !important; }
.hero-chip:nth-child(6n+5) { background: rgba(245,158,11,0.10) !important; border: 1px solid rgba(245,158,11,0.28) !important; color: #C47A05 !important; }
.hero-chip:nth-child(6n) { background: rgba(14,165,233,0.10) !important; border: 1px solid rgba(14,165,233,0.28) !important; color: #0284C7 !important; }

/* 标题重点高亮（品牌/核心词） */
.sec-title .gt,
.section-title .gt,
.section-title .grad-text,
.gt {
  background: linear-gradient(135deg, #1D6FEB 0%, #00A8D8 55%, #2B7FFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* ── 明亮主题全局兜底 ── */
.sec-title, .section-title, h1, h2, h3 { color: var(--text-main); }
.sec-sub, .section-sub { color: var(--text-sub) !important; }
.ph, .page-hero, .hero-section, .sw-hero, .sd-hero, .mp-hero, .app-hero, .cs-hero, .ai-hero, .ab-hero, .detail-hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(43,127,255,.10), transparent 45%),
    radial-gradient(ellipse at 10% 80%, rgba(0,168,216,.08), transparent 40%),
    linear-gradient(180deg, #F8FBFF 0%, #F5F8FC 100%) !important;
  color: var(--text-main);
}
.ph h1, .page-hero h1, .hero-section h1, .sw-hero h1, .sd-hero h1, .mp-hero h1, .app-hero h1, .cs-hero h1, .ai-hero h1, .ab-hero h1,
.ph p, .page-hero p, .sw-hero p, .sd-hero p, .mp-hero p, .app-hero p, .cs-hero p, .ai-hero p, .ab-hero p {
  color: var(--text-main) !important;
}
.sec, section.sec, .process-sec {
  background: var(--bg-page);
  color: var(--text-main);
}
#page-loader {
  background: var(--bg-page) !important;
  color: var(--text-main);
}
.loader-brand { color: var(--text-main) !important; }



/* ══════════════════════════════════════
   清晰明亮最终态 v51（去雾）
   ══════════════════════════════════════ */
html, body {
  background: #F5F8FC !important;
  color: #142033 !important;
}
#main-nav {
  background: rgba(245,248,252,.88) !important;
  backdrop-filter: blur(16px) saturate(1.05) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.05) !important;
  border-bottom: 1px solid rgba(20,40,80,.05) !important;
  box-shadow: none !important;
}
#main-nav.scrolled {
  background: rgba(245,248,252,.96) !important;
  border-bottom-color: rgba(20,40,80,.06) !important;
  box-shadow: 0 8px 24px rgba(20,40,80,.04) !important;
}
.nav-link, #nav-phone, #nav-logo-text { color: #142033 !important; }
.nav-link:hover, .nav-link.active { color: #2B7FFF !important; }
.nav-link.active { font-weight: 700 !important; }
.nav-link::after {
  background: #2B7FFF !important;
  height: 3px !important;
}
#scroll-progress {
  height: 2px !important;
  background: linear-gradient(90deg, #7DD3FC 0%, #38BDF8 50%, #0EA5E9 100%) !important;
  box-shadow: none !important;
  opacity: .85 !important;
}
#mobile-menu {
  background: #FFFFFF !important;
  border-bottom: 1px solid rgba(20,40,80,.10) !important;
}
#mobile-menu a { color: #142033 !important; }
#mobile-toggle { color: #142033 !important; }
#mobile-toggle svg { stroke: currentColor; }
.btn-primary, a.btn-primary, button.btn-primary {
  color: #FFFFFF !important;
  background: linear-gradient(135deg, #2B7FFF, #00A8D8) !important;
}
.btn-outline {
  color: #1D6FEB !important;
  border-color: rgba(43,127,255,.45) !important;
  background: transparent !important;
}
.sec-title, .section-title, h1, h2, h3 { color: #142033; }
.sec-sub, .section-sub { color: #5B6B7F !important; }
.stag, .section-tag {
  background: rgba(43,127,255,.08) !important;
  border: 1px solid rgba(43,127,255,.22) !important;
  color: #1D5FD0 !important;
}
.gt, .grad-text {
  background: linear-gradient(135deg, #1D6FEB 0%, #00A8D8 55%, #2B7FFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

/* 卡片：实色白底，禁止毛玻璃 */
.stat-card, .service-card, .ai-dev-card, .case-card, .kb-card,
.solution-shell,
.svc-card, .type-card, .faq-item, .fcard, .cap-card, .cred-block,
.fit-card, .scard, .side-card, .article-card, .article-list-card, .glass, .glass-light {
  background: #FFFFFF !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: 1px solid rgba(20,40,80,.10) !important;
  box-shadow: 0 8px 28px rgba(20,40,80,.06) !important;
}
/* 首页 AI 场景：流程轨开放式，不套白卡 */
#ai-scenes .ai-scene-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
/* 二开痛点区 / 小程序场景区：开放式清单，不套白卡、不画表格线 */
#pains .pain-board,
#pains .pain-card,
#why .why-board,
#why .why-card {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  border: none !important;
}
#pains .pain-board,
#why .why-board {
  padding: 8px 0 0 !important;
}
#pains .pain-card .ico,
#why .why-card .ico {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.process-stage-board,
.partner-marquee,
.partner-logo-card {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
/* 首屏右侧科技看板：保留深色面板，不做白底覆盖 */
.sw-dash, .hero-board, .hero-visual, .mp-stage, .app-stage {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.service-card h3, .ai-dev-card h3, .case-card h3, .kb-card h3,
.cap-card h3, .type-card h3, .pain-card h3, .fit-card h3, .svc-card h3 {
  color: #142033 !important;
}
.stat-card .stat-number { color: #142033 !important; }
.stat-card .stat-number .unit { color: #2B7FFF !important; }
.stat-card .stat-title { color: #5B6B7F !important; }
.stat-card .stat-icon,
.stat-card .stat-icon i,
.stat-card .stat-icon svg {
  color: var(--stat-color, #2B7FFF) !important;
  stroke: var(--stat-color, #2B7FFF) !important;
}
.service-card p, .ai-dev-card p, .kb-card p, .cap-card p, .type-card p,
.pain-card p, .fit-card p, .svc-card p, .case-meta {
  color: #5B6B7F !important;
}
/* 软件定制 / 系统二开首屏看板：明亮风 */
.sw-dash { color: #142033; }
.sd-hero .hero-board { color: #142033 !important; }
.hero-board, .hero-visual, .mp-stage, .app-stage {
  color: #E8F1FF;
}
.hero-board .hb-title, .hb-item b, .hb-card b { color: #FFFFFF !important; }
.sd-hero .hero-board .hb-title { color: #1D5FD0 !important; }
.hb-item span, .hb-card span { color: #B7C9E0 !important; }

/* 首屏：浅色实底，去掉暗图叠层雾感 */
.ph, .page-hero, .hero-section, .sw-hero, .sd-hero, .mp-hero, .app-hero,
.cs-hero, .ai-hero, .ab-hero, .detail-hero {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(43,127,255,.08), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(0,168,216,.06), transparent 45%),
    #F5F8FC !important;
  color: #142033 !important;
}
.ph h1, .sw-hero h1, .sd-hero h1, .mp-hero h1, .app-hero h1, .cs-hero h1,
.ai-hero h1, .ab-hero h1, .ph p, .sw-hero p, .sd-hero p, .mp-hero p,
.app-hero p, .cs-hero p, .ai-hero p, .ab-hero p {
  color: #142033 !important;
}
/* 首屏氛围图：不再清空背景图，由各页自行控制 */
.ph-bg img { opacity: .55 !important; }
.fbb, .floating-btn { color: #FFFFFF !important; }

/* 右侧栏：图标在上，文字两字一排（不改原有蓝底白字） */
.floating-bar .floating-btn,
.floating-bar .fbb,
.floating-bar a.floating-btn{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;
  writing-mode:horizontal-tb !important;
  text-orientation:mixed !important;
  text-decoration:none !important;
  gap:6px !important;
  padding:12px 10px !important;
  min-width:58px;
  box-sizing:border-box;
}
.floating-bar .floating-btn .fb-ico,
.floating-bar .fbb .fb-ico{
  display:flex;
  align-items:center;
  justify-content:center;
  width:24px;
  height:24px;
  flex:0 0 24px;
  color:currentColor;
}
.floating-bar .fb-ico svg{
  width:24px;
  height:24px;
  display:block;
  stroke:currentColor;
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.floating-bar .fb-ico svg.fb-fill{
  fill:currentColor;
  stroke:none;
}
.floating-bar .fb-txt{
  writing-mode:horizontal-tb !important;
  text-orientation:mixed !important;
  display:block;
  width:2.2em;
  text-align:center;
  letter-spacing:0;
  line-height:1.35;
  font-size:13px;
  font-weight:600;
  white-space:normal;
  word-break:break-all;
}

/* 右侧悬停提示：白底深字，保证可读 */
.floating-tip{
  background:#FFFFFF!important;
  border:1px solid rgba(20,40,80,.14)!important;
  color:#142033!important;
  box-shadow:0 12px 28px rgba(20,40,80,.16)!important;
  font-weight:700!important;
  letter-spacing:.02em;
}

/* 右侧微信咨询：悬停展示完整二维码，不受侧栏竖排影响 */
.floating-bar,
.floating-btn{
  overflow:visible!important;
}
.floating-tip.floating-tip-qr{
  display:none;
  writing-mode:horizontal-tb!important;
  text-orientation:mixed!important;
  white-space:normal!important;
  width:196px!important;
  min-width:196px!important;
  max-width:196px!important;
  height:auto!important;
  padding:14px!important;
  box-sizing:border-box!important;
  background:#FFFFFF!important;
  border:1px solid rgba(20,40,80,.12)!important;
  color:#142033!important;
  flex-direction:column;
  align-items:center;
  gap:10px;
  box-shadow:0 12px 28px rgba(20,40,80,.16)!important;
  font-weight:400!important;
  top:auto!important;
  bottom:0!important;
  transform:none!important;
}
.floating-btn:hover .floating-tip.floating-tip-qr,
.floating-btn:focus .floating-tip.floating-tip-qr{
  display:flex!important;
}
.floating-tip.floating-tip-qr img{
  width:168px!important;
  height:168px!important;
  max-width:none!important;
  flex:0 0 168px!important;
  object-fit:contain!important;
  border-radius:10px!important;
  display:block!important;
}
.floating-tip.floating-tip-qr em{
  writing-mode:horizontal-tb!important;
  white-space:nowrap!important;
  font-style:normal!important;
  font-size:14px!important;
  color:#5B6B7F!important;
  line-height:1.3!important;
}

/* 线索弹窗：明亮白卡，输入框浅底深字 */
.lead-modal{
  background:rgba(15,40,80,.48)!important;
}
.lead-modal-panel{
  background:#FFFFFF!important;
  border:1px solid rgba(20,40,80,.10)!important;
  box-shadow:0 24px 56px rgba(20,40,80,.18)!important;
  color:#142033!important;
}
.lead-modal-panel h3,
.lead-modal-panel #lead-title{
  color:#142033!important;
}
.lead-modal-panel > p,
.lead-modal-panel label{
  color:#5B6B7F!important;
}
.lead-modal-panel input,
.lead-modal-panel select{
  background:#F5F8FC!important;
  border:1px solid rgba(20,40,80,.14)!important;
  color:#142033!important;
  box-shadow:none!important;
}
.lead-modal-panel input::placeholder{
  color:#94A3B8!important;
}
.lead-modal-panel select option{
  color:#142033!important;
  background:#FFFFFF!important;
}
.lead-modal-actions #lead-cancel,
#lead-cancel{
  background:#FFFFFF!important;
  color:#475569!important;
  -webkit-text-fill-color:#475569!important;
  border:1px solid rgba(20,40,80,.18)!important;
  box-shadow:none!important;
}
.lead-modal-actions #lead-cancel:hover,
#lead-cancel:hover{
  background:#F1F5F9!important;
  color:#142033!important;
  -webkit-text-fill-color:#142033!important;
  border-color:rgba(20,40,80,.28)!important;
}
.lead-modal-actions button[type="submit"],
.lead-modal-actions .btn-primary{
  background:linear-gradient(135deg,#2B7FFF,#00A8D8)!important;
  color:#FFFFFF!important;
  border:none!important;
}

/* 页面区块 */
.sec, section.sec, .process-sec, #services, #types, #pain, #capabilities,
#fit, #faq, #knowledge, #cases, #news, #process {
  background: #F5F8FC !important;
  color: #142033 !important;
}
#process, .process-sec { background: #EEF4FB !important; }
#process.process-sec::before,
.ai-section-dark::before,
.ai-section-dark::after { display: none !important; }

/* 页脚：品牌深蓝，全站与首页一致（含 #site-footer 注入） */
.site-footer,
footer.py-12,
body > footer,
#site-footer .site-footer,
#site-footer > footer {
  background: transparent !important;
  color: rgba(255,255,255,.96) !important;
  border-top: none !important;
}
.site-footer .text-white, .site-footer h3, .site-footer h5, .site-footer p,
footer .text-white, footer h3, footer h5, footer p,
#site-footer .text-white, #site-footer h3, #site-footer h5, #site-footer p {
  color: #FFFFFF !important;
}
.site-footer a, footer a, #site-footer a,
.site-footer .text-slate-300, .site-footer .text-slate-400,
.site-footer .text-slate-500, .site-footer .text-slate-600,
footer .text-slate-300, footer .text-slate-400,
footer .text-slate-500, footer .text-slate-600,
#site-footer .text-slate-300, #site-footer .text-slate-400,
#site-footer .text-slate-500, #site-footer .text-slate-600 {
  color: rgba(255,255,255,.92) !important;
}
.site-footer .text-slate-600.text-xs,
footer .text-slate-600.text-xs,
#site-footer .text-slate-600.text-xs {
  color: rgba(255,255,255,.78) !important;
}
.site-footer a:hover, footer a:hover, #site-footer a:hover { color: #7DD3FC !important; }
.site-footer .border-blue-900\/20,
.site-footer .border-b,
footer .border-blue-900\/20,
footer .border-b,
#site-footer .border-blue-900\/20,
#site-footer .border-b {
  border-color: rgba(255,255,255,.14) !important;
}
/* CTA：通栏铺满，紧贴页脚 */
.cta-ban, .cta-banner, .ctab-ban {
  margin: 0 !important;
  padding: 64px 20px 52px !important;
  overflow: hidden !important;
  z-index: auto !important;
  width: 100% !important;
  max-width: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}
.cta-float,
.cta-ban .pw,
.cta-ban .cta-inner,
.cta-banner .pw,
.cta-banner > .max-w-4xl,
.ctab-ban .pw {
  z-index: 1 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: min(1560px, 98vw) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.site-footer,
footer.py-12,
body > footer,
#site-footer .site-footer,
#site-footer > footer {
  padding: 72px 0 64px !important;
  margin-top: 0 !important;
}

/* 非 CTA / 非页脚区域的 text-white 改为深色 */
body .text-white { color: #142033 !important; }
.rounded-full.text-white,
.case-card .absolute .text-white,
.partner-logo-card .rounded-2xl.text-white,
footer .text-white, .site-footer .text-white,
footer h3, .site-footer h3,
footer p, .site-footer p { color: #FFFFFF !important; }
.btn-primary, .btn-primary *,
.cta-ban h2, .cta-banner h2, .ctab-ban h2, .cta-float h2,
.cta-ban .text-white, .cta-banner .text-white, .ctab-ban .text-white,
.cta-ban .cta-sub, .cta-banner .cta-sub, .cta-float .cta-sub,
.cta-ban .cta-phone, .cta-banner .cta-phone, .cta-float .cta-phone,
.cta-float-phone, .cta-float-phone strong, .cta-float-phone small,
.cta-float-btn-ghost { color: #FFFFFF !important; }
.cta-float-btn:not(.cta-float-btn-ghost) {
  color: #0B3A7A !important;
  background: #FFFFFF !important;
}

#page-loader {
  background: #F5F8FC !important;
}
.loader-brand { color: #142033 !important; }
.loader-tip { color: #5B6B7F !important; }

/* 关掉残留深色视觉组件的雾 */
.hm-visual-live, .hm-card, .hero-scene-card {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* 线索弹窗最终强制明亮（压过页内残留与浏览器暗色控件） */
#lead-modal{
  color-scheme:light!important;
  background:rgba(15,40,80,.45)!important;
}
#lead-modal .lead-modal-panel{
  background:#FFFFFF!important;
  border:1px solid rgba(20,40,80,.10)!important;
  box-shadow:0 24px 56px rgba(20,40,80,.18)!important;
}
#lead-modal #lead-title,
#lead-modal h3{
  color:#142033!important;
}
#lead-modal .lead-modal-panel > p,
#lead-modal p{
  color:#5B6B7F!important;
}
#lead-modal label{
  color:#334155!important;
  font-weight:600!important;
}
#lead-modal input,
#lead-modal select,
#lead-modal textarea{
  background:#FFFFFF!important;
  background-color:#FFFFFF!important;
  background-image:none!important;
  border:1px solid rgba(20,40,80,.16)!important;
  color:#142033!important;
  -webkit-text-fill-color:#142033!important;
  caret-color:#142033!important;
  box-shadow:none!important;
  color-scheme:light!important;
}
#lead-modal input::placeholder,
#lead-modal textarea::placeholder{
  color:#94A3B8!important;
  -webkit-text-fill-color:#94A3B8!important;
  opacity:1!important;
}
#lead-modal input:-webkit-autofill,
#lead-modal input:-webkit-autofill:hover,
#lead-modal input:-webkit-autofill:focus{
  -webkit-box-shadow:0 0 0 1000px #FFFFFF inset!important;
  -webkit-text-fill-color:#142033!important;
  transition:background-color 99999s ease-out;
}
#lead-modal #lead-cancel{
  background:#FFFFFF!important;
  color:#475569!important;
  -webkit-text-fill-color:#475569!important;
  border:1px solid rgba(20,40,80,.18)!important;
  box-shadow:none!important;
}
#lead-modal #lead-cancel:hover{
  background:#F1F5F9!important;
  color:#142033!important;
  -webkit-text-fill-color:#142033!important;
  border-color:rgba(20,40,80,.28)!important;
}
#lead-modal button[type="submit"],
#lead-modal .btn-primary{
  background:linear-gradient(135deg,#2B7FFF,#00A8D8)!important;
  color:#FFFFFF!important;
  -webkit-text-fill-color:#FFFFFF!important;
  border:none!important;
}

/* 移动端页脚底边距（放文件末尾，避免被前面 padding 简写覆盖） */
@media (max-width: 1023px) {
  .site-footer,
  footer.py-12,
  body > footer,
  #site-footer .site-footer,
  #site-footer > footer,
  #site-footer footer {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* CTA 热线：全站允许换行，避免手机右侧裁切「微信同号」 */
.cta-float-hotline,
.cta-float-contact {
  white-space: normal !important;
  overflow: visible !important;
  max-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
@media (max-width: 900px) {
  .cta-float-hotline,
  .cta-float-contact {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 4px 12px !important;
    padding: 0 8px !important;
    line-height: 1.65 !important;
  }
  .cta-float-hotline .cta-hotline-copy,
  .cta-float-contact .cta-phone {
    margin-left: 0 !important;
  }
}
