/* ============================================================
   主张网 · 液态玻璃风（Liquid Glass）
   说明：Apple Liquid Glass 官方规范仅用于苹果平台（iOS 26 等），
   官方未提供任何网页 CSS 实现。本文件是"网页近似
   （approximation）"：backdrop-filter 折射模糊 + 分层内描边 +
   镜面内高光 + 胶囊形态 + 流动彩色光斑。
   与"玻璃拟态风"的差异：更透的填充（.42）、更强的镜面内高光、
   边缘折射描边（三层 inset）、胶囊/水滴形态（导航与按钮 999px）、
   海蓝 #0A84FF 强调、天蓝→白→淡青流动底。
   仅由 CSS/JS 实现整站视觉，HTML 与主目录保持零差异。
   ============================================================ */

/* 本地字体（相对本文件路径，无任何外链） */
@import url('vendor/fonts/outfit-v5.3.0-500.css');
@import url('vendor/fonts/outfit-v5.3.0-700.css');
@import url('vendor/fonts/outfit-v5.3.0-800.css');

/* ---------- 设计变量 ---------- */
:root {
  --ink: #0B2540;             /* 文字主色 深海军蓝 */
  --muted: #4A6280;           /* 次级文字 */
  --accent: #0A84FF;          /* 海蓝（Apple 系统蓝近似） */
  --accent-deep: #0071E3;
  --cyan: #7DD3FC;            /* 光斑：青 */
  --blue: #60A5FA;            /* 光斑：蓝 */
  --mint: #6EE7B7;            /* 光斑：薄荷 */
  --glass: rgba(255, 255, 255, .42);       /* 玻璃填充（比磨砂玻璃更透） */
  --glass-strong: rgba(255, 255, 255, .6);
  --edge: rgba(255, 255, 255, .55);        /* 1px 外描边 */
  /* 边缘折射：环形内描边 + 顶部镜面高光 + 底部反光 */
  --refract: inset 0 0 0 1px rgba(255, 255, 255, .35),
             inset 0 1.5px 0 rgba(255, 255, 255, .9),
             inset 0 -1px 0 rgba(255, 255, 255, .25);
  --refract-soft: inset 0 0 0 1px rgba(255, 255, 255, .3),
                  inset 0 1px 0 rgba(255, 255, 255, .7),
                  inset 0 -1px 0 rgba(255, 255, 255, .18);
  --shadow: 0 10px 40px rgba(14, 80, 140, .10), 0 2px 8px rgba(14, 80, 140, .06);
  --shadow-lg: 0 18px 56px rgba(14, 80, 140, .16), 0 4px 14px rgba(14, 80, 140, .08);
  --shadow-blue: 0 10px 28px rgba(10, 132, 255, .38), 0 2px 8px rgba(10, 132, 255, .22);
  --r-lg: 32px;   /* 大面板 */
  --r: 30px;      /* 卡片 */
  --r-md: 24px;
  --r-sm: 18px;
  --pill: 999px;  /* 胶囊 */
  --font-display: 'Outfit', -apple-system, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Segoe UI', sans-serif;
  --mono: ui-monospace, 'SF Mono', SFMono-Regular, Menlo, Consolas, 'Courier New', monospace;
  --ease: cubic-bezier(.32, .72, .24, 1);   /* 带一点回弹的液态缓动 */
  --blur: blur(24px) saturate(180%);
  --blur-soft: blur(14px) saturate(170%);
}

/* ---------- 基础 ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: #EAF6FF; /* 兜底底色，清透渐变画在其上 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* 清透浅色渐变底：天蓝 → 白 → 淡青（固定层，光斑画在其上） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(168deg, #D9EEFF 0%, #F2F9FF 38%, #FDFEFF 58%, #E8FBF5 100%);
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
b, strong { font-weight: 700; }
ul { list-style: none; }
button { font-family: inherit; }
::selection { background: rgba(10, 132, 255, .22); color: var(--ink); }
:focus-visible { outline: 3px solid rgba(10, 132, 255, .55); outline-offset: 2px; border-radius: 6px; }

/* 滚动条：胶囊形 */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(11, 37, 64, .2); border-radius: var(--pill); border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(11, 37, 64, .36); background-clip: content-box; border: 2px solid transparent; }

/* ---------- JS 注入的流动光斑（水滴状，缓慢漂移） ---------- */
.lg-blob {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(64px);
  opacity: .62;
  will-change: transform;
}
.lg-blob-a {
  width: 46rem; height: 46rem; top: -12rem; left: -10rem;
  background: radial-gradient(closest-side, var(--cyan), transparent 72%);
  animation: lg-drift-a 30s var(--ease) infinite alternate;
}
.lg-blob-b {
  width: 40rem; height: 40rem; top: 16%; right: -12rem;
  background: radial-gradient(closest-side, var(--blue), transparent 72%);
  animation: lg-drift-b 38s var(--ease) infinite alternate;
}
.lg-blob-c {
  width: 42rem; height: 42rem; bottom: -14rem; left: 24%;
  background: radial-gradient(closest-side, var(--mint), transparent 72%);
  animation: lg-drift-c 34s var(--ease) infinite alternate;
}
@keyframes lg-drift-a {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(14vw, 10vh, 0) scale(1.14); }
  100% { transform: translate3d(6vw, 22vh, 0) scale(.94); }
}
@keyframes lg-drift-b {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(-12vw, 16vh, 0) scale(.92); }
  100% { transform: translate3d(-4vw, 30vh, 0) scale(1.1); }
}
@keyframes lg-drift-c {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(10vw, -14vh, 0) scale(1.12); }
  100% { transform: translate3d(-8vw, -6vh, 0) scale(.96); }
}

/* 滚动入场（由 JS 添加 .lg-reveal / .lg-in；JS 缺席时内容始终可见） */
.lg-reveal { opacity: 0; transform: translateY(22px) scale(.995); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.lg-reveal.lg-in { opacity: 1; transform: none; }
.grid > .lg-reveal:nth-child(2) { transition-delay: .08s; }
.grid > .lg-reveal:nth-child(3) { transition-delay: .16s; }
.grid > .lg-reveal:nth-child(4) { transition-delay: .24s; }
.grid > .lg-reveal:nth-child(5) { transition-delay: .08s; }
.grid > .lg-reveal:nth-child(6) { transition-delay: .16s; }
.routelist > .lg-reveal:nth-child(2),
.steps > .lg-reveal:nth-child(2) { transition-delay: .1s; }
.routelist > .lg-reveal:nth-child(3),
.steps > .lg-reveal:nth-child(3) { transition-delay: .2s; }
.routelist > .lg-reveal:nth-child(4) { transition-delay: .1s; }
.routelist > .lg-reveal:nth-child(5) { transition-delay: .2s; }

/* ---------- 布局容器 ---------- */
.container { max-width: 1180px; margin-inline: auto; padding-inline: 24px; }

/* ---------- 顶栏（清透玻璃薄条） ---------- */
.topbar {
  background: rgba(255, 255, 255, .34);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  backdrop-filter: var(--blur-soft);
  -webkit-backdrop-filter: var(--blur-soft);
  font-size: 13px;
  color: var(--muted);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 9px; padding-bottom: 9px; flex-wrap: wrap; }
.topbar b { color: var(--ink); }
.topbar .tel { color: var(--accent); font-weight: 600; text-decoration: none; }
.topbar .tel:hover { text-decoration: underline; }

/* ---------- 悬浮胶囊导航（液态玻璃水滴条） ---------- */
.nav { position: sticky; top: 14px; z-index: 80; }
.nav .container {
  position: relative;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 10px 12px 10px 22px;
  background-color: var(--glass);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, .14));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--edge);
  border-radius: var(--pill);
  box-shadow: var(--shadow), var(--refract);
  transition: padding .35s var(--ease), background-color .35s var(--ease), box-shadow .35s var(--ease);
}
/* 胶囊表面镜面流光 */
.nav .container::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(112deg, rgba(255, 255, 255, .38) 0%, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0) 68%, rgba(125, 211, 252, .12) 100%);
  pointer-events: none;
}
/* 滚动后：胶囊浮起并收紧 */
.nav.scrolled .container {
  padding: 6px 8px 6px 18px;
  background-color: var(--glass-strong);
  box-shadow: var(--shadow-lg), var(--refract);
}
.nav.scrolled .logo img { width: 32px; height: 32px; }

.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -.2px; white-space: nowrap; }
.logo .mark-img { border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5), 0 2px 8px rgba(14, 80, 140, .18); transition: width .35s var(--ease), height .35s var(--ease); }
.logo small { font-family: var(--font-body); font-size: 11.5px; font-weight: 600; color: var(--muted); margin-left: 4px; letter-spacing: .1em; }

.links { position: relative; display: flex; align-items: center; gap: 2px; }
.links a:not(.btn) { padding: 8px 14px; border-radius: var(--pill); font-size: 14px; font-weight: 500; color: #29486B; text-decoration: none; white-space: nowrap; transition: background .25s var(--ease), color .25s var(--ease); }
.links a:not(.btn):hover { background: rgba(10, 132, 255, .12); color: var(--accent-deep); }
.links a.active { background: rgba(10, 132, 255, .15); color: var(--accent-deep); font-weight: 700; }
.links .btn.sm { margin-left: 8px; }

.menu-btn { display: none; width: 42px; height: 42px; border-radius: var(--pill); border: 1px solid var(--edge); background: rgba(255, 255, 255, .5); cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.menu-btn span { display: block; width: 18px; height: 2px; border-radius: var(--pill); background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 胶囊按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px;
  border-radius: var(--pill);
  border: 1px solid rgba(255, 255, 255, .4);
  background-color: var(--accent);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, 0) 52%, rgba(0, 60, 140, .12));
  color: #fff;
  font: 600 15px/1.2 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  box-shadow: var(--shadow-blue), inset 0 1.5px 0 rgba(255, 255, 255, .55), inset 0 -1px 0 rgba(0, 40, 90, .18);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background-color .28s var(--ease), color .28s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
/* hover：轻微放大 + 高光增强 */
.btn:hover {
  transform: scale(1.03);
  background-color: var(--accent-deep);
  box-shadow: 0 14px 36px rgba(10, 132, 255, .46), 0 3px 10px rgba(10, 132, 255, .28),
              inset 0 2px 0 rgba(255, 255, 255, .85), inset 0 -1px 0 rgba(0, 40, 90, .18);
}
.btn:active { transform: scale(.99); }
.btn.lg { padding: 15px 32px; font-size: 16px; }
.btn.sm { padding: 8px 18px; font-size: 13.5px; }

/* 玻璃胶囊按钮（通透 + 镜面高光） */
.btn.ghost {
  background-color: var(--glass);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, .16));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: var(--ink);
  border: 1px solid var(--edge);
  box-shadow: var(--shadow), var(--refract);
}
.btn.ghost:hover {
  background-color: var(--glass-strong);
  color: var(--accent-deep);
  box-shadow: var(--shadow-lg), var(--refract);
}

/* ---------- Hero（大水滴面板） ---------- */
.hero { padding: 64px 0 56px; }
.hero .inner {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  background-color: var(--glass);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .48), rgba(255, 255, 255, 0) 40%, rgba(110, 231, 183, .08));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow), var(--refract);
}
/* 面板内流动色晕：青 + 薄荷 */
.hero .inner::before {
  content: "";
  position: absolute; inset: -38%;
  background:
    radial-gradient(closest-side at 24% 12%, rgba(125, 211, 252, .3), transparent),
    radial-gradient(closest-side at 86% 88%, rgba(110, 231, 183, .22), transparent);
  pointer-events: none;
}
/* 顶部镜面斜向流光 */
.hero .inner::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .34) 0%, rgba(255, 255, 255, 0) 38%);
  pointer-events: none;
}
.hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.16;
  letter-spacing: -.5px;
  margin-top: 18px;
}
.accent { color: var(--accent); }
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .accent { background: linear-gradient(105deg, var(--accent) 10%, #32ADE6 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
}
.hero .sub { position: relative; margin-top: 18px; max-width: 680px; font-size: 16.5px; line-height: 1.95; color: var(--muted); }
.hero .sub strong { font-weight: 700; }

/* 质量徽章：小玻璃胶囊 */
.quality {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px;
  border-radius: var(--pill);
  background-color: rgba(255, 255, 255, .5);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 60%);
  backdrop-filter: var(--blur-soft);
  -webkit-backdrop-filter: var(--blur-soft);
  border: 1px solid rgba(10, 132, 255, .3);
  color: var(--accent-deep);
  font-size: 13.5px; font-weight: 600;
  box-shadow: var(--shadow), var(--refract-soft);
}

.eyebrow { position: relative; display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--accent-deep); letter-spacing: .18em; }
/* 水滴形标记 */
.eyebrow::before {
  content: "";
  width: 12px; height: 12px;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--cyan), var(--accent));
  box-shadow: 0 2px 8px rgba(10, 132, 255, .35), inset 0 1px 0 rgba(255, 255, 255, .8);
}

.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* 主题胶囊 */
.pills { position: relative; margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; }
.pills a {
  padding: 9px 20px; border-radius: var(--pill);
  background-color: rgba(255, 255, 255, .4);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, .18));
  backdrop-filter: var(--blur-soft);
  -webkit-backdrop-filter: var(--blur-soft);
  border: 1px solid var(--edge);
  color: var(--ink); font-size: 14px; font-weight: 500; text-decoration: none;
  box-shadow: var(--shadow), var(--refract-soft);
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pills a:hover {
  background-color: rgba(10, 132, 255, .14);
  color: var(--accent-deep);
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-lg), var(--refract-soft);
}

.trustrow { position: relative; margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 26px; font-size: 14px; color: var(--muted); }
.trustrow span { display: inline-flex; align-items: center; gap: 9px; }
.trustrow .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #BFF3FF, var(--cyan) 45%, var(--accent));
  box-shadow: 0 0 0 3px rgba(10, 132, 255, .14), inset 0 -1px 1px rgba(0, 60, 140, .3);
}

/* ---------- 区块 ---------- */
.section { padding: 76px 0; }
.section.tinted {
  background-color: rgba(255, 255, 255, .34);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .1));
  border-top: 1px solid rgba(255, 255, 255, .55);
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}
.h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.25; letter-spacing: -.3px; margin-top: 14px; }
.lede { margin-top: 14px; max-width: 760px; color: var(--muted); font-size: 16.5px; line-height: 1.85; }

/* ---------- 网格与液态玻璃卡片 ---------- */
.grid { display: grid; gap: 22px; margin-top: 34px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }

.feature, .card, .hub-card, .stepcard, .routecard, .stat {
  position: relative;
  background-color: var(--glass);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 34%, rgba(125, 211, 252, .06));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--edge);
  border-radius: var(--r);
  box-shadow: var(--shadow), var(--refract);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
/* hover：上浮 2px + 折射边缘泛蓝 */
.feature:hover, .hub-card:hover, .stepcard:hover, .stat:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 132, 255, .38);
  background-color: var(--glass-strong);
  box-shadow: var(--shadow-lg), var(--refract);
}

.feature, .hub-card { display: block; padding: 30px 28px; text-decoration: none; }
.feature h3, .card h3, .hub-card h3, .stepcard h3, .routecard h3 { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
.feature h3 { font-size: 19px; margin-bottom: 10px; letter-spacing: -.2px; }
.feature p, .card p, .hub-card p { color: var(--muted); font-size: 15px; line-height: 1.8; }
.feature .go { display: inline-block; margin-top: 18px; color: var(--accent-deep); font-weight: 700; font-size: 14.5px; }
.feature .go::after { content: "→"; display: inline-block; margin-left: 6px; transition: transform .25s var(--ease); }
.feature:hover .go::after { transform: translateX(4px); }

.card { padding: 28px; }
.card:hover { border-color: rgba(10, 132, 255, .3); box-shadow: var(--shadow-lg), var(--refract); }
.card h3 { font-size: 19px; margin: 12px 0 10px; letter-spacing: -.2px; }
.card .more { margin-top: 16px; }
.card .more a { color: var(--accent-deep); font-weight: 600; font-size: 14.5px; text-decoration: none; }
.card .more a:hover { text-decoration: underline; }
.assist { margin-top: 18px; padding-top: 16px; border-top: 1px dashed rgba(74, 98, 128, .35); font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.assist .btn.sm { flex: 0 0 auto; }

.hub-card h3 { font-size: 18px; margin: 12px 0 8px; letter-spacing: -.2px; }
.hub-card p { font-size: 14.5px; line-height: 1.75; }

/* 标签（玻璃胶囊小片） */
.tag { display: inline-flex; align-items: center; padding: 4px 13px; border-radius: var(--pill); font-size: 12px; font-weight: 700; letter-spacing: .04em; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7); }
.t-brand { background: rgba(10, 132, 255, .14); color: #0069D9; border: 1px solid rgba(10, 132, 255, .28); }
.t-green { background: rgba(16, 185, 129, .13); color: #059669; border: 1px solid rgba(16, 185, 129, .3); }
.t-navy { background: rgba(11, 37, 64, .09); color: #0B2540; border: 1px solid rgba(11, 37, 64, .2); }
.t-amber { background: rgba(245, 158, 11, .14); color: #B45309; border: 1px solid rgba(245, 158, 11, .32); }

/* ---------- 使命宣言 + 用户评价 ---------- */
.mission { padding: 84px 0; text-align: center; }
.mission h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.6vw, 40px); line-height: 1.4; letter-spacing: -.3px; max-width: 880px; margin: 0 auto; }
.mission > .container > p { max-width: 780px; margin: 18px auto 0; color: var(--muted); font-size: 16.5px; line-height: 1.9; }
.quotes {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 40px auto 0;
  padding: clamp(26px, 4vw, 40px);
  text-align: left;
  background-color: var(--glass);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .46), rgba(255, 255, 255, 0) 42%, rgba(96, 165, 250, .07));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--edge);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow), var(--refract);
}
.quotes::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}
.q-slide { display: none; }
.q-slide.is-active { display: block; animation: lg-qfade .55s var(--ease); }
@keyframes lg-qfade { from { opacity: 0; transform: translateY(10px) scale(.99); } to { opacity: 1; transform: none; } }
.q-slide p { font-size: 17.5px; font-weight: 500; line-height: 1.9; color: var(--ink); }
.q-slide cite { display: block; margin-top: 12px; font-style: normal; font-size: 13.5px; color: var(--muted); }
.q-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.q-dot { width: 9px; height: 9px; border-radius: var(--pill); border: 0; padding: 0; background: rgba(11, 37, 64, .2); cursor: pointer; transition: width .3s var(--ease), background .3s var(--ease); }
.q-dot:hover { background: rgba(11, 37, 64, .38); }
.q-dot.is-active { width: 26px; background: linear-gradient(90deg, var(--accent), #32ADE6); }

/* ---------- 数字条（玻璃水滴块） ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 34px; }
.stat { padding: 28px 18px; text-align: center; border-radius: var(--r-md); }
.stat b {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3vw, 38px); line-height: 1.15; letter-spacing: -.5px;
  background: linear-gradient(120deg, var(--accent) 20%, #2EC5E6 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat span { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; }

/* ---------- 期限警示（淡玫瑰玻璃） ---------- */
.deadline {
  position: relative;
  padding: 26px 30px;
  border-radius: var(--r);
  background-color: rgba(255, 255, 255, .44);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .4), rgba(255, 214, 222, .3));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(225, 84, 110, .3);
  box-shadow: var(--shadow), var(--refract-soft);
}
.deadline h3 { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: #C81E4A; margin-bottom: 10px; }
.deadline p { color: #6B3A4C; font-size: 15px; line-height: 1.85; }
.deadline p b { color: #C81E4A; }

/* ---------- 路线卡（编号长卡） ---------- */
.routelist { display: flex; flex-direction: column; gap: 20px; margin-top: 34px; }
.routecard { display: flex; gap: 22px; padding: 30px; }
.routecard:hover { transform: translateY(-2px); border-color: rgba(10, 132, 255, .32); box-shadow: var(--shadow-lg), var(--refract); }
/* 编号：圆形水滴（区别于其它变体的圆角方块） */
.routecard > .num, .stepcard > .num {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 19px; color: #fff;
  background-color: var(--accent);
  background-image: radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .65), rgba(255, 255, 255, 0) 46%),
                    linear-gradient(180deg, #3DA5FF, var(--accent) 55%, var(--accent-deep));
  box-shadow: 0 8px 22px rgba(10, 132, 255, .38), inset 0 1.5px 0 rgba(255, 255, 255, .7), inset 0 -1.5px 0 rgba(0, 50, 110, .25);
}
.routecard h3 { font-size: 18.5px; margin-bottom: 10px; letter-spacing: -.2px; }
.routecard p { color: var(--muted); font-size: 15px; line-height: 1.85; margin-bottom: 10px; }
.routecard ul { margin: 0 0 14px; padding-left: 20px; list-style: disc; color: var(--muted); font-size: 14.5px; line-height: 1.85; }
.routecard ul li { margin: 6px 0; }
.routecard ul li::marker { color: rgba(10, 132, 255, .65); }
.routecard ul li b { color: var(--ink); }
.more { display: inline-block; margin-top: 4px; }
.more a { color: var(--accent-deep); font-weight: 600; font-size: 14.5px; text-decoration: none; }
.more a:hover { text-decoration: underline; }

/* 案例 / 边界提示 */
.realcase {
  margin: 12px 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(10, 132, 255, .08);
  border: 1px solid rgba(10, 132, 255, .18);
  border-left: 3px solid var(--accent);
  font-size: 14px; line-height: 1.8; color: #29486B;
}
.realcase .lbl { font-weight: 700; color: #0069D9; }
.realcase strong { color: var(--ink); }
.vsrc, .vnote { display: block; margin-top: 8px; font-size: 12.5px; color: var(--muted); }
.boundary {
  margin: 12px 0;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(245, 158, 11, .09);
  border: 1px solid rgba(245, 158, 11, .24);
  border-left: 3px solid #F59E0B;
  font-size: 14px; line-height: 1.8; color: #6B4A12;
}
.boundary b { color: #92400E; }

/* ---------- 三步 / 服务步骤 ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.stepcard { padding: 28px; }
.stepcard h3 { font-size: 18px; margin: 16px 0 8px; letter-spacing: -.2px; }
.stepcard p { color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ---------- FAQ / 模板 details（玻璃圆角面板） ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details, details.tpl {
  background-color: var(--glass);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, 0) 44%);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--edge);
  border-radius: 22px;
  box-shadow: var(--shadow), var(--refract-soft);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.faq details[open], details.tpl[open] { background-color: var(--glass-strong); border-color: rgba(10, 132, 255, .32); }
.faq summary, details.tpl summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 24px;
  font-size: 16px; font-weight: 600; color: var(--ink);
  cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker, details.tpl summary::-webkit-details-marker { display: none; }
.faq summary::after, details.tpl summary::after {
  content: "+"; flex: 0 0 auto;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(10, 132, 255, .12);
  font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1; color: var(--accent-deep);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq details[open] summary::after, details.tpl[open] summary::after { transform: rotate(45deg); background: rgba(10, 132, 255, .2); }
.faq .a { padding: 0 24px 20px; color: var(--muted); font-size: 15px; line-height: 1.85; }
.faq details[open] summary { color: var(--accent-deep); }

/* ---------- 免费模板 details ---------- */
details.tpl { padding: 0; }
.free { display: inline-flex; padding: 2px 11px; border-radius: var(--pill); background: rgba(16, 185, 129, .14); color: #059669; font-size: 12px; font-weight: 700; border: 1px solid rgba(16, 185, 129, .3); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .6); margin-left: 10px; }
.tpl-body { padding: 0 24px 24px; }
.tpl-bar { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.tag2 { font-size: 12.5px; color: var(--muted); padding: 4px 12px; border-radius: var(--pill); background: rgba(11, 37, 64, .07); border: 1px solid rgba(11, 37, 64, .12); }
.copybtn {
  padding: 8px 18px; border-radius: var(--pill); border: 1px solid rgba(255, 255, 255, .4);
  background-color: var(--accent);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .3), rgba(255, 255, 255, 0) 55%);
  color: #fff;
  font-size: 13px; font-weight: 600; cursor: pointer;
  box-shadow: 0 6px 18px rgba(10, 132, 255, .32), inset 0 1.5px 0 rgba(255, 255, 255, .5);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.copybtn:hover { transform: scale(1.04); background-color: var(--accent-deep); box-shadow: 0 10px 24px rgba(10, 132, 255, .42), inset 0 2px 0 rgba(255, 255, 255, .8); }
details.tpl pre {
  margin: 0; padding: 18px;
  background: rgba(243, 250, 255, .88);
  border: 1px solid rgba(11, 37, 64, .08);
  border-radius: 16px;
  font-family: var(--mono); font-size: 12.5px; line-height: 1.75; color: #29486B;
  white-space: pre-wrap; word-break: break-word;
  max-height: 460px; overflow: auto;
}

/* ---------- 表单控件（玻璃输入，通用兜底） ---------- */
input[type="text"], input[type="tel"], input[type="email"], input[type="search"], textarea, select {
  width: 100%; padding: 12px 16px;
  border-radius: var(--pill);
  border: 1px solid var(--edge);
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
  font: 400 15px/1.5 var(--font-body);
  backdrop-filter: var(--blur-soft);
  -webkit-backdrop-filter: var(--blur-soft);
  box-shadow: var(--refract-soft);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
textarea { border-radius: 22px; }
input:focus, textarea:focus, select:focus { outline: none; border-color: rgba(10, 132, 255, .5); box-shadow: 0 0 0 4px rgba(10, 132, 255, .15), var(--refract-soft); }
::placeholder { color: rgba(74, 98, 128, .7); }

/* ---------- 大 CTA（巨大水滴面板） ---------- */
.bigcta {
  position: relative; overflow: hidden;
  width: min(1020px, calc(100% - 48px));
  margin: 0 auto 84px;
  padding: clamp(36px, 5vw, 64px) clamp(22px, 4vw, 56px);
  text-align: center;
  background-color: var(--glass-strong);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 44%, rgba(110, 231, 183, .1));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 34px;
  box-shadow: var(--shadow-lg), var(--refract);
}
.bigcta::before {
  content: ""; position: absolute; inset: -30%;
  background:
    radial-gradient(closest-side at 18% 0%, rgba(125, 211, 252, .28), transparent),
    radial-gradient(closest-side at 88% 100%, rgba(110, 231, 183, .2), transparent);
  pointer-events: none;
}
.bigcta::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, .32), rgba(255, 255, 255, 0) 40%);
  pointer-events: none;
}
.bigcta h2 { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -.3px; }
.bigcta p { position: relative; margin: 16px auto 0; max-width: 640px; color: var(--muted); font-size: 16px; line-height: 1.85; }
.bigcta .actions { position: relative; justify-content: center; margin-top: 28px; }
.bigcta .hint { position: relative; margin-top: 20px; font-size: 13.5px; color: var(--muted); }

/* ---------- 页脚（清透玻璃薄层） ---------- */
footer {
  background-color: rgba(255, 255, 255, .42);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, .1));
  border-top: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: var(--blur-soft);
  -webkit-backdrop-filter: var(--blur-soft);
  padding: 60px 0 26px;
}
footer .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.brandline { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); margin-bottom: 12px; }
.brandline .mark-img { border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5), 0 2px 8px rgba(14, 80, 140, .18); }
footer h4 { margin-bottom: 12px; font-size: 14px; font-weight: 700; letter-spacing: .06em; color: var(--ink); }
footer a { display: block; padding: 5px 0; color: var(--muted); font-size: 14.5px; text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--accent-deep); }
.legal { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(11, 37, 64, .1); font-size: 13px; color: var(--muted); line-height: 1.9; }
.legal b { color: var(--ink); }
.beian a { display: inline; color: var(--muted); text-decoration: underline; }
.beian a:hover { color: var(--accent-deep); }

/* ---------- 浮动元素 ---------- */
.toast {
  position: fixed; left: 50%; bottom: 26px; z-index: 100;
  transform: translate(-50%, 16px);
  max-width: calc(100vw - 40px);
  padding: 11px 24px;
  border-radius: var(--pill);
  background: rgba(11, 37, 64, .88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 12px 32px rgba(11, 37, 64, .3), inset 0 1px 0 rgba(255, 255, 255, .2);
  color: #fff; font-size: 13.5px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* 回到顶部：圆形水滴按钮 */
.totop {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--edge);
  background-color: rgba(255, 255, 255, .55);
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .6), rgba(255, 255, 255, 0) 55%, rgba(255, 255, 255, .2));
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  color: var(--ink); font-size: 18px; cursor: pointer;
  box-shadow: var(--shadow), var(--refract);
  opacity: 0; transform: translateY(10px) scale(.9); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease), background-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.totop.show { opacity: 1; transform: none; pointer-events: auto; }
.totop:hover { background-color: rgba(255, 255, 255, .85); color: var(--accent-deep); transform: scale(1.05); box-shadow: var(--shadow-lg), var(--refract); }

/* ---------- 响应式 ---------- */
@media (max-width: 1060px) {
  .grid.c3 { grid-template-columns: repeat(2, 1fr); }
  footer .cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1120px) {
  .menu-btn { display: inline-flex; }
  .nav .links {
    position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px;
    background-color: rgba(255, 255, 255, .78);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .5), rgba(255, 255, 255, 0) 40%);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid var(--edge);
    border-radius: 28px;
    box-shadow: var(--shadow-lg), var(--refract);
    opacity: 0; visibility: hidden; transform: translateY(-10px) scale(.98);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
    max-height: calc(100vh - 140px); overflow: auto;
  }
  .nav .links.open { opacity: 1; visibility: visible; transform: none; }
  .nav .links a:not(.btn) { padding: 12px 16px; font-size: 15px; border-radius: 18px; }
  .nav .links .btn.sm { margin: 8px 0 0; }
}
@media (max-width: 860px) {
  .grid.c2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
  .mission { padding: 64px 0; }
}
@media (max-width: 640px) {
  .container { padding-inline: 18px; }
  .topbar .container > div:last-child { display: none; }
  .topbar .container { justify-content: center; text-align: center; }
  .nav { top: 10px; }
  .nav .container { padding: 8px 8px 8px 16px; }
  .grid.c3 { grid-template-columns: 1fr; }
  .grid { gap: 16px; }
  .feature, .card, .hub-card, .stepcard { border-radius: 24px; }
  .routecard { flex-direction: column; gap: 14px; padding: 24px; border-radius: 24px; }
  .routecard > .num, .stepcard > .num { width: 42px; height: 42px; font-size: 17px; }
  .bigcta { width: calc(100% - 32px); margin-bottom: 64px; border-radius: 28px; }
  .hero { padding-top: 40px; }
  footer .cols { grid-template-columns: 1fr; gap: 24px; }
  .totop { right: 16px; bottom: 16px; }
}

/* ---------- 动效降级 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .lg-reveal { opacity: 1 !important; transform: none !important; }
  .lg-blob { display: none !important; }
}

/* ---------- 透明度降级：prefers-reduced-transparency ----------
   backdrop-filter 全部替换为不透明实色背景与实线边框（玻璃 → 瓷白） */
@media (prefers-reduced-transparency: reduce) {
  body::before {
    background: linear-gradient(168deg, #D9EEFF 0%, #F2F9FF 38%, #FDFEFF 58%, #E8FBF5 100%);
  }
  .lg-blob { display: none; }
  .topbar, .nav .container, .nav .links, .hero .inner, .quality, .pills a, .btn.ghost,
  .feature, .card, .hub-card, .stepcard, .routecard, .stat, .bigcta, .deadline,
  .quotes, .faq details, details.tpl, .totop, footer,
  input[type="text"], input[type="tel"], input[type="email"], input[type="search"], textarea, select {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #FFFFFF !important;
    background-image: none !important;
    border: 1px solid #CFE2F5 !important;
    box-shadow: 0 8px 24px rgba(14, 80, 140, .1) !important;
  }
  .topbar { background: #F0F8FF !important; border-bottom: 1px solid #D8E7F5 !important; box-shadow: none !important; }
  .section.tinted { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; background: #EFF7FE !important; border-color: #D8E7F5 !important; }
  .deadline { background: #FFF4F6 !important; border: 1px solid #F2C4CE !important; }
  .toast { background: #0B2540 !important; }
  details.tpl pre { background: #F3FAFF !important; }
  input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 4px rgba(10, 132, 255, .15) !important; }
}
