:root{--c-primary:#ff2d75;}
/* =========================================================
   PULSE 脉冲数字创意 — 赛博暗黑霓虹 企业站样式
   本地化：字体 @font-face / 图片相对路径 / 图标内联SVG / JS原生
   ========================================================= */

/* ---------- 字体 ---------- */
@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/spacegrotesk-0.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- 设计变量 ---------- */
:root {
  --bg: #0a0a0f;
  --bg-2: #0d0d16;
  --panel: #14141f;
  --panel-2: #181826;
  --magenta: var(--c-primary, #ff2d75);
  --cyan: #00e5ff;
  --purple: #7b5cff;
  --ink: #eaf2ff;
  --ink-dim: #9aa3b8;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --glow-m: 0 0 18px rgba(255, 45, 117, .55);
  --glow-c: 0 0 18px rgba(0, 229, 255, .55);
  --glow-p: 0 0 18px rgba(123, 92, 255, .55);
  --grad: linear-gradient(120deg, var(--magenta), var(--purple) 50%, var(--cyan));
  --grad-soft: linear-gradient(120deg, rgba(255,45,117,.18), rgba(123,92,255,.18), rgba(0,229,255,.18));
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1240px;
  --header-h: 72px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --Chinese: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", "Source Han Sans SC", "Noto Sans CJK SC", system-ui, -apple-system, "Segoe UI", sans-serif;
  --English: "Space Grotesk", var(--Chinese);
}

/* ---------- 复位 ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--Chinese);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--magenta); color: #fff; }

/* ---------- 背景：细网格 + 噪点 + 渐变光晕 ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(transparent 0, transparent calc(100% - 1px), rgba(255,255,255,.04) 100%),
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255,255,255,.04) 100%);
  background-size: 44px 44px, 44px 44px;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(60% 50% at 15% 0%, rgba(255,45,117,.16), transparent 60%),
    radial-gradient(55% 45% at 90% 10%, rgba(0,229,255,.14), transparent 60%),
    radial-gradient(60% 60% at 50% 110%, rgba(123,92,255,.16), transparent 60%),
    var(--bg);
  pointer-events: none;
}

/* 鼠标跟随光晕 */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(123,92,255,.10), rgba(0,229,255,.05) 40%, transparent 70%);
  filter: blur(8px);
  transition: opacity .3s ease;
  opacity: .8;
}

/* ---------- 容器 ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px, 4vw, 40px); }
.section { padding-block: clamp(60px, 9vw, 120px); position: relative; }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }

/* ---------- 标题 ---------- */
.eyebrow {
  font-family: var(--English);
  font-size: 13px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--grad);
  box-shadow: var(--glow-c);
}
.section-title {
  font-family: var(--English);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255,45,117,.25);
}
.section-sub { color: var(--ink-dim); max-width: 640px; font-size: clamp(15px, 2vw, 17px); }
.center { text-align: center; }
.center .section-sub { margin-inline: auto; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--grad);
  color: #07070c;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08), 0 8px 30px rgba(255,45,117,.35), 0 4px 18px rgba(0,229,255,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(255,45,117,.6), 0 0 26px rgba(0,229,255,.4); }
.btn-outline {
  border: 1.5px solid var(--line-strong);
  color: var(--ink);
  position: relative;
}
.btn-outline::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s var(--ease);
}
.btn-outline:hover { border-color: transparent; box-shadow: var(--glow-c); transform: translateY(-2px); color: #fff; }
.btn-outline:hover::before { opacity: 1; }
.btn-ghost { color: var(--ink-dim); }
.btn-ghost:hover { color: var(--cyan); }

/* ---------- 玻璃拟态卡片 ---------- */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
}
.glass::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0; transition: opacity .35s var(--ease);
  pointer-events: none;
}
.glass:hover::after { opacity: 1; }

/* ---------- 顶部导航 ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  display: flex; align-items: center;
  background: rgba(10,10,15,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(18px,4vw,40px); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--English); font-weight: 700; }
.logo .mark { width: 34px; height: 34px; filter: drop-shadow(0 0 8px rgba(0,229,255,.6)); }
.logo .name { font-size: 19px; letter-spacing: .04em; }
.logo .name b { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 15px;
  font-size: 15px;
  color: var(--ink-dim);
  border-radius: 8px;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 2px;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
  box-shadow: var(--glow-c);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a.active { color: #fff; }
.nav a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none;
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.hamburger span { position: relative; width: 20px; height: 2px; background: var(--ink); transition: .25s var(--ease); }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: .25s var(--ease); }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); box-shadow: var(--glow-m); }
.hamburger.open span::after { top: 0; transform: rotate(-45deg); box-shadow: var(--glow-c); }

/* 移动端抽屉 */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0;
  background: rgba(13,13,22,.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transform: translateY(-120%);
  transition: transform .35s var(--ease);
  z-index: 99;
  padding: 10px clamp(18px,4vw,40px) 22px;
  display: none;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 4px; font-size: 17px; color: var(--ink-dim);
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.active { color: #fff; }
.mobile-nav a span.tag { font-family: var(--English); font-size: 11px; letter-spacing: .2em; color: var(--cyan); }

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; border-radius: 999px;
  border: 1px solid var(--line-strong); background: rgba(255,255,255,.03);
  font-size: 13px; color: var(--ink-dim); margin-bottom: 22px;
}
.hero-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: var(--glow-c); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.hero h1 {
  font-family: var(--English);
  font-weight: 700;
  font-size: clamp(44px, 8.5vw, 104px);
  line-height: .98;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.hero h1 .line { display: block; }
.hero p.lead { color: var(--ink-dim); font-size: clamp(16px, 2.4vw, 20px); max-width: 520px; margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual .frame { border-radius: 20px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 0 60px rgba(123,92,255,.25); position: relative; }
.hero-visual img { width: 100%; aspect-ratio: 16/11; object-fit: cover; filter: saturate(1.25) contrast(1.05) hue-rotate(-8deg); }
.hero-visual .scan { position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(0,229,255,.06) 0 2px, transparent 2px 4px); mix-blend-mode: overlay; pointer-events: none; }
.hero-deco { position: absolute; font-family: var(--English); font-weight: 700; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.06); font-size: clamp(80px,16vw,220px); z-index: -1; user-select: none; }
.hero-deco.d1 { top: 12%; right: -2%; }
.hero-deco.d2 { bottom: 6%; left: -4%; }

/* ---------- 统计 ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { padding: 28px 22px; text-align: center; }
.stat .num { font-family: var(--English); font-weight: 700; font-size: clamp(34px, 5vw, 54px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; text-shadow: 0 0 26px rgba(0,229,255,.3); line-height: 1; }
.stat .label { color: var(--ink-dim); font-size: 14px; margin-top: 10px; letter-spacing: .04em; }

/* ---------- 服务概览网格 ---------- */
.cards { display: grid; gap: 20px; }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c2 { grid-template-columns: repeat(2, 1fr); }
.cards.c4 { grid-template-columns: repeat(4, 1fr); }
.card { padding: 26px; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.card .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); margin-bottom: 18px; }
.card .ic svg { width: 28px; height: 28px; }
.card h3 { font-size: 20px; margin-bottom: 10px; font-weight: 600; }
.card p { color: var(--ink-dim); font-size: 15px; }
.card .more { margin-top: 16px; color: var(--cyan); font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.card .more svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.card:hover .more svg { transform: translateX(4px); }

/* ---------- 案例网格 ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.work { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.work img { width: 100%; aspect-ratio: 4/3; object-fit: cover; filter: saturate(1.15) contrast(1.05); transition: transform .5s var(--ease), filter .5s var(--ease); }
.work:hover { transform: translateY(-6px); box-shadow: 0 0 40px rgba(255,45,117,.3), 0 0 40px rgba(0,229,255,.2); border-color: transparent; }
.work:hover img { transform: scale(1.07); filter: saturate(1.4) hue-rotate(8deg); }
.work .meta { position: absolute; inset: auto 0 0 0; padding: 20px; background: linear-gradient(transparent, rgba(7,7,12,.92)); }
.work .cat { font-family: var(--English); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); }
.work h3 { font-size: 19px; margin-top: 4px; }

/* ---------- 简介/关于 布局 ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.reverse .media { order: 2; }
.media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-strong); filter: saturate(1.2) contrast(1.05); }
.media { position: relative; }
.media::before { content: ""; position: absolute; inset: -14px; border: 1px solid var(--line-strong); border-radius: calc(var(--radius) + 12px); z-index: -1; background: var(--grad-soft); }
.prose p { color: var(--ink-dim); margin-bottom: 16px; }
.prose h2 { font-size: clamp(26px,4vw,40px); font-weight: 700; margin-bottom: 18px; line-height: 1.15; }

/* 价值卡片 */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value { padding: 28px; }
.value .k { font-family: var(--English); font-size: 13px; letter-spacing: .2em; color: var(--magenta); margin-bottom: 12px; }
.value h3 { font-size: 21px; margin-bottom: 10px; }
.value p { color: var(--ink-dim); font-size: 15px; }

/* 时间线 */
.timeline { position: relative; margin-top: 30px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--grad); box-shadow: var(--glow-p); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -28px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--bg); border: 2px solid var(--cyan); box-shadow: var(--glow-c); }
.tl-item .yr { font-family: var(--English); font-weight: 700; font-size: 20px; color: var(--cyan); }
.tl-item h3 { font-size: 18px; margin: 4px 0 6px; }
.tl-item p { color: var(--ink-dim); font-size: 15px; }

/* 团队 */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.team { padding: 0; }
.team .ph { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.team img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(.2) saturate(1.2) contrast(1.05); transition: transform .5s var(--ease); }
.team:hover img { transform: scale(1.05); }
.team .body { padding: 18px 20px 22px; }
.team h3 { font-size: 19px; }
.team .role { color: var(--cyan); font-size: 13px; letter-spacing: .08em; margin-bottom: 8px; }
.team p { color: var(--ink-dim); font-size: 14px; }

/* 服务详情 */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; padding-block: 26px; }
.svc:nth-child(even) .svc-media { order: 2; }
.svc-media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-strong); filter: saturate(1.25); }
.svc h3 { font-size: clamp(24px,3.4vw,34px); margin-bottom: 14px; }
.svc p { color: var(--ink-dim); margin-bottom: 16px; }
.svc ul.feat { display: grid; gap: 10px; }
.svc ul.feat li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink); font-size: 15px; }
.svc ul.feat li svg { width: 20px; height: 20px; flex: none; margin-top: 3px; }

/* 流程步骤 */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.step { padding: 26px 22px; position: relative; }
.step .n { font-family: var(--English); font-weight: 700; font-size: 40px; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h4 { font-size: 18px; margin: 10px 0 8px; }
.step p { color: var(--ink-dim); font-size: 14px; }

/* 筛选 */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.filter-btn {
  padding: 9px 18px; border-radius: 999px; font-size: 14px; color: var(--ink-dim);
  border: 1px solid var(--line-strong); transition: .25s var(--ease);
}
.filter-btn:hover { color: #fff; border-color: var(--cyan); }
.filter-btn.active { color: #07070c; background: var(--grad); border-color: transparent; box-shadow: var(--glow-c); }

/* 新闻列表 */
.news-list { display: grid; gap: 18px; }
.news-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding: 20px; align-items: center; transition: transform .3s var(--ease), border-color .3s var(--ease); }
.news-row:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.news-row img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: var(--radius-sm); filter: saturate(1.2); }
.news-row .date { font-family: var(--English); font-size: 13px; color: var(--cyan); letter-spacing: .06em; }
.news-row h3 { font-size: 21px; margin: 6px 0 8px; line-height: 1.3; }
.news-row p { color: var(--ink-dim); font-size: 15px; }
.news-row .tag { display: inline-block; font-size: 12px; color: var(--magenta); border: 1px solid rgba(255,45,117,.4); border-radius: 6px; padding: 2px 8px; margin-left: 10px; vertical-align: middle; }

/* 分页 */
.pager { display: flex; justify-content: center; gap: 8px; margin-top: 34px; }
.pager a { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; border: 1px solid var(--line-strong); color: var(--ink-dim); font-size: 15px; transition: .25s var(--ease); }
.pager a:hover { color: #fff; border-color: var(--cyan); }
.pager a.active { background: var(--grad); color: #07070c; border-color: transparent; box-shadow: var(--glow-c); }

/* 联系方式 / 表单 */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; }
.info-list { display: grid; gap: 16px; margin-top: 8px; }
.info-item { display: flex; gap: 16px; padding: 18px; align-items: flex-start; }
.info-item .ic { width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.04); border: 1px solid var(--line-strong); }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-size: 16px; margin-bottom: 3px; }
.info-item p { color: var(--ink-dim); font-size: 14px; }
.hours { margin-top: 18px; padding: 20px; }
.hours h4 { font-size: 16px; margin-bottom: 12px; }
.hours .row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--ink-dim); font-size: 14px; }
.hours .row:last-child { border-bottom: none; }
.hours .row b { color: var(--ink); font-weight: 600; }

.form { padding: 30px; }
.form h3 { font-size: 22px; margin-bottom: 18px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; color: var(--ink-dim); margin-bottom: 7px; letter-spacing: .04em; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03); border: 1px solid var(--line-strong);
  color: var(--ink); font-size: 15px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #5c6478; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,229,255,.15), var(--glow-c);
}
.field textarea { min-height: 120px; resize: vertical; }
.form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: 13px; color: var(--ink-dim); margin-top: 8px; }
.form-ok { display: none; margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); border: 1px solid rgba(0,229,255,.4); background: rgba(0,229,255,.06); color: var(--cyan); font-size: 14px; }
.form-ok.show { display: block; }

/* 地图占位 */
.map-ph { margin-top: 30px; height: 320px; border-radius: var(--radius); border: 1px solid var(--line-strong); position: relative; overflow: hidden; background: linear-gradient(160deg, rgba(123,92,255,.10), rgba(0,229,255,.06)), repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 28px), repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 28px); }
.map-ph svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-pin { position: absolute; top: 46%; left: 52%; transform: translate(-50%,-50%); }
.map-pin .dot { width: 16px; height: 16px; border-radius: 50%; background: var(--magenta); box-shadow: var(--glow-m); animation: pulse 1.8s infinite; }
.map-pin .ring { position: absolute; inset: -10px; border: 2px solid rgba(255,45,117,.5); border-radius: 50%; animation: ring 2s infinite; }
@keyframes ring { 0%{transform:scale(.6);opacity:.9} 100%{transform:scale(1.8);opacity:0} }
.map-ph .lbl { position: absolute; bottom: 14px; left: 14px; font-size: 13px; color: var(--ink-dim); background: rgba(10,10,15,.6); padding: 6px 12px; border-radius: 8px; border: 1px solid var(--line); }

/* 底部CTA */
.cta-band { text-align: center; padding: clamp(50px,8vw,90px) 30px; border-radius: 24px; border: 1px solid var(--line-strong); background: var(--grad-soft); position: relative; overflow: hidden; }
.cta-band h2 { font-family: var(--English); font-weight: 700; font-size: clamp(28px,5vw,52px); margin-bottom: 16px; }
.cta-band p { color: var(--ink-dim); max-width: 560px; margin: 0 auto 28px; }

/* 面包屑横幅 */
.banner { padding-top: calc(var(--header-h) + clamp(50px,8vw,90px)); padding-bottom: clamp(36px,6vw,64px); position: relative; overflow: hidden; }
.banner .eyebrow { margin-bottom: 14px; }
.banner h1 { font-family: var(--English); font-weight: 700; font-size: clamp(38px,6vw,72px); line-height: 1.02; letter-spacing: -.01em; }
.banner p { color: var(--ink-dim); max-width: 620px; margin-top: 14px; font-size: clamp(15px,2vw,18px); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--ink-dim); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { opacity: .5; }

/* ---------- 页脚 ---------- */
.site-footer { border-top: 1px solid var(--line); background: rgba(13,13,22,.6); margin-top: 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding-block: 56px; }
.footer-col h4 { font-size: 15px; letter-spacing: .04em; margin-bottom: 18px; color: #fff; position: relative; padding-left: 14px; }
.footer-col h4::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; border-radius: 3px; background: var(--grad); box-shadow: var(--glow-p); }
.footer-about p { color: var(--ink-dim); font-size: 14px; margin: 16px 0; }
.footer-about .logo { margin-bottom: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--ink-dim); font-size: 14px; transition: color .2s var(--ease); display: inline-flex; gap: 8px; align-items: center; }
.footer-links a:hover { color: var(--cyan); }
.footer-links a svg { width: 14px; height: 14px; }
.footer-contact li { display: flex; gap: 11px; color: var(--ink-dim); font-size: 14px; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--ink-dim); font-size: 13px; }
.footer-bottom .social { display: flex; gap: 10px; }
.footer-bottom .social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: .25s var(--ease); }
.footer-bottom .social a:hover { border-color: var(--cyan); box-shadow: var(--glow-c); color: var(--cyan); }
.footer-bottom .social svg { width: 18px; height: 18px; }

/* 回到顶部 */
.to-top { position: fixed; right: 22px; bottom: 22px; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad); color: #07070c; box-shadow: 0 0 22px rgba(0,229,255,.4); opacity: 0; transform: translateY(20px); pointer-events: none; transition: .3s var(--ease); z-index: 90; }
.to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.to-top svg { width: 22px; height: 22px; }

/* 进场动画（无 JS 时内容仍可见，由 js-ready 类触发隐藏） */
.reveal { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }
html:not(.js-ready) .reveal { opacity: 1 !important; transform: none !important; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; max-width: 560px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .cards.c3, .cards.c4 { grid-template-columns: repeat(2,1fr); }
  .work-grid { grid-template-columns: repeat(2,1fr); }
  .value-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .mobile-nav { display: block; }
  .split, .svc, .svc:nth-child(even) .svc-media { grid-template-columns: 1fr; }
  .svc-media { order: 0 !important; }
  .split.reverse .media { order: 0; }
  .cards.c2, .cards.c3, .cards.c4 { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .value-grid, .team-grid, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .news-row { grid-template-columns: 1fr; }
  .news-row img { aspect-ratio: 16/9; }
  .form .row2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-deco { display: none; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; justify-content: center; }
}

/* 减少动效偏好 */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}


/* ===== CMS helpers ===== */
.form-alert{padding:12px 16px;border-radius:8px;margin:0 0 16px;font-size:.92rem;line-height:1.6}
.form-alert-ok{background:rgba(46,160,67,.08);border:1px solid rgba(46,160,67,.35);color:#2ea043}
.form-alert-err{background:rgba(220,53,69,.08);border:1px solid rgba(220,53,69,.35);color:#dc3545}
.form-alert ul{margin:0;padding-left:18px}
.cms-pager{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin:44px 0 0}
.cms-pager a,.cms-pager span{min-width:38px;padding:8px 13px;border:1px solid rgba(128,128,128,.35);border-radius:6px;text-align:center;text-decoration:none;color:inherit}
.cms-pager .active{background:var(--c-primary);border-color:var(--c-primary);color:#fff}
.detail-page{max-width:1100px;margin:0 auto;padding:72px 24px}
.detail-media{width:100%;max-height:520px;object-fit:cover;border-radius:14px;margin-bottom:26px;display:block}
.detail-title{font-size:clamp(26px,3vw,38px);line-height:1.3;margin-bottom:12px}
.detail-meta{color:#777;font-size:.95rem;margin-bottom:20px}
.detail-body{line-height:1.9;color:#444}
.detail-body p{margin-bottom:1em}
.detail-body img{max-width:100%;height:auto;border-radius:10px}
.detail-back{display:inline-block;margin-top:28px;padding:11px 26px;border:1px solid rgba(128,128,128,.4);border-radius:999px;text-decoration:none;color:inherit}
/* ===== 深色 banner 标题白字（避免 h1 与背景同色不可读） ===== */
.banner--ink h1,.banner--purple h1,.banner--coral h1{color:#fff}
/* ===== 阅读全文按钮（硬边 neo-brutalist 风格） ===== */
.news-item .more{display:inline-block;margin-top:14px;padding:10px 20px;background:var(--c-ink);color:#fff;border:var(--border-2);box-shadow:var(--shadow-sm);font-family:var(--font-en);font-weight:800;font-size:.85rem;letter-spacing:.02em;text-decoration:none;transition:transform .12s ease,box-shadow .12s ease,background .12s ease}
.news-item .more:hover{background:var(--c-coral);transform:translate(-2px,-2px);box-shadow:var(--shadow)}
/* ===== 留言板一行一个 input（01 翰墨轩） ===== */
.form-grid{grid-template-columns:1fr}
