/* =========================================================================
 * 安柏·反蒸馏AI实验室 — 官网设计系统 v3
 * 风格：明亮现代 SaaS · 浅色基底 + 蓝色主色 · 大字号 · 产品界面大图主导
 * 参考：cn.jollytoday.com 的清晰结构与清爽质感
 * 变更：板块标题简化、全站字号放大、图标改为 SVG 线条图标
 * ========================================================================= */

:root {
  /* 主色（明亮蓝，现代 SaaS 调性） */
  --brand: #2563eb;
  --brand-2: #1d4ed8;
  --brand-soft: #eef3ff;
  --brand-soft-2: #dbe6ff;
  --indigo: #6366f1;
  --cyan: #06b6d4;

  /* 中性 */
  --ink: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --bg-soft-2: #eef2f8;
  --border: #e6ebf2;
  --border-strong: #d3dbe6;

  /* 强调 */
  --green: #16a34a;
  --green-soft: #e7f6ed;
  --rose: #e11d48;
  --rose-soft: #fdeef1;
  --amber: #d97706;
  --amber-soft: #fef3e2;

  /* 阴影 / 圆角 */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.04);
  --shadow-sm: 0 2px 8px rgba(15,23,42,.05);
  --shadow-md: 0 8px 28px rgba(15,23,42,.08);
  --shadow-lg: 0 18px 50px rgba(15,23,42,.12);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;
  --maxw: 1180px;
  --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", -apple-system,
         BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 104px 0; }
.muted { color: var(--muted); }
.section-soft { background: var(--bg-soft); }

/* ---------- SVG 图标（统一线条风格，继承自容器 color） ---------- */
.ico svg, .ic svg, .channel .ic svg, .brand .logo svg {
  width: 26px; height: 26px; display: block;
}
.brand .logo svg { width: 22px; height: 22px; }

/* ---------- 按钮 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; border-radius: 12px; font-weight: 600; font-size: 17px;
  cursor: pointer; border: 1.5px solid transparent; transition: all .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: 0 6px 18px rgba(37,99,235,.28); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(37,99,235,.36); }
.btn-outline { background: #fff; color: var(--brand); border-color: var(--brand-soft-2); }
.btn-outline:hover { border-color: var(--brand); background: var(--brand-soft); }
.btn-ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.24); }
.btn-lg { padding: 18px 40px; font-size: 18px; border-radius: 14px; }

/* ---------- 顶部导航 ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand-logo { height: 38px; width: auto; display: block; flex: none; }
.brand-logo.logo-anti { height: 50px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { color: var(--brand); font-size: 14px; font-weight: 600; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--brand-2); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(99,102,241,.16), transparent 60%),
    radial-gradient(700px 360px at 6% 8%, rgba(37,99,235,.10), transparent 55%),
    linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  padding: 110px 0 96px;
}
.hero-grid { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-soft); color: var(--brand-2);
  border: 1px solid var(--brand-soft-2);
  padding: 10px 20px; border-radius: 999px; font-size: 15px; font-weight: 700; margin-bottom: 28px;
}
.hero .badge.badge-lg { font-size: 15px; padding: 11px 22px; max-width: 620px; white-space: normal; line-height: 1.45; text-align: center; }
.hero h1 { font-size: clamp(24px, 5.6vw, 64px); line-height: 1.14; font-weight: 800; letter-spacing: 0.5px; color: var(--ink); max-width: 1180px; margin-left: auto; margin-right: auto; }
.hero h1 .hl { display: block; white-space: nowrap; }
.hero h1 .accent { color: var(--brand); }
.hero p.sub { font-size: 22px; color: var(--muted); margin: 32px auto 40px; max-width: 720px; line-height: 1.75; }
.hero-cta { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.hero-stats { display: flex; gap: 56px; margin-top: 56px; justify-content: center; }
.hero-stats .num { font-size: 44px; font-weight: 800; color: var(--brand); line-height: 1; }
.hero-stats .lbl { font-size: 15px; color: var(--muted); margin-top: 10px; }

/* Hero 右侧：拟真产品界面 mockup（窗口 + 工具栏 + 文档 + 修订侧栏） */
.hero-shot {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hero-shot .bar {
  height: 46px; background: #f3f6fb; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 7px; padding: 0 14px;
}
.hero-shot .bar i { width: 11px; height: 11px; border-radius: 50%; background: #d4dbe6; display: inline-block; }
.hero-shot .bar .addr {
  margin-left: 12px; flex: 1; height: 26px; background: #fff; border: 1px solid var(--border);
  border-radius: 7px; font-size: 13px; color: var(--muted-2); display: flex; align-items: center; padding: 0 10px;
}
.hero-shot .body { display: grid; grid-template-columns: 1.5fr 1fr; min-height: 360px; }
.hero-shot .doc { padding: 20px 22px; border-right: 1px solid var(--border); }
.hero-shot .doc .dh { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 16px; display:flex; justify-content: space-between; }
.hero-shot .doc .dh span { color: var(--brand); font-weight: 600; font-size: 12px; }
.hero-shot .ln { height: 8px; border-radius: 4px; background: #eef2f8; margin: 9px 0; }
.hero-shot .ln.w95 { width: 95%; } .hero-shot .ln.w80 { width: 80%; } .hero-shot .ln.w65 { width: 65%; } .hero-shot .ln.w50 { width: 50%; }
.hero-shot .ins { background: var(--green-soft); border-left: 3px solid var(--green); padding: 9px 12px; border-radius: 6px; font-size: 13.5px; line-height:1.6; color: #15803d; margin: 11px 0; }
.hero-shot .del { background: var(--rose-soft); border-left: 3px solid var(--rose); padding: 9px 12px; border-radius: 6px; font-size: 13.5px; line-height:1.6; color: #be123c; margin: 11px 0; text-decoration: line-through; opacity: .8; }
.hero-shot .side { padding: 20px 18px; background: #fafbfe; }
.hero-shot .side .sh { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.hero-shot .note { background: #fff; border: 1px solid var(--border); border-radius: 9px; padding: 10px 12px; font-size: 12.5px; line-height:1.6; color: var(--muted); margin-bottom: 10px; }
.hero-shot .note b { color: var(--brand-2); }
.hero-shot .chip { display: inline-flex; align-items: center; gap: 5px; padding: 4px 11px; border-radius: 999px; font-size: 11.5px; font-weight: 700; margin: 0 6px 6px 0; }
.hero-shot .chip.r { background: var(--rose-soft); color: var(--rose); }
.hero-shot .chip.y { background: var(--amber-soft); color: var(--amber); }
.hero-shot .chip.g { background: var(--green-soft); color: var(--green); }

/* ---------- 通用区块头（标题简化、字号放大） ---------- */
.section-head { text-align: center; max-width: 820px; margin: 0 auto 58px; }
.section-head .eyebrow { color: var(--brand); font-weight: 700; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.section-head h2 { font-size: 44px; font-weight: 800; color: var(--ink); margin: 14px 0 16px; letter-spacing: -.5px; line-height: 1.25; }
.section-head p { color: var(--muted); font-size: 19px; line-height: 1.7; }

/* ---------- 一站式工作台（编号流程） ---------- */
.workflow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.wf-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 20px; position: relative; transition: all .2s ease;
}
.wf-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--brand-soft-2); }
.wf-item .no { font-size: 34px; font-weight: 800; color: var(--brand); opacity: .9; line-height: 1; }
.wf-item h4 { color: var(--ink); font-size: 20px; margin: 14px 0 8px; }
.wf-item p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.wf-foot { text-align: center; margin-top: 40px; color: var(--muted); font-size: 17px; }
.wf-foot b { color: var(--ink); }

/* ---------- 平台优势（并列卖点） ---------- */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pillar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 24px; transition: all .2s ease; }
.pillar:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pillar .ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: var(--brand-soft); color: var(--brand-2); }
.pillar h4 { color: var(--ink); font-size: 21px; margin-bottom: 9px; }
.pillar p { color: var(--muted); font-size: 16px; line-height: 1.65; }

/* ---------- 行业 / 客户场景卡 ---------- */
.scenes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.scene { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 26px; transition: all .2s ease; }
.scene:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.scene .ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 14px; background: var(--brand-soft); color: var(--brand-2); }
.scene h4 { color: var(--ink); font-size: 20px; margin-bottom: 8px; }
.scene p { color: var(--muted); font-size: 16px; line-height: 1.65; }
.scene .metric { margin-top: 16px; font-size: 15px; font-weight: 700; color: var(--brand-2); }

/* ---------- 功能网格 ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; transition: all .2s ease; display: flex; flex-direction: column;
}
.feat:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feat .ico {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-2); margin-bottom: 16px;
}
.feat h4 { color: var(--ink); font-size: 23px; margin-bottom: 9px; }
.feat p { color: var(--muted); font-size: 16.5px; line-height: 1.7; flex: 1; }
.feat .more { margin-top: 16px; color: var(--brand); font-weight: 600; font-size: 15px; }
.feat .more:hover { text-decoration: underline; }

/* ---------- 覆盖的合同类型（紧凑列表） ---------- */
.coverage-section { background: var(--bg-soft); padding: 56px 0; }
.coverage-head { margin-bottom: 22px; }
.coverage-head h2 { font-size: 28px; font-weight: 800; color: var(--ink); }
.coverage-sub { margin-top: 8px; font-size: 14px; color: var(--muted); }
.coverage-dense { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.cov-cat { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; }
.cov-cat-name { font-size: 13.5px; font-weight: 800; color: var(--brand-2); margin-bottom: 6px; }
.cov-cat-items { font-size: 12.5px; line-height: 1.75; color: var(--muted); }
.cov-cat-items .sep { color: #c9d3e0; margin: 0 1px; }
.coverage-foot { margin-top: 18px; font-size: 13px; color: var(--muted); }
.deep-tag { display: inline-block; font-size: 10px; font-weight: 700; color: var(--brand-2); background: var(--brand-soft); padding: 2px 7px; border-radius: 999px; margin-right: 6px; }

.coverage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.coverage-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; transition: all .2s ease;
}
.coverage-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--brand-soft-2); }
.coverage-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.coverage-card h4 { color: var(--ink); font-size: 20px; font-weight: 700; line-height: 1.35; }
.coverage-card p { color: var(--muted); font-size: 15.5px; line-height: 1.65; }
.coverage-badge { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--bg-soft-2); color: var(--muted); font-size: 12px; font-weight: 700; white-space: nowrap; }
.coverage-badge.deep { background: var(--brand-soft); color: var(--brand-2); }

/* ---------- 效果交付（真·产品界面大图） ---------- */
.effect-real { margin-bottom: 34px; }
.effect-label { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.effect-label span { font-size: 17px; font-weight: 700; color: var(--ink); }
.effect-label .effect-tag { font-size: 13px; font-weight: 600; color: var(--brand-2); background: var(--brand-soft); padding: 5px 12px; border-radius: 999px; }
.effect-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.effect-gallery figure {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); transition: all .2s ease;
}
.effect-gallery figure:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.effect-gallery figure .shot-bar {
  height: 36px; background: #f3f6fb; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
}
.effect-gallery figure .shot-bar i { width: 9px; height: 9px; border-radius: 50%; background: #d4dbe6; }
.effect-gallery figure .shot-bar span { font-size: 12px; color: var(--muted); font-weight: 500; margin-left: 6px; }
.effect-gallery img { width: 100%; display: block; }
.effect-caption { color: var(--muted); font-size: 15px; margin-top: 20px; line-height: 1.65; }
.effect-shot {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; margin-bottom: 34px;
}
.effect-shot .bar { height: 48px; background: #f3f6fb; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 14px; padding: 0 18px; }
.effect-shot .bar .t { font-weight: 700; color: var(--ink); font-size: 16px; }
.effect-shot .bar .seg { display: flex; gap: 6px; }
.effect-shot .bar .seg span { font-size: 13.5px; color: var(--muted); padding: 5px 12px; border-radius: 8px; }
.effect-shot .bar .seg span.on { background: var(--brand-soft); color: var(--brand-2); font-weight: 600; }
.effect-shot .grid { display: grid; grid-template-columns: 1.6fr 1fr; min-height: 380px; }
.effect-shot .doc { padding: 24px 26px; border-right: 1px solid var(--border); }
.effect-shot .doc h5 { color: var(--ink); font-size: 15px; margin-bottom: 16px; }
.effect-shot .ln { height: 9px; border-radius: 4px; background: #eef2f8; margin: 10px 0; }
.effect-shot .ln.w95 { width: 95%; } .effect-shot .ln.w80 { width: 80%; } .effect-shot .ln.w65 { width: 65%; } .effect-shot .ln.w50 { width: 50%; } .effect-shot .ln.w40 { width: 40%; }
.effect-shot .ins { background: var(--green-soft); border-left: 3px solid var(--green); padding: 10px 13px; border-radius: 6px; font-size: 13.5px; line-height:1.6; color: #15803d; margin: 12px 0; }
.effect-shot .del { background: var(--rose-soft); border-left: 3px solid var(--rose); padding: 10px 13px; border-radius: 6px; font-size: 13.5px; line-height:1.6; color: #be123c; margin: 12px 0; text-decoration: line-through; opacity: .8; }
.effect-shot .side { padding: 24px 22px; background: #fafbfe; }
.effect-shot .side h5 { color: var(--ink); font-size: 15px; margin-bottom: 16px; }
.effect-shot .row { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: #fff; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; font-size: 14px; }
.effect-shot .row .lv { font-size: 11.5px; font-weight: 800; padding: 2px 9px; border-radius: 999px; }
.effect-shot .row .lv.h { background: var(--rose-soft); color: var(--rose); }
.effect-shot .row .lv.m { background: var(--amber-soft); color: var(--amber); }
.effect-shot .row .lv.l { background: var(--green-soft); color: var(--green); }

/* 四件套小卡 */
.deliver-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.deliver { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; transition: all .2s ease; }
.deliver:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.deliver .ico { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 14px; background: var(--brand-soft); color: var(--brand-2); }
.deliver h4 { color: var(--ink); font-size: 19px; margin-bottom: 8px; }
.deliver p { color: var(--muted); font-size: 15px; line-height: 1.6; }

/* ---------- 如何使用（SkillPay 安装） ---------- */
.howto-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 40px; max-width: 940px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.howto-steps { font-size: 17px; color: var(--text); line-height: 1.85; margin-bottom: 24px; }
.howto-steps a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.code-block { background: #0f172a; border-radius: var(--radius-sm); overflow: hidden; }
.code-block .code-bar { height: 36px; background: #1e293b; border-bottom: 1px solid #334155; display: flex; align-items: center; gap: 6px; padding: 0 16px; }
.code-block .code-bar i { width: 10px; height: 10px; border-radius: 50%; background: #475569; }
.code-block .code-bar span { font-size: 12px; color: #94a3b8; margin-left: 8px; letter-spacing: .5px; }
.code-block pre { margin: 0; padding: 22px 24px; overflow-x: auto; }
.code-block code { font-family: "SF Mono", ui-monospace, Menlo, Consolas, "Courier New", monospace; font-size: 15px; color: #e2e8f0; line-height: 1.7; white-space: pre; }
.howto-note { margin-top: 22px; font-size: 15px; color: var(--muted); line-height: 1.7; }
.howto-note b { color: var(--ink); }

/* ---------- 安全 ---------- */
.security { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; border-radius: var(--radius-lg); padding: 64px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; }
.security h2 { font-size: 40px; font-weight: 800; margin-bottom: 18px; line-height: 1.25; }
.security p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.7; }
.security .sec-list { list-style: none; margin-top: 24px; }
.security .sec-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; color: rgba(255,255,255,.92); font-size: 17px; line-height: 1.6; }
.security .sec-list .ck { color: #60a5fa; font-weight: 800; flex: none; }
.security .stat-big { font-size: 64px; font-weight: 800; color: #60a5fa; line-height: 1; }
.security .stat-cap { color: rgba(255,255,255,.78); font-size: 17px; margin-top: 12px; }
.security-gallery { grid-column: 1 / -1; margin-top: 12px; }
.security-gallery h3 { text-align: center; color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 26px; opacity: .95; }
.sec-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.sec-gallery figure { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.sec-gallery img { width: 100%; display: block; }
.sec-gallery figcaption { text-align: center; padding: 14px; font-size: 14px; color: var(--muted); background: var(--bg-soft); border-top: 1px solid var(--border); }

/* ---------- 价格 ---------- */
.pricing { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 22px; display: flex; flex-direction: column; position: relative; transition: all .2s ease;
}
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan.hot { border-color: var(--brand); box-shadow: 0 0 0 2px var(--brand-soft-2), var(--shadow-md); }
.plan .ribbon { position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; font-size: 13px; font-weight: 700; padding: 4px 14px; border-radius: 999px; }
.plan .pname { color: var(--ink); font-size: 20px; font-weight: 700; text-align: center; }
.plan .price { text-align: center; margin: 16px 0 4px; }
.plan .price .cur { font-size: 17px; font-weight: 700; color: var(--ink); vertical-align: super; }
.plan .price .amt { font-size: 46px; font-weight: 800; color: var(--ink); }
.plan .price .free { font-size: 34px; font-weight: 800; color: var(--green); }
.plan .quota { text-align: center; color: var(--muted); font-size: 15px; }
.plan .note { text-align: center; color: var(--muted); font-size: 14px; margin: 14px 0 20px; min-height: 40px; line-height: 1.55; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---------- 证言 ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .2s ease; }
.quote:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.quote p { color: var(--text); font-size: 17px; line-height: 1.7; }
.quote .who { margin-top: 18px; color: var(--muted); font-size: 15px; font-weight: 600; }

/* ---------- 结语 CTA ---------- */
.final-cta { text-align: center; background: linear-gradient(135deg, var(--brand), var(--indigo)); color: #fff; border-radius: var(--radius-lg); padding: 72px 32px; }
.final-cta h2 { font-size: 42px; font-weight: 800; margin-bottom: 16px; line-height: 1.25; }
.final-cta p { color: rgba(255,255,255,.88); font-size: 19px; margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.final-cta .hero-cta { justify-content: center; }
.final-cta .btn-ghost { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.45); }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,.28); }

/* ---------- 页脚 ---------- */
.footer { background: #0f172a; color: rgba(255,255,255,.72); padding: 62px 0 38px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 32px; }
.footer h5 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer a { display: block; color: rgba(255,255,255,.62); font-size: 15px; margin-bottom: 11px; }
.footer a:hover { color: #60a5fa; }
.footer .desc { font-size: 15px; line-height: 1.7; max-width: 330px; color: rgba(255,255,255,.6); }
.footer .copy { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 24px; font-size: 13.5px; color: rgba(255,255,255,.42); }

/* ====================== 联系页 ====================== */
.contact-hero { background: linear-gradient(135deg, var(--brand), var(--indigo)); color: #fff; padding: 80px 0 68px; }
.contact-hero h1 { font-size: 48px; font-weight: 800; line-height: 1.2; }
.contact-hero p { color: rgba(255,255,255,.88); font-size: 19px; margin-top: 16px; max-width: 660px; line-height: 1.7; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: -38px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-md); }
.contact-card h3 { color: var(--ink); font-size: 22px; margin-bottom: 8px; }
.contact-card .csub { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.channel { display: flex; gap: 14px; align-items: center; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; transition: all .2s; }
.channel:hover { border-color: var(--brand-soft-2); background: var(--brand-soft); }
.channel .ic { width: 48px; height: 48px; border-radius: 11px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-2); flex: none; }
.channel .ct b { color: var(--ink); display: block; font-size: 16px; }
.channel .ct span { color: var(--muted); font-size: 14px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 15px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 16px; font-family: var(--font); color: var(--text); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.field textarea { min-height: 130px; resize: vertical; }
.qr-box { text-align: center; margin-top: 18px; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; }
.qr-box img { max-width: 180px; margin: 0 auto 12px; border-radius: 10px; }
.qr-box p { font-size: 14px; color: var(--muted); }
.coop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.coop-guide { max-width: 760px; margin: 48px auto 0; text-align: center; padding: 32px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.coop-guide h3 { font-size: 24px; color: var(--ink); margin-bottom: 10px; }
.coop-guide p { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ---------- 与其他法律 AI 的区别（左右对比） ---------- */
.vs-row { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: stretch; gap: 0; margin-bottom: 18px; }
.vs-others, .vs-ours { padding: 24px 26px; border-radius: var(--radius-sm); font-size: 17px; line-height: 1.7; }
.vs-others { background: var(--bg-soft-2); border: 1px solid var(--border); color: var(--muted); }
.vs-ours { background: var(--brand-soft); border: 1px solid var(--brand-soft-2); color: var(--brand-2); font-weight: 600; }
.vs-others .tag, .vs-ours .tag { font-size: 13px; font-weight: 700; display: block; margin-bottom: 10px; letter-spacing: .5px; }
.vs-others .tag { color: var(--muted-2); }
.vs-ours .tag { color: var(--brand); }
.vs-mid { display: grid; place-items: center; color: var(--brand); font-size: 18px; font-weight: 800; }

/* ====================== 商店 / 控制台（备案期暂不挂出） ====================== */
.store-hero { background: linear-gradient(135deg, var(--brand), var(--indigo)); color: #fff; padding: 80px 0 70px; }
.store-hero h1 { font-size: 40px; font-weight: 800; }
.store-hero p { color: rgba(255,255,255,.85); font-size: 19px; margin-top: 14px; }
.console { display: grid; grid-template-columns: 320px 1fr; gap: 28px; align-items: start; margin-top: -38px; }
.sidebar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-md); position: sticky; top: 88px; }
.sidebar .user { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.sidebar .avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-2); display: grid; place-items: center; font-weight: 800; font-size: 18px; }
.sidebar .uname { font-weight: 700; color: var(--ink); }
.sidebar .umeta { font-size: 13.5px; color: var(--muted); }
.sidebar .menu { list-style: none; }
.sidebar .menu li { padding: 11px 12px; border-radius: 9px; color: var(--muted); font-size: 15px; cursor: pointer; }
.sidebar .menu li.active, .sidebar .menu li:hover { background: var(--bg-soft); color: var(--ink); font-weight: 600; }
.main-panel { display: flex; flex-direction: column; gap: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.card h3 { color: var(--ink); font-size: 21px; margin-bottom: 6px; }
.card .csub { color: var(--muted); font-size: 15px; margin-bottom: 18px; }
.usage-bar { height: 10px; background: var(--bg-soft-2); border-radius: 999px; overflow: hidden; margin: 10px 0 6px; }
.usage-bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--brand), var(--indigo)); border-radius: 999px; }
.usage-meta { display: flex; justify-content: space-between; font-size: 14px; color: var(--muted); }
.download-box { display: flex; align-items: center; gap: 16px; background: var(--bg-soft); border: 1px dashed var(--border); border-radius: var(--radius-sm); padding: 18px 20px; }
.download-box .dt { flex: 1; }
.download-box .dt b { color: var(--ink); display: block; font-size: 16px; }
.download-box .dt span { color: var(--muted); font-size: 14px; }
.store-packages { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }

/* ---------- 登录弹窗（微信扫码 stub） ---------- */
.modal-mask { position: fixed; inset: 0; background: rgba(15,23,42,.55); backdrop-filter: blur(3px); display: none; place-items: center; z-index: 100; }
.modal-mask.show { display: grid; }
.modal { background: #fff; border-radius: 20px; padding: 36px; width: 380px; max-width: 92vw; text-align: center; box-shadow: var(--shadow-lg); position: relative; }
.modal h3 { color: var(--ink); font-size: 23px; margin-bottom: 6px; }
.modal .msub { color: var(--muted); font-size: 15px; margin-bottom: 24px; }
.qr { width: 200px; height: 200px; margin: 0 auto 14px; border: 1px solid var(--border); border-radius: 14px; display: grid; place-items: center; background: repeating-conic-gradient(#0f172a 0% 25%, #fff 0% 50%) 0 0 / 22px 22px; position: relative; }
.qr .qr-logo { position: absolute; width: 44px; height: 44px; background: #fff; border-radius: 10px; display: grid; place-items: center; font-size: 22px; }
.modal .scan-tip { font-size: 14.5px; color: var(--muted); }
.modal .scan-tip b { color: var(--ink); }
.phone-step { display: none; }
.modal.phone .qr-step { display: none; }
.modal.phone .phone-step { display: block; }
.modal input { width: 100%; padding: 14px 15px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 16px; margin-bottom: 12px; font-family: var(--font); }
.modal input:focus { outline: none; border-color: var(--brand); }
.modal .btn { width: 100%; justify-content: center; }
.modal .close { position: absolute; top: 14px; right: 16px; color: var(--muted); cursor: pointer; font-size: 22px; }

/* ---------- 响应式 ---------- */
@media (max-width: 980px) {
  .hero h1 { font-size: 34px; }
  .hero p.sub { font-size: 19px; }
  .section-head h2 { font-size: 34px; }
  .coverage-head { flex-direction: column; align-items: flex-start; }
  .coverage-sub { text-align: left; }
  .coverage-dense { grid-template-columns: 1fr; }
  .coop-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow { grid-template-columns: repeat(2, 1fr); }
  .coverage { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .scenes { grid-template-columns: repeat(2, 1fr); }
  .pricing { grid-template-columns: repeat(2, 1fr); }
  .deliver-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes { grid-template-columns: 1fr; }
  .security { grid-template-columns: 1fr; padding: 40px; }
  .sec-gallery { grid-template-columns: 1fr; }
  .console { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  section { padding: 64px 0; }
  .hero h1 { font-size: 22px; }
  .brand-logo { height: 32px; }
  .brand-logo.logo-anti { height: 42px; }
  .section-head h2 { font-size: 28px; }
  .nav-links { display: none; }
  .workflow, .pillars, .features, .scenes, .pricing, .deliver-grid, .coop-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 22px; }
  .effect-shot .grid { grid-template-columns: 1fr; }
  .effect-shot .doc { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ============ SEO / GEO 隐藏静态内容块 ============ */
/* 视觉隐藏但保留在 DOM 与渲染树中，对用户不可见，供搜索引擎与 AI 引擎抓取。
   不使用 display:none / visibility:hidden，避免被爬虫忽略。 */
.seo-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============ 页脚备案号占位槽 ============ */
.footer .beian { margin-top: 14px; font-size: 13.5px; color: rgba(255,255,255,.5); display: flex; flex-wrap: wrap; gap: 18px; }
.footer .beian a { display: inline; color: rgba(255,255,255,.55); margin-bottom: 0; }
.footer .beian a:hover { color: #60a5fa; }
