/* ==========================================================================
   CHS® — Design System v2.2 "Tech Blue × Eco Green"
   科技冷白底 · 品牌蓝（对齐 CHS Logo 蓝）× 环保绿融合 · B2B 工业风 · 高转化
   --------------------------------------------------------------------------
   DESIGN TOKENS（开发落地标注）
   色彩:
     Paper      #FFFFFF  主背景（科技纯白）
     Paper-2    #F2F5FA  次级背景（冷调浅灰蓝 · 分区交替）
     Ink        #0F1522  主文字（冷调近黑）
     Ink/72     文本次级 / Ink/55 辅助说明
     Blue       #0A3D91  品牌主色（钴蓝 · 对齐 logo）
     Blue-Deep  #06204E  深色分区背景（藏青）
     Azure      #2F6BFF  信号色（CTA/高亮/交互强调）
     Azure-300  #6E9BFF  深色底上的强调文字色
     Eco        #00A868  环保绿（可持续/循环经济专属强调）
     Eco-Deep   #00804E  环保绿深色（浅底文字用）
     Eco-300    #3DD598  深色底上的环保绿文字
     Hairline   Ink @14% 分隔线
   字体:
     Latin/数字: "Space Grotesk" / 中文: "Noto Sans SC" → PingFang SC
     Display 84 / H1 56 / H2 40 / H3 22 / Body-L 18 / Body 15 / Caption 12(+12%字距)
   间距: 4px 基数 → 4/8/12/16/24/32/48/64/96/128/160
   网格: 12列 / 容器 1320px / 列距 24px / 段落内距 72px(桌面) 48px(移动)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700&display=swap');

:root {
  /* -- 色彩 Token -- */
  --paper: #FFFFFF;
  --paper-2: #F2F5FA;
  --ink: #0F1522;
  --ink-72: rgba(15, 21, 34, 0.72);
  --ink-55: rgba(15, 21, 34, 0.55);
  --blue: #0A3D91;
  --blue-deep: #06204E;
  --blue-tint: rgba(10, 61, 145, 0.08);
  --azure: #2F6BFF;
  --azure-300: #6E9BFF;
  --azure-ink: #FFFFFF;
  --eco: #00A868;
  --eco-deep: #00804E;
  --eco-300: #3DD598;
  --eco-tint: rgba(0, 168, 104, 0.10);
  --hairline: rgba(15, 21, 34, 0.14);
  --hairline-strong: rgba(15, 21, 34, 0.28);
  --hairline-invert: rgba(255, 255, 255, 0.18);
  --paper-invert-72: rgba(255, 255, 255, 0.78);
  --paper-invert-55: rgba(255, 255, 255, 0.6);

  /* -- 字体 Token -- */
  --font-latin: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;
  --font-cn: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'Space Grotesk', 'SF Mono', Menlo, monospace;

  /* -- 字阶 Token (px / line-height / letter-spacing) -- */
  --fs-display: clamp(44px, 6.5vw, 84px);   /* 84/0.98/-0.02em  W600 */
  --fs-h1: clamp(34px, 4vw, 56px);          /* 56/1.05/-0.01em  W600 */
  --fs-h2: clamp(26px, 3vw, 40px);          /* 40/1.15/-0.01em  W600 */
  --fs-h3: 22px;                            /* 22/1.3/0          W600 */
  --fs-body-lg: 18px;                       /* 18/1.7/0          W400 */
  --fs-body: 15px;                          /* 15/1.7/0          W400 */
  --fs-caption: 12px;                       /* 12/1.5/+0.12em    W500 大写 */

  /* -- 间距 Token (4px 基数) -- */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px;  --sp-10: 128px; --sp-11: 160px;

  /* -- 布局 Token -- */
  --container: 1320px;
  --gutter: 24px;
  --header-h: 76px;
  --radius: 2px;          /* 极简：近直角 */
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.35s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-cn);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

::selection { background: var(--azure); color: var(--azure-ink); }

/* ============ 布局 ============ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.section { padding: 72px 0; }
.section-tight { padding: 56px 0; }
.bg-paper2 { background: var(--paper-2); }
.bg-blue { background: var(--blue-deep); color: var(--paper); }
.bg-azure { background: var(--azure); color: var(--azure-ink); }
.bg-azure .eyebrow { color: rgba(255, 255, 255, 0.78); }
.bg-azure .eyebrow::before { background: #FFFFFF; }
.bg-azure .btn-primary { background: #FFFFFF; color: var(--blue); }
.bg-azure .btn-primary:hover { background: var(--ink); color: #FFFFFF; }
.bg-azure .sec-desc, .bg-azure .cta-sub { color: rgba(255, 255, 255, 0.88); }

/* 章节头：编号眉标 + 标题 */
.sec-head { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); margin-bottom: var(--sp-6); }
.sec-head.split { grid-template-columns: 1fr 1fr; align-items: end; gap: var(--sp-6); }
.eyebrow {
  font-family: var(--font-latin);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-55);
  display: flex; align-items: center; gap: var(--sp-3);
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--ink); }
.dark .eyebrow { color: var(--paper-invert-55); }
.dark .eyebrow::before { background: var(--azure); }
.eyebrow.eco { color: var(--eco-deep); }
.eyebrow.eco::before { background: var(--eco); }
.dark .eyebrow.eco { color: var(--eco-300); }
.dark .eyebrow.eco::before { background: var(--eco-300); }
.sec-title {
  font-family: var(--font-cn);
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.sec-desc { font-size: var(--fs-body-lg); line-height: 1.7; color: var(--ink-72); max-width: 560px; }
.dark .sec-desc { color: var(--paper-invert-72); }

/* ============ 顶部导航 ============ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  border-bottom: 1px solid transparent;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--hairline);
}
.header-on-dark.scrolled { background: rgba(6, 32, 78, 0.92); border-bottom-color: var(--hairline-invert); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-word {
  font-family: var(--font-latin);
  font-size: 26px; font-weight: 700; letter-spacing: -0.02em;
}
.brand-reg { font-family: var(--font-latin); font-size: 10px; align-self: flex-start; margin-top: 6px; opacity: 0.5; }
.brand-sub { font-size: 11px; letter-spacing: 0.3em; color: var(--ink-55); text-transform: uppercase; }
.header-on-dark .brand-word { color: var(--paper); }
.header-on-dark .brand-sub { color: var(--paper-invert-55); }

.main-nav { display: flex; gap: var(--sp-2); }
.main-nav a {
  font-size: 14px; font-weight: 500;
  padding: 8px 14px;
  color: var(--ink-72);
  position: relative;
}
.main-nav a::after {
  content: ''; position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1.5px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--ink); }
.header-on-dark .main-nav a { color: var(--paper-invert-72); }
.header-on-dark .main-nav a:hover, .header-on-dark .main-nav a.active { color: var(--paper); }
.header-on-dark .main-nav a::after { background: var(--azure); }

.nav-right { display: flex; align-items: center; gap: var(--sp-4); }
.lang-switch { display: flex; align-items: center; gap: 0; font-family: var(--font-latin); font-size: 13px; font-weight: 500; }
.lang-switch button { padding: 4px 8px; color: var(--ink-55); }
.lang-switch button.active { color: var(--blue); text-decoration: underline; text-underline-offset: 4px; }
.header-on-dark .lang-switch button { color: var(--paper-invert-55); }
.header-on-dark .lang-switch button.active { color: var(--azure-300); }

.menu-toggle { display: none; font-size: 22px; color: var(--ink); width: 40px; height: 40px; }
.header-on-dark .menu-toggle { color: var(--paper); }

/* ============ 按钮 ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-cn);
  font-size: 15px; font-weight: 500;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.btn .arr { font-family: var(--font-latin); transition: transform var(--t) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--blue); color: var(--paper); }
.btn-primary:hover { background: var(--ink); }
.btn-azure { background: var(--azure); color: var(--azure-ink); }
.btn-azure:hover { background: var(--blue); }
.btn-ghost { border: 1px solid var(--hairline-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); }
.btn-ghost-invert { border: 1px solid var(--hairline-invert); color: var(--paper); }
.btn-ghost-invert:hover { border-color: var(--paper); }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============ 首页 Hero · 全幅大图视觉 ============ */
.hero-visual {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  z-index: 0;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(239, 243, 248, 0.7) 44%, rgba(239, 243, 248, 0.24) 62%, rgba(239, 243, 248, 0) 80%);
}
.hero-bar {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sp-8);
  min-height: calc(100vh - var(--header-h));
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-10);
}
.hero-logo { display: flex; align-items: center; gap: var(--sp-5); flex-shrink: 0; }
.hl-logo {
  width: 110px; height: 110px; flex-shrink: 0;
  object-fit: cover; border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 0 1px rgba(10, 61, 145, 0.16), 0 18px 40px -14px rgba(6, 32, 78, 0.3);
}
.hl-word { display: flex; flex-direction: column; gap: 4px; }
.hl-name {
  font-family: var(--font-latin);
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue);
  line-height: 1;
  text-shadow: 0 2px 20px rgba(255, 255, 255, 0.6);
}
.hl-name sup { font-size: 0.26em; font-weight: 500; opacity: 0.6; vertical-align: super; }
.hl-sub {
  font-family: var(--font-latin);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(10, 61, 145, 0.72);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.7);
}
.hero-slogan { max-width: 580px; text-align: left; text-shadow: 0 2px 24px rgba(255, 255, 255, 0.8); }
.slogan-title {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.slogan-acc { color: var(--blue); }
.slogan-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(10, 61, 145, 0.85);
  font-family: var(--font-latin);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.7);
}

/* 数据条（hairline 分隔，非卡片） */
.stats-strip {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-cell { padding: var(--sp-7) var(--sp-5); border-left: 1px solid var(--hairline); }
.stat-cell:first-child { border-left: none; padding-left: 0; }
.stat-num { font-family: var(--font-latin); font-size: clamp(40px, 4.5vw, 64px); font-weight: 600; line-height: 1; letter-spacing: -0.02em; margin-bottom: var(--sp-2); }
.stat-num small { font-size: 0.42em; font-weight: 500; color: var(--blue); margin-left: 2px; }
.stat-label { font-size: 13px; color: var(--ink-55); }
.stat-cell.eco .stat-num small { color: var(--eco); }
.stat-cell.eco .stat-num { position: relative; }
.stat-cell.eco .stat-num::after { content: ''; display: block; width: 32px; height: 2px; background: var(--eco); margin-top: var(--sp-2); }

/* ============ 品牌跑马灯 ============ */
.marquee { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); overflow: hidden; padding: var(--sp-5) 0; }
.marquee-track { display: flex; gap: var(--sp-8); width: max-content; animation: marquee 36s linear infinite; }
.marquee-item {
  font-family: var(--font-latin);
  font-size: 20px; font-weight: 500; letter-spacing: 0.02em;
  color: var(--ink-55); white-space: nowrap;
  display: flex; align-items: center; gap: var(--sp-8);
}
.marquee-item::after { content: '·'; color: var(--ink-55); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ 全球网络（深色区） ============ */
.network-map { margin: var(--sp-6) 0; }
.network-map img { width: 100%; height: auto; display: block; }
.network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: center; }
.network-visual { position: relative; padding: var(--sp-6) 0; }
.arc-svg { width: 100%; height: auto; }
.arc-node {
  font-family: var(--font-latin);
  fill: var(--paper);
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em;
}
.arc-coord { font-family: var(--font-latin); fill: var(--paper-invert-55); font-size: 10px; letter-spacing: 0.08em; }
.arc-dot { fill: var(--azure); }
.arc-ring { fill: none; stroke: var(--azure); stroke-opacity: 0.4; }
.arc-path { fill: none; stroke: var(--azure); stroke-width: 1.5; stroke-dasharray: 4 6; animation: dashmove 1.6s linear infinite; }
@keyframes dashmove { to { stroke-dashoffset: -20; } }

.loc-list { display: flex; flex-direction: column; }
.loc-item {
  display: grid; grid-template-columns: 64px 1fr; gap: var(--sp-4);
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--hairline-invert);
}
.loc-item:last-child { border-bottom: 1px solid var(--hairline-invert); }
.loc-code { font-family: var(--font-latin); font-size: 28px; font-weight: 600; color: var(--azure); }
.loc-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.loc-desc { font-size: 14px; line-height: 1.7; color: var(--paper-invert-55); }

/* ============ 愿景 ============ */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: center; }
.vision-visual img { width: 100%; aspect-ratio: 3/2.2; object-fit: cover; border-radius: var(--radius); }
.vision-quote {
  font-size: var(--fs-h2);
  font-weight: 700; line-height: 1.35; letter-spacing: -0.01em;
  margin: var(--sp-5) 0;
}
.vision-quote .mark { background: linear-gradient(transparent 66%, rgba(47, 107, 255, 0.25) 66%); }
.vision-slogan {
  font-family: var(--font-latin);
  font-size: clamp(20px, 2vw, 28px); font-weight: 600; letter-spacing: 0.02em;
  color: var(--blue);
  margin-bottom: var(--sp-5);
}
.vision-body p { font-size: var(--fs-body); line-height: 1.8; color: var(--ink-72); margin-bottom: var(--sp-4); }

/* 愿景 · 横屏全视觉（页尾） */
.vision-final { padding: 0 0 var(--sp-9); }
.vision-hero { width: 100%; overflow: hidden; }
.vision-hero img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.vision-body2 { max-width: 760px; margin: var(--sp-8) auto 0; text-align: center; padding: 0 var(--sp-4); }
.vision-body2 .eyebrow { justify-content: center; }
.vision-body2 .vision-slogan { text-align: center; margin-top: var(--sp-4); }
.vision-body2 .vision-quote { text-align: center; max-width: 680px; margin-left: auto; margin-right: auto; }
.vision-body2 p { font-size: var(--fs-body); line-height: 1.8; color: var(--ink-72); margin-bottom: var(--sp-4); max-width: 680px; margin-left: auto; margin-right: auto; }

/* ============ 资质（hairline 网格） ============ */
.quals-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
.qual-cell {
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: var(--sp-7) var(--sp-5) var(--sp-6);
  position: relative;
  transition: background var(--t) var(--ease);
}
.qual-cell:hover { background: var(--blue-tint); }
.qual-badge { width: 80px; height: 80px; margin-bottom: var(--sp-4); }
.qual-badge svg { width: 100%; height: 100%; display: block; }
.qual-idx { font-family: var(--font-latin); font-size: 13px; font-weight: 500; color: var(--ink-55); margin-bottom: var(--sp-7); display: block; }
.qual-name { font-family: var(--font-latin); font-size: 24px; font-weight: 600; margin-bottom: var(--sp-3); }
.qual-desc { font-size: 14px; line-height: 1.7; color: var(--ink-72); }

/* ============ 公司历程（横向时间线） ============ */
.journey-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.journey-cell { border-top: 2px solid var(--ink); padding-top: var(--sp-5); position: relative; }
.journey-cell::before {
  content: ''; position: absolute; top: -5px; left: 0;
  width: 8px; height: 8px; background: var(--blue);
}
.journey-year { font-family: var(--font-latin); font-size: clamp(40px, 4vw, 56px); font-weight: 600; letter-spacing: -0.02em; color: var(--blue); margin-bottom: var(--sp-2); }
.journey-place { font-size: var(--fs-caption); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-55); margin-bottom: var(--sp-4); }
.journey-cell h4 { font-size: 19px; font-weight: 700; margin-bottom: var(--sp-2); }
.journey-cell p { font-size: 14px; line-height: 1.75; color: var(--ink-72); }

/* ============ 视频模块 ============ */
.video-block { max-width: 1080px; margin: 0 auto; }
.video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}
.video-frame video {
  width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
}
.video-frame .video-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6, 32, 78, 0.24);
  transition: background var(--t) var(--ease);
  cursor: pointer;
}
.video-play:hover { background: rgba(6, 32, 78, 0.1); }
.video-play-btn {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--azure); color: var(--azure-ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; padding-left: 6px;
  transition: transform var(--t) var(--ease);
}
.video-play:hover .video-play-btn { transform: scale(1.08); }
.video-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-latin);
  font-size: 13px; color: var(--ink-55);
}
.video-meta b { color: var(--ink); font-weight: 600; }

/* ============ CTA ============ */
.cta-block { padding: var(--sp-10) 0; text-align: left; }
.cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-8); align-items: center; }
.cta-title { font-size: clamp(32px, 4.5vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin-bottom: var(--sp-4); }
.cta-sub { font-size: var(--fs-body-lg); line-height: 1.7; opacity: 0.85; max-width: 520px; }

/* ============ 页脚 ============ */
.site-footer { background: var(--blue-deep); color: var(--paper); padding: var(--sp-10) 0 var(--sp-6); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--sp-8); padding-bottom: var(--sp-9); border-bottom: 1px solid var(--hairline-invert); }
.footer-brand p { font-size: 14px; line-height: 1.8; color: var(--paper-invert-55); max-width: 300px; margin: var(--sp-4) 0 var(--sp-6); }
.footer-word { font-family: var(--font-latin); font-size: 34px; font-weight: 700; letter-spacing: -0.02em; }
.footer-col h5 {
  font-family: var(--font-latin);
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper-invert-55);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a { font-size: 14px; color: var(--paper-invert-72); }
.footer-col a:hover { color: var(--azure-300); }
.footer-bottom {
  padding-top: var(--sp-5);
  display: flex; justify-content: space-between; align-items: center; gap: var(--sp-4);
  font-size: 13px; color: var(--paper-invert-55);
  font-family: var(--font-latin);
  flex-wrap: wrap;
}
.eco-line { color: var(--eco-300); }

/* ============ 服务页 ============ */
.page-hero { padding: calc(var(--header-h) + var(--sp-9)) 0 var(--sp-8); }
.page-hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--sp-8); align-items: end; }
.page-title { font-size: var(--fs-h1); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; margin: var(--sp-4) 0 var(--sp-5); }
.page-desc { font-size: var(--fs-body-lg); line-height: 1.75; color: var(--ink-72); max-width: 560px; }
.page-index { font-family: var(--font-latin); }
.page-index li {
  display: flex; align-items: baseline; gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px; font-weight: 500;
}
.page-index li:first-child { border-top: 1px solid var(--hairline); }
.page-index .no { font-family: var(--font-latin); font-size: 13px; color: var(--blue); font-weight: 600; }

/* 轮播 */
.carousel { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); }
.carousel-track { display: flex; transition: transform 0.7s var(--ease); }
.carousel-slide { flex: 0 0 100%; position: relative; }
.carousel-slide img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.carousel-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,32,78,0) 40%, rgba(6,32,78,0.82) 100%);
}
.carousel-cap { position: absolute; left: clamp(20px,4vw,56px); right: clamp(20px,4vw,56px); bottom: clamp(20px,4vw,48px); z-index: 2; color: var(--paper); }
.carousel-cap .cap-tag { font-family: var(--font-latin); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--azure-300); margin-bottom: 10px; display: block; }
.carousel-cap h3 { font-size: clamp(22px, 2.6vw, 34px); font-weight: 700; margin-bottom: 8px; }
.carousel-cap p { font-size: 15px; line-height: 1.6; color: var(--paper-invert-72); max-width: 620px; }
.carousel-count {
  position: absolute; top: 24px; right: 28px; z-index: 2;
  font-family: var(--font-latin); font-size: 14px; color: var(--paper);
  letter-spacing: 0.1em;
}
.carousel-count b { color: var(--azure); }
.carousel-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: rgba(255,255,255,0.15); z-index: 2; }
.carousel-bar i { display: block; height: 100%; background: var(--azure); width: 0; transition: width 0.1s linear; }
.carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
  backdrop-filter: blur(6px);
}
.carousel-nav:hover { background: var(--azure); color: var(--azure-ink); border-color: var(--azure); }
.carousel-prev { left: 20px; } .carousel-next { right: 20px; }

/* 产品列表（editorial 行式） */
.prod-list { border-top: 1px solid var(--hairline); }
.prod-row {
  display: grid; grid-template-columns: 88px 1.2fr 1.6fr auto; gap: var(--sp-5);
  align-items: center;
  padding: var(--sp-6) 0;
  border-bottom: 1px solid var(--hairline);
  transition: background var(--t) var(--ease), padding var(--t) var(--ease);
  position: relative;
}
.prod-row:hover { background: var(--paper-2); }
.prod-no { font-family: var(--font-latin); font-size: 15px; font-weight: 500; color: var(--ink-55); }
.prod-name { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; }
.prod-name small { display: block; font-family: var(--font-latin); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-top: 4px; }
.prod-desc { font-size: 14px; line-height: 1.7; color: var(--ink-72); }
.prod-arrow {
  font-family: var(--font-latin); font-size: 20px;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t) var(--ease);
}
.prod-row:hover .prod-arrow { background: var(--blue); color: var(--paper); border-color: var(--blue); transform: rotate(45deg); }

/* 流程（深色区） */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline-invert); border: 1px solid var(--hairline-invert); }
.proc-cell { background: var(--blue-deep); padding: var(--sp-7) var(--sp-5); transition: background var(--t) var(--ease); }
.proc-cell:hover { background: rgba(47, 107, 255, 0.12); }
.proc-no { font-family: var(--font-latin); font-size: 44px; font-weight: 600; color: var(--azure); line-height: 1; margin-bottom: var(--sp-4); }
.proc-cell h4 { font-size: 18px; font-weight: 700; margin-bottom: var(--sp-2); }
.proc-cell p { font-size: 14px; line-height: 1.7; color: var(--paper-invert-55); }

/* ============ 关于页 ============ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-10); align-items: center; }
.story-visual img { width: 100%; aspect-ratio: 3/2.2; object-fit: cover; border-radius: var(--radius); }

/* 为什么选择（公司介绍右栏） */
.why-box { border: 1px solid var(--hairline); border-radius: var(--radius); background: var(--paper-2); padding: var(--sp-7) var(--sp-6); }
.why-head { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue); margin-bottom: var(--sp-5); }
.why-item { display: flex; gap: var(--sp-4); padding: var(--sp-4) 0; border-top: 1px solid var(--hairline); }
.why-item:first-of-type { border-top: 0; padding-top: 0; }
.why-no { font-family: var(--font-latin); font-size: 15px; font-weight: 600; color: var(--azure); line-height: 1.6; flex-shrink: 0; }
.why-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-item p { font-size: 13.5px; line-height: 1.7; color: var(--ink-72); }

/* 营业时间（办公室卡片） */
.office-hours { display: flex; align-items: flex-start; gap: 8px; margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px dashed var(--hairline); font-size: 13px; color: var(--ink-72); line-height: 1.6; }
.office-hours .oh-ico { flex-shrink: 0; color: var(--blue); }

/* 垂直时间线（极简） */
.vtimeline { position: relative; padding-left: var(--sp-6); }
.vtimeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: var(--hairline-strong); }
.vt-item { position: relative; padding: 0 0 var(--sp-8); }
.vt-item:last-child { padding-bottom: 0; }
.vt-item::before {
  content: ''; position: absolute; left: calc(-1 * var(--sp-6) - 4.5px); top: 10px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--blue);
}
.vt-year { font-family: var(--font-latin); font-size: 34px; font-weight: 600; color: var(--blue); line-height: 1; margin-bottom: var(--sp-2); }
.vt-item h4 { font-size: 19px; font-weight: 700; margin-bottom: var(--sp-2); }
.vt-item p { font-size: 14px; line-height: 1.75; color: var(--ink-72); max-width: 520px; }

/* 办公室 + 地图 */
.office-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
.office-card { border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: #fff; }
.office-head { padding: var(--sp-6) var(--sp-5); border-bottom: 1px solid var(--hairline); }
.office-code { font-family: var(--font-latin); font-size: 15px; font-weight: 600; letter-spacing: 0.1em; color: var(--blue); margin-bottom: var(--sp-2); display: block; }
.office-name { font-size: 26px; font-weight: 700; margin-bottom: var(--sp-2); }
.office-addr { font-size: 14px; color: var(--ink-72); line-height: 1.7; }
.office-map { position: relative; aspect-ratio: 4/3; background: var(--paper-2); }
.office-map img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; filter: contrast(1.02) saturate(0.95); }
.office-map .map-overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: var(--sp-4); z-index: 2; pointer-events: none; background: linear-gradient(180deg, rgba(6,32,78,0) 55%, rgba(6,32,78,0.45)); }
.map-links { display: flex; gap: var(--sp-2); pointer-events: auto; }
.map-link {
  background: var(--paper); color: var(--ink);
  font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--t) var(--ease);
}
.map-link:hover { background: var(--azure); color: var(--azure-ink); }

/* 联系表单（下划线输入，欧式） */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: var(--sp-10); align-items: start; }
.c-item { padding: var(--sp-5) 0; border-bottom: 1px solid var(--hairline); display: grid; grid-template-columns: 44px 1fr; gap: var(--sp-4); }
.c-item:first-child { border-top: 1px solid var(--hairline); }
.c-ico { font-size: 18px; }
.c-label { font-family: var(--font-latin); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-55); margin-bottom: 4px; }
.c-value { font-size: 15px; font-weight: 600; }
.c-value a:hover { color: var(--blue); }

.form-block { background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius); padding: var(--sp-8); }
.form-block h3 { font-size: 24px; font-weight: 700; margin-bottom: var(--sp-2); }
.form-block > p { font-size: 14px; color: var(--ink-72); margin-bottom: var(--sp-7); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--sp-6); }
.f-group { margin-bottom: var(--sp-6); }
.f-group label { display: block; font-family: var(--font-latin); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-55); margin-bottom: var(--sp-2); }
.f-control {
  width: 100%; border: none; border-bottom: 1px solid var(--hairline-strong);
  background: transparent; padding: 10px 0;
  font-family: var(--font-cn); font-size: 16px; color: var(--ink);
  border-radius: 0;
  transition: border-color var(--t) var(--ease);
}
.f-control:focus { outline: none; border-bottom: 2px solid var(--blue); }
select.f-control { appearance: none; cursor: pointer; }
textarea.f-control { resize: vertical; min-height: 96px; }
.form-success {
  display: none;
  background: var(--blue-tint); border-left: 3px solid var(--blue);
  padding: var(--sp-4) var(--sp-5);
  font-size: 14px; margin-bottom: var(--sp-5);
}
.form-success.show { display: block; }

/* 社媒（极简线框） */
.socials { display: flex; gap: var(--sp-2); flex-wrap: wrap; }
.socials a {
  width: 46px; height: 46px;
  border: 1px solid var(--hairline-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-72);
  transition: all var(--t) var(--ease);
}
.socials a:hover { background: var(--ink); color: var(--azure); border-color: var(--ink); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.dark .socials a { border-color: var(--hairline-invert); color: var(--paper-invert-72); }
.dark .socials a:hover { background: var(--azure); color: var(--azure-ink); border-color: var(--azure); }

/* ============ 设计规范页专用 ============ */
.spec-swatch { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--sp-4); }
.swatch { border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; background: #fff; }
.swatch-color { height: 96px; }
.swatch-info { padding: var(--sp-4); }
.swatch-name { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.swatch-hex { font-family: var(--font-latin); font-size: 13px; color: var(--ink-55); }
.spec-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--hairline); }
.spec-table th {
  text-align: left; font-family: var(--font-latin);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-55); padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--hairline); background: var(--paper-2);
}
.spec-table td { padding: var(--sp-4); border-bottom: 1px solid var(--hairline); font-size: 14px; vertical-align: top; }
.spec-table tr:last-child td { border-bottom: none; }
.type-demo { border-bottom: 1px solid var(--hairline); padding: var(--sp-5) 0; display: flex; justify-content: space-between; align-items: baseline; gap: var(--sp-5); }
.type-demo:last-child { border-bottom: none; }
.type-meta { font-family: var(--font-latin); font-size: 12px; color: var(--ink-55); white-space: nowrap; }

/* ============ 动效 ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }

/* ============ 响应式 ============ */
@media (max-width: 1024px) {
  .hero-bar { flex-direction: column; align-items: flex-start; gap: var(--sp-6); }
  .hero-slogan { text-align: left; }
  .hero-logo .hl-logo { width: 72px; height: 72px; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: var(--sp-5); }
  .stat-cell:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat-cell:nth-child(n+3) { border-top: 1px solid var(--hairline); }
  .network-grid, .vision-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
  .quals-grid { grid-template-columns: 1fr 1fr; }
  .journey-row { grid-template-columns: 1fr; gap: var(--sp-6); }
  .proc-grid { grid-template-columns: 1fr; }
  .office-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .prod-row { grid-template-columns: 48px 1fr auto; }
  .prod-desc { display: none; }
  .vision-hero img { aspect-ratio: 16/9; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; --sp-10: 80px; }
  .hero-visual { min-height: auto; padding-top: calc(var(--header-h) + var(--sp-8)); padding-bottom: var(--sp-8); }
  .slogan-title { font-size: clamp(28px, 7vw, 40px); }
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--hairline);
    padding: var(--sp-5) clamp(20px, 4vw, 48px) var(--sp-6);
    z-index: 999;
  }
  .header-on-dark .main-nav.open { background: var(--blue-deep); }
  .main-nav.open a { padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--hairline); }
  .main-nav.open a::after { display: none; }
  .stats-strip { grid-template-columns: 1fr; }
  .stat-cell { border-left: none !important; border-top: 1px solid var(--hairline); padding: var(--sp-5) 0; }
  .stat-cell:first-child { border-top: none; }
  .quals-grid { grid-template-columns: 1fr; }
  .prod-row { grid-template-columns: 32px 1fr; }
  .prod-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-block { padding: var(--sp-5); }
  .footer-top { grid-template-columns: 1fr; gap: var(--sp-6); }
  .carousel-slide img { aspect-ratio: 4/3; }
  .sec-head.split { grid-template-columns: 1fr; }
}
