/* ==========================================================================
   锐见AI品牌增长咨询官网 - 公共样式
   设计原则：24px 栅格、明确对齐、克制对比、充足留白、蓝绿色渐变点缀。
   ========================================================================== */

/* 01. 设计变量：统一管理品牌色、间距、圆角、字号与阴影 */
:root {
  --bg: #f3f6f6;
  --paper: #ffffff;
  --surface: #f6f9f8;
  --ink: #18272c;
  --deep: #203238;
  --muted: #657477;
  --line: #e5ecea;
  --line-strong: #cfdbd7;
  --teal: #35b4be;
  --mint: #64d48e;
  --grad: linear-gradient(135deg, #35b4be 0%, #42c4b4 48%, #64d48e 100%);
  --grad-soft: linear-gradient(135deg, rgba(53, 180, 190, 0.14), rgba(100, 212, 142, 0.18));
  --radius-sm: 8px;
  --radius: 8px;
  --panel-radius: 8px;
  --pill-radius: 999px;
  --logo-radius: 2px;
  --shadow: 0 30px 80px rgba(18, 35, 40, 0.09);
  --shadow-soft: 0 18px 42px rgba(18, 35, 40, 0.06);
  --shadow-card-hover: 0 22px 48px rgba(18, 35, 40, 0.1);
  --max: 1240px;
  --grid: 24px;
  --section-space: 70px;
  --section-space-tight: 48px;
  --block-gap: 24px;
  --card-pad: 32px;
  --card-pad-lg: 40px;
  --card-pad-sm: 24px;
  --font-medium: 400;
  --font-semibold: 500;
  --font-bold: 700;
  --focus-ring: 0 0 0 4px rgba(53, 180, 190, 0.14);
}

/* 02. 基础重置：保证页面在不同浏览器中有一致的盒模型和文本表现 */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.js-ready {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(251, 252, 252, 0.98), rgba(245, 247, 247, 0.98)),
    radial-gradient(circle at 18% 4%, rgba(53, 180, 190, 0.08), transparent 30%),
    radial-gradient(circle at 84% 10%, rgba(100, 212, 142, 0.08), transparent 28%),
    var(--bg);
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: var(--font-medium);
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

a,
button,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

/* 03. 页面容器与排版层级：所有主内容对齐同一内容宽度 */
.shell {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 48px, 880px);
  margin: 0 auto;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: var(--font-bold);
  line-height: 1.22;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 12px;
  font-size: 32px;
  font-weight: var(--font-bold);
  line-height: 1.28;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: var(--font-bold);
  line-height: 1.38;
  text-wrap: balance;
}

p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  max-width: 68ch;
}

/* 04. 顶部导航：所有页面共用，链接保持同一结构 */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 236, 234, 0.9);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--deep);
  font-size: 15px;
  font-weight: var(--font-bold);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: var(--logo-radius);
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(53, 180, 190, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #5a686b;
  font-size: 14px;
  font-weight: var(--font-semibold);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: var(--pill-radius);
  transition:
    color 180ms ease,
    text-shadow 180ms ease,
    background 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #1098A6;
  background: rgba(53, 180, 190, 0.08);
  text-shadow: 0 0 14px rgba(53, 180, 190, 0.12);
}

/* 05. 按钮：主按钮使用品牌渐变，次按钮用于低优先级动作 */
.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: var(--pill-radius);
  font-size: 14px;
  font-weight: var(--font-bold);
  letter-spacing: 0.01em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  white-space: nowrap;
}

.nav-cta {
  min-height: 34px;
  padding: 0 18px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary,
.nav-cta {
  border: 1px solid rgba(53, 180, 190, 0.08);
  background: var(--grad);
  color: #f8fbfa;
  box-shadow: 0 18px 34px rgba(53, 180, 190, 0.2);
}

.btn-primary:hover,
.nav-cta:hover {
  box-shadow: 0 22px 40px rgba(53, 180, 190, 0.26);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  color: var(--deep);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: rgba(53, 180, 190, 0.42);
  background: rgba(249, 251, 250, 0.98);
}

/* 06. 页面首屏：用于首页和内页，保证标题、说明、CTA 左侧对齐 */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: var(--section-space) 0 var(--section-space-tight);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(408px, 1.02fr);
  align-items: center;
  gap: 64px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.42fr);
  gap: 48px;
  align-items: end;
}

.page-hero-single .page-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #18949d;
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 18px;
  color: #4f6265;
  font-weight: var(--font-semibold);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--grad);
}

.lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #526164;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.82;
}

.hero-note {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 12px 18px;
  border: 1px solid rgba(53, 180, 190, 0.16);
  border-radius: var(--pill-radius);
  background: rgba(255, 255, 255, 0.9);
  color: #425357;
  font-size: 13px;
  line-height: 1.6;
  box-shadow: var(--shadow-soft);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

/* 07. 首页 AI 认知图谱：首屏右侧视觉资产 */
.ai-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid #e4ece9;
  border-radius: var(--panel-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 249, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 51px, rgba(24, 39, 44, 0.03) 52px),
    repeating-linear-gradient(180deg, transparent 0 51px, rgba(24, 39, 44, 0.03) 52px);
  box-shadow: var(--shadow);
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 0;
  color: #56606c;
  font-size: 12px;
}

.dots {
  display: inline-flex;
  gap: 6px;
}

.dots i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: #aeb6c1;
}

.graph {
  position: absolute;
  inset: 54px 24px 148px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.graph-line {
  position: absolute;
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(53, 180, 190, 0), rgba(53, 180, 190, 0.68), rgba(100, 212, 142, 0.18));
}

.line-1 {
  left: 132px;
  top: 160px;
  width: 220px;
  transform: rotate(-26deg);
}

.line-2 {
  left: 260px;
  top: 230px;
  width: 205px;
  transform: rotate(20deg);
}

.line-3 {
  left: 154px;
  top: 310px;
  width: 270px;
  transform: rotate(-3deg);
}

.line-4 {
  left: 290px;
  top: 130px;
  width: 180px;
  transform: rotate(55deg);
}

.line-5 {
  left: 116px;
  top: 248px;
  width: 172px;
  transform: rotate(42deg);
}

.line-6 {
  left: 234px;
  top: 186px;
  width: 244px;
  transform: rotate(-8deg);
}

.node {
  position: absolute;
  display: flex;
  min-width: 112px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border: 1px solid #cdd4dd;
  border-radius: var(--radius-sm);
  background: rgba(249, 251, 250, 0.92);
  box-shadow: 0 14px 40px rgba(24, 39, 44, 0.12);
  font-size: 13px;
  font-weight: var(--font-bold);
}

.node-main {
  left: 168px;
  top: 154px;
  min-width: 182px;
  min-height: 82px;
  border-color: rgba(53, 180, 190, 0.48);
  background: #f9fbfa;
  color: #187d83;
  font-size: 17px;
}

.node-1 { left: 22px; top: 78px; }
.node-2 { right: 26px; top: 58px; }
.node-3 { right: 16px; top: 244px; }
.node-4 { left: 26px; top: 248px; }
.node-5 { left: 188px; top: 310px; }
.node-6 { right: 154px; top: 126px; }
.node-7 { right: 138px; top: 316px; }

.signal {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.signal div {
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(249, 251, 250, 0.86);
}

.signal span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
}

.signal b {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: var(--font-bold);
}

.signal small {
  display: block;
  color: #5b696d;
  font-size: 12px;
  line-height: 1.55;
}

/* 08. 通用区块与标题：每个内容模块使用同一对齐方式 */
section {
  padding: var(--section-space) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 44px;
  justify-items: center;
  text-align: center;
}

.section-head > * {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
}

.section-head h2 {
  margin-bottom: 0;
}

.kicker {
  display: inline-flex;
  margin: 0;
  line-height: 1.2;
}

.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  max-width: 760px;
  padding-top: 0;
  font-size: 15px;
  line-height: 1.82;
  text-align: center;
}

.cta-panel {
  text-align: center;
}

.cta-panel > div {
  display: grid;
  justify-items: center;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  filter: blur(10px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.motion-surface {
  transform:
    perspective(1200px)
    translate3d(var(--mx, 0px), var(--my, 0px), 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg));
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  will-change: transform;
}

.motion-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), transparent 52%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.motion-surface:hover::after {
  opacity: 1;
}

.card,
.method-card,
.service-card,
.case-card,
.diagnostic,
.statement,
.quote-panel,
.metric-panel,
.contact-card,
.faq-group,
.filter-card,
.cta-panel,
.ai-visual {
  position: relative;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll,
  .motion-surface {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .motion-surface::after {
    display: none;
  }
}

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 249, 248, 0.92);
}

/* 09. 卡片与栅格：所有卡片对齐 24px 间距 */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--block-gap);
}

.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));
}

.card,
.method-card,
.service-card,
.case-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.card:hover,
.method-card:hover,
.service-card:hover,
.case-card:hover,
.statement:hover,
.contact-card:hover,
.filter-card:hover,
.faq-group:hover,
.dashboard-sidebar-card:hover,
.dashboard-panel:hover,
.lead-card:hover,
.doc-card:hover,
.admin-overview:hover,
.admin-panel:hover,
.admin-editor-card:hover,
.admin-library-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 180, 190, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.card,
.method-card,
.service-card {
  gap: 0;
  padding: var(--card-pad);
}

#aci-system .card {
  min-height: 100%;
}

.card p,
.method-card p,
.service-card p,
.case-card p {
  margin-bottom: 0;
}

.card > .tag,
.method-card > .tag,
.service-card > .tag,
.case-card > .tag,
.contact-card > .tag,
.diagnostic > .tag,
.faq-sidebar-card > .tag {
  margin-bottom: 18px;
}

.card > h3,
.method-card > h3,
.service-card > div h3,
.service-card > h3,
.case-card > h3,
.diagnostic > h3,
.contact-card > h3,
.faq-sidebar-card > h3 {
  margin-bottom: 10px;
}

.card > p,
.method-card > p,
.case-card > p,
.diagnostic > p,
.contact-card > p {
  margin-top: 0;
}

#aci-system .card > p {
  flex: 1 1 auto;
}

.method-card {
  gap: 0;
  min-height: 312px;
  padding: var(--card-pad) 28px;
}

.method-card-featured {
  background:
    linear-gradient(180deg, rgba(53, 180, 190, 0.08), rgba(249, 251, 250, 0.96)),
    var(--paper);
  border-color: rgba(53, 180, 190, 0.28);
}

.service-card {
  display: flex;
  min-height: 288px;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-featured {
  background:
    linear-gradient(180deg, rgba(100, 212, 142, 0.08), rgba(249, 251, 250, 0.98)),
    var(--paper);
  border-color: rgba(100, 212, 142, 0.26);
}

.case-card {
  padding: var(--card-pad-lg);
}

.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill-radius);
  color: #44505d;
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 0.03em;
}

.method-card .tag {
  margin-bottom: 24px;
}

.method-card h3 {
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.16;
}

.method-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.method-card p {
  line-height: 1.8;
}

.service-meta,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  align-items: center;
}

.service-meta span,
.pill-row span {
  padding: 7px 11px;
  border-radius: var(--pill-radius);
  background: #f1f6f4;
  color: #515b66;
  font-size: 12px;
  font-weight: var(--font-semibold);
}

/* 10. 首页特定模块：品牌介绍、搜索变化、诊断 CTA */
.proof-row {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.proof {
  padding: 14px 14px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.proof:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 180, 190, 0.24);
  box-shadow: 0 18px 34px rgba(18, 35, 40, 0.07);
}

.hero .actions {
  margin-bottom: 28px;
}

.hero .proof-row {
  margin-top: 8px;
}

.proof strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: var(--font-bold);
}

.proof span {
  color: var(--muted);
  font-size: 12px;
}

.intro {
  border-top: 1px solid var(--line);
}

.intro-grid,
.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.case-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.case-stat-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.case-stat-card:hover,
.case-result-card:hover,
.roadmap-step:hover,
.intake-point:hover,
.case-meta-item:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 180, 190, 0.22);
  box-shadow: 0 18px 38px rgba(18, 35, 40, 0.08);
}

.case-stat-main {
  display: grid;
  align-content: start;
  gap: 6px;
}

.case-stat-main strong {
  color: #187d83;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: var(--font-bold);
  line-height: 1;
}

.case-stat-main span {
  color: var(--deep);
  font-size: 18px;
  font-weight: var(--font-bold);
}

.case-example-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.48fr);
  gap: 24px;
  align-items: stretch;
}

.case-single-layout {
  display: grid;
}

.case-example-main {
  display: grid;
  align-content: start;
  gap: 0;
}

.case-example-main,
.case-example-side {
  min-height: 100%;
}

.case-meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.case-meta-item {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(242, 246, 245, 0.78);
}

.case-meta-item span {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--font-bold);
}

.case-meta-item strong {
  color: var(--deep);
  font-size: 15px;
  font-weight: var(--font-bold);
}

.case-results-head,
.case-steps-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 26px;
}

.case-results-head h4,
.case-steps-head h4 {
  margin: 8px 0 0;
  font-size: 24px;
  line-height: 1.45;
}

.case-results-head p,
.case-steps-head p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 14px;
}

.case-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.case-result-card {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(53, 180, 190, 0.08), rgba(249, 251, 250, 0.98));
}

.case-result-card strong {
  color: #187d83;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.case-result-card span {
  color: var(--deep);
  font-size: 15px;
  font-weight: var(--font-bold);
}

.case-result-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.case-roadmap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.roadmap-step {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 251, 250, 0.98), rgba(242, 246, 245, 0.88));
}

.roadmap-step h4 {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
}

.roadmap-step p {
  margin-bottom: 0;
}

.roadmap-step ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: #445458;
  font-weight: var(--font-medium);
}

.case-deliverables {
  display: grid;
  gap: 12px;
}

.case-deliverable {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.case-deliverable:first-child {
  padding-top: 0;
  border-top: 0;
}

.case-deliverable strong {
  color: var(--deep);
  font-size: 15px;
}

.case-deliverable span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.diagnosis-intake {
  display: grid;
  grid-template-columns: minmax(0, 860px);
  justify-content: center;
  gap: 0;
  align-items: stretch;
}

.diagnosis-intro,
.diagnosis-form {
  min-height: 100%;
}

.diagnosis-panel,
.diagnosis-form {
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.diagnosis-panel {
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.diagnosis-panel h3 {
  margin-bottom: 0;
}

.intake-points {
  display: grid;
  gap: 14px;
}

.intake-point {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(248, 251, 250, 0.98), rgba(242, 246, 245, 0.92));
}

.intake-point strong {
  color: var(--deep);
  font-size: 15px;
}

.intake-point span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.diagnosis-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.diagnosis-field-full {
  grid-column: 1 / -1;
}

.diagnosis-form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
}

.diagnosis-form-foot .note {
  margin: 0;
  max-width: 520px;
}

.diagnosis-form-foot .btn {
  flex: 0 0 auto;
  min-width: 168px;
  white-space: nowrap;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.form-status.is-loading {
  color: #4d6770;
}

.form-status.is-success {
  color: #138a68;
}

.form-status.is-error {
  color: #c1574a;
}

.diagnosis-form button[disabled] {
  cursor: wait;
  opacity: 0.86;
  transform: none;
}

.admin-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(53, 180, 190, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(100, 212, 142, 0.1), transparent 20%),
    linear-gradient(180deg, #f3f7f8 0%, #eef3f2 100%);
}

.admin-shell {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  display: grid;
  align-content: start;
  gap: 28px;
  padding: 28px 22px;
  color: rgba(248, 251, 250, 0.92);
  background: linear-gradient(180deg, rgba(11, 33, 49, 0.98) 0%, rgba(17, 72, 132, 0.98) 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.admin-brand span {
  display: grid;
  gap: 2px;
}

.admin-brand strong {
  color: #f8fbfa;
  font-size: 15px;
  line-height: 1.5;
}

.admin-brand small {
  color: rgba(228, 237, 245, 0.72);
  font-size: 12px;
  font-weight: var(--font-medium);
  line-height: 1.5;
}

.admin-sidebar-block {
  display: grid;
  gap: 14px;
}

.admin-sidebar-label {
  color: rgba(228, 237, 245, 0.68);
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-menu {
  display: grid;
  gap: 10px;
}

.admin-menu-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(245, 249, 250, 0.88);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  font-weight: var(--font-bold);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.admin-menu-link:hover,
.admin-menu-link.is-active {
  color: #ffffff;
  border-color: rgba(120, 205, 255, 0.34);
  background: linear-gradient(135deg, rgba(36, 111, 255, 0.92), rgba(31, 140, 255, 0.88));
  box-shadow: 0 18px 34px rgba(14, 71, 167, 0.24);
  transform: translateY(-1px);
}

.admin-sidebar-note {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.admin-sidebar-note p {
  max-width: none;
  margin-bottom: 12px;
  color: rgba(232, 239, 244, 0.82);
  font-size: 13px;
  line-height: 1.8;
}

.admin-side-link {
  color: #9feeff;
  font-size: 13px;
  font-weight: var(--font-bold);
}

.admin-main {
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(214, 224, 226, 0.92);
  border-radius: var(--panel-radius);
  background: rgba(252, 254, 255, 0.92);
  box-shadow: 0 20px 54px rgba(19, 43, 52, 0.08);
}

.admin-kicker {
  margin-bottom: 8px;
  color: #2b7cff;
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-topbar h1 {
  max-width: none;
  margin-bottom: 10px;
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.35;
}

.admin-topbar-copy {
  max-width: 76ch;
  margin-bottom: 0;
  color: #62757d;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-overview,
.admin-panel {
  display: grid;
  gap: 20px;
  padding: 28px 32px;
  border: 1px solid rgba(214, 224, 226, 0.92);
  border-radius: var(--panel-radius);
  background: rgba(252, 254, 255, 0.94);
  box-shadow: 0 18px 48px rgba(19, 43, 52, 0.06);
}

.admin-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.admin-card-head h2,
.admin-library-head h3 {
  margin-bottom: 8px;
}

.admin-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  color: #2460dd;
  background: rgba(36, 96, 221, 0.08);
  font-size: 12px;
  font-weight: var(--font-bold);
  white-space: nowrap;
}

.admin-access-card {
  display: grid;
  gap: 18px;
  padding: 26px 28px;
  border: 1px solid rgba(214, 224, 226, 0.92);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(243, 247, 249, 0.94));
}

.admin-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-summary-card {
  display: grid;
  gap: 8px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(214, 224, 226, 0.92);
  border-radius: 8px;
  background: rgba(252, 254, 255, 0.9);
}

.admin-summary-card span {
  color: #73858d;
  font-size: 13px;
  font-weight: var(--font-medium);
}

.admin-summary-card strong {
  color: #14252c;
  font-size: 32px;
  line-height: 1.2;
}

.admin-summary-card p {
  max-width: none;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.8;
}

.admin-workspace {
  display: grid;
  gap: 24px;
}

.admin-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.admin-editor-card,
.admin-library-card {
  padding: 24px;
  border: 1px solid rgba(214, 224, 226, 0.92);
  border-radius: var(--radius);
  background: rgba(248, 251, 252, 0.94);
}

.admin-library-card {
  display: grid;
  gap: 18px;
}

.admin-library-head {
  display: grid;
  gap: 4px;
}

.admin-library-head p {
  max-width: none;
  margin-bottom: 0;
}

.leads-shell {
  display: grid;
  gap: 28px;
}

.leads-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.leads-total-card {
  min-width: 180px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: rgba(249, 251, 250, 0.92);
  box-shadow: var(--shadow-soft);
}

.leads-total-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--font-medium);
}

.leads-total-card strong {
  display: block;
  margin-top: 8px;
  color: var(--deep);
  font-size: 36px;
  line-height: 1.1;
}

.leads-access-form {
  width: min(100%, 760px);
}

.dashboard-access-form {
  width: 100%;
}

.dashboard-access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.dashboard-sidebar {
  position: sticky;
  top: 96px;
}

.dashboard-sidebar-card,
.dashboard-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: rgba(249, 251, 250, 0.92);
  box-shadow: var(--shadow-soft);
}

.dashboard-sidebar-card {
  display: grid;
  gap: 18px;
}

.dashboard-sidebar-card h3,
.dashboard-sidebar-card p,
.dashboard-panel .section-copy {
  margin-bottom: 0;
}

.dashboard-menu {
  display: grid;
  gap: 10px;
}

.dashboard-menu-link {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(242, 246, 245, 0.8);
  color: var(--deep);
  font-size: 14px;
  font-weight: var(--font-bold);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.dashboard-menu-link.is-active,
.dashboard-menu-link:hover {
  color: #1098A6;
  border-color: rgba(53, 180, 190, 0.34);
  background: rgba(53, 180, 190, 0.08);
  transform: translateY(-1px);
}

.dashboard-main {
  display: grid;
  gap: 24px;
}

.dashboard-panel {
  display: grid;
  gap: 24px;
}

.dashboard-editor-form {
  width: 100%;
}

.leads-list {
  display: grid;
  gap: 18px;
}

.leads-empty,
.lead-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: rgba(249, 251, 250, 0.92);
  box-shadow: var(--shadow-soft);
}

.leads-empty {
  color: var(--muted);
  text-align: center;
}

.lead-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.lead-card-head h3 {
  margin-bottom: 0;
}

.lead-time {
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.lead-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.lead-meta span,
.lead-row {
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--surface);
}

.lead-meta span {
  display: grid;
  gap: 6px;
  color: var(--deep);
  font-size: 14px;
  font-weight: var(--font-medium);
}

.lead-meta b,
.lead-row b {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--font-bold);
}

.lead-row {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.lead-row span,
.lead-row p,
.lead-row a {
  color: var(--deep);
  font-size: 14px;
  line-height: 1.7;
  word-break: break-word;
}

.lead-row p {
  margin-bottom: 0;
  max-width: none;
}

.section-divider-top {
  border-top: 1px solid rgba(189, 204, 202, 0.6);
}

.field-checkbox {
  display: flex;
  align-items: center;
}

.checkbox-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-size: 14px;
  font-weight: var(--font-bold);
}

.checkbox-row input {
  width: 18px;
  height: 18px;
}

.dashboard-actions,
.dashboard-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.dashboard-card-actions {
  margin-top: 16px;
}

.doc-card .lead-row + .lead-row {
  margin-top: 10px;
}

.doc-card {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
}

.doc-card .lead-card-head h3,
.lead-card .lead-card-head h3 {
  font-size: 18px;
}

.btn.is-danger {
  border-color: rgba(193, 87, 74, 0.2);
  color: #a5463b;
}

.btn.is-danger:hover {
  border-color: rgba(193, 87, 74, 0.38);
  background: rgba(193, 87, 74, 0.06);
}

.statement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--card-pad-lg);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.statement p {
  max-width: 760px;
  margin-bottom: 22px;
  color: #334448;
  font-size: 18px;
  font-weight: var(--font-medium);
  line-height: 1.85;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.capability {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 15px;
  font-weight: var(--font-bold);
}

.capability::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--grad);
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 32px;
  border-radius: var(--panel-radius);
  background: var(--deep);
  color: #f8fbfa;
}

.quote-panel p {
  margin-bottom: 20px;
  color: #dce6e5;
  font-size: 18px;
  line-height: 1.8;
}

.quote-panel small {
  color: #9ea7b3;
  font-weight: var(--font-medium);
}

.shift-flow {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 24px;
  align-items: center;
}

.flow-box {
  min-height: 216px;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.flow-box h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.step {
  min-height: 84px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eef4f3;
  color: var(--ink);
  font-weight: var(--font-bold);
}

.step span {
  display: block;
  margin-bottom: 8px;
  color: #6b7a7d;
  font-size: 12px;
  font-weight: var(--font-medium);
}

.flow-arrow {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: #18949d;
  font-size: 28px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.timeline-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--font-bold);
}

.timeline-item b {
  font-size: 16px;
}

.founder-profile {
  display: grid;
  align-content: start;
  gap: 16px;
}

.founder-profile h3 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.5;
}

.founder-copy {
  max-width: 860px;
  margin-bottom: 0;
  color: #334448;
  font-size: 16px;
  line-height: 1.95;
}

.founder-visual-card {
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
}

.founder-visual-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  padding: 10px;
}

.founder-visual-card .btn {
  width: 100%;
  min-height: 52px;
  flex: 0 0 auto;
}

.diagnostic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(53, 180, 190, 0.18);
  border-radius: var(--panel-radius);
  background: var(--grad-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.diagnostic h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.35;
}

.case-preview-visual {
  display: grid;
  gap: 14px;
  width: 100%;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(53, 180, 190, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.case-preview-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--pill-radius);
  font-size: 12px;
  font-weight: var(--font-bold);
}

.case-preview-node-main {
  justify-self: start;
  color: #1098A6;
  border: 1px solid rgba(53, 180, 190, 0.22);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.case-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.case-preview-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border: 1px solid rgba(53, 180, 190, 0.16);
  border-radius: var(--radius);
  background: rgba(248, 251, 250, 0.94);
  color: var(--deep);
  font-size: 13px;
  font-weight: var(--font-bold);
}

.case-preview-bars {
  display: grid;
  gap: 8px;
}

.case-preview-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 180, 190, 0.24), rgba(100, 212, 142, 0.54));
}

.case-preview-bars i:nth-child(1) {
  width: 88%;
}

.case-preview-bars i:nth-child(2) {
  width: 72%;
}

.case-preview-bars i:nth-child(3) {
  width: 94%;
}

.score {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.score-row {
  display: grid;
  grid-template-columns: 86px 1fr 42px;
  gap: 12px;
  align-items: center;
  color: #34575a;
  font-size: 13px;
  font-weight: var(--font-bold);
}

.bar {
  overflow: hidden;
  height: 8px;
  border-radius: 99px;
  background: rgba(53, 180, 190, 0.16);
}

.bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--grad);
}

/* 11. 内页内容组件：解决方案、研究院、关于、联系页共用 */
.metric-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--grad-soft);
  box-shadow: var(--shadow-soft);
}

.metric {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
}

.metric p {
  max-width: none;
  margin: 0;
}

.metric b {
  color: #187d83;
  font-size: 30px;
  font-weight: var(--font-bold);
  line-height: 1;
}

.process-list,
.article-list,
.faq-list {
  display: grid;
  gap: 12px;
}

.process-item,
.article-item,
.faq-item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.process-item span,
.article-item span {
  display: inline-block;
  margin-bottom: 8px;
  color: #18949d;
  font-size: 12px;
  font-weight: var(--font-bold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.44fr);
  gap: 24px;
  align-items: start;
}

.aside-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.entity-map {
  display: grid;
  gap: 12px;
}

.entity-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.entity-row b {
  color: var(--deep);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  color: var(--deep);
  font-size: 13px;
  font-weight: var(--font-bold);
}

.required-mark {
  color: #1098A6;
  font-weight: var(--font-bold);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #f8fbfa;
  color: var(--ink);
  font-size: 15px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 16px;
}

.field textarea {
  min-height: 144px;
  padding: 16px;
  resize: vertical;
}

.admin-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-section-list {
  display: grid;
  gap: 16px;
}

.admin-section-item {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 251, 250, 0.72);
}

.admin-section-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-section-item-head strong {
  color: var(--deep);
  font-size: 14px;
}

.field input:hover,
.field textarea:hover,
.field select:hover,
.search-box input:hover {
  border-color: rgba(53, 180, 190, 0.28);
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.search-box input:focus {
  border-color: rgba(53, 180, 190, 0.54);
  background: #ffffff;
  box-shadow: var(--focus-ring);
}

.note {
  color: var(--muted);
  font-size: 13px;
}

.contact-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.contact-lead {
  max-width: 720px;
}

.qr-contact-card h3 {
  margin-bottom: 0;
  text-align: center;
}

.contact-item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.contact-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-item span {
  display: block;
  margin-bottom: 6px;
  color: #18949d;
  font-size: 12px;
  font-weight: var(--font-bold);
}

.contact-item strong,
.contact-item strong a {
  color: var(--deep);
  font-size: 18px;
  font-weight: var(--font-bold);
  line-height: 1.6;
}

.qr-card {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  height: 100%;
  text-align: center;
}

.qr-card img {
  width: 100%;
  max-width: 280px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-shell {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.faq-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-sidebar {
  position: sticky;
  top: 96px;
}

.faq-sidebar-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.faq-sidebar-card h3 {
  margin-bottom: 10px;
}

.faq-category-list {
  display: grid;
  gap: 8px;
}

.faq-category-link {
  display: block;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--deep);
  background: rgba(248, 251, 250, 0.84);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.faq-category-link.is-active,
.faq-category-link:hover {
  color: #1098A6;
  border-color: rgba(53, 180, 190, 0.34);
  background: rgba(53, 180, 190, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(18, 35, 40, 0.06);
}

.faq-group-list {
  display: grid;
  gap: 40px;
}

.faq-group {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: var(--card-pad);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.faq-group-head {
  display: grid;
  align-content: start;
  gap: 10px;
}

.faq-group-head h3,
.faq-group-head p {
  margin-bottom: 0;
}

.faq-page-list {
  display: grid;
  gap: 0;
}

.faq-page-item {
  border-top: 1px solid var(--line);
}

.faq-page-item:first-child {
  border-top: 0;
}

.faq-page-item summary {
  position: relative;
  padding: 22px 40px 22px 0;
  list-style: none;
  color: var(--deep);
  font-size: 19px;
  font-weight: var(--font-bold);
  line-height: 1.5;
  cursor: pointer;
  transition: color 180ms ease;
}

.faq-page-item summary:hover {
  color: #1098A6;
}

.faq-page-item summary::-webkit-details-marker {
  display: none;
}

.faq-page-item summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  right: 0;
  color: #1098A6;
  font-size: 26px;
  font-weight: var(--font-medium);
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-page-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  max-width: 78ch;
  margin-bottom: 0;
  font-weight: var(--font-medium);
}

.faq-page-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
}

.why-grid {
  display: grid;
  gap: 28px;
}

.why-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.why-cards {
  grid-auto-rows: 1fr;
}

.why-cards .feature-card {
  align-items: flex-start;
  padding-top: 24px;
}

.why-cards .tag {
  margin-bottom: 16px;
}

.why-cards .feature-card h3 {
  min-height: 63px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.why-cards .feature-card p {
  margin-bottom: 0;
  line-height: 1.8;
}

.feature-grid {
  align-items: stretch;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 100%;
  justify-content: flex-start;
}

.feature-card > .tag {
  margin-bottom: 22px;
}

.feature-card h3 {
  display: flex;
  align-items: flex-start;
  min-height: 92px;
  margin-bottom: 18px;
}

.feature-card p {
  margin-top: 0;
  margin-bottom: 0;
}

.why-cards .diagnostic,
.why-cards .card {
  min-height: 100%;
}

.feature-highlight {
  margin-top: 24px;
}

.feature-card-accent {
  gap: 24px;
}

/* 12. GEO研究院文档库：后台发布，前台筛选、列表与详情页 */
.institute-hero .actions {
  margin-bottom: 0;
}

.institute-workspace {
  display: grid;
  gap: 24px;
}

.filter-card,
.document-detail {
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.filter-card {
  padding: 26px;
}

.filter-card h3 {
  margin-bottom: 12px;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbfa;
  color: #4f6265;
  cursor: pointer;
  font-weight: var(--font-bold);
  padding: 0 14px;
  text-align: left;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.filter-btn::after {
  content: "›";
  color: #87a0a2;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: rgba(53, 180, 190, 0.5);
  background: rgba(53, 180, 190, 0.1);
  color: #187d83;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 35, 40, 0.06);
}

.library-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.library-note {
  margin: -4px 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.library-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.search-box {
  display: grid;
  gap: 10px;
}

.search-box span,
.result-count {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--font-bold);
}

.search-box input {
  width: 100%;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #f8fbfa;
  color: var(--ink);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.result-count {
  align-self: end;
  padding-bottom: 12px;
  white-space: nowrap;
}

.document-list {
  display: grid;
  gap: 12px;
}

.document-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 150px;
  gap: 18px;
  align-items: center;
  width: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
  box-shadow: var(--shadow-soft);
}

.document-row:hover,
.document-row.is-active {
  border-color: rgba(53, 180, 190, 0.56);
  box-shadow: 0 16px 36px rgba(24, 39, 44, 0.08);
  transform: translateY(-1px);
}

.document-row {
  text-decoration: none;
}

.doc-inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #187d83;
  font-size: 13px;
  font-weight: var(--font-bold);
}

.document-row-placeholder {
  cursor: default;
  background: rgba(249, 251, 250, 0.72);
  border-style: dashed;
  box-shadow: none;
}

.document-row-placeholder:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.doc-category {
  display: inline-flex;
  justify-content: center;
  padding: 7px 11px;
  border: 1px solid var(--line-strong);
  border-radius: var(--pill-radius);
  color: #187d83;
  font-size: 12px;
  font-weight: var(--font-bold);
}

.doc-main {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.doc-main strong {
  overflow: hidden;
  font-size: 17px;
  font-weight: var(--font-bold);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.doc-main small {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.doc-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: var(--muted);
  font-size: 12px;
}

.doc-meta b {
  color: #44505d;
  font-size: 13px;
  font-weight: var(--font-semibold);
}

.doc-meta em {
  max-width: 150px;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.58fr);
  gap: 22px;
}

.article-main {
  display: grid;
  gap: 20px;
  padding: 30px;
}

.article-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.article-meta-row div {
  display: grid;
  gap: 6px;
}

.article-meta-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--font-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-meta-row b {
  color: var(--deep);
  font-size: 15px;
  line-height: 1.6;
}

.article-body {
  gap: 16px;
}

.article-section {
  display: grid;
  gap: 14px;
  margin-bottom: 10px;
}

.article-section h2 {
  margin-bottom: 2px;
  font-size: 24px;
}

.article-aside {
  position: sticky;
  top: 104px;
  gap: 22px;
}

.article-aside-block {
  display: grid;
  gap: 12px;
}

.article-use-list {
  margin: 0;
}

.article-pdf-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background: var(--surface);
}

.article-pdf-panel.is-hidden {
  display: none;
}

.article-pdf-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.article-pdf-panel-head h3 {
  margin-bottom: 0;
  font-size: 18px;
}

.article-pdf-panel iframe {
  width: 100%;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

/* 13. CTA 与页脚：所有页面统一收口，引导诊断咨询 */
.cta {
  padding: var(--section-space-tight) 0 calc(var(--section-space) + 4px);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  min-height: 176px;
  padding: var(--card-pad-lg);
  border: 1px solid var(--line);
  border-radius: var(--panel-radius);
  background:
    linear-gradient(90deg, rgba(53, 180, 190, 0.16), rgba(100, 212, 142, 0.13)),
    var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.cta-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(53, 180, 190, 0.22);
  box-shadow: var(--shadow-card-hover);
}

.cta-panel h2 {
  max-width: 720px;
  margin-bottom: 10px;
}

.cta-panel p {
  margin-bottom: 0;
}

.footer {
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  color: #626b76;
  font-size: 13px;
}

.footer .shell {
  display: grid;
  gap: 14px;
}

.footer-main,
.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-meta {
  padding-top: 14px;
  border-top: 1px solid rgba(207, 219, 215, 0.72);
  color: #7a878a;
  font-size: 12px;
}

.footer-meta a {
  color: inherit;
}

/* 14. 响应式：移动端保持同一信息顺序，避免文字和图片挤压 */
@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    gap: 20px;
    padding: 20px;
  }

  .admin-main {
    padding: 20px;
  }

  .admin-topbar,
  .admin-overview,
  .admin-panel {
    padding: 24px;
  }

  .admin-summary-grid,
  .admin-editor-layout {
    grid-template-columns: 1fr;
  }

  .admin-card-head,
  .admin-topbar,
  .dashboard-layout,
  .leads-toolbar,
  .lead-card-head {
    display: grid;
    align-items: start;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .page-hero-grid,
  .contact-layout,
  .faq-layout,
  .intro-grid,
  .section-head,
  .case-layout,
  .case-stats-row,
  .case-example-layout,
  .case-meta-strip,
  .case-results-head,
  .case-steps-head,
  .case-result-grid,
  .diagnosis-intake,
  .why-grid,
  .split,
  .cta-panel,
  .institute-workspace,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 62px;
  }

  .ai-visual {
    min-height: 500px;
  }

  .shift-flow {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .method-card,
  .service-card,
  .metric-panel,
  .quote-panel,
  .diagnostic,
  .cta-panel {
    min-height: unset;
  }

  .aside-panel {
    position: static;
  }

  .library-sidebar {
    position: static;
  }

  .document-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    position: static;
  }

  .lead-meta {
    grid-template-columns: 1fr 1fr;
  }

  .case-result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-meta-strip {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-page-cta {
    flex-wrap: wrap;
  }

  .dashboard-actions,
  .dashboard-card-actions {
    flex-wrap: wrap;
  }

  .detail-modal-panel {
    width: min(100% - 24px, 1080px);
    margin-top: 4vh;
  }

  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }

  .doc-meta {
    grid-column: 2;
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .shell,
  .narrow {
    width: min(100% - 24px, var(--max));
  }

  .admin-sidebar,
  .admin-main {
    padding: 16px;
  }

  .admin-topbar,
  .admin-overview,
  .admin-panel,
  .admin-access-card,
  .admin-editor-card,
  .admin-library-card {
    padding: 20px;
    border-radius: 18px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    overflow: visible;
  }

  h1 {
    font-size: 28px;
    line-height: 1.4;
    text-wrap: pretty;
  }

  h2 {
    font-size: 28px;
    line-height: 1.4;
    text-wrap: pretty;
  }

  h3 {
    line-height: 1.42;
  }

  .topbar {
    position: sticky;
  }

  .nav {
    gap: 16px;
    padding: 14px 0 16px;
  }

  .brand {
    width: 100%;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid rgba(189, 204, 202, 0.82);
    border-radius: var(--pill-radius);
    background: rgba(249, 251, 250, 0.88);
    white-space: nowrap;
  }

  .hero,
  .page-hero {
    padding: 48px 0 36px;
  }

  .eyebrow,
  .kicker {
    margin-bottom: 12px;
  }

  .lead {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.85;
  }

  .hero-note {
    display: inline-flex;
    width: 100%;
    margin-bottom: 18px;
    padding: 10px 12px;
    border-radius: var(--radius);
    line-height: 1.6;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }

  .actions .btn,
  .actions .nav-cta {
    width: 100%;
  }

  .proof-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .capability-list,
  .flow-steps,
  .signal,
  .dashboard-access-grid,
  .diagnosis-form-grid {
    grid-template-columns: 1fr;
  }

  .ai-visual {
    min-height: 560px;
  }

  .graph {
    inset: 52px 10px 14px;
  }

  .node {
    min-width: 94px;
    padding: 10px;
    font-size: 12px;
  }

  .node-main {
    left: 88px;
    top: 166px;
    min-width: 142px;
    min-height: 68px;
    font-size: 15px;
  }

  .node-1 { left: 14px; top: 80px; }
  .node-2 { right: 10px; top: 90px; }
  .node-3 { right: 12px; top: 270px; }
  .node-4 { left: 14px; bottom: 238px; }
  .node-5 { right: 22px; bottom: 198px; }

  .graph-line {
    opacity: 0.42;
  }

  .signal {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .statement,
  .case-card,
  .cta-panel,
  .diagnosis-panel,
  .diagnosis-form {
    padding: var(--card-pad-sm);
  }

  .case-stat-card,
  .roadmap-step,
  .faq-group,
  .contact-card,
  .filter-card,
  .document-detail {
    padding: var(--card-pad-sm);
  }

  .case-stat-main strong,
  .case-result-card strong {
    font-size: 30px;
  }

  .case-stat-main span,
  .case-results-head h4,
  .case-steps-head h4,
  .roadmap-step h4,
  .faq-page-item summary {
    font-size: 18px;
  }

  .contact-item strong,
  .contact-item strong a {
    font-size: 16px;
  }

  .qr-card {
    align-content: start;
  }

  .qr-card img {
    max-width: 240px;
  }

  .diagnosis-form-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .diagnosis-form-foot .btn,
  .dashboard-actions .btn {
    width: 100%;
  }

  .dashboard-sidebar-card,
  .dashboard-panel {
    padding: 24px;
  }

  .leads-access-form {
    width: 100%;
  }

  .lead-meta {
    grid-template-columns: 1fr;
  }

  .dashboard-actions {
    width: 100%;
  }

  .timeline-item,
  .entity-row,
  .metric,
  .library-toolbar,
  .document-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .document-row {
    padding: 18px;
  }

  .doc-category {
    justify-self: start;
  }

  .doc-main strong,
  .doc-main small {
    white-space: normal;
  }

  .doc-meta {
    grid-column: auto;
  }

  .result-count {
    align-self: start;
    padding-bottom: 0;
  }

  .document-detail {
    padding: var(--card-pad-sm);
  }

  .detail-modal-panel {
    width: min(100% - 16px, 1080px);
    max-height: 92vh;
    margin-top: 2vh;
    padding-top: 12px;
  }

  .article-main {
    padding: 22px 18px;
  }

  .article-meta-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-grid {
    gap: 18px;
  }

  .footer .shell {
    gap: 10px;
  }

  .footer-main,
  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
