/* ============================================================
   仲达财税 · 品牌官网样式 v3
   设计方向：温暖商务 · 仲达橙主色
   参照：7guanjia.cn 内容结构 + impeccable 设计原则 + 品牌VI规范
   ============================================================ */

/* ---------- 1. 设计 Token ---------- */
:root {
  /* 品牌色（仲达橙，克制使用） */
  --brand:       #DD4814;
  --brand-hover: #C23E0E;
  --brand-soft:  #FBE9DF;
  --brand-tint:  #FDF4EE;

  /* 暖中性色 */
  --ink:        #2A1F1A;
  --ink-2:      #4A3F38;
  --ink-3:      #8A7D6F;
  --ink-4:      #B8AC9F;
  --line:       #E9E1D6;
  --line-strong:#D9CFC1;
  --bg:         #FFFDF9;
  --bg-2:       #FAF5EE;
  --bg-3:       #F3ECE2;

  /* 深色区块 */
  --ink-deep:   #241B16;
  --ink-deep-2: #2F241E;

  /* 间距（4pt 基础） */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  /* 字号（1.25 比例） */
  --text-xs: 0.75rem; --text-sm: 0.875rem; --text-base: 1rem;
  --text-lg: 1.25rem; --text-xl: 1.5rem; --text-2xl: 1.875rem; --text-3xl: 2.25rem;

  --font-sans: "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB",
               "Source Han Sans CN", "Noto Sans CJK SC",
               -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container: 1200px;
  --gutter: 24px;

  --r-xs: 4px; --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px;

  --shadow-xs: 0 1px 2px rgba(42,31,26,.04);
  --shadow-sm: 0 2px 8px rgba(42,31,26,.05);
  --shadow-md: 0 8px 24px rgba(42,31,26,.07);
  --shadow-lg: 0 16px 40px rgba(42,31,26,.09);

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- 2. 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
h1,h2,h3,h4,h5 { margin: 0; font-weight: 600; letter-spacing: -.015em; color: var(--ink); line-height: 1.2; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--brand); color: #fff; }
.num { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ---------- 3. 排版工具 ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brand); margin-bottom: var(--s-4);
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--brand); }
.eyebrow--light { color: var(--brand); }

.section-head { max-width: 640px; margin-bottom: var(--s-8); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center .eyebrow::after { content: ""; width: 20px; height: 1px; background: var(--brand); }

.section-title {
  font-size: clamp(var(--text-3xl), 4vw, 3rem);
  line-height: 1.12; letter-spacing: -.02em; margin-bottom: var(--s-4); color: var(--ink);
}
.section-title--light { color: #fff; }
.section-lede { font-size: var(--text-lg); color: var(--ink-2); line-height: 1.6; max-width: 60ch; }
.section-lede--light { color: rgba(255,255,255,.72); }

/* ---------- 4. 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  padding: 13px 24px; border-radius: var(--r-sm); font-weight: 600; font-size: var(--text-base);
  line-height: 1; transition: all .2s var(--ease); white-space: nowrap; cursor: pointer;
  border: 1px solid transparent;
}
.btn--sm { padding: 10px 18px; font-size: var(--text-sm); }
.btn--lg { padding: 16px 32px; font-size: var(--text-base); }
.btn--block { width: 100%; }
.btn--primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn--primary:hover { background: var(--brand-hover); border-color: var(--brand-hover); }
.btn--dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-2); border-color: var(--ink-2); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: var(--bg-2); }
.btn--white { background: #fff; color: var(--brand); border-color: #fff; }
.btn--white:hover { background: var(--brand-tint); }
.on-dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.on-dark .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* ---------- 5. 顶部条 ---------- */
.topbar { background: var(--bg-2); border-bottom: 1px solid var(--line); font-size: var(--text-sm); color: var(--ink-3); }
.topbar__inner { display: flex; align-items: center; justify-content: flex-end; gap: var(--s-6); height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; }
.topbar__item .icon { width: 14px; height: 14px; color: var(--brand); }

/* ---------- 6. 导航 ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,253,249,.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-xs); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--s-6); }
.nav__brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-mark--orange { color: var(--brand); }
.brand-mark--white { color: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text__zh { font-size: 19px; font-weight: 700; letter-spacing: .02em; color: var(--ink); }
.nav__brand--light .brand-text__zh { color: #fff; }
.brand-text__en { font-size: 10px; font-weight: 500; letter-spacing: .12em; color: var(--ink-3); margin-top: 3px; text-transform: uppercase; }
.nav__brand--light .brand-text__en { color: rgba(255,255,255,.55); }

.nav__menu { display: flex; gap: 2px; flex: 1; justify-content: center; }
.nav__link { position: relative; padding: 10px 16px; font-size: 15px; font-weight: 500; color: var(--ink-2); border-radius: var(--r-xs); transition: color .2s var(--ease); }
.nav__link:hover { color: var(--ink); }
.nav__link--active { color: var(--brand); }
.nav__link--active::after { content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px; height: 2px; border-radius: 1px; background: var(--brand); }
.nav__cta { display: flex; align-items: center; gap: var(--s-3); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s var(--ease); }

/* ---------- 7. Hero（首页） ---------- */
.hero { position: relative; overflow: hidden; padding: var(--s-9) 0 var(--s-8); background: var(--bg); isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 85% 0%, var(--brand-tint), transparent 55%),
    radial-gradient(ellipse 45% 40% at 5% 95%, var(--brand-soft), transparent 60%);
}
.hero__watermark {
  position: absolute; right: -60px; bottom: -80px; width: 420px; height: 420px;
  color: var(--brand); opacity: .05; z-index: -1; pointer-events: none;
}
.hero__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-9); align-items: center; }
.hero__content { max-width: 620px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--s-2); padding: 6px 14px;
  border-radius: var(--r-xs); border: 1px solid var(--line-strong); background: var(--bg);
  color: var(--ink-2); font-size: var(--text-sm); font-weight: 500; margin-bottom: var(--s-6);
}
.hero__badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.hero__title { font-size: clamp(2.75rem, 6.5vw, 4.5rem); font-weight: 700; line-height: 1.06; letter-spacing: -.03em; margin-bottom: var(--s-6); color: var(--ink); }
.hero__title .hl { position: relative; color: var(--brand); white-space: nowrap; }
.hero__title .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 2px; background: var(--brand); opacity: .35; }
.hero__lede { font-size: var(--text-lg); color: var(--ink-2); line-height: 1.65; max-width: 54ch; margin-bottom: var(--s-7); }
.hero__lede strong { color: var(--ink); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-8); }
.hero__stats { display: flex; gap: var(--s-8); padding-top: var(--s-6); border-top: 1px solid var(--line); }
.stat { min-width: 0; }
.stat__num { font-size: var(--text-2xl); font-weight: 700; letter-spacing: -.02em; color: var(--ink); line-height: 1.1; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.stat__num .stat__plus { color: var(--brand); }
.stat__label { font-size: var(--text-sm); color: var(--ink-3); }

/* 指标面板 */
.hero__panel { position: relative; padding: var(--s-6); border: 1px solid var(--line-strong); border-radius: var(--r-lg); background: var(--bg); box-shadow: var(--shadow-sm); }
.hero__panel::before { content: ""; position: absolute; top: -1px; left: var(--s-6); right: var(--s-6); height: 3px; border-radius: 0 0 3px 3px; background: var(--brand); }
.hero__panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: var(--s-4); margin-bottom: var(--s-5); border-bottom: 1px solid var(--line); }
.hero__panel-title { font-size: var(--text-sm); font-weight: 600; color: var(--ink-3); letter-spacing: .02em; }
.hero__panel-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--r-xs); background: var(--brand-soft); color: var(--brand); font-size: var(--text-xs); font-weight: 600; }
.hero__panel-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.hero__metric { display: flex; align-items: center; justify-content: space-between; padding: var(--s-3) 0; }
.hero__metric + .hero__metric { border-top: 1px dashed var(--line); }
.hero__metric-label { font-size: var(--text-sm); color: var(--ink-3); }
.hero__metric-value { font-size: var(--text-lg); font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.hero__metric-value--up { color: var(--brand); }
.hero__metric-value--down { color: #1A9E50; }
.hero__panel-foot { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.hero__gauge { flex: 1; height: 8px; border-radius: 999px; background: var(--bg-3); overflow: hidden; }
.hero__gauge-fill { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--brand-hover)); }
.hero__panel-foot-label { font-size: var(--text-sm); color: var(--ink-3); white-space: nowrap; }
.hero__panel-foot-label strong { color: var(--ink); font-weight: 700; }

/* ---------- 8. 子页页头 page-hero ---------- */
.page-hero {
  position: relative; overflow: hidden; padding: var(--s-8) 0 var(--s-7);
  background: var(--bg); border-bottom: 1px solid var(--line); isolation: isolate;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 70% at 85% 0%, var(--brand-tint), transparent 55%);
}
.page-hero .section-head { margin-bottom: 0; }
.page-hero__crumbs { display: flex; align-items: center; gap: var(--s-2); font-size: var(--text-sm); color: var(--ink-3); margin-bottom: var(--s-4); }
.page-hero__crumbs a:hover { color: var(--brand); }
.page-hero__crumbs .sep { color: var(--ink-4); }

/* ---------- 9. 信任条 ---------- */
.trust { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust__item { display: flex; flex-direction: column; gap: 4px; padding: var(--s-6); }
.trust__item + .trust__item { border-left: 1px solid var(--line); }
.trust__item strong { font-size: var(--text-lg); font-weight: 700; color: var(--ink); }
.trust__item span { font-size: var(--text-sm); color: var(--ink-3); }

/* ---------- 10. 为什么选择（value 卡） ---------- */
.why { padding: var(--s-10) 0; background: var(--bg); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.value-card {
  padding: var(--s-6); border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg); transition: all .25s var(--ease);
}
.value-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.value-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: var(--r-md); background: var(--brand-soft); color: var(--brand); margin-bottom: var(--s-4); }
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--s-2); }
.value-card p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.65; }

/* ---------- 11. 品牌故事 ---------- */
.about { padding: var(--s-10) 0; background: var(--bg-2); }
.about__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-8); padding-top: var(--s-2); }
.story { position: relative; padding-top: var(--s-5); }
.story::before { content: ""; position: absolute; top: 0; left: 0; width: 32px; height: 3px; border-radius: 2px; background: var(--brand); }
.story__num { display: inline-flex; align-items: baseline; font-size: var(--text-3xl); font-weight: 700; color: var(--ink); margin-bottom: var(--s-4); letter-spacing: -.02em; }
.story__num--mark { width: 56px; height: 56px; color: var(--brand); }
.story__num--mark svg { width: 100%; height: 100%; }
.story h3 { font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--s-3); }
.story p { font-size: var(--text-base); color: var(--ink-2); line-height: 1.75; }
.story p + p { margin-top: var(--s-3); }
.story p strong { color: var(--ink); font-weight: 600; }

.about__slogan { margin-top: var(--s-9); padding: var(--s-8) var(--s-6); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); text-align: center; }
.about__slogan-text { display: block; font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; letter-spacing: .35em; color: var(--ink); margin-bottom: var(--s-3); }
.about__slogan-text em { color: var(--brand); font-style: normal; }
.about__slogan-en { display: block; font-size: var(--text-sm); font-weight: 500; letter-spacing: .25em; color: var(--ink-3); text-transform: uppercase; }

/* ---------- 12. 服务（首页列表 + 详情页） ---------- */
.services { padding: var(--s-10) 0; background: var(--bg); }
.services__list { border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: 64px 1.2fr 2fr auto; gap: var(--s-5); align-items: center; padding: var(--s-6) 0; border-bottom: 1px solid var(--line); transition: all .25s var(--ease); }
.service:hover { background: var(--bg-2); }
.service:hover .service__icon { color: var(--brand); background: var(--brand-soft); }
.service__icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--r-md); color: var(--ink-2); background: var(--bg-2); transition: all .25s var(--ease); }
.service__icon svg { width: 24px; height: 24px; }
.service__body h3 { font-size: var(--text-xl); font-weight: 600; margin-bottom: 4px; }
.service__body h3 a:hover { color: var(--brand); }
.service__body p { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.6; max-width: 60ch; }
.service__link { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 600; color: var(--ink); transition: all .2s var(--ease); }
.service__link .icon { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.service:hover .service__link { color: var(--brand); }
.service:hover .service__link .icon { transform: translateX(4px); }

/* 服务详情页 */
.svc { padding: var(--s-9) 0 var(--s-10); background: var(--bg); }
.svc__block { display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--s-8); padding: var(--s-8) 0; border-bottom: 1px solid var(--line); align-items: start; }
.svc__block:first-of-type { padding-top: 0; }
.svc__block:last-child { border-bottom: none; }
.svc__head .service__icon { margin-bottom: var(--s-4); }
.svc__head h3 { font-size: var(--text-2xl); font-weight: 700; margin-bottom: var(--s-3); }
.svc__head p { font-size: var(--text-base); color: var(--ink-2); line-height: 1.7; }
.svc__list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3) var(--s-6); }
.svc__list li { display: flex; align-items: flex-start; gap: var(--s-2); font-size: var(--text-base); color: var(--ink-2); padding: var(--s-2) 0; }
.svc__list .check { width: 18px; height: 18px; margin-top: 4px; color: var(--brand); flex-shrink: 0; }

/* ---------- 13. 团队 ---------- */
.team { padding: var(--s-10) 0; background: var(--bg-2); }
.team__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); margin-bottom: var(--s-8); }
.team__stat { text-align: center; padding: var(--s-6) var(--s-4); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); }
.team__stat b { display: block; font-size: var(--text-3xl); font-weight: 700; color: var(--brand); margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.team__stat span { font-size: var(--text-sm); color: var(--ink-3); }
.team__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.team-card { padding: var(--s-6); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); transition: all .25s var(--ease); }
.team-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.team-card__avatar {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%; background: var(--brand-soft); color: var(--brand);
  font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--s-4);
}
.team-card h3 { font-size: var(--text-lg); font-weight: 600; margin-bottom: 2px; }
.team-card__role { font-size: var(--text-sm); color: var(--brand); font-weight: 600; margin-bottom: var(--s-3); }
.team-card__cred { font-size: var(--text-sm); color: var(--ink-3); line-height: 1.6; }

/* ---------- 14. 流程 ---------- */
.process { padding: var(--s-10) 0; background: var(--bg); }
.process__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); counter-reset: step; }
.process__step { position: relative; padding-top: var(--s-4); }
.process__step::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: var(--line-strong); }
.process__step::after { content: ""; position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.process__num { font-size: var(--text-sm); font-weight: 700; color: var(--brand); letter-spacing: .08em; margin-bottom: var(--s-3); font-variant-numeric: tabular-nums; }
.process__step h4 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--s-2); }
.process__step p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.6; }

/* ---------- 15. 资讯 ---------- */
.insights { padding: var(--s-10) 0; background: var(--bg); }
.insights__head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--s-6); margin-bottom: var(--s-7); }
.insights__list { border-top: 1px solid var(--line); }
.post { display: grid; grid-template-columns: 140px 1fr auto; gap: var(--s-6); align-items: baseline; padding: var(--s-6) 0; border-bottom: 1px solid var(--line); transition: background .2s var(--ease); }
.post:hover { background: var(--bg-2); }
.post__meta { display: flex; flex-direction: column; gap: 6px; }
.post__cat { align-self: flex-start; padding: 3px 10px; border-radius: var(--r-xs); background: var(--brand-soft); color: var(--brand); font-size: var(--text-xs); font-weight: 600; }
.post__date { font-size: var(--text-sm); color: var(--ink-3); font-variant-numeric: tabular-nums; }
.post__body h3 { font-size: var(--text-lg); font-weight: 600; line-height: 1.4; margin-bottom: var(--s-2); transition: color .2s var(--ease); }
.post__body h3 a:hover { color: var(--brand); }
.post__body p { font-size: var(--text-sm); color: var(--ink-2); line-height: 1.65; max-width: 68ch; }
.post__more { display: inline-flex; align-items: center; gap: 6px; font-size: var(--text-sm); font-weight: 600; color: var(--ink-3); transition: color .2s var(--ease); }
.post__more .icon { width: 16px; height: 16px; }
.post:hover .post__more { color: var(--brand); }

/* 资讯筛选 */
.filter { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-bottom: var(--s-6); }
.filter__chip { padding: 8px 18px; border-radius: 999px; border: 1px solid var(--line-strong); font-size: var(--text-sm); font-weight: 500; color: var(--ink-2); transition: all .2s var(--ease); }
.filter__chip:hover { border-color: var(--ink); }
.filter__chip--active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ---------- 16. CTA 区块 ---------- */
.cta-band {
  position: relative; overflow: hidden; padding: var(--s-9) 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-hover) 100%);
  color: #fff; isolation: isolate;
}
.cta-band::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 300px; height: 300px;
  border-radius: 50%; border: 40px solid rgba(255,255,255,.08); z-index: -1;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-6); flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); color: #fff; margin-bottom: var(--s-2); letter-spacing: -.02em; }
.cta-band p { color: rgba(255,255,255,.85); font-size: var(--text-lg); }
.cta-band .btn--white { margin-top: var(--s-4); }

/* ---------- 17. 联系 ---------- */
.contact { padding: var(--s-10) 0; background: var(--ink-deep); color: #fff; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-9); align-items: start; }
.contact__info .section-title { color: #fff; margin-bottom: var(--s-4); }
.contact__info .section-lede { color: rgba(255,255,255,.72); margin-bottom: var(--s-7); }
.contact__info .section-lede strong { color: #fff; }
.contact__list { display: flex; flex-direction: column; gap: var(--s-5); }
.contact__list li { display: flex; align-items: flex-start; gap: var(--s-4); }
.contact__list .icon { width: 40px; height: 40px; padding: 10px; border-radius: var(--r-md); background: rgba(255,255,255,.06); color: var(--brand); flex-shrink: 0; }
.contact__list strong { display: block; font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,.55); margin-bottom: 3px; }
.contact__list span { font-size: var(--text-base); font-weight: 600; color: #fff; }

.contact__form { padding: var(--s-7); background: var(--ink-deep-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r-lg); }
.contact__form h3 { font-size: var(--text-xl); color: #fff; margin-bottom: var(--s-2); }
.contact__form-lede { font-size: var(--text-sm); color: rgba(255,255,255,.6); margin-bottom: var(--s-6); }
.field { margin-bottom: var(--s-4); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field label { display: block; font-size: var(--text-sm); font-weight: 500; color: rgba(255,255,255,.7); margin-bottom: var(--s-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04); color: #fff; border-radius: var(--r-sm);
  font-size: var(--text-base); font-family: inherit; transition: all .2s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.35); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); background: rgba(255,255,255,.08); box-shadow: 0 0 0 3px rgba(221,72,20,.2); }
.field select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23ffffff'><path d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; padding-right: 40px; }
.field select option { background: var(--ink-deep-2); color: #fff; }
.contact__form .btn--primary { margin-top: var(--s-2); }
.contact__form-tip { margin-top: var(--s-4); font-size: var(--text-xs); color: rgba(255,255,255,.4); text-align: center; }
.contact__form-success { margin-top: var(--s-4); padding: 14px 18px; background: rgba(26,158,80,.15); border: 1px solid rgba(26,158,80,.35); border-radius: var(--r-sm); color: #6CE09A; font-size: var(--text-sm); display: flex; align-items: center; gap: var(--s-2); }
.contact__form-success svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---------- 18. Footer ---------- */
.footer { background: var(--ink-deep); color: rgba(255,255,255,.65); padding-top: var(--s-8); border-top: 1px solid rgba(255,255,255,.08); }
.footer__inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--s-8); padding-bottom: var(--s-7); border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand .nav__brand { margin-bottom: var(--s-4); }
.footer__lede { font-size: var(--text-sm); line-height: 1.8; color: rgba(255,255,255,.55); max-width: 320px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.footer__cols h5 { font-size: var(--text-base); font-weight: 600; color: #fff; margin-bottom: var(--s-4); }
.footer__cols a { display: block; padding: 6px 0; font-size: var(--text-sm); color: rgba(255,255,255,.55); transition: color .2s var(--ease); }
.footer__cols a:hover { color: #fff; }
.footer__cols p { font-size: var(--text-sm); color: rgba(255,255,255,.45); margin-bottom: var(--s-3); }
.footer__cols strong { display: block; font-size: var(--text-sm); color: rgba(255,255,255,.85); font-weight: 600; margin-top: 4px; }
.footer__bottom { padding: var(--s-5) 0; font-size: var(--text-sm); color: rgba(255,255,255,.4); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); flex-wrap: wrap; }
.footer__bottom-links { display: flex; gap: var(--s-5); }
.footer__bottom-links a:hover { color: #fff; }

/* ---------- 19. 动画 ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .06s; }
.reveal--delay-2 { transition-delay: .12s; }
.reveal--delay-3 { transition-delay: .18s; }
.reveal--delay-4 { transition-delay: .24s; }

/* ---------- 20. 响应式 ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .hero__panel { max-width: 520px; }
  .contact__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .footer__inner { grid-template-columns: 1fr; gap: var(--s-7); }
  .svc__block { grid-template-columns: 1fr; gap: var(--s-5); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .service { grid-template-columns: 52px 1fr auto; }
  .service__body p { display: none; }
  .nav__menu {
    position: absolute; top: 72px; left: 0; right: 0; background: var(--bg);
    flex-direction: column; gap: 0; padding: var(--s-2) 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: all .25s var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { display: block; padding: 14px 24px; border-radius: 0; }
  .nav__link--active::after { left: 24px; right: auto; width: 24px; bottom: 6px; }
  .nav__toggle { display: flex; }
  .nav__cta .btn { display: none; }
}

@media (max-width: 720px) {
  :root { --s-10: 96px; --s-9: 72px; }
  .topbar__item--hide-sm { display: none; }
  .topbar__inner { justify-content: center; gap: var(--s-4); }
  .hero { padding-top: var(--s-8); }
  .hero__stats { flex-wrap: wrap; gap: var(--s-5) var(--s-6); }
  .stat { flex: 1 1 40%; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--line); }
  .trust__item:nth-child(3) { border-left: none; }
  .about__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .process__list { grid-template-columns: 1fr 1fr; gap: var(--s-7) var(--s-5); }
  .post { grid-template-columns: 1fr; gap: var(--s-3); }
  .post__meta { flex-direction: row; align-items: center; gap: var(--s-3); }
  .svc__list { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .contact__form { padding: var(--s-6) var(--s-5); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
  .team__stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .brand-text__en { display: none; }
  .hero__title { font-size: 2.5rem; }
  .hero__actions .btn { width: 100%; }
  .service { grid-template-columns: 44px 1fr; }
  .service__link { display: none; }
  .service__icon { width: 44px; height: 44px; }
  .about__slogan-text { letter-spacing: .2em; }
  .trust__inner { grid-template-columns: 1fr; }
  .trust__item + .trust__item { border-left: none; border-top: 1px solid var(--line); }
  .process__list { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .team__stats { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}