/* ═══════════════════════════════════════════════════════════════
   CRKESHA HIGH-END LUXURY DESIGN SYSTEM · 亚欧钛金与深海流光体系
   结合 3D 金属 Logo + PPT 真实硬核资产 + 国际顶奢设计规范
   纯静态 · 零依赖 · GPU硬件加速 · file:// 完全可用
   ═══════════════════════════════════════════════════════════════ */

/* ── 0. 全局扩展 Token (金佳活力亮色调体系：白底为主、活力橙为核、晴空蓝为翼) ── */
:root {
  --c-abyss: #ffffff;
  --c-abyss-card: #ffffff;
  --c-abyss-card-hover: #f8fafc;
  --c-titanium-silver: #0f172a;
  --c-titanium-muted: #64748b;
  
  /* 金佳核心品牌色：深海蓝、晴空科技蓝、活力橙与高光橙 */
  --c-kp-blue: #004D98;
  --c-kp-cyan: #0080D2;
  --c-kp-orange: #F06739;
  --c-kp-orange-bright: #FF743B;
  --c-kp-orange-glow: rgba(240, 103, 57, 0.25);
  
  /* 兼容历史系统别名，全部平滑映射为金佳活力橙与科技蓝 */
  --c-gold-champagne: #F06739;
  --c-gold-bright: #FF743B;
  --c-corridor-cyan: #0080D2;
  --c-corridor-cyan-glow: rgba(0, 128, 210, 0.25);
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
}

/* 确保吸顶 sticky 视口在所有现代浏览器中正常生效 */
html, body {
  overflow-x: clip !important;
}

/* ── 1. 磨砂吸顶 Header & 真实透明 Logo (高明度纯白通透) ── */
.site-header {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid #e2e8f0 !important;
  transition: all 0.4s var(--ease-luxury);
}
.site-header.scrolled,
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom-color: #cbd5e1 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* ── 双层顶奢 Header (.site-header--its) ── */
.site-header--its {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  transition: all 0.35s var(--ease-luxury);
}
.site-header--its.is-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom-color: #cbd5e1 !important;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

/* 顶层 Utility Bar */
.header-utility {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 11.5px;
  color: #64748b;
  height: 38px;
  transition: all 0.3s ease;
}
.site-header--its.is-scrolled .header-utility {
  height: 0;
  opacity: 0;
  overflow: hidden;
  border-bottom: none;
}
.header-utility__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header-utility__left,
.header-utility__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-utility__right {
  margin-left: auto;
}
.utility-pulse {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #334155;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.utility-pulse__dot {
  width: 6.5px;
  height: 6.5px;
  border-radius: 50%;
  background: var(--c-kp-cyan, #0080D2);
  box-shadow: 0 0 8px rgba(0, 128, 210, 0.5);
  animation: utilPulse 2s infinite ease-in-out;
}
@keyframes utilPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}
.utility-divider {
  color: #cbd5e1;
  font-size: 11px;
}
.utility-link {
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.utility-link:hover {
  color: var(--c-kp-orange, #F06739);
}
.utility-tag {
  background: #ebf5ff;
  border: 1px solid #bae6fd;
  color: var(--c-kp-cyan, #0080D2);
  font-size: 10px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 3px;
  letter-spacing: 0.03em;
}
.utility-phone {
  color: var(--c-kp-orange, #F06739);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--f-mono, monospace);
  transition: color 0.2s ease;
}
.utility-phone:hover {
  color: var(--c-kp-orange-bright, #FF743B);
}

/* 主导航条与双 CTA */
.site-header--its .header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header--its .nav__link {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.header__actions--twin {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-nav-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 4px;
  border: 1.5px solid #0080D2;
  color: #0080D2;
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: #f0f9ff;
  transition: all 0.25s var(--ease-luxury);
}
.btn-nav-outline:hover {
  background: #F06739;
  border-color: #F06739;
  color: #ffffff;
  transform: translateY(-1px);
}
.btn-nav-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, #F06739 0%, #FF743B 100%);
  color: #ffffff;
  font-family: var(--f-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(240, 103, 57, 0.35);
  transition: all 0.25s var(--ease-luxury);
}
.btn-nav-solid:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #FF743B 0%, #F06739 100%);
  box-shadow: 0 6px 20px rgba(240, 103, 57, 0.5);
  filter: brightness(1.06);
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  display: block !important;
  height: clamp(38px, 4.0vh, 52px);
  width: auto;
  max-width: clamp(200px, 15vw, 280px);
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.06));
  transition: transform 0.3s var(--ease-luxury);
}
.logo:hover .logo__img {
  transform: scale(1.02);
}
.logo__fallback {
  display: none !important;
}
.nav__link {
  color: #1e293b !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.25s var(--ease-luxury);
}
.nav__link:hover {
  color: var(--c-kp-orange, #F06739) !important;
}
.lang-btn {
  color: #64748b !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.25s var(--ease-luxury);
}
.lang-btn:hover {
  color: var(--c-kp-orange, #F06739) !important;
  border-color: var(--c-kp-orange, #F06739) !important;
}
.lang-btn.active {
  background: linear-gradient(135deg, #0080D2, #004D98) !important;
  border-color: var(--c-kp-cyan, #0080D2) !important;
  color: #ffffff !important;
  font-weight: 700;
}

/* ── 2. 独特性按钮 UI ── */
/* 2.1 钛晶倒角流光主按钮 */
.btn--titanium-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 9999px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff !important;
  text-decoration: none;
  background: linear-gradient(135deg, #0080D2 0%, #004D98 100%);
  border: 1px solid rgba(240, 103, 57, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3),
              0 4px 18px rgba(0, 0, 0, 0.4),
              0 0 16px rgba(240, 103, 57, 0.25);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s var(--ease-luxury);
}
.btn--titanium-gold::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -130%;
  width: 60%;
  height: 200%;
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: rotate(25deg);
  pointer-events: none;
  transition: left 0.75s var(--ease-luxury);
}
.btn--titanium-gold:hover {
  transform: translateY(-2px);
  border-color: var(--c-kp-orange-bright, #FF743B);
  background: linear-gradient(135deg, #F06739 0%, #FF743B 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4),
              0 8px 25px rgba(0, 0, 0, 0.5),
              0 0 24px rgba(240, 103, 57, 0.45);
}
.btn--titanium-gold:hover::after {
  left: 140%;
}
.btn--titanium-gold .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-luxury);
  color: var(--c-kp-orange-bright, #FF743B);
}
.btn--titanium-gold:hover .arrow {
  transform: translateX(4px);
  color: #ffffff;
}

/* 2.2 磨砂透镜次级按钮 */
.btn--lens-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92) !important;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12),
              0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.35s var(--ease-luxury);
}
.btn--lens-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 103, 57, 0.6);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(240, 103, 57, 0.3);
}



/* ═══════════════════════════════════════════════════════════════
   CRKESHA HIGH-END RESTRAINED SYSTEM · 亚欧钛金与深海流光体系
   对标同行优秀案例 ym-trans · 极致呼吸感 · 精炼核心业务 · 拒绝杂乱堆叠
   ═══════════════════════════════════════════════════════════════ */

:root {
  --container: clamp(1280px, 86vw, 2200px);
  --container-max: clamp(1360px, 86vw, 2200px);
  --gutter: clamp(24px, 2.5vw, 56px);

  /* 4K & 全分辨率拱门天幕与 Slogan 流体参数 */
  --hero-content-top: clamp(110px, 12.5vh, 195px);
  --slogan-font-size: clamp(52px, 5.6vw, 134px);
  --slogan-lh: calc(var(--slogan-font-size) * 0.92);
  --slogan-gap: clamp(14px, 1.8vh, 32px);
  
  /* 地球大圆弧天幕底边(Apex)：精准对齐 Line 1 的底部切线 */
  --hero-canopy-base: calc(var(--hero-content-top) + var(--slogan-lh) + 4px);
  --hero-arch-height: clamp(160px, 20vh, 320px);
}

@media (min-width: 1921px) {
  :root {
    --container: clamp(1600px, 84vw, 2560px);
    --container-max: clamp(1600px, 84vw, 2560px);
    --gutter: clamp(36px, 3vw, 72px);
  }
}

.container--clean {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* 专属清爽矢量 SVG 图标 */
.crk-clean-svg {
  width: 26px;
  height: 26px;
  display: block;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-luxury);
}
.core-biz-item:hover .crk-clean-svg,
.core-biz-item.is-active .crk-clean-svg {
  transform: scale(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   HERO BANNER · 极简奢品晨曦大片 · 极致克制与留白
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   HERO ITS · 对标 ITS Logistics 顶奢架构 (Upward Arch + 3D Slogan + Clean Tabs + Timeline)
   ═══════════════════════════════════════════════════════════════ */
.hero-its {
  position: relative;
  height: clamp(800px, 88vh, 1260px);
  min-height: clamp(760px, 84vh, 1100px);
  max-height: 1320px;
  background: #f8fafc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* 1. 背景 4 屏图片轮播画廊 */
.hero-its-gallery {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-its-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.hero-its-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.hero-its-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 7s cubic-bezier(0.1, 0.2, 0.3, 1);
}
.hero-its-slide.is-active .hero-its-img {
  transform: scale(1.0);
}
.hero-its-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(15,23,42,0.18) 50%, rgba(15,23,42,0.78) 100%);
}

/* 2. 纯白通透不规则拱门天幕 (Arch Canopy · 真实向上拱起弧顶)
   底边(Apex)精准位于 Line 1 底部，使 Line 1 位于纯白底中，Line 2 穿出拱门落在大片实景图片上 */
.hero-its-canopy {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3;
  height: var(--hero-canopy-base);
  background: #ffffff;
  pointer-events: none;
}
.hero-its-arch-svg {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: var(--hero-arch-height);
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0, 77, 152, 0.08));
}

/* 3. 核心 3D 巨幕 Slogan (跨越拱门：白底上句 + 图片下句 · 方案一) 与 极简蓝色箭头 CTA */
.hero-its-content {
  position: absolute;
  top: var(--hero-content-top);
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 clamp(20px, 2.5vw, 40px);
}
.hero-its-slogan-wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-its-slogan {
  font-family: "Barlow", "Impact", "Arial Black", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 0.92;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 上句：完全置于纯白天幕 (#ffffff) 之中，呈现权威深黛石墨色 */
.hero-its-slogan__line1 {
  font-size: var(--slogan-font-size);
  color: #0f172a;
  display: block;
  margin-bottom: var(--slogan-gap);
  text-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
}
/* 下句：穿过拱门弧顶，完全坐落于下方大片实景图片上 (立体纵深质感) */
.hero-its-slogan__line2 {
  font-size: var(--slogan-font-size);
  color: #ffffff;
  display: block;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.6),
    0 6px 20px rgba(0, 0, 0, 0.8),
    0 16px 40px rgba(0, 0, 0, 0.9);
}

/* 极简无边框 CTA：一个蓝色圆形箭头 + 纯净文字 (位于纯白天幕之中) */
.hero-its-quickcta {
  margin-top: clamp(20px, 2.4vh, 36px);
  display: flex;
  justify-content: center;
}
.hero-its-link-cta {
  display: inline-flex;
  align-items: center;
  gap: clamp(10px, 0.9vw, 16px);
  padding: 6px 14px;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-its-link-cta:hover {
  opacity: 0.92;
  transform: translateX(4px);
}
.hero-its-link-icon {
  width: clamp(34px, 2.2vw, 48px);
  height: clamp(34px, 2.2vw, 48px);
  border-radius: 50%;
  background: var(--c-kp-cyan, #0080D2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 128, 210, 0.35);
  flex-shrink: 0;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.hero-its-link-icon svg {
  width: clamp(15px, 1.0vw, 22px);
  height: clamp(15px, 1.0vw, 22px);
}
.hero-its-link-cta:hover .hero-its-link-icon {
  background: var(--c-kp-orange, #F06739);
  box-shadow: 0 4px 18px rgba(240, 103, 57, 0.45);
  transform: scale(1.08);
}
.hero-its-link-text {
  font-family: var(--f-body, sans-serif);
  font-size: clamp(15px, 1.05vw, 22px);
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
  transition: color 0.25s ease;
}
.hero-its-link-cta:hover .hero-its-link-text {
  color: #ffaa85;
}

/* 4. 底部 4 栏交互展台与金佳活力橙时间轴 (Bottom Tabs · 4K & 大屏流体缩放) */
.hero-its-bottomtabs {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: clamp(24px, 3vh, 48px);
}
.hero-its-bottomtabs__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(32px, 3vw, 64px);
}
.hero-tabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.5vw, 48px);
  align-items: flex-end;
}
.hero-tab {
  cursor: pointer;
  padding: 0 0 14px 0;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}
.hero-tab__head {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.hero-tab__index {
  font-family: var(--f-mono, monospace);
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  transition: color 0.25s;
}
.hero-tab.is-active .hero-tab__index {
  color: var(--c-kp-orange-bright, #FF743B);
  text-shadow: 0 0 10px rgba(255, 116, 59, 0.6);
}
.hero-tab__title {
  font-family: var(--f-head);
  font-size: clamp(13.5px, 1.0vw, 20px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.85);
  transition: color 0.25s ease;
}
.hero-tab.is-active .hero-tab__title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
}
.hero-tab__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.hero-tab.is-active .hero-tab__body {
  max-height: 160px;
  opacity: 1;
}
.hero-tab__desc {
  font-size: clamp(12px, 0.86vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  margin: clamp(6px, 0.8vh, 12px) 0 clamp(10px, 1.2vh, 16px) 0;
}
.hero-tab__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-head);
  font-size: clamp(11.5px, 0.78vw, 16px);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-kp-orange, #F06739);
  text-decoration: none;
  transition: all 0.2s ease;
}
.hero-tab__cta:hover {
  color: #ffffff;
}
.hero-tab__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.hero-tab__cta:hover .hero-tab__arrow {
  transform: translateX(4px);
}

/* 全局金佳活力橙时间轴进度线 */
.hero-timeline {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  margin-top: 4px;
}
.hero-timeline-progress {
  position: absolute;
  top: -1px;
  left: 0;
  height: 4px;
  background: var(--c-kp-orange, #F06739);
  box-shadow: 0 0 12px var(--c-kp-orange-bright, #FF743B);
  transition: width 0.1s linear;
}
.hero-timeline-dot {
  position: absolute;
  right: -5px;
  top: -4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-kp-orange-bright, #FF743B);
  box-shadow: 0 0 12px var(--c-kp-orange-bright, #FF743B), 0 0 22px var(--c-kp-orange, #F06739);
}

/* 响应式调整 */
@media (max-width: 1024px) {
  .hero-tabs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .header-utility {
    display: none;
  }
  .header__actions--twin .btn-nav-outline {
    display: none;
  }
  .hero-its {
    min-height: 680px;
    height: auto;
  }
  .hero-its-canopy {
    height: 160px;
  }
  .hero-its-arch-svg {
    height: 60px;
  }
  .hero-its-content {
    position: relative;
    top: auto;
    padding-top: 110px;
    margin-bottom: 24px;
  }
  .hero-its-slogan__single {
    font-size: clamp(26px, 6.8vw, 40px);
    white-space: normal;
    line-height: 1.18;
  }
  .hero-tabs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero-tab.is-active .hero-tab__body {
    max-height: 200px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   底部核心数据跑马灯 · 保持原版数据标签格式 · 4K & 大屏全自适应流体排版 (纯CSS硬件加速)
   ═══════════════════════════════════════════════════════════════ */
.hero-clean {
  height: clamp(700px, calc(100vh - 76px), 920px) !important;
  max-height: 920px !important;
}

.hero-stats-band {
  position: relative;
  z-index: 3;
  width: 100%;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(24px, 2.4vw, 48px) 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* 居中视口：保留两边适当空间，绝对不紧贴屏幕边缘 */
.hero-stats-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(32px, 3.5vw, 64px);
  position: relative;
}

.hero-stats-viewport {
  overflow: hidden;
  width: 100%;
}

.hero-stats-track {
  display: flex;
  align-items: center;
  width: 400%;
  animation: statsStepSlideRight 32s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  will-change: transform;
}

.hero-stats-track:hover {
  animation-play-state: paused;
}

/* 保持原版经典数据标签格式：大数字 + 下方说明标签 + 优雅细分界线 (4张卡片占满视口) */
.stat-item {
  flex: 0 0 6.25%;
  width: 6.25%;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 0.9vh, 14px);
  padding: 0 clamp(20px, 2vw, 36px);
  border-right: 1px solid #e2e8f0;
  box-sizing: border-box;
  transition: transform 0.3s var(--ease-luxury);
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-num {
  font-family: var(--f-head);
  font-size: clamp(34px, 3.0vw, 64px);
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
}

.stat-num small {
  font-size: clamp(15px, 1.1vw, 24px);
  color: var(--c-kp-orange, #F06739);
  font-weight: 700;
  margin-left: 4px;
}

.stat-num--cyan {
  color: var(--c-kp-cyan, #0080D2) !important;
}

.stat-lbl {
  font-size: clamp(12.5px, 0.95vw, 18px);
  color: #64748b;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* 核心步进跑马灯动画：从左往右从容滑动，停驻 3.2 秒，平滑滑动 0.8 秒，尊贵克制 */
@keyframes statsStepSlideRight {
  /* 卡片停驻 3.2 秒 */
  0%, 10.0% {
    transform: translate3d(-50%, 0, 0);
  }
  /* 向右平滑滑入新数据项 (0.8 秒) */
  12.5%, 22.5% {
    transform: translate3d(-43.75%, 0, 0);
  }
  /* 向右平滑滑入下一个 */
  25.0%, 35.0% {
    transform: translate3d(-37.5%, 0, 0);
  }
  /* 向右平滑滑入下一个 */
  37.5%, 47.5% {
    transform: translate3d(-31.25%, 0, 0);
  }
  /* 向右平滑滑入下一个 */
  50.0%, 60.0% {
    transform: translate3d(-25%, 0, 0);
  }
  /* 向右平滑滑入下一个 */
  62.5%, 72.5% {
    transform: translate3d(-18.75%, 0, 0);
  }
  /* 向右平滑滑入下一个 */
  75.0%, 85.0% {
    transform: translate3d(-12.5%, 0, 0);
  }
  /* 向右平滑滑入下一个 */
  87.5%, 97.5% {
    transform: translate3d(-6.25%, 0, 0);
  }
  /* 平滑归位至 0% (视觉与 -50% 100% 像素无缝衔接，无限从容循环) */
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1200px) {
  .hero-stats-track {
    width: 533.333%;
  }
  .stat-item {
    padding: 0 20px;
  }
}

@media (max-width: 860px) {
  .hero-stats-container {
    padding: 0 24px;
  }
  .hero-stats-track {
    width: 800%;
  }
  .stat-item {
    padding: 0 16px;
  }
}

@media (max-width: 580px) {
  .hero-stats-container {
    padding: 0 16px;
  }
  .hero-stats-track {
    width: 1600%;
  }
  .stat-item {
    border-right: none;
    padding: 0 10px;
  }
}


/* ═══════════════════════════════════════════════════════════════
   全局文字对比度高阶保证 · 纯净白底高清晰石墨色文字体系
   ═══════════════════════════════════════════════════════════════ */
.hero-clean .h1, .hero-clean .h2, .hero-clean h1, .hero-clean h2,
.core-biz-sec .h2, .core-biz-sec h2,
.core-adv-sec .h2, .core-adv-sec h2,
.office-showcase-sec .h2, .office-showcase-sec h2,
.marquee-sec .h2, .marquee-sec h2,
.netmap-sec .h2, .netmap-sec h2,
.values-dark .h2, .values-dark h2 {
  color: #0f172a !important;
}

.hero-clean .lede,
.core-biz-sec .lede,
.core-adv-sec .lede,
.office-showcase-sec .lede,
.netmap-sec .lede,
.values-dark .lede {
  color: #475569 !important;
}

.core-biz-sec .eyebrow,
.core-adv-sec .eyebrow,
.office-showcase-sec .eyebrow,
.marquee-sec .eyebrow,
.netmap-sec .eyebrow,
.values-dark .eyebrow {
  color: var(--c-kp-orange, #F06739) !important;
}

/* ═══════════════════════════════════════════════════════════════
   真实办公环境展示 · 浦东创业原点 (增强国际集团权威与信任)
   ═══════════════════════════════════════════════════════════════ */
.office-showcase-sec {
  background: #f8fafc;
  padding: clamp(70px, 8vw, 100px) 0;
  border-top: 1px solid #e2e8f0;
}
.office-gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 20px;
  margin-top: 36px;
}
.office-gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  background: #ffffff;
  transition: transform 0.35s var(--ease-luxury), border-color 0.35s var(--ease-luxury);
}
.office-gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 103, 57, 0.4);
}
.office-gallery-item--featured {
  grid-row: span 2;
}
.office-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-luxury);
}
.office-gallery-item:hover .office-gallery-img {
  transform: scale(1.04);
}
.office-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.88) 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
@media(max-width: 900px) {
  .office-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .office-gallery-item--featured {
    grid-row: span 1;
    height: 300px;
  }
  .office-gallery-item {
    height: 220px;
  }
}

@media(max-width: 1024px) {
  .hero-clean {
    min-height: auto;
    max-height: none;
    padding-top: 90px;
  }
  .hero-clean__widescreen {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px;
  }
  .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-divider {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   精炼 4 大核心业务展台 · 纯净白底现代展厅
   ═══════════════════════════════════════════════════════════════ */
.core-biz-sec {
  padding: clamp(70px, 8vw, 100px) 0;
  background: #ffffff;
  position: relative;
}
.core-biz-layout {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  margin-top: 40px;
}

.core-biz-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.core-biz-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.35s var(--ease-luxury);
  position: relative;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}
.core-biz-item:hover, .core-biz-item.is-active {
  background: #f0f7ff;
  border-color: #0080D2;
  transform: translateX(6px);
  box-shadow: 0 8px 25px rgba(0, 128, 210, 0.1);
}
.core-biz-item.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #F06739, #FF743B);
  box-shadow: 0 0 10px rgba(240, 103, 57, 0.4);
}
.core-biz-iconbox {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #f0f7ff;
  border: 1px solid #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s var(--ease-luxury);
}
.core-biz-item.is-active .core-biz-iconbox {
  background: #fff5f0;
  border-color: var(--c-kp-orange);
}
.core-biz-info {
  flex: 1;
}
.core-biz-head {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.core-biz-idx {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--c-kp-orange, #F06739);
}
.core-biz-title {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  transition: color 0.3s var(--ease-luxury);
}
.core-biz-item.is-active .core-biz-title {
  color: var(--c-kp-orange, #F06739);
}
.core-biz-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 8px;
}
.core-biz-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--c-kp-cyan, #0080D2);
  text-decoration: none;
  transition: transform 0.25s var(--ease-luxury);
}
.core-biz-item:hover .core-biz-link {
  transform: translateX(4px);
}

/* 右侧大画幅影院视窗 (对标同行的大图展台) */
.core-biz-viewport {
  height: 520px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  position: relative;
  background: #040810;
}
.core-biz-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-luxury), transform 0.45s var(--ease-luxury);
  transform: scale(1.02);
}
.core-biz-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.core-biz-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.05);
}
.core-biz-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 11, 19, 0.95) 0%, rgba(6, 11, 19, 0.4) 55%, rgba(6, 11, 19, 0.15) 100%);
}
.core-biz-slide__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
}
.core-biz-slide__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.core-biz-slide__tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #e2e8f0;
  font-size: 11.5px;
  font-weight: 700;
}
.core-biz-slide__h3 {
  font-family: var(--f-head);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.core-biz-slide__p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.85);
  margin-bottom: 20px;
  max-width: 580px;
}

/* ═══════════════════════════════════════════════════════════════
   核心优势卡片 · 4 大护城河 (对标同行 iadv)
   ═══════════════════════════════════════════════════════════════ */
.core-adv-sec {
  padding: clamp(60px, 7vw, 90px) 0;
  background: #f4f8fc;
  border-top: 1px solid #e2e8f0;
}
.core-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.core-adv-card {
  padding: 28px 24px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: all 0.35s var(--ease-luxury);
}
.core-adv-card:hover {
  background: #ffffff;
  border-color: rgba(240, 103, 57, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(240, 103, 57, 0.08);
}
.core-adv-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff5f0;
  border: 1px solid rgba(240, 103, 57, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.core-adv-card h3 {
  font-family: var(--f-head);
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.core-adv-card p {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

@media(max-width: 1024px) {
  .core-biz-layout {
    grid-template-columns: 1fr;
  }
  .core-biz-viewport {
    height: 400px;
  }
  .core-adv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 640px) {
  .core-adv-grid {
    grid-template-columns: 1fr;
  }
}


.compliance-architectural {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 30px 0;
}
.compliance-arch-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.compliance-arch-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.compliance-arch-code {
  font-family: var(--f-head);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 4px 8px;
  border-radius: 4px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  white-space: nowrap;
  margin-top: 2px;
}
.compliance-arch-content h4 {
  font-family: var(--f-head);
  font-size: 14.5px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.compliance-arch-content p {
  font-size: 12.5px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}
.compliance-arch-divider {
  width: 1px;
  height: 38px;
  background: #e2e8f0;
}
@media (max-width: 900px) {
  .compliance-arch-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .compliance-arch-divider {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════════════
   全球网络与走廊地图 · 纯白现代数智展厅视觉 (大气宽幅沉浸式)
   ═══════════════════════════════════════════════════════════════ */
.netmap-sec {
  padding: clamp(60px, 7vw, 90px) 0;
  background: #ffffff;
  border-top: none;
  position: relative;
}
.netmap-sec .container--wide {
  width: 100%;
  max-width: clamp(1280px, 88vw, 1580px);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 3.5vw, 48px);
  padding-right: clamp(20px, 3.5vw, 48px);
}
.netmap-sec .h2 {
  color: #0f172a !important;
  font-size: clamp(28px, 3vw, 40px);
}
.netmap-sec .lede {
  color: #475569 !important;
  font-size: clamp(15px, 1.15vw, 17px);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.netmap-sec .eyebrow {
  color: var(--c-kp-orange, #F06739) !important;
}

.netmap-card {
  width: 100%;
  max-width: 100%;
  margin: 36px auto 0;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.netmap-card__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
  gap: 16px;
}


.netmap-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0f172a;
  text-transform: uppercase;
}
.netmap-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGreen 2s infinite ease-in-out;
}

.netmap-corridors {
  display: flex;
  align-items: center;
  gap: 22px;
}
.netmap-legend-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.legend-color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.legend-color-dot--gold {
  background: #F06739;
  box-shadow: 0 0 8px #F06739;
}
.legend-color-dot--cyan {
  background: #0080D2;
  box-shadow: 0 0 8px #0080D2;
}

.netmap-svg-wrap {
  position: relative;
  width: 100%;
  background: #edf4fa;
  padding: 24px 28px 12px;
}
.netmap-svg-clean {
  width: 100%;
  height: auto;
  min-height: 480px;
  max-height: 600px;
  display: block;
}

.corridor-line--gold {
  animation: corridorDash 20s linear infinite;
}
.corridor-line--cyan {
  animation: corridorDash 28s linear infinite reverse;
}
@keyframes corridorDash {
  to { stroke-dashoffset: -240; }
}

.node-radar {
  animation: radarWave 2.5s infinite ease-out;
  transform-origin: center;
}
@keyframes radarWave {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.8); opacity: 0; }
}

.netmap-card__bottombar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
}
.netmap-stat-col {
  padding: 22px 32px;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.netmap-stat-col:last-child {
  border-right: none;
}
.netmap-stat-val {
  font-family: var(--f-head);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.netmap-stat-val small {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  margin-left: 3px;
}
.netmap-stat-lbl {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

@media(max-width: 768px) {
  .netmap-sec .container--wide {
    padding-left: 16px;
    padding-right: 16px;
  }
  .netmap-svg-wrap {
    padding: 14px 10px 6px;
  }
  .netmap-svg-clean {
    min-height: 280px;
  }
  .netmap-card__bottombar {
    grid-template-columns: repeat(2, 1fr);
  }
  .netmap-stat-col {
    padding: 16px 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   战略伙伴跑马灯 · 洁净白底现代药丸徽章
   ═══════════════════════════════════════════════════════════════ */
.marquee-sec {
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}
.marquee-pill--luxury {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}
.marquee-brand-dot {
  background: var(--c-kp-orange, #F06739) !important;
  box-shadow: 0 0 6px rgba(240, 103, 57, 0.4) !important;
}

/* ═══════════════════════════════════════════════════════════════
   核心理念与价值观 · 纯净白底高品质信赖感
   ═══════════════════════════════════════════════════════════════ */
.values-dark {
  background: #ffffff !important;
  color: #0f172a !important;
  border-top: 1px solid #e2e8f0 !important;
}
.values-dark .h2, .values-dark h2 {
  color: #0f172a !important;
}
.values-dark .lede {
  color: #475569 !important;
}
.values-dark .value-row {
  border-top: 1px solid #e2e8f0 !important;
}
.values-dark .value-row__num {
  color: var(--c-kp-orange, #F06739) !important;
}
.values-dark h3 {
  color: #0f172a !important;
}
.values-dark p {
  color: #475569 !important;
}

/* ═══════════════════════════════════════════════════════════════
   新闻资讯与资源 · 纯白卡片与浅灰边框
   ═══════════════════════════════════════════════════════════════ */
.section--soft {
  background: #f8fafc !important;
  border-top: 1px solid #e2e8f0 !important;
}
.news-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04) !important;
}
.news-card:hover {
  border-color: rgba(240, 103, 57, 0.4) !important;
  box-shadow: 0 10px 28px rgba(240, 103, 57, 0.08) !important;
}
.news-card h3 {
  color: #0f172a !important;
}
.news-card p {
  color: #475569 !important;
}
.news-card__cat {
  background: #ebf5ff !important;
  border: 1px solid #bae6fd !important;
  color: var(--c-kp-cyan, #0080D2) !important;
}

/* ═══════════════════════════════════════════════════════════════
   底部 CTA 活力带与金佳深海蓝权威压舱页脚
   ═══════════════════════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, #0080D2 0%, #004D98 100%) !important;
  border-top: 2px solid var(--c-kp-orange, #F06739) !important;
}
.cta-band__title {
  color: #ffffff !important;
}
.cta-band__sub {
  color: rgba(255, 255, 255, 0.92) !important;
}
.footer {
  background: #0a1e38 !important;
  border-top: 1px solid rgba(226, 232, 240, 0.08) !important;
}

/* ═══════════════════════════════════════════════════════════════
   子页面通用明亮通透视觉体系 (Subpage Light Theme Overhaul)
   ═══════════════════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F4F8FC 100%) !important;
  color: #0F172A !important;
  border-bottom: 1px solid #E2E8F0 !important;
  padding: clamp(48px, 6vw, 76px) 0 !important;
}
.page-hero .breadcrumb {
  margin-bottom: 16px;
}
.page-hero .breadcrumb a {
  color: #64748B !important;
  transition: color var(--dur-fast);
}
.page-hero .breadcrumb a:hover {
  color: var(--c-kp-orange, #F06739) !important;
}
.page-hero .breadcrumb .sep {
  color: #94A3B8 !important;
}
.page-hero .breadcrumb [aria-current="page"] {
  color: #0F172A !important;
  font-weight: 600;
}
.page-hero .eyebrow {
  color: var(--c-kp-orange, #F06739) !important;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.page-hero .h1, .page-hero h1 {
  color: #0F172A !important;
  font-weight: 800;
}
.page-hero .lede {
  color: #475569 !important;
}

/* 子页面标准 header CTA 按钮统一为金佳活力橙 */
.site-header .btn--gold,
.site-header .header__cta {
  background: linear-gradient(135deg, #FF743B 0%, #F06739 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid #F06739 !important;
  box-shadow: 0 4px 14px rgba(240, 103, 57, 0.28) !important;
  font-weight: 700 !important;
}
.site-header .btn--gold:hover,
.site-header .header__cta:hover {
  background: #e0582a !important;
  box-shadow: 0 6px 18px rgba(240, 103, 57, 0.4) !important;
}

/* 子页面通用步骤 steps 高亮色 */
.steps__num {
  background: linear-gradient(135deg, var(--c-kp-cyan, #0080D2), #004D98) !important;
  color: #ffffff !important;
}

/* 子页面卡片与高光统一 */
.service-card:hover, .tech-card:hover, .loc-card:hover {
  border-color: rgba(240, 103, 57, 0.4) !important;
}

/* 联系页侧边栏统一为深海蓝或白底高质感 */
.contact-sidebar {
  background: linear-gradient(135deg, #0A1E38 0%, #004D98 100%) !important;
  color: #FFFFFF !important;
  border: 1px solid rgba(0, 128, 210, 0.2) !important;
  border-radius: 14px !important;
}
.contact-sidebar h3, .contact-sidebar h4 {
  color: #FFFFFF !important;
}
.contact-sidebar p, .contact-sidebar a {
  color: rgba(255, 255, 255, 0.88) !important;
}

/* 公司介绍页的深色区转为纯净通透调性 */
.company-history-sec, .section--deep.on-dark {
  background: #F8FAFC !important;
  color: #0F172A !important;
  border-top: 1px solid #E2E8F0 !important;
}
.section--deep.on-dark .h2, .section--deep.on-dark h2,
.section--deep.on-dark .h3, .section--deep.on-dark h3 {
  color: #0F172A !important;
}
.section--deep.on-dark .lede, .section--deep.on-dark p {
  color: #475569 !important;
}

/* ═══════════════════════════════════════════════════════════════
   KP-JOURNEY · 金佳发展历程流光时光长卷 (简约高级 · 动效微交互 · 零遮挡)
   ═══════════════════════════════════════════════════════════════ */
.section--timeline {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 50%, #F4F8FC 100%) !important;
  padding: clamp(64px, 8vh, 120px) 0 !important;
  position: relative;
  overflow: hidden;
}
.container--timeline {
  max-width: clamp(1000px, 82vw, 1440px) !important;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.kp-journey {
  position: relative;
  margin-top: clamp(48px, 6vh, 80px);
  padding: 20px 0;
}

/* 1. 动态发光主轴线 (Glowing Axis) */
.kp-journey__axis {
  position: absolute;
  top: 40px;
  bottom: 60px;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: #E2E8F0;
  border-radius: 999px;
  overflow: hidden;
}
.kp-journey__axis-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    var(--c-kp-cyan, #0080D2) 0%, 
    var(--c-kp-blue, #004D98) 40%, 
    var(--c-kp-cyan, #0080D2) 75%, 
    var(--c-kp-orange, #F06739) 100%
  );
  opacity: 0.85;
}
/* 持续流动的时间脉冲光束 */
.kp-journey__axis-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.95) 50%, 
    rgba(255, 255, 255, 0) 100%
  );
  box-shadow: 0 0 16px rgba(0, 128, 210, 0.9);
  animation: axisFlow 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@keyframes axisFlow {
  0% { transform: translateY(-140px); opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { transform: translateY(1400px); opacity: 0; }
}

/* 2. 历程条目容器 */
.kp-journey__list {
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6.5vh, 80px);
  position: relative;
  z-index: 2;
}
.kp-journey__item {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}

/* 3. 居中节点与发光光圈 (Central Node) */
.kp-journey__node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--c-kp-cyan, #0080D2);
  box-shadow: 0 0 0 5px rgba(0, 128, 210, 0.18), 0 4px 12px rgba(0, 77, 152, 0.2);
  z-index: 5;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.kp-journey__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-kp-cyan, #0080D2);
  transition: transform 0.3s ease;
}
.kp-journey__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--c-kp-cyan, #0080D2);
  animation: nodePulse 2.8s ease-out infinite;
}
@keyframes nodePulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(0.9); opacity: 0; }
}
.kp-journey__item--future .kp-journey__node {
  border-color: var(--c-kp-orange, #F06739);
  box-shadow: 0 0 0 5px rgba(240, 103, 57, 0.2), 0 4px 14px rgba(240, 103, 57, 0.3);
}
.kp-journey__item--future .kp-journey__dot {
  background: var(--c-kp-orange, #F06739);
}
.kp-journey__item--future .kp-journey__pulse {
  border-color: var(--c-kp-orange, #F06739);
}

/* 4. 年份排印 (Year Display) */
.kp-journey__date {
  width: calc(50% - 60px);
  display: flex;
  flex-direction: column;
}
.kp-journey__year {
  font-family: var(--f-head, "Barlow", sans-serif);
  font-size: clamp(38px, 3.4vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--c-kp-blue, #004D98) 0%, var(--c-kp-cyan, #0080D2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}
.kp-journey__item--future .kp-journey__year {
  background: linear-gradient(135deg, var(--c-kp-orange, #F06739) 0%, #FF8C5A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.kp-journey__era {
  font-size: clamp(12.5px, 0.85vw, 14px);
  font-weight: 700;
  color: #64748B;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* 5. 历程核心卡片 (Journey Card) */
.kp-journey__card {
  width: calc(50% - 60px);
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: clamp(20px, 2.2vw, 32px) clamp(22px, 2.5vw, 36px);
  box-shadow: 0 10px 30px rgba(0, 77, 152, 0.04);
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.kp-journey__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--c-kp-blue, #004D98);
  background: rgba(0, 128, 210, 0.08);
  border: 1px solid rgba(0, 128, 210, 0.16);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}
.kp-journey__item--future .kp-journey__badge {
  color: var(--c-kp-orange, #F06739);
  background: rgba(240, 103, 57, 0.08);
  border-color: rgba(240, 103, 57, 0.2);
}
.kp-journey__title {
  font-family: var(--f-head, sans-serif);
  font-size: clamp(17px, 1.2vw, 20px);
  font-weight: 700;
  color: #0F172A;
  line-height: 1.4;
  margin: 0 0 10px 0;
  transition: color 0.25s ease;
}
.kp-journey__desc {
  font-size: clamp(13.5px, 0.95vw, 15px);
  color: #475569;
  line-height: 1.65;
  margin: 0 0 16px 0;
}
.kp-journey__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.kp-pill {
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

/* 左右双侧对齐排版 (Alternating Alignment) */
.kp-journey__item--left {
  flex-direction: row;
}
.kp-journey__item--left .kp-journey__date {
  order: 2;
  margin-left: auto;
  padding-left: 28px;
  text-align: left;
}
.kp-journey__item--left .kp-journey__card {
  order: 1;
  margin-right: auto;
}

.kp-journey__item--right {
  flex-direction: row;
}
.kp-journey__item--right .kp-journey__date {
  order: 1;
  margin-right: auto;
  padding-right: 28px;
  text-align: right;
}
.kp-journey__item--right .kp-journey__card {
  order: 2;
  margin-left: auto;
}

/* 交互 Hover 动效 (Hover Effects) */
.kp-journey__item:hover .kp-journey__card {
  transform: translateY(-5px);
  border-color: rgba(0, 128, 210, 0.35);
  box-shadow: 0 20px 45px rgba(0, 77, 152, 0.12);
}
.kp-journey__item--future:hover .kp-journey__card {
  border-color: rgba(240, 103, 57, 0.4);
  box-shadow: 0 20px 45px rgba(240, 103, 57, 0.14);
}
.kp-journey__item:hover .kp-journey__node {
  transform: translate(-50%, -50%) scale(1.22);
  box-shadow: 0 0 0 8px rgba(0, 128, 210, 0.25), 0 6px 20px rgba(0, 77, 152, 0.35);
}
.kp-journey__item--future:hover .kp-journey__node {
  box-shadow: 0 0 0 8px rgba(240, 103, 57, 0.25), 0 6px 20px rgba(240, 103, 57, 0.35);
}
.kp-journey__item:hover .kp-journey__title {
  color: var(--c-kp-blue, #004D98);
}
.kp-journey__item--future:hover .kp-journey__title {
  color: var(--c-kp-orange, #F06739);
}
.kp-journey__item:hover .kp-journey__year {
  transform: scale(1.05);
}
.kp-journey__item:hover .kp-pill {
  background: rgba(0, 128, 210, 0.06);
  border-color: rgba(0, 128, 210, 0.25);
  color: var(--c-kp-blue, #004D98);
}
.kp-journey__item--future:hover .kp-pill {
  background: rgba(240, 103, 57, 0.06);
  border-color: rgba(240, 103, 57, 0.25);
  color: var(--c-kp-orange, #F06739);
}

/* 响应式适配 (Responsive < 920px) */
@media (max-width: 920px) {
  .kp-journey__axis {
    left: 20px;
    transform: none;
  }
  .kp-journey__node {
    left: 20px;
    top: 36px;
    transform: translateX(-50%);
  }
  .kp-journey__item:hover .kp-journey__node {
    transform: translateX(-50%) scale(1.2);
  }
  .kp-journey__item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 52px;
  }
  .kp-journey__date {
    width: 100% !important;
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    text-align: left !important;
    order: 1 !important;
  }
  .kp-journey__year {
    font-size: 32px;
  }
  .kp-journey__card {
    width: 100% !important;
    margin: 0 !important;
    order: 2 !important;
  }
}



/* 隐藏所有多余小标题（用户要求只保留主标题） */
.eyebrow { display: none !important; }

/* ==========================================================================
   Apple 风格极简海陆空多式联运 3D 逐帧推演交互引擎 (Multimodal Scrollytelling)
   纯白背景、无卡片边框、无播放器 UI、吸顶视口 100vh、纯白影棚悬浮
   ========================================================================== */

.scrolly-multimodal-sec {
  position: relative;
  width: 100%;
  height: 300vh; /* 滚动总高，提供丝滑手感 */
  background: #ffffff; /* 与整站纯白基调完全统一 */
  color: #0f172a;
  overflow: visible;
}

/* 吸顶视口：在 300vh 期间保持居中锁定，无任何外框边界 */
.scrolly-multimodal-sec .scrolly-sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
  background: #ffffff;
}

.scrolly-multimodal-sec .scrolly-apple-layout {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0 clamp(36px, 7vw, 130px);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

/* 全景极简 Canvas 3D 视界 (全屏 100vw x 100vh，无任何边界) */
.scrolly-multimodal-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.multimodal-apple-canvas {
  width: 100%;
  height: 100%;
  display: block;
  background: #ffffff;
  border: none;
  box-shadow: none;
  border-radius: 0;
  /* 上下边缘自然羽化融入整站白底，彻底消除生硬横切边界线，载具居中 100% 原始质感不受影响 */
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 80px, #000 calc(100% - 80px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 80px, #000 calc(100% - 80px), transparent 100%);
}

/* 左侧：Apple 风格极简文案叙事区 (纯粹无框沉浸设计，自然呼吸融入背景) */
.scrolly-multimodal-sec .scrolly-text-column {
  position: relative;
  width: clamp(320px, 28vw, 420px);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 15;
  pointer-events: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
}

/* 原位堆叠容器 (Apple 标志性淡入淡出与位移) */
.scrolly-multimodal-sec .scrolly-steps-track {
  position: relative;
  width: 100%;
  min-height: 180px;
}

/* 每一个独立的叙事步骤 */
.scrolly-multimodal-sec .scrolly-step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.scrolly-multimodal-sec .scrolly-step.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

.scrolly-multimodal-sec .scrolly-step.is-passed {
  opacity: 0;
  transform: translateY(-24px) scale(0.98);
  filter: blur(3px);
  pointer-events: none;
}

.scrolly-multimodal-sec .scrolly-step-title {
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 800;
  color: var(--c-kp-orange, #F06739);
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 16px 0;
}

.scrolly-multimodal-sec .scrolly-step-desc {
  font-size: clamp(15px, 1.05vw, 17px);
  color: #475569;
  line-height: 1.75;
  margin: 0;
  max-width: 440px;
  transition: color 0.4s ease;
}

.scrolly-multimodal-sec .scrolly-step.is-active .scrolly-step-desc {
  color: #334155;
}

/* 移动端响应式适配 */
@media (max-width: 1024px) {
  .scrolly-multimodal-sec {
    height: auto;
    min-height: auto;
    padding: 60px 0;
  }
  .scrolly-multimodal-sec .scrolly-sticky-viewport {
    position: relative;
    height: auto;
  }
  .scrolly-multimodal-sec .scrolly-apple-layout {
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
  }
  .scrolly-multimodal-stage {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    margin-bottom: 30px;
  }
  .scrolly-multimodal-sec .multimodal-apple-canvas {
    transform: none;
    object-fit: contain;
  }
  .scrolly-multimodal-sec .scrolly-text-column {
    position: relative;
    width: 100%;
    max-width: 540px;
  }
  .scrolly-multimodal-sec .scrolly-steps-track {
    min-height: 240px;
  }
}
