@charset "UTF-8";
/* ==========================================================================
   IRMC 吉尔吉斯斯坦-美国生殖医学中心
   主题：暖屿 Roselle — 暖白留白 / 覆盆子玫瑰 / 雾青 / 淡金
   零外部依赖：字体走系统栈，图标内联 SVG，配图本地 SVG
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --rose: #C9436B;
  --rose-deep: #9C2B4E;
  --rose-dark: #7A1F3C;
  --rose-soft: #FCEDF1;
  --rose-line: #F4D3DC;
  --coral: #E8825F;

  --mist: #4E8FA6;
  --mist-deep: #2F6B80;
  --mist-soft: #E8F2F5;

  --leaf: #3FA48C;
  --gold: #C9A15C;
  --gold-soft: #FBF2E2;

  --ink: #1F2A33;
  --ink-2: #354652;
  --body: #5C6B78;
  --body-2: #8A97A2;

  --bg: #FFFCFA;
  --bg-alt: #FDF5F1;
  --bg-cool: #F4F7F8;
  --white: #FFFFFF;
  --line: #EADFD8;
  --line-2: #F1E9E3;

  --grad-rose: linear-gradient(135deg, #D2507A 0%, #B8335C 55%, #8E2A4D 100%);
  --grad-warm: linear-gradient(135deg, #C9436B 0%, #E8825F 100%);
  --grad-mist: linear-gradient(135deg, #4E8FA6 0%, #2F6B80 100%);
  --grad-soft: linear-gradient(160deg, #FFF7F3 0%, #FFFDFC 60%, #F3F8F9 100%);

  --sh-xs: 0 1px 2px rgba(31, 42, 51, .04);
  --sh-sm: 0 2px 10px rgba(31, 42, 51, .05);
  --sh-md: 0 10px 30px rgba(31, 42, 51, .07);
  --sh-lg: 0 24px 60px rgba(31, 42, 51, .10);
  --sh-rose: 0 14px 34px rgba(201, 67, 107, .22);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --wrap: 1200px;
  --nav-h: 74px;

  --font-sans: "PingFang SC", "HarmonyOS Sans SC", "MiSans", "Source Han Sans SC",
    "Noto Sans CJK SC", "Microsoft YaHei", "Hiragino Sans GB", system-ui,
    -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-num: "Bahnschrift", "DIN Alternate", "HarmonyOS Sans", ui-monospace,
    "SFMono-Regular", Menlo, Consolas, "Liberation Mono", monospace;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  /* 硬性要求：全局禁止横向溢出 */
  overflow-x: hidden;
  max-width: 100%;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: .2px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .6em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .5px;
  overflow-wrap: break-word;
  word-break: break-word;
}

p { margin: 0 0 1.1em; overflow-wrap: break-word; word-break: break-word; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.35em; }
li { margin-bottom: .45em; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img, video { max-width: 100%; height: auto; display: block; border: 0; }
/* 内联图标：不得沿用「流体图片」规则，否则无约束图标会被拉伸撑破父容器 */
svg { display: inline-block; vertical-align: -.125em; flex: 0 0 auto; }
svg[viewBox="0 0 24 24"] { width: 16px; height: 16px; max-width: none; }
table { width: 100%; border-collapse: collapse; }
button, input, select, textarea { font: inherit; color: inherit; }
strong, b { color: var(--ink-2); font-weight: 700; }
hr { border: 0; border-top: 1px solid var(--line-2); margin: 28px 0; }

::selection { background: var(--rose); color: #fff; }

/* 滚动条 */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #DCC9CE; border-radius: 8px; border: 2px solid var(--bg-alt); }
::-webkit-scrollbar-thumb:hover { background: var(--rose); }

/* ---------- 3. Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  min-width: 0;
}
.wrap-narrow { max-width: 940px; }

.section { padding: 92px 0; position: relative; }
.section-sm { padding: 62px 0; }
.section-alt { background: var(--bg-alt); }
.section-cool { background: var(--bg-cool); }
.section-tint { background: var(--grad-soft); }

/* 栅格子项必须 min-width:0，防止内容撑破 */
.grid { display: grid; gap: 28px; min-width: 0; }
.grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.flex { display: flex; }
.between { justify-content: space-between; }
.center-y { align-items: center; }
.center-x { justify-content: center; }
.wrapfl { flex-wrap: wrap; }
.gap-8 { gap: 8px; } .gap-12 { gap: 12px; } .gap-16 { gap: 16px; } .gap-24 { gap: 24px; }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-12 { margin-top: 12px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }
.text-center { text-align: center; }

/* ---------- 4. Type ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--rose);
  border-radius: 2px;
}
.eyebrow.on-dark { color: #FFD2DF; }
.eyebrow.on-dark::before { background: #FFD2DF; }

.sec-title {
  font-size: clamp(26px, 3.6vw, 40px);
  line-height: 1.28;
  margin-bottom: 14px;
}
.sec-desc {
  color: var(--body);
  font-size: clamp(14px, 1.4vw, 16.5px);
  max-width: 720px;
  margin: 0 auto;
}
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-head .eyebrow { justify-content: center; }
.sec-head-left { text-align: left; margin-bottom: 44px; }
.sec-head-left .sec-desc { margin-left: 0; }

.t-gradient {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { font-size: 17px; color: var(--body); }
.muted { color: var(--body-2); font-size: 14px; }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  cursor: pointer;
  background: none;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
  white-space: nowrap;
  max-width: 100%;
}
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; }
.btn-primary {
  background: var(--grad-rose);
  color: #fff;
  box-shadow: var(--sh-rose);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201, 67, 107, .32); }
.btn-outline { border-color: var(--rose); color: var(--rose); background: rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--rose); color: #fff; transform: translateY(-3px); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--rose-deep); }
.btn-light { background: #fff; color: var(--rose-deep); box-shadow: var(--sh-md); }
.btn-light:hover { transform: translateY(-3px); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--rose); font-weight: 600; font-size: 14.5px;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover { color: var(--rose-deep); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 6. Header ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  font-size: 13px;
  position: relative;
  z-index: 60;
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 40px; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.78); }
.topbar a:hover { color: #fff; }
.topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; min-width: 0; }
.topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left svg { width: 14px; height: 14px; opacity: .8; flex: 0 0 auto; }
.topbar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 252, 250, .88);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 26px rgba(31,42,51,.07); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--nav-h);
}
.logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-mark {
  width: 44px; height: 44px; flex: 0 0 auto;
  border-radius: 13px;
  background: var(--grad-rose);
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-num);
  font-size: 15px; font-weight: 700; letter-spacing: .5px;
  box-shadow: var(--sh-rose);
}
.logo-text { min-width: 0; }
.logo-text b {
  display: block; font-size: 16.5px; color: var(--ink);
  line-height: 1.3; letter-spacing: .6px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.logo-text small {
  display: block; font-size: 11px; color: var(--body-2);
  letter-spacing: 1.6px; font-family: var(--font-num); text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.nav-menu { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-menu > li { position: relative; margin: 0; }
.nav-menu > li > a {
  display: block; padding: 10px 15px; border-radius: var(--r-pill);
  font-size: 15px; font-weight: 500; color: var(--ink-2);
}
.nav-menu > li > a:hover { color: var(--rose); background: var(--rose-soft); }
.nav-menu > li.active > a { color: var(--rose); font-weight: 600; }
.nav-menu > li.active > a::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  bottom: 2px; width: 16px; height: 3px; border-radius: 3px; background: var(--rose);
}

/* 二级下拉 */
.nav-menu li.has-sub > a::before {
  content: ""; position: absolute; right: 8px; top: 50%; margin-top: -2px;
  border-left: 3.5px solid transparent; border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor; opacity: .45;
}
.sub-menu {
  position: absolute; left: 50%; top: 108%; transform: translateX(-50%) translateY(8px);
  min-width: 190px; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-md); box-shadow: var(--sh-lg);
  padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: all .26s var(--ease);
}
.nav-menu li.has-sub:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.sub-menu li { margin: 0; }
.sub-menu a {
  display: block; padding: 9px 14px; border-radius: 9px;
  font-size: 14.5px; color: var(--ink-2); white-space: nowrap;
}
.sub-menu a:hover { background: var(--rose-soft); color: var(--rose-deep); }

.nav-cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-num); font-size: 16px; font-weight: 600; color: var(--rose-deep);
}
.nav-tel svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: #fff; border-radius: 12px; cursor: pointer; padding: 0;
  place-items: center; flex: 0 0 auto;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px; position: relative; transition: all .25s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all .25s var(--ease);
}
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
body.nav-open .nav-toggle span { background: transparent; }
body.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
body.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0; z-index: 45;
  background: rgba(31, 42, 51, .5);
  opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.nav-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: min(86vw, 340px);
  background: var(--bg); padding: 88px 22px 32px; overflow-y: auto;
  transform: translateX(100%); transition: transform .34s var(--ease);
}
body.nav-open .nav-mobile { opacity: 1; visibility: visible; }
body.nav-open .nav-panel { transform: translateX(0); }
.nav-panel ul { list-style: none; padding: 0; margin: 0; }
.nav-panel li { border-bottom: 1px solid var(--line-2); }
.nav-panel li a {
  display: block; padding: 14px 4px; font-size: 16px; color: var(--ink-2); font-weight: 500;
}
.nav-panel li a:hover, .nav-panel li.active a { color: var(--rose); }
.nav-panel .panel-sub { padding: 0 0 10px 14px; border: 0; }
.nav-panel .panel-sub a { padding: 9px 4px; font-size: 14.5px; color: var(--body); border: 0; }
.nav-panel .btn { margin-top: 22px; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  background: var(--grad-soft);
  overflow: hidden;
  padding: 76px 0 0;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 48px; align-items: center; padding-bottom: 84px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 16px 7px 8px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.82); border: 1px solid var(--rose-line);
  color: var(--rose-deep); font-size: 13px; font-weight: 600;
  box-shadow: var(--sh-sm); margin-bottom: 22px;
}
.hero-badge .dot {
  width: 26px; height: 26px; border-radius: 50%; background: var(--grad-warm);
  display: grid; place-items: center; color: #fff; flex: 0 0 auto;
}
.hero-badge .dot svg { width: 14px; height: 14px; }
.hero h1 {
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.22; letter-spacing: .5px; margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal; position: relative; color: var(--rose-deep);
  white-space: nowrap;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 4px; height: 9px;
  background: rgba(232, 130, 95, .28); border-radius: 6px; z-index: -1;
}
.hero-sub { font-size: clamp(15px, 1.6vw, 17.5px); color: var(--body); max-width: 560px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-tags span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-2); box-shadow: var(--sh-xs);
}
.hero-tags svg { width: 15px; height: 15px; color: var(--leaf); flex: 0 0 auto; }

.hero-visual { position: relative; }
.hero-card-main {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-lg); background: var(--rose-soft);
  aspect-ratio: 4 / 3;
}
.hero-card-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-float {
  position: absolute; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  z-index: 3;
}
.hero-float .fi {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  flex: 0 0 auto;
}
.hero-float .fi svg { width: 20px; height: 20px; color: #fff; }
.hero-float b { display: block; font-size: 17px; color: var(--ink); line-height: 1.2; font-family: var(--font-num); }
.hero-float small { font-size: 12px; color: var(--body-2); }
.hero-float.f1 { left: -18px; bottom: 46px; }
.hero-float.f2 { right: -12px; top: 40px; }
.hero-float .fi.c1 { background: var(--grad-rose); }
.hero-float .fi.c2 { background: var(--grad-mist); }

/* 首屏信息面板 */
.hero-panel {
  position: relative; z-index: 2;
  background: rgba(255, 255, 255, .93);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 26px 24px 24px;
  min-width: 0;
}
.hero-panel > h4 {
  display: flex; align-items: center; gap: 9px;
  font-size: 15.5px; margin-bottom: 16px; color: var(--ink);
}
.hero-panel > h4 svg { width: 19px; height: 19px; color: var(--rose); flex: 0 0 auto; }
.hp-list { display: grid; gap: 10px; margin-bottom: 20px; }
.hp-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--r-md);
  background: var(--bg); border: 1px solid var(--line-2);
  transition: all .26s var(--ease); min-width: 0;
}
.hp-item:hover { background: var(--rose-soft); border-color: var(--rose-line); transform: translateX(3px); }
.hp-item > svg:last-child { width: 16px; height: 16px; color: var(--body-2); flex: 0 0 auto; margin-left: auto; }
.hp-ico {
  width: 38px; height: 38px; border-radius: 12px; flex: 0 0 auto;
  display: grid; place-items: center; background: #fff; color: var(--rose);
  box-shadow: var(--sh-xs);
}
.hp-ico svg { width: 19px; height: 19px; }
.hp-txt { min-width: 0; }
.hp-txt b { display: block; font-size: 15.5px; color: var(--ink); line-height: 1.4; }
.hp-txt small {
  display: block; font-size: 11.5px; color: var(--body-2);
  font-family: var(--font-num); letter-spacing: .6px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.hp-meta {
  display: grid; gap: 10px; padding: 16px 0 20px; margin-top: 4px;
  border-top: 1px dashed var(--line);
}
.hp-meta div { display: flex; gap: 9px; align-items: flex-start; font-size: 13.6px; color: var(--body); }
.hp-meta svg { width: 16px; height: 16px; color: var(--mist); flex: 0 0 auto; margin-top: 3px; }
.hp-meta span { min-width: 0; overflow-wrap: break-word; }

/* ---------- 8. Stats ---------- */
.stats-bar {
  position: relative; z-index: 3;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-md);
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}
.stat {
  padding: 26px 18px; text-align: center; min-width: 0;
  border-right: 1px solid var(--line-2);
}
.stat:last-child { border-right: 0; }
.stat b {
  display: block; font-family: var(--font-num);
  font-size: clamp(26px, 3.2vw, 36px); line-height: 1.1; color: var(--rose-deep);
  letter-spacing: .5px;
}
.stat b i { font-style: normal; font-size: .55em; margin-left: 2px; color: var(--coral); }
.stat span { display: block; font-size: 13.5px; color: var(--body); margin-top: 6px; }

/* ---------- 9. Cards / Features ---------- */
.card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--sh-sm);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
  min-width: 0;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--rose-line); }

.feat-icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 18px; background: var(--rose-soft); color: var(--rose);
}
.feat-icon svg { width: 26px; height: 26px; }
.feat-icon.mist { background: var(--mist-soft); color: var(--mist-deep); }
.feat-icon.gold { background: var(--gold-soft); color: var(--gold); }
.feat-icon.leaf { background: #E7F5F1; color: var(--leaf); }
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: 14.8px; color: var(--body); }

/* ---------- 10. Category strip ---------- */
.cat-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.cat-item {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--line-2);
  padding: 26px 22px; min-width: 0;
  transition: all .32s var(--ease);
}
.cat-item::after {
  content: ""; position: absolute; right: -30px; bottom: -30px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--rose-soft); opacity: .55; transition: all .4s var(--ease);
}
.cat-item:hover { border-color: var(--rose-line); transform: translateY(-4px); box-shadow: var(--sh-md); }
.cat-item:hover::after { transform: scale(1.5); opacity: .35; }
.cat-item .ci-num {
  font-family: var(--font-num); font-size: 13px; letter-spacing: 2px;
  color: var(--rose); font-weight: 700; display: block; margin-bottom: 10px;
}
.cat-item h4 { font-size: 17.5px; margin-bottom: 8px; position: relative; z-index: 2; }
.cat-item p { font-size: 14px; margin-bottom: 0; position: relative; z-index: 2; }

/* ---------- 11. Services / Products ---------- */
.svc-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-xl);
  overflow: hidden; display: flex; flex-direction: column; min-width: 0;
  box-shadow: var(--sh-sm);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease);
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.svc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--rose-soft); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-tag {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  padding: 5px 13px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.94); color: var(--rose-deep);
  font-size: 12.5px; font-weight: 700; letter-spacing: .5px;
  box-shadow: var(--sh-xs);
}
.svc-body { padding: 24px; display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.svc-body h3 { font-size: 20px; margin-bottom: 10px; }
.svc-body > p { font-size: 14.8px; color: var(--body); }
.svc-list { list-style: none; padding: 0; margin: 0 0 20px; }
.svc-list li {
  position: relative; padding-left: 22px; font-size: 14.5px; color: var(--body);
  margin-bottom: 8px;
}
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--rose-soft);
  box-shadow: inset 0 0 0 3px var(--rose);
}
.svc-foot {
  margin-top: auto; padding-top: 18px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.svc-price { font-family: var(--font-num); color: var(--rose-deep); font-weight: 700; font-size: 18px; }
.svc-price small { font-size: 12px; color: var(--body-2); font-weight: 500; margin-left: 4px; }

/* 横向大卡（产品展示页） */
.svc-row {
  display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 0; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-sm);
  min-width: 0; transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.svc-row:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.svc-row .svc-media { aspect-ratio: auto; height: 100%; min-height: 240px; }
.svc-row .svc-body { padding: 30px 32px; }
.svc-row h3 { font-size: 22px; }
.svc-row-alt .svc-media { order: 2; }

/* ---------- 12. Process ---------- */
.process {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0; position: relative; margin-top: 8px;
}
.process.p4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process.p6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.process.p4 .proc-step::before, .process.p6 .proc-step::before { top: 20px; }
.proc-step { text-align: center; padding: 0 12px; position: relative; min-width: 0; }
.proc-step::before {
  content: ""; position: absolute; top: 27px; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg, var(--rose-line) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.proc-step:first-child::before { left: 50%; }
.proc-step:last-child::before { right: 50%; }
.proc-dot {
  position: relative; z-index: 2;
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 16px;
  background: #fff; border: 2px solid var(--rose-line);
  display: grid; place-items: center;
  font-family: var(--font-num); font-weight: 700; font-size: 19px; color: var(--rose);
  transition: all .3s var(--ease);
}
.proc-step:hover .proc-dot { background: var(--grad-rose); color: #fff; border-color: transparent; transform: scale(1.08); }
.proc-step h4 { font-size: 16px; margin-bottom: 6px; }
.proc-step p { font-size: 13.5px; color: var(--body); margin-bottom: 0; line-height: 1.7; }

/* ---------- 13. News ---------- */
.news-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  overflow: hidden; display: flex; gap: 0; min-width: 0; height: 100%;
  transition: all .32s var(--ease);
}
.news-card:hover { box-shadow: var(--sh-lg); border-color: var(--rose-line); transform: translateY(-4px); }
.news-media { width: 210px; flex: 0 0 210px; overflow: hidden; background: var(--bg-alt); }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.06); }
.news-body { padding: 22px 24px; min-width: 0; display: flex; flex-direction: column; }
.news-meta {
  display: flex; align-items: center; gap: 12px; font-size: 12.5px;
  color: var(--body-2); margin-bottom: 10px; flex-wrap: wrap;
}
.news-meta .tag {
  padding: 3px 11px; border-radius: var(--r-pill);
  background: var(--rose-soft); color: var(--rose-deep); font-weight: 600;
}
.news-meta > span { display: inline-flex; align-items: center; gap: 5px; }
.news-meta svg { width: 14px; height: 14px; opacity: .6; }
.news-body h3 { font-size: 18px; margin-bottom: 8px; line-height: 1.5; }
.news-card:hover .news-body h3 { color: var(--rose-deep); }
.news-body p {
  font-size: 14.2px; color: var(--body); margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-body .link-arrow { margin-top: auto; }

/* 文章列表页 */
.news-list-item {
  display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 0; background: #fff; border: 1px solid var(--line-2);
  border-radius: var(--r-lg); overflow: hidden; margin-bottom: 22px;
  transition: all .3s var(--ease); min-width: 0;
}
.news-list-item:hover { box-shadow: var(--sh-lg); border-color: var(--rose-line); }
.news-list-item .news-media { width: 100%; flex: none; aspect-ratio: 4 / 3; }
.news-list-item .news-body { padding: 26px 30px; }
.news-list-item h3 { font-size: 21px; }
.news-list-item p { -webkit-line-clamp: 3; }

.filter-bar {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin-bottom: 34px; padding-bottom: 20px; border-bottom: 1px solid var(--line-2);
}
.filter-btn {
  padding: 8px 18px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); font-size: 14.5px; cursor: pointer;
  transition: all .25s var(--ease); white-space: nowrap;
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose); }
.filter-btn.is-active { background: var(--grad-rose); color: #fff; border-color: transparent; box-shadow: var(--sh-rose); }

.pager { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.pager a, .pager span {
  min-width: 40px; height: 40px; padding: 0 13px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: #fff; font-size: 14.5px; color: var(--ink-2);
  font-family: var(--font-num);
}
.pager a:hover { border-color: var(--rose); color: var(--rose); }
.pager .is-current { background: var(--grad-rose); color: #fff; border-color: transparent; }
.pager .disabled { opacity: .45; pointer-events: none; }

/* 侧边栏组件 */
.side-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 24px; margin-bottom: 24px; min-width: 0;
}
.side-card h4 {
  font-size: 16.5px; margin-bottom: 16px; padding-bottom: 12px;
  border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 8px;
}
.side-card h4::before { content: ""; width: 4px; height: 16px; border-radius: 3px; background: var(--grad-warm); }
.side-list { list-style: none; padding: 0; margin: 0; }
.side-list li { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px dashed var(--line-2); }
.side-list li:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.side-list a { display: flex; gap: 12px; align-items: flex-start; }
.side-list .thumb { width: 62px; flex: 0 0 62px; border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; }
.side-list .thumb img { width: 100%; height: 100%; object-fit: cover; }
.side-list .txt { min-width: 0; }
.side-list .txt b {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 14.5px; font-weight: 500; color: var(--ink-2); line-height: 1.6;
}
.side-list a:hover .txt b { color: var(--rose-deep); }
.side-list .txt small { font-size: 12px; color: var(--body-2); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-cloud .filter-btn { font-size: 13px; padding: 6px 14px; }
.rank-list { counter-reset: rk; list-style: none; padding: 0; margin: 0; }
.rank-list li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.rank-list li::before {
  counter-increment: rk; content: counter(rk);
  position: absolute; left: 0; top: 2px; width: 21px; height: 21px; border-radius: 7px;
  background: var(--bg-alt); color: var(--body-2); font-family: var(--font-num);
  font-size: 12px; display: grid; place-items: center; font-weight: 700;
}
.rank-list li:nth-child(1)::before { background: var(--grad-rose); color: #fff; }
.rank-list li:nth-child(2)::before { background: var(--rose-soft); color: var(--rose-deep); }
.rank-list li:nth-child(3)::before { background: var(--mist-soft); color: var(--mist-deep); }
.rank-list a {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 14.5px; color: var(--ink-2); line-height: 1.65;
}
.rank-list a:hover { color: var(--rose-deep); }

/* ---------- 14. Form ---------- */
.form-wrap {
  background: #fff; border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  overflow: hidden; border: 1px solid var(--line-2);
  display: grid; grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
  min-width: 0;
}
.form-side {
  background: var(--grad-rose); color: #fff; padding: 42px 36px;
  position: relative; overflow: hidden; min-width: 0;
}
.form-side::after {
  content: ""; position: absolute; right: -70px; bottom: -70px; width: 220px; height: 220px;
  border-radius: 50%; background: rgba(255,255,255,.08);
}
.form-side h3 { color: #fff; font-size: 25px; margin-bottom: 12px; position: relative; z-index: 2; }
.form-side p { color: rgba(255,255,255,.85); font-size: 14.8px; position: relative; z-index: 2; }
.form-side ul { list-style: none; padding: 0; margin: 26px 0 0; position: relative; z-index: 2; }
.form-side li {
  display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px;
  font-size: 14.8px; color: rgba(255,255,255,.92);
}
.form-side li svg { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 3px; opacity: .9; }
.form-side .hl {
  background: rgba(255,255,255,.14); border-radius: var(--r-md);
  padding: 14px 18px; margin-top: 24px; position: relative; z-index: 2;
}
.form-side .hl b { display: block; font-size: 13px; letter-spacing: 1px; opacity: .8; font-family: var(--font-num); }
.form-side .hl strong { color: #fff; font-size: 21px; font-family: var(--font-num); letter-spacing: 1px; }

.form-main { padding: 40px 38px; min-width: 0; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 14px; color: var(--ink-2); margin-bottom: 8px; font-weight: 600; }
.field label i { color: var(--rose); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--bg); font-size: 15px; color: var(--ink);
  transition: all .25s var(--ease); min-width: 0;
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.7; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--rose); background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 67, 107, .10);
}
.field input::placeholder, .field textarea::placeholder { color: var(--body-2); }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--body); }
.checkline input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--rose); flex: 0 0 auto; }
.checkline a { color: var(--rose); text-decoration: underline; }
.form-note { font-size: 12.5px; color: var(--body-2); margin-top: 14px; line-height: 1.7; }
.form-msg {
  margin-top: 16px; padding: 12px 16px; border-radius: 12px; font-size: 14.5px;
  display: none;
}
.form-msg.ok { display: block; background: #E7F5F1; color: #1F6B57; border: 1px solid #BEE6DA; }
.form-msg.err { display: block; background: var(--rose-soft); color: var(--rose-dark); border: 1px solid var(--rose-line); }

/* ---------- 15. Inner page banner ---------- */
.page-banner {
  position: relative; overflow: hidden;
  background: var(--grad-rose);
  padding: 58px 0 62px; color: #fff;
}
.page-banner .pb-bg { position: absolute; inset: 0; }
.page-banner .pb-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(122,31,60,.92) 0%, rgba(156,43,78,.72) 50%, rgba(201,67,107,.45) 100%);
}
.page-banner .wrap { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,.85); margin-bottom: 0; font-size: 15.5px; max-width: 680px; }
.page-banner .eyebrow { color: #FFD2DF; }
.page-banner .eyebrow::before { background: #FFD2DF; }

.crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--body-2); padding: 18px 0;
  border-bottom: 1px solid var(--line-2); background: #fff;
}
.crumbs a { color: var(--body); }
.crumbs a:hover { color: var(--rose); }
.crumbs span { color: var(--body-2); }
.crumbs svg { width: 13px; height: 13px; opacity: .5; }
.crumbs .cur { color: var(--rose); font-weight: 600; }

/* ---------- 16. Content blocks ---------- */
.prose { min-width: 0; }
.prose h2 {
  font-size: clamp(21px, 2.4vw, 27px); margin: 46px 0 18px;
  padding-left: 14px; border-left: 4px solid var(--rose);
}
.prose h3 { font-size: 19px; margin: 32px 0 14px; color: var(--rose-deep); }
.prose p { font-size: 16px; line-height: 1.95; color: var(--body); }
.prose ul li, .prose ol li { line-height: 1.9; }
.prose figure { margin: 30px 0; }
.prose figure img { border-radius: var(--r-lg); width: 100%; }
.prose figcaption { text-align: center; font-size: 13px; color: var(--body-2); margin-top: 10px; }
.prose blockquote {
  margin: 28px 0; padding: 20px 24px; background: var(--bg-alt);
  border-left: 4px solid var(--coral); border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--ink-2); font-size: 15.5px;
}
.prose blockquote p:last-child { margin-bottom: 0; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 24px 0; }
.prose table, .table-scroll table { min-width: 560px; font-size: 14.8px; background: #fff; }
.prose th, .prose td, .table-scroll th, .table-scroll td {
  padding: 13px 16px; border: 1px solid var(--line-2); text-align: left; vertical-align: top;
}
.prose thead th, .table-scroll thead th { background: var(--bg-alt); color: var(--ink); font-weight: 700; }
.prose tbody tr:nth-child(even) td, .table-scroll tbody tr:nth-child(even) td { background: #FDFBF9; }

.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 26px 0; }
.info-box {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 20px 22px; min-width: 0;
}
.info-box h4 { font-size: 16px; margin-bottom: 8px; }
.info-box h4 svg { width: 18px; height: 18px; color: var(--rose); vertical-align: -3px; margin-right: 2px; }
.info-box p { font-size: 14.5px; margin-bottom: 0; }

/* 文章页头 */
.article-head { padding: 34px 0 8px; }
.article-head h1 { font-size: clamp(24px, 3.2vw, 36px); margin-bottom: 16px; }
.article-meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13.5px; color: var(--body-2); }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-meta svg { width: 15px; height: 15px; opacity: .7; }
.article-cover { margin: 24px 0 10px; border-radius: var(--r-lg); overflow: hidden; }
.article-actions {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  flex-wrap: wrap; margin: 36px 0 0; padding: 22px 0 0; border-top: 1px solid var(--line-2);
}
.article-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 30px; }
.pn-item {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md);
  padding: 18px 22px; min-width: 0; transition: all .28s var(--ease);
}
.pn-item:hover { border-color: var(--rose-line); box-shadow: var(--sh-md); }
.pn-item small { display: block; font-size: 12.5px; color: var(--body-2); margin-bottom: 6px; }
.pn-item b {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  font-size: 15.5px; font-weight: 500; color: var(--ink-2); line-height: 1.65;
}
.pn-item:hover b { color: var(--rose-deep); }
.pn-item.next { text-align: right; }
.pn-empty { opacity: .5; pointer-events: none; }

/* ---------- 17. Timeline (about) ---------- */
.timeline { position: relative; padding-left: 30px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--rose-line), var(--mist-soft));
}
.tl-item { position: relative; padding-bottom: 28px; min-width: 0; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -30px; top: 6px; width: 18px; height: 18px;
  border-radius: 50%; background: #fff; border: 3px solid var(--rose);
}
.tl-item b { display: block; font-family: var(--font-num); color: var(--rose-deep); font-size: 15px; letter-spacing: 1px; }
.tl-item h4 { margin: 4px 0 6px; font-size: 17px; }
.tl-item p { margin: 0; font-size: 14.5px; }

/* 团队 */
.team-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg);
  overflow: hidden; text-align: center; transition: all .3s var(--ease); min-width: 0;
}
.team-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.team-avatar { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt); }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card .tb { padding: 20px 18px 22px; }
.team-card h4 { font-size: 17.5px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--rose); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 13.8px; margin-bottom: 0; line-height: 1.75; }

/* FAQ 折叠：原生 <details>/<summary>，不依赖 JS 即可展开收起 */
.faq-item {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md);
  margin-bottom: 14px; overflow: hidden; min-width: 0;
  transition: box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.faq-item:hover { border-color: var(--rose-line); }
.faq-item[open] { box-shadow: var(--sh-md); border-color: var(--rose-line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: 0; cursor: pointer; text-align: left;
  font-size: 16px; font-weight: 600; color: var(--ink); min-width: 0;
  list-style: none;              /* 去掉 <summary> 默认三角标记 */
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ""; }
.faq-q .ico {
  width: 26px; height: 26px; border-radius: 50%; flex: 0 0 auto;
  background: var(--rose-soft); color: var(--rose); display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-q .ico svg { width: 13px; height: 13px; }
.faq-item[open] .faq-q .ico { transform: rotate(45deg); background: var(--rose); color: #fff; }
/* 注意：这里不能用 display:none，否则 details 原生展开也会被强行隐藏 */
.faq-a { padding: 0 22px 20px; }
.faq-a p { font-size: 14.8px; margin-bottom: 0; }

/* ---------- 18. Testimonial ---------- */
.quote-strip {
  background: var(--grad-rose); color: #fff; border-radius: var(--r-xl);
  padding: 46px 44px; position: relative; overflow: hidden; box-shadow: var(--sh-rose);
}
.quote-strip::before {
  content: "\201C"; position: absolute; right: 34px; top: -18px;
  font-size: 190px; line-height: 1; color: rgba(255,255,255,.10); font-family: Georgia, serif;
}
.quote-strip p { font-size: clamp(16px, 1.9vw, 21px); line-height: 1.85; color: #fff; position: relative; z-index: 2; }
.quote-strip .who { display: flex; align-items: center; gap: 12px; margin-top: 20px; position: relative; z-index: 2; }
.quote-strip .who b { font-size: 15.5px; }
.quote-strip .who small { color: rgba(255,255,255,.75); font-size: 13px; }
.quote-strip .who .av {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.2);
  display: grid; place-items: center; font-weight: 700; flex: 0 0 auto;
}

/* ---------- 19. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; background: var(--ink);
  border-radius: var(--r-xl); padding: 54px 48px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: center;
}
.cta-band::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; background: radial-gradient(circle, rgba(201,67,107,.45), transparent 70%);
}
.cta-band h2 { color: #fff; font-size: clamp(22px, 2.8vw, 32px); margin-bottom: 10px; position: relative; }
.cta-band p { color: rgba(255,255,255,.72); margin-bottom: 0; position: relative; }
.cta-band .cta-act { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }

/* ---------- 20. Links & Footer ---------- */
.links-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.links-grid a {
  display: block; padding: 14px 12px; text-align: center; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line-2); font-size: 14px; color: var(--ink-2);
  transition: all .26s var(--ease);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.links-grid a:hover { background: var(--rose); color: #fff; border-color: var(--rose); transform: translateY(-3px); }

.site-footer { background: #17222B; color: rgba(255,255,255,.62); padding-top: 62px; }
.footer-top {
  display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 40px 30px; padding-bottom: 44px;
}
.footer-col { min-width: 0; }
.footer-col h4 { color: #fff; font-size: 16.5px; margin-bottom: 20px; letter-spacing: .5px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: rgba(255,255,255,.62); font-size: 14.5px; }
.footer-col ul a:hover { color: #fff; padding-left: 4px; }
.footer-col p { font-size: 14.3px; line-height: 1.9; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo .logo-mark { width: 42px; height: 42px; font-size: 14px; }
.footer-logo b { color: #fff; font-size: 16.5px; display: block; }
.footer-logo small { color: rgba(255,255,255,.45); font-size: 11.5px; letter-spacing: 1.5px; font-family: var(--font-num); }
.contact-line { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 14.5px; }
.contact-line svg { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 4px; color: var(--rose); }
.contact-line a, .contact-line span { color: rgba(255,255,255,.72); word-break: break-word; }
.contact-line a:hover { color: #fff; }
.footer-wechat { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; padding: 8px 15px; border-radius: var(--r-pill); background: rgba(255,255,255,.07); font-size: 14px; color: #fff; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,.10); padding: 22px 0 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}
.footer-bar .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bar a { color: rgba(255,255,255,.55); }
.footer-bar a:hover { color: #fff; }

/* ---------- 21. 移动端浮动操作条（纯链接，无弹窗） ---------- */
.mobile-bar { display: none; }
.to-top {
  position: fixed; right: 20px; bottom: 84px; z-index: 40;
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--ink-2); display: grid; place-items: center; cursor: pointer;
  box-shadow: var(--sh-md); opacity: 0; visibility: hidden; transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top svg { width: 18px; height: 18px; }

/* ---------- 23. 图标尺寸兜底（补齐前述组件未覆盖的内联图标） ---------- */
.quote-strip .who .av svg { width: 21px; height: 21px; }
.pn-item svg { width: 14px; height: 14px; vertical-align: -2px; opacity: .75; }
.pager svg { width: 16px; height: 16px; }
.footer-wechat svg { width: 16px; height: 16px; opacity: .9; }
.topbar-right svg { width: 14px; height: 14px; opacity: .8; }
.topbar-right > span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- 语言切换按钮（顶栏右侧，深色底） ---------- */
.lang-switch { display: inline-flex; align-items: center; gap: 5px; margin-left: 6px; flex: 0 0 auto; }
.lang-switch a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 25px; padding: 0 9px;
  font-size: 12px; font-weight: 700; letter-spacing: .03em; line-height: 1;
  color: rgba(255, 255, 255, .82); text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .30); border-radius: 999px;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}
.lang-switch a:hover, .lang-switch a:focus-visible {
  color: #fff; border-color: rgba(255, 255, 255, .68); background: rgba(255, 255, 255, .14); outline: none;
}
.lang-switch a.ls-zh { color: #fff; border-color: rgba(255, 255, 255, .5); }

/* ---------- 24. Reveal 动画（渐进增强） ----------
   默认必须可见：JS 未加载 / 报错 / 兜底触发时内容都能正常显示。
   只有 html 上出现 .js-reveal（由 <head> 内联脚本添加、main.js 成功接管后保留）才启用入场动画。 */
.reveal { opacity: 1; transform: none; }
html.js-reveal .reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
html.js-reveal .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-reveal .reveal,
  html.js-reveal .reveal.in { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 23. Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { gap: 36px; }
  .hero-float.f1 { left: -8px; }
  .hero-float.f2 { right: -4px; }
  .nav-menu > li > a { padding: 10px 11px; font-size: 14.5px; }
  .news-media { width: 180px; flex: 0 0 180px; }
  .links-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; }
  .proc-step { padding: 0 6px; }
  .process.p6 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 0; }
  .process.p6 .proc-step::before { display: none; }
  .process.p6 .proc-dot { width: 48px; height: 48px; font-size: 17px; }
}

@media (max-width: 960px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 56px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; padding-bottom: 60px; }
  .hero-visual { max-width: 520px; margin: 0 auto; }
  .hero-float.f1 { left: 0; bottom: 20px; }
  .hero-float.f2 { right: 0; top: 18px; }
  .nav-menu, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-2); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-row, .svc-row-alt { grid-template-columns: minmax(0, 1fr); }
  .svc-row .svc-media { min-height: 210px; aspect-ratio: 16/9; order: 0 !important; }
  .news-list-item { grid-template-columns: minmax(0, 1fr); }
  .news-list-item .news-media { aspect-ratio: 16/9; }
  .form-wrap { grid-template-columns: minmax(0, 1fr); }
  .form-side { padding: 34px 26px; }
  .form-main { padding: 30px 26px; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 24px; }
  .cta-band { grid-template-columns: minmax(0, 1fr); padding: 42px 30px; }
  .process, .process.p4, .process.p6 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 0; }
  .proc-step::before { display: none; }
  .layout-side { grid-template-columns: minmax(0, 1fr) !important; }
  .side-rail { margin-top: 40px; }
}

@media (max-width: 720px) {
  body { font-size: 15.5px; line-height: 1.8; }
  .wrap { padding: 0 18px; }
  .section { padding: 56px 0; }
  .sec-head { margin-bottom: 36px; }
  .grid, .grid-2, .grid-3, .grid-4 { gap: 20px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0, 1fr); }
  .cat-strip { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .topbar { font-size: 12px; }
  .topbar .wrap { min-height: 36px; padding: 6px 18px; }
  .topbar-right { display: none; }
  .hero h1 { font-size: clamp(26px, 7.4vw, 34px); }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-float { padding: 10px 14px; }
  .hero-float b { font-size: 15px; }
  .hero-float small { font-size: 11px; }
  .hero-float .fi { width: 34px; height: 34px; }
  .hero-float .fi svg { width: 17px; height: 17px; }
  .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: var(--r-md); }
  .stat { padding: 18px 12px; }
  .card { padding: 22px; }
  .news-card { flex-direction: column; }
  .news-card .news-media { width: 100%; flex: none; aspect-ratio: 16/9; }
  .news-body { padding: 20px; }
  .form-grid { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .info-grid { grid-template-columns: minmax(0, 1fr); }
  .article-nav { grid-template-columns: minmax(0, 1fr); }
  .pn-item.next { text-align: left; }
  .links-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-strip { padding: 32px 24px; }
  .footer-top { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .footer-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .proc-step { padding: 0 4px; }
  .process, .process.p4, .process.p6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag-cloud .filter-btn { font-size: 13px; padding: 6px 14px; }
  .table-scroll { margin-left: -18px; margin-right: -18px; padding: 0 18px; }
  .svc-row .svc-body { padding: 24px 22px; }
  .crumbs { font-size: 12.5px; padding: 14px 0; }

  /* 移动端底部浮动条 */
  .mobile-bar {
    display: block; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 55;
    background: rgba(255, 255, 255, .96);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border: 1px solid var(--line); border-radius: var(--r-pill);
    box-shadow: 0 12px 34px rgba(31, 42, 51, .18);
    display: flex; align-items: stretch; gap: 0; overflow: hidden;
  }
  .mobile-bar a {
    flex: 1 1 0; min-width: 0; display: flex; align-items: center; justify-content: center; gap: 7px;
    padding: 13px 8px; font-size: 14.5px; font-weight: 600; color: var(--ink-2);
    white-space: nowrap; overflow: hidden;
  }
  .mobile-bar a svg { width: 17px; height: 17px; flex: 0 0 auto; }
  .mobile-bar a.mb-tel { color: var(--rose-deep); }
  .mobile-bar a.mb-wx { border-left: 1px solid var(--line-2); color: var(--mist-deep); }
  .mobile-bar a.mb-top { flex: 0 0 52px; border-left: 1px solid var(--line-2); color: var(--body-2); }
  .mobile-bar .lang-switch {
    flex: 0 0 auto; gap: 6px; margin: 0; padding: 0 9px;
    border-left: 1px solid var(--line-2);
  }
  .mobile-bar .lang-switch a {
    flex: 0 0 auto; min-width: 36px; height: 34px; padding: 0 7px; font-size: 13px; font-weight: 700;
    color: var(--body-2); border: 1px solid var(--line-2); background: transparent;
  }
  .mobile-bar .lang-switch a:hover, .mobile-bar .lang-switch a:focus-visible {
    color: var(--rose-deep); border-color: var(--rose); background: var(--rose-soft); outline: none;
  }
  body { padding-bottom: 78px; }
  .to-top { display: none; }
}

@media (max-width: 400px) {
  .wrap { padding: 0 14px; }
  .hero-float.f2 { display: none; }
  .mobile-bar a { font-size: 13.5px; padding: 12px 6px; }
  .stat { padding: 16px 8px; }
}

/* 打印 */
@media print {
  .site-header, .mobile-bar, .to-top, .topbar, .cta-band, .form-wrap { display: none !important; }
  body { background: #fff; }
  .section { padding: 20px 0; }
}
