/* ══════════════════════════════════════════════════════════════
   南昌融信 · 官网样式 v2
   顾问级商务质感，墨色 + 暖金点缀
   ════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans SC', 'Inter', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: "palt";
}

:root {
  /* 色彩：更克制的墨色体系 + 暖金点缀 */
  --ink:     #0F1419;   /* 主墨色，比纯黑柔一度 */
  --ink2:    #3A4048;   /* 次级文字 */
  --ink3:    #6E757F;   /* 辅助文字 */
  --ink4:    #A8ADB3;   /* 弱化文字 */
  --bg:      #FBFAF7;   /* 暖米白，顾问质感底色 */
  --bg2:     #F3F0E9;   /* 次级米色 */
  --panel:   #131821;   /* 深色面板 */
  --panel2:  #1B2230;   /* 次级深色 */
  --line:    #E3DED2;   /* 暖米色分割线 */
  --line2:   #D4CDBD;
  --gold:    #B8733A;   /* 暖金点缀，克制的高端感 */
  --gold-d:  #8F5826;
  --gold-l:  #E8D5B8;
  --ok:      #3A6B4E;

  /* 字号 */
  --f-display: 'Noto Serif SC', 'Source Han Serif SC', Georgia, serif;
  --f-body:    'Noto Sans SC', 'Inter', 'PingFang SC', sans-serif;
  --f-num:     'Manrope', 'Inter', sans-serif;

  --sp: 120px;
  --maxw: 1280px;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 56px; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 56px; }

/* ── 数字统一 tabular-nums ── */
.num { font-family: var(--f-num); font-feature-settings: "tnum"; }

/* ── 动画基类 ── */
.fu { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.16,1,.3,1); }
.fu.go { opacity: 1; transform: none; }
.fu.d1 { transition-delay: .08s; }
.fu.d2 { transition-delay: .16s; }
.fu.d3 { transition-delay: .24s; }
.fu.d4 { transition-delay: .32s; }

.lm { overflow: hidden; display: block; }
.lm > span { display: block; transform: translateY(110%); transition: transform 1s cubic-bezier(.16,1,.3,1); }
.lm.go > span { transform: translateY(0); }

/* ── NAV ── */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 9000;
  height: 76px; background: rgba(251,250,247,0.85);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251,250,247,0.95);
}
.nav .container-wide { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-brand img { width: 32px; height: 32px; object-fit: contain; }
.nav-brand-name {
  font-family: var(--f-display);
  font-size: 19px; font-weight: 600; color: var(--ink);
  letter-spacing: 1px;
}
.nav-brand-en {
  font-family: var(--f-num); font-size: 10px;
  letter-spacing: 2.5px; color: var(--ink3);
  margin-top: 2px; text-transform: uppercase;
}
.nav-right { display: flex; align-items: center; gap: 40px; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink2);
  text-decoration: none; letter-spacing: .3px;
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--ink); text-decoration: none;
  padding: 10px 20px;
  background: var(--ink); color: #fff;
  border-radius: 2px;
  transition: all .25s;
}
.nav-cta:hover { background: var(--gold); gap: 12px; }
.nav-cta .arr { font-family: var(--f-num); font-size: 14px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: .3s; }
.mob-menu {
  display: none; position: fixed; inset: 76px 0 0; z-index: 8999;
  background: var(--bg); border-top: 1px solid var(--line);
  padding: 24px; overflow-y: auto;
}
.mob-menu.open { display: block; }
.mob-menu a {
  display: block; padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px; color: var(--ink); text-decoration: none; font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   HERO — 重排版定位
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 150px 0 100px;
  background: var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-num); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-d);
  font-weight: 600; margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero-h1 {
  font-family: var(--f-display);
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -1px;
  margin-bottom: 32px;
}
.hero-h1 .accent { color: var(--gold-d); font-style: italic; }
.hero-h1 .line { display: block; }
.hero-sub {
  font-size: 17px; color: var(--ink2);
  line-height: 1.85; font-weight: 400;
  max-width: 520px; margin-bottom: 48px;
}
.hero-ctas { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px; background: var(--ink); color: #fff;
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 1px;
  transition: all .25s;
}
.btn-primary:hover { background: var(--gold); gap: 18px; }
.btn-primary .arr { font-family: var(--f-num); font-size: 16px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; background: transparent; color: var(--ink);
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 1px;
  border: 1px solid var(--line2);
  transition: all .25s;
}
.btn-ghost:hover { border-color: var(--ink); }

/* Hero 右侧：资质卡 */
.hero-card {
  position: relative;
  background: #fff;
  padding: 36px 36px 32px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -40px rgba(15,20,25,0.15);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; width: 48px; height: 48px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.hero-card-lbl {
  font-family: var(--f-num); font-size: 11px; letter-spacing: 2.5px;
  color: var(--ink3); margin-bottom: 14px; text-transform: uppercase;
}
.hero-card-title {
  font-family: var(--f-display);
  font-size: 20px; font-weight: 600; color: var(--ink);
  line-height: 1.5; margin-bottom: 24px;
}
.hero-card-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.hero-card-meta > div > .v {
  font-family: var(--f-num);
  font-size: 28px; font-weight: 700; color: var(--ink);
  line-height: 1;
}
.hero-card-meta > div > .k {
  font-size: 12px; color: var(--ink3); margin-top: 6px;
}
.hero-card-phone {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.hero-card-phone-lbl { font-size: 12px; color: var(--ink3); letter-spacing: 2px; }
.hero-card-phone-num {
  font-family: var(--f-num); font-size: 22px; font-weight: 700;
  color: var(--ink); text-decoration: none; letter-spacing: .5px;
}

/* ══════════════════════════════════════════════════════════════
   STATS — 极简数字条
   ════════════════════════════════════════════════════════════ */
.stats {
  background: var(--panel);
  color: #fff;
  padding: 72px 0;
  border-top: 1px solid var(--panel2);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 0 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: none; padding-right: 0; }
.stat:hover { transform: translateY(-4px); }
.stat-n {
  font-family: var(--f-num);
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 700; color: #fff; line-height: 1;
  letter-spacing: -2px; margin-bottom: 12px;
  font-feature-settings: "tnum";
}
.stat-n .suf { font-size: .5em; font-weight: 500; color: var(--gold-l); margin-left: 4px; }
.stat-lbl {
  font-size: 14px; color: rgba(255,255,255,.55);
  letter-spacing: .5px;
}
.stat-sub {
  font-size: 12px; color: rgba(255,255,255,.35);
  margin-top: 4px;
  font-family: var(--f-num); letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════════════════ */
.sec { padding: var(--sp) 0; }
.sec-tint { background: var(--bg2); }
.sec-dark { background: var(--panel); color: #fff; }

.sec-head { margin-bottom: 72px; }
.sec-head.center { text-align: center; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-num); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-d);
  font-weight: 600; margin-bottom: 20px;
}
.sec-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--gold);
}
.sec-dark .sec-eyebrow { color: var(--gold-l); }
.sec-h {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.6vw, 52px); font-weight: 500;
  color: var(--ink); line-height: 1.15; letter-spacing: -.5px;
  margin-bottom: 20px; max-width: 900px;
}
.sec-dark .sec-h { color: #fff; }
.sec-head.center .sec-h { margin-left: auto; margin-right: auto; }
.sec-p {
  font-size: 17px; color: var(--ink2); line-height: 1.8;
  max-width: 680px;
}
.sec-dark .sec-p { color: rgba(255,255,255,.65); }
.sec-head.center .sec-p { margin: 0 auto; }

/* ══════════════════════════════════════════════════════════════
   品牌基因
   ════════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 88px; align-items: start; }
.why-left h3 {
  font-family: var(--f-display);
  font-size: 28px; font-weight: 500; color: var(--ink);
  line-height: 1.35; margin-bottom: 24px;
  letter-spacing: -.3px;
}
.why-left p { font-size: 16px; color: var(--ink2); line-height: 1.9; }
.cred-card {
  margin-top: 40px; padding: 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}
.cred-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 3px; background: var(--gold);
}
.cred-card-lbl {
  font-family: var(--f-num); font-size: 11px; letter-spacing: 2.5px;
  color: var(--gold-d); text-transform: uppercase;
  margin-bottom: 12px; font-weight: 600;
}
.cred-card-text {
  font-size: 15px; color: var(--ink2); line-height: 1.8;
}
.cred-card-text strong { color: var(--ink); font-weight: 600; }

.pillars { display: flex; flex-direction: column; gap: 0; }
.pill {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: padding .3s;
}
.pill:last-child { border-bottom: 1px solid var(--line); }
.pill:hover { padding-left: 8px; }
.pill-n {
  font-family: var(--f-num); font-size: 13px; font-weight: 700;
  color: var(--gold-d); letter-spacing: 2px;
  padding-top: 4px;
}
.pill-h {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500; color: var(--ink);
  line-height: 1.4; margin-bottom: 10px;
  letter-spacing: -.2px;
}
.pill-b { font-size: 15px; color: var(--ink2); line-height: 1.85; }

/* ══════════════════════════════════════════════════════════════
   核心业务 — 三大板块
   ════════════════════════════════════════════════════════════ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.svc {
  background: #fff;
  padding: 48px 40px 44px;
  position: relative;
  transition: background .3s;
  display: flex; flex-direction: column;
}
.svc:hover { background: var(--bg); }
.svc::before {
  content: '';
  position: absolute; inset: auto 0 0 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.svc:hover::before { transform: scaleX(1); }
.svc-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.svc-n {
  font-family: var(--f-num); font-size: 13px; font-weight: 700;
  color: var(--gold-d); letter-spacing: 3px;
}
.svc-tag {
  font-size: 11px; color: var(--ink3); letter-spacing: 2px;
  text-transform: uppercase; font-family: var(--f-num);
}
.svc-h {
  font-family: var(--f-display);
  font-size: 26px; font-weight: 500; color: var(--ink);
  line-height: 1.3; margin-bottom: 14px;
  letter-spacing: -.3px;
}
.svc-p {
  font-size: 15px; color: var(--ink2);
  line-height: 1.85; margin-bottom: 28px;
}
.svc-list { list-style: none; margin-bottom: 32px; }
.svc-list li {
  font-size: 14px; color: var(--ink2); padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.6;
}
.svc-list li::before {
  content: ''; flex-shrink: 0;
  width: 4px; height: 4px; margin-top: 9px;
  background: var(--gold);
}
.svc-link {
  margin-top: auto;
  font-family: var(--f-num);
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  color: var(--ink); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  padding-top: 4px; border-top: 1px solid var(--ink);
  width: fit-content;
  transition: gap .25s, color .2s;
}
.svc-link:hover { color: var(--gold-d); gap: 16px; }

/* ══════════════════════════════════════════════════════════════
   服务流程时间轴
   ════════════════════════════════════════════════════════════ */
.tl-wrap {
  display: grid; grid-template-columns: 5fr 7fr; gap: 80px;
  align-items: start;
}
.tl-left { position: sticky; top: 100px; }
.tl-left .sec-h { max-width: none; }
.tl {
  position: relative;
  padding-left: 32px;
}
.tl::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 20px;
  width: 1px; background: var(--line2);
}
.tl-step {
  position: relative; padding: 0 0 40px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: '';
  position: absolute; left: -32px; top: 8px;
  width: 15px; height: 15px;
  background: var(--bg);
  border: 2px solid var(--gold);
  border-radius: 50%;
  z-index: 1;
  transition: all .3s;
}
.tl-step:hover::before { background: var(--gold); transform: scale(1.2); }
.tl-step-time {
  font-family: var(--f-num); font-size: 12px; font-weight: 700;
  color: var(--gold-d); letter-spacing: 1px;
  margin-bottom: 8px;
}
.tl-step-h {
  font-family: var(--f-display);
  font-size: 22px; font-weight: 500; color: var(--ink);
  line-height: 1.3; margin-bottom: 10px;
}
.tl-step-b { font-size: 15px; color: var(--ink2); line-height: 1.8; }

/* ══════════════════════════════════════════════════════════════
   报价计算器
   ════════════════════════════════════════════════════════════ */
.calc {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  min-height: 500px;
}
.calc-left { padding: 52px 48px; border-right: 1px solid var(--line); }
.calc-right {
  padding: 52px 48px;
  background: var(--panel);
  color: #fff;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.calc-right::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: var(--gold);
  opacity: .08;
  border-radius: 50%;
  filter: blur(20px);
}
.calc-lbl-main {
  font-family: var(--f-display);
  font-size: 24px; font-weight: 500; color: var(--ink);
  margin-bottom: 8px;
}
.calc-sub {
  font-size: 14px; color: var(--ink3); margin-bottom: 32px;
}
.calc-right .calc-lbl-main { color: #fff; }
.calc-right .calc-sub { color: rgba(255,255,255,.55); }

.calc-field { margin-bottom: 24px; }
.calc-field-lbl {
  font-family: var(--f-num); font-size: 11px; font-weight: 600;
  color: var(--ink3); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
.calc-opts {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.calc-opt {
  padding: 12px 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  font-size: 14px; color: var(--ink2);
  cursor: pointer; user-select: none;
  transition: all .2s;
  font-family: inherit;
}
.calc-opt:hover { border-color: var(--ink2); color: var(--ink); }
.calc-opt.on {
  background: var(--ink); color: #fff; border-color: var(--ink);
}

.calc-result {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.calc-price-lbl {
  font-size: 13px; color: rgba(255,255,255,.55); letter-spacing: 2px;
  margin-bottom: 16px; font-family: var(--f-num);
}
.calc-price {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 16px;
}
.calc-price .cur { font-family: var(--f-num); font-size: 20px; color: var(--gold-l); font-weight: 500; }
.calc-price .num-big {
  font-family: var(--f-num);
  font-size: 72px; font-weight: 700;
  color: #fff; line-height: 1;
  letter-spacing: -2px;
  font-feature-settings: "tnum";
}
.calc-price .unit { font-family: var(--f-num); font-size: 16px; color: rgba(255,255,255,.6); }
.calc-desc {
  font-size: 14px; color: rgba(255,255,255,.65);
  line-height: 1.8; margin-bottom: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.calc-includes { list-style: none; margin-bottom: 32px; }
.calc-includes li {
  font-size: 13px; color: rgba(255,255,255,.75);
  padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
}
.calc-includes li::before {
  content: '✓'; color: var(--gold-l);
  font-weight: 700; font-size: 14px;
}
.calc-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; background: var(--gold); color: #fff;
  text-decoration: none; font-size: 14px; font-weight: 600;
  letter-spacing: 1.5px;
  align-self: flex-start;
  transition: gap .25s, background .2s;
}
.calc-cta:hover { background: var(--gold-d); gap: 16px; }

/* ══════════════════════════════════════════════════════════════
   江西覆盖地图
   ════════════════════════════════════════════════════════════ */
.coverage {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 80px; align-items: center;
}
.coverage-left .sec-h { max-width: none; }
.cov-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.cov-stat { padding: 20px 0; border-top: 2px solid var(--ink); }
.cov-stat .v {
  font-family: var(--f-num); font-size: 36px; font-weight: 700;
  color: var(--ink); line-height: 1; margin-bottom: 6px;
}
.cov-stat .k { font-size: 13px; color: var(--ink3); letter-spacing: 1px; }

.map-box {
  position: relative;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1.05;
  display: flex; align-items: center; justify-content: center;
}
.map-box svg { width: 100%; height: 100%; }
.map-city {
  cursor: pointer;
  transition: transform .3s;
  transform-origin: center;
  transform-box: fill-box;
}
.map-city:hover { transform: scale(1.15); }
.map-dot { fill: var(--gold); }
.map-ring { fill: none; stroke: var(--gold); stroke-width: 1; opacity: .4; }
@keyframes pulse {
  0%   { r: 6; opacity: .5; }
  70%  { r: 18; opacity: 0; }
  100% { r: 18; opacity: 0; }
}
.map-pulse { animation: pulse 2.2s ease-out infinite; }
.map-lbl {
  font-family: var(--f-display);
  font-size: 16px; font-weight: 600; fill: var(--ink);
}
.map-sub-lbl {
  font-family: var(--f-num);
  font-size: 10px; letter-spacing: 2px; fill: var(--ink3);
  text-transform: uppercase;
}
.map-outline { fill: var(--bg2); stroke: var(--line2); stroke-width: 1; }
.map-outline-inner { fill: none; stroke: var(--line); stroke-width: 1; stroke-dasharray: 3 3; }
.map-legend {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--f-num); font-size: 11px;
  color: var(--ink3); letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════════
   案例 — Before → After 对比
   ════════════════════════════════════════════════════════════ */
.cases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 32px 32px;
  display: flex; flex-direction: column;
  position: relative;
  transition: all .3s;
}
.case:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(15,20,25,.15);
}
.case-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-num); font-size: 11px; font-weight: 600;
  color: var(--gold-d); letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 20px;
}
.case-tag::before { content: ''; width: 14px; height: 1px; background: var(--gold); }
.case-h {
  font-family: var(--f-display);
  font-size: 20px; font-weight: 500; color: var(--ink);
  line-height: 1.45; margin-bottom: 24px;
  letter-spacing: -.2px;
}
.case-meta {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-meta > div { padding: 16px 0; }
.case-meta > div:first-child { border-right: 1px solid var(--line); padding-right: 14px; }
.case-meta > div:last-child { padding-left: 14px; }
.case-meta .k {
  font-family: var(--f-num); font-size: 10px; font-weight: 600;
  color: var(--ink3); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 6px;
}
.case-meta .v-num {
  font-family: var(--f-num); font-size: 20px; font-weight: 700;
  color: var(--ink); line-height: 1.2;
}
.case-meta .v-num.strike { color: var(--ink3); text-decoration: line-through; font-weight: 500; }
.case-meta .v-num.gold { color: var(--gold-d); }

.case-action {
  font-size: 14px; color: var(--ink2); line-height: 1.75;
  margin-bottom: 24px;
  padding: 16px 18px;
  background: var(--bg);
  border-left: 2px solid var(--gold);
}
.case-action .lbl {
  font-family: var(--f-num); font-size: 10px; font-weight: 700;
  color: var(--gold-d); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 6px;
}
.case-result {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 15px; font-weight: 600; color: var(--ok);
  line-height: 1.6;
  display: flex; align-items: flex-start; gap: 10px;
}
.case-result::before {
  content: '→';
  font-family: var(--f-num); font-weight: 700;
  color: var(--ok);
  font-size: 18px; line-height: 1.4;
}

/* ══════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; cursor: pointer; list-style: none;
  font-family: var(--f-display);
  font-size: 19px; font-weight: 500; color: var(--ink);
  line-height: 1.4; letter-spacing: -.2px;
  transition: color .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--gold-d); }
.faq-icon {
  flex-shrink: 0; width: 22px; height: 22px; position: relative;
  margin-left: 24px;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--ink); transition: all .25s;
}
.faq-icon::before { top: 50%; left: 2px; right: 2px; height: 1.5px; margin-top: -.75px; }
.faq-icon::after { left: 50%; top: 2px; bottom: 2px; width: 1.5px; margin-left: -.75px; }
details[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
details[open] .faq-q { color: var(--gold-d); }
.faq-a {
  padding: 0 60px 26px 0;
  font-size: 15px; color: var(--ink2); line-height: 1.9;
}

/* ══════════════════════════════════════════════════════════════
   风险自测入口 CTA
   ════════════════════════════════════════════════════════════ */
.quiz-cta {
  background: var(--ink);
  color: #fff;
  padding: 72px;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.quiz-cta::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: var(--gold); opacity: .1;
  border-radius: 50%; filter: blur(60px);
}
.quiz-cta-h {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px); font-weight: 500;
  color: #fff; line-height: 1.25; margin-bottom: 16px;
  letter-spacing: -.3px;
}
.quiz-cta-p {
  font-size: 16px; color: rgba(255,255,255,.7);
  line-height: 1.8;
}
.quiz-cta-right {
  display: flex; flex-direction: column; gap: 16px;
  position: relative; z-index: 2;
}
.quiz-cta-btn {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 20px 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; text-decoration: none;
  font-size: 15px; font-weight: 500;
  transition: all .3s;
}
.quiz-cta-btn:hover {
  background: var(--gold); border-color: var(--gold);
}
.quiz-cta-btn .arr {
  font-family: var(--f-num); font-size: 18px;
  transition: transform .3s;
}
.quiz-cta-btn:hover .arr { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════
   联系咨询
   ════════════════════════════════════════════════════════════ */
.contact-sec {
  position: relative;
  padding: 100px 0;
  background: var(--bg2);
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  overflow: hidden;
}
.cc-info {
  background: var(--panel);
  color: #fff;
  padding: 56px 52px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.cc-info::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 220px; height: 220px;
  background: var(--gold); opacity: .1;
  border-radius: 50%; filter: blur(40px);
}
.cc-info-eyebrow {
  font-family: var(--f-num); font-size: 11px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-l);
  margin-bottom: 16px; font-weight: 600;
}
.cc-info-h {
  font-family: var(--f-display);
  font-size: 30px; font-weight: 500; color: #fff;
  line-height: 1.3; margin-bottom: 40px;
}
.cc-block {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 2;
}
.cc-block:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.1); }
.cc-block-lbl {
  font-family: var(--f-num); font-size: 11px; letter-spacing: 2px;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  margin-bottom: 10px;
}
.cc-phone {
  font-family: var(--f-num); font-size: 26px; font-weight: 700;
  color: #fff; text-decoration: none; letter-spacing: .5px;
  display: block;
}
.cc-phone:hover { color: var(--gold-l); }
.cc-addr-text { font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.8; }
.cc-qr-wrap {
  margin-top: auto; padding-top: 24px;
  display: flex; align-items: center; gap: 20px;
  position: relative; z-index: 2;
}
.cc-qr-wrap img {
  width: 160px; height: 160px;
  background: #fff; padding: 8px;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
}
.cc-qr-wrap .qr-text {
  font-size: 15px; color: rgba(255,255,255,.82);
  line-height: 1.6; font-weight: 500;
}

.cc-form {
  padding: 56px 52px;
  display: flex; flex-direction: column;
}
.cc-form-h {
  font-family: var(--f-display);
  font-size: 30px; font-weight: 500; color: var(--ink);
  line-height: 1.3; margin-bottom: 12px;
  letter-spacing: -.3px;
}
.cc-form-sub {
  font-size: 14px; color: var(--ink3); line-height: 1.8;
  margin-bottom: 32px;
}

.fg { margin-bottom: 18px; }
.fg label {
  display: block; font-family: var(--f-num); font-size: 11px; font-weight: 600;
  color: var(--ink3); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 8px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--ink); font-size: 15px;
  font-family: inherit; outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none;
  border-radius: 0;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--ink); background: #fff;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--ink4); }
.fg textarea { resize: none; }
.sel-w { position: relative; }
.sel-w::after {
  content: ''; position: absolute; right: 16px; top: 50%;
  transform: translateY(-30%);
  border: 5px solid transparent; border-top-color: var(--ink3);
  pointer-events: none;
}
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsubmit {
  width: 100%; margin-top: 8px; padding: 17px;
  background: var(--ink); color: #fff; border: none;
  font-size: 14px; font-weight: 600; letter-spacing: 2px;
  cursor: pointer; font-family: inherit;
  transition: background .2s, gap .25s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.fsubmit:hover { background: var(--gold); }
.fsubmit .arr { font-family: var(--f-num); }
.fsubmit:disabled { opacity: .5; cursor: not-allowed; }
.ffb { margin-top: 14px; font-size: 14px; text-align: center; display: none; padding: 12px; }
.ffb.ok { display: block; color: var(--ok); background: rgba(58,107,78,.08); border: 1px solid rgba(58,107,78,.2); }
.ffb.err { display: block; color: #c0392b; background: rgba(192,57,43,.08); border: 1px solid rgba(192,57,43,.2); }

/* ══════════════════════════════════════════════════════════════
   Footer
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--panel);
  color: rgba(255,255,255,.55);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-brand-box { }
.footer-brand-name {
  font-family: var(--f-display);
  font-size: 20px; font-weight: 600; color: #fff;
  margin-bottom: 16px; letter-spacing: 1px;
}
.footer-brand-desc {
  font-size: 13px; color: rgba(255,255,255,.55);
  line-height: 1.8; max-width: 320px;
}
.footer-col-h {
  font-family: var(--f-num); font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4); letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a {
  color: rgba(255,255,255,.7); text-decoration: none;
  font-size: 14px; transition: color .2s;
}
.footer-col a:hover { color: var(--gold-l); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  :root { --sp: 88px; }
  .container, .container-wide { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-grid { grid-template-columns: 1fr; }
  .tl-wrap { grid-template-columns: 1fr; gap: 48px; }
  .tl-left { position: static; }
  .calc { grid-template-columns: 1fr; }
  .calc-left { border-right: none; border-bottom: 1px solid var(--line); }
  .coverage { grid-template-columns: 1fr; gap: 48px; }
  .cases-grid { grid-template-columns: 1fr; }
  .quiz-cta { grid-template-columns: 1fr; gap: 32px; padding: 48px; }
  .contact-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nav-right { display: none; }
  .hamburger { display: block; }
  .hero { padding: 120px 0 72px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat { border-right: none; padding: 0 20px; border-left: 1px solid rgba(255,255,255,0.08); }
  .stat:first-child, .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .hero-card-meta { grid-template-columns: 1fr 1fr; }
  .quiz-cta { padding: 36px 28px; }
  .cc-info, .cc-form { padding: 36px 28px; }
  .frow { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container, .container-wide { padding: 0 20px; }
  :root { --sp: 72px; }
  .hero-h1 { font-size: 40px; }
  .hero-card { padding: 24px; }
  .svc { padding: 36px 24px; }
  .case { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}


/* ══════════════════════════════════════════════════════════════
   导航下拉菜单 · Nav Dropdown
   ════════════════════════════════════════════════════════════ */
.nav-dd { position: relative; }
.nav-dd-trig { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.nav-dd-caret {
  font-size: 10px; color: var(--ink3);
  transition: transform .25s, color .2s;
  display: inline-block;
  transform: translateY(1px);
}
.nav-dd:hover .nav-dd-caret { transform: translateY(1px) rotate(-180deg); color: var(--gold-d); }

.nav-dd-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  margin-top: 8px;
  min-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px -20px rgba(15,20,25,0.2);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, transform .25s ease, visibility .2s;
  z-index: 1000;
}
/* 不可见的桥接区：让鼠标从触发按钮过渡到面板时不中断 hover */
.nav-dd-panel::before {
  content: '';
  position: absolute;
  top: -18px; left: -20px; right: -20px; height: 24px;
  background: transparent;
  pointer-events: auto;
}
.nav-dd-panel::after {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-right: none; border-bottom: none;
  transform: translateX(-50%) rotate(45deg);
}
.nav-dd:hover .nav-dd-panel,
.nav-dd:focus-within .nav-dd-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dd-item {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: background .2s, border-color .2s;
  position: relative;
}
.nav-dd-item + .nav-dd-item { border-top: 1px solid var(--line); }
.nav-dd-item:hover {
  background: var(--bg);
  border-left-color: var(--gold);
}
.nav-dd-item .nav-dd-n {
  font-family: var(--f-num);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-d);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.nav-dd-item .nav-dd-h {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: .3px;
}
.nav-dd-item .nav-dd-b {
  font-size: 12px;
  color: var(--ink3);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .nav-dd-panel { display: none; }
}


/* ======= 专业服务 Expert · 4 栏紧凑版 ======= */
.svc-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.svc-compact {
  padding: 36px 28px 32px;
}
.svc-compact .svc-h { font-size: 22px; margin-bottom: 14px; }
.svc-compact .svc-p { font-size: 14px; line-height: 1.75; margin-bottom: 20px; }
.svc-compact .svc-list { margin-bottom: 24px; }
.svc-compact .svc-list li { font-size: 13px; padding-left: 18px; margin-bottom: 8px; }
.svc-compact .svc-list li::before { top: 8px; }
.svc-compact .svc-link { font-size: 13px; }

@media (max-width: 1200px) {
  .svc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .svc-grid-4 { grid-template-columns: 1fr; }
}

/* ====================== APPLE SKIN · v3 高级风格覆盖 ======================
   目标：极致留白、大号薄体标题、近纯白背景、药丸按钮、毛玻璃卡片
   ========================================================================= */

:root {
  --ink:     #1D1D1F;   /* Apple 主文字 */
  --ink2:    #424245;
  --ink3:    #6E6E73;   /* Apple 次级灰 */
  --ink4:    #86868B;
  --bg:      #FFFFFF;   /* 纯白 */
  --bg2:     #F5F5F7;   /* Apple 浅灰分区 */
  --line:    #E8E8ED;
  --line2:   #D2D2D7;
  --gold:    #1D1D1F;   /* 让原本的金色链接改成纯墨色，更Apple */
  --gold-d:  #0066CC;   /* Apple 链接蓝 */
  --gold-l:  #F5F5F7;

  --sp: 140px;          /* Apple 级留白 */
  --maxw: 1200px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro SC", "SF Pro Display",
               "PingFang SC", "Helvetica Neue", "Noto Sans SC", sans-serif;
  letter-spacing: -.015em;
}

/* 标题：薄体大字 */
.hero-h1,
.sec-h {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
               "PingFang SC", "Noto Sans SC", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: -.025em !important;
}
.hero-h1 { font-size: clamp(44px, 5.8vw, 80px) !important; line-height: 1.08 !important; }
.hero-h1 .accent { color: var(--ink) !important; font-style: normal !important; }
.sec-h { font-size: clamp(32px, 3.6vw, 52px) !important; line-height: 1.12 !important; }
.hero-sub, .sec-p { color: var(--ink3) !important; font-weight: 400 !important; }

/* Eyebrow：小写 · 无大写锁定 · 更克制 */
.sec-eyebrow, .hero-eyebrow {
  text-transform: none !important;
  letter-spacing: .02em !important;
  color: var(--ink3) !important;
  font-weight: 500 !important;
  font-size: 14px !important;
}
.sec-eyebrow::before, .hero-eyebrow::before { display: none !important; }

/* 按钮：全圆角 · Apple pill */
.btn-primary,
.nav-cta {
  border-radius: 980px !important;
  padding: 14px 24px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  font-size: 15px !important;
}
.btn-primary { background: #0066CC !important; color: #fff !important; }
.btn-primary:hover { background: #0051A8 !important; gap: 12px !important; }
.nav-cta { background: #0066CC !important; padding: 9px 18px !important; font-size: 13px !important; }
.nav-cta:hover { background: #0051A8 !important; }

.btn-ghost {
  border-radius: 980px !important;
  border: 1px solid transparent !important;
  color: #0066CC !important;
  padding: 14px 4px !important;
  background: transparent !important;
}
.btn-ghost::after { content: ' ›'; }
.btn-ghost:hover { color: #004499 !important; }

/* NAV: 窄高 + 极细边 */
.nav { height: 52px !important; background: rgba(255,255,255,.72) !important; }
.nav.scrolled { background: rgba(255,255,255,.92) !important; border-bottom-color: var(--line) !important; }
.nav-brand-name { font-size: 17px !important; font-weight: 600 !important; letter-spacing: -.01em !important; }
.nav-links { gap: 32px !important; }
.nav-links a { font-size: 12px !important; color: var(--ink) !important; font-weight: 400 !important; opacity: .88; }
.nav-links a:hover { opacity: 1; }
.nav-links a::after { display: none !important; }

/* Section 分区：浅灰 */
.sec-tint { background: var(--bg2) !important; }

/* 卡片：白底 + 大圆角 + 柔投影 */
.hero-card, .svc, .inc-card, .step-h, .related-card,
.case-card, .why-card, .pill, .faq-item {
  border-radius: 18px !important;
  border: 1px solid var(--line) !important;
  background: #fff !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.04) !important;
}
.sec-tint .svc, .sec-tint .inc-card, .sec-tint .step-h,
.sec-tint .related-card, .sec-tint .why-card, .sec-tint .faq-item {
  background: #fff !important;
}
.svc::before { display: none !important; }
.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08) !important;
  transition: all .4s cubic-bezier(.16,1,.3,1);
}

/* 链接色统一苹果蓝 */
.svc-link, .related-card .arr { color: var(--gold-d) !important; }
.svc-link:hover { color: #004499 !important; }

/* 导航下拉：更轻 */
.nav-dd-panel { border-radius: 18px !important; box-shadow: 0 20px 60px rgba(0,0,0,.1) !important; }

/* Hero 区距调整 */
.hero { padding: 120px 0 90px !important; }
.hero-grid { gap: 60px !important; align-items: center !important; }

/* 统一撤销原暖金描边 */
.hero-card::before { display: none !important; }
.accent { color: var(--ink) !important; font-style: normal !important; }

/* Hero 联系卡（新增版） */
.hero-contact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 32px 28px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.12);
}

/* 南昌本地红点 + 徽章 */
.local-dot {
  display: inline-block; width: 10px; height: 10px;
  background: #E60012; border-radius: 50%;
  margin-right: 12px; vertical-align: middle;
  box-shadow: 0 0 0 4px rgba(230,0,18,.18);
  animation: localPulse 2s ease-in-out infinite;
}
@keyframes localPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(230,0,18,.18); }
  50%     { box-shadow: 0 0 0 10px rgba(230,0,18,.05); }
}
.hero-eyebrow {
  display: inline-flex !important;
  align-items: center;
  color: #E60012 !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  letter-spacing: .02em !important;
  padding: 10px 18px 10px 16px;
  background: rgba(230,0,18,.06);
  border-radius: 980px;
  margin-bottom: 32px !important;
}

/* 南昌地标徽章条 */
.local-ribbon {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--ink3);
}
.local-ribbon .lr-item {
  display: inline-flex; align-items: center; gap: 8px;
}
.local-ribbon .lr-item svg {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--ink);
}
.local-ribbon strong { color: var(--ink); font-weight: 600; }
.hero-contact .hc-lbl {
  font-size: 12px; color: var(--ink3);
  letter-spacing: .04em; margin-bottom: 8px;
}
.hero-contact .hc-phone {
  font-family: 'SF Pro Display', -apple-system, 'Manrope', sans-serif;
  font-size: 34px; font-weight: 600;
  color: var(--ink); letter-spacing: -.02em;
  text-decoration: none; display: block;
  margin-bottom: 4px;
  font-feature-settings: "tnum";
}
.hero-contact .hc-phone:hover { color: #0066CC; }
.hero-contact .hc-sub {
  font-size: 13px; color: var(--ink3); margin-bottom: 22px;
}
.hc-split {
  display: grid; grid-template-columns: auto 1fr;
  gap: 28px; align-items: center;
  margin-top: 22px;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.hc-qr {
  width: 168px; height: 168px;
  border-radius: 16px;
  border: 1px solid var(--line);
  overflow: hidden; background: #fff;
  flex-shrink: 0;
  padding: 6px;
}
.hc-qr img { width: 100%; height: 100%; object-fit: contain; display: block; }
.hc-meta .hc-meta-h {
  font-size: 17px; font-weight: 600; color: var(--ink);
  margin-bottom: 8px; letter-spacing: -.01em;
}
.hc-meta .hc-meta-b {
  font-size: 14px; color: var(--ink3); line-height: 1.6;
}
.hc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  padding: 9px 18px;
  background: #0066CC; color: #fff;
  border-radius: 980px;
  text-decoration: none; font-size: 13px; font-weight: 500;
  transition: background .25s;
}
.hc-cta:hover { background: #0051A8; }

/* 质资标识（替代原资质卡） */
.hero-creds {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--bg2);
  border-radius: 18px;
  font-size: 13px; color: var(--ink3);
  line-height: 1.6;
}
.hero-creds strong { color: var(--ink); font-weight: 600; }

/* 响应式 */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr !important; }
}
