/* =====================================================================
 * GEO 优化诊断页样式
 * ─────────────────────────────────────────────────────────────────────
 * 设计原则：
 * 1. 全部公共样式（颜色/字体/按钮/卡片/容器/响应式断点）来自 style.css
 * 2. 本文件只声明 .geo-* 前缀类 + 局部 token
 * 3. 响应式沿用 980 / 720 两档断点
 * ===================================================================== */

/* ---------- 局部 token（仅 GEO 页用到） ---------- */
:root {
  --cyan-text: #1d8e9c;        /* 高对比度青色，用于正文关键数字 */
  --geo-warn: #e08a3c;
  --geo-danger: #d95757;
  --geo-ok: #3d9970;
  --geo-muted-bg: rgba(255, 255, 255, 0.04);
  --geo-paywall-bg: linear-gradient(180deg, rgba(4, 16, 31, 0.92), rgba(7, 24, 40, 0.96));
  --geo-blur-amount: 8px;
}

/* ---------- 全局可访问性补丁（首页缺少的 focus 样式） ---------- */
:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 2px;
  border-radius: 2px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Sample 角标 ---------- */
.geo-sample-badge {
  position: fixed;
  top: calc(var(--header-height) + 12px);
  right: 12px;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(4, 16, 31, 0.08);
  font-size: 0.78rem;
  color: var(--text);
  backdrop-filter: blur(8px);
}
.geo-sample-badge svg {
  width: 14px; height: 14px;
  color: var(--cyan-text);
  stroke-width: 2;
}

/* 当前页导航高亮 */
.nav-menu a.is-current {
  color: var(--cyan-400);
}
.nav-menu a.is-current::after {
  width: 100%;
}

/* =====================================================================
 * ① HERO
 * ===================================================================== */
.geo-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 56px) 24px 96px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.geo-hero-media { position: absolute; inset: 0; }
.geo-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-ken 22s ease-in-out infinite alternate;
}
.geo-hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 31, 0.55) 0%, rgba(4, 16, 31, 0.72) 45%, rgba(4, 16, 31, 0.88) 100%),
    linear-gradient(120deg, rgba(7, 24, 40, 0.75) 0%, rgba(20, 58, 92, 0.35) 55%, rgba(46, 184, 200, 0.18) 100%);
}
.geo-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 65% 55% at 50% 45%, #000 15%, transparent 72%);
  animation: grid-pan 30s linear infinite;
  pointer-events: none;
}

.geo-hero-content {
  position: relative; z-index: 1;
  max-width: 920px;
  animation: rise 0.9s var(--ease) both;
}

.geo-hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--cyan-400);
  margin-bottom: 22px;
  opacity: 0.9;
}

.geo-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.geo-hero-accent {
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.geo-hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.geo-hero-cta {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.geo-hero-stats {
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
  margin-top: 12px;
}
.geo-hero-stats li {
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.geo-hero-stats strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--cyan-400);
  line-height: 1;
  letter-spacing: 0.04em;
}
.geo-hero-stats span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

/* =====================================================================
 * ② WHAT IS GEO
 * ===================================================================== */
.geo-what-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}
.geo-what-grid > .geo-compare-card {
  width: 100%;
  max-width: 760px;
}
.geo-what-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.geo-what-text p:last-child { margin-bottom: 0; }
.geo-what-text strong { color: var(--navy-800); font-weight: 600; }

.geo-compare-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 6px 24px rgba(4, 16, 31, 0.06);
  overflow: hidden;
  position: relative;
}
.geo-compare-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 38%;
  background: linear-gradient(135deg, rgba(46, 184, 200, 0.04) 0%, rgba(46, 184, 200, 0.09) 100%);
  pointer-events: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.geo-compare-head {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line);
}
.geo-compare-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--cyan-500);
  background: rgba(46, 184, 200, 0.08);
  border: 1px solid rgba(46, 184, 200, 0.28);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  font-weight: 600;
}
.geo-compare-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy-800);
  margin: 0 0 6px;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.geo-compare-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.geo-compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.92rem;
}
.geo-compare-table th,
.geo-compare-table td {
  text-align: left;
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.geo-compare-table thead th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 600;
  padding-bottom: 12px;
  padding-top: 6px;
}
.geo-compare-table thead .col-seo { color: var(--text-muted); }
.geo-compare-table thead .col-geo {
  color: var(--cyan-500);
}
.geo-compare-table thead .col-geo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 3px;
  opacity: 0.85;
  font-family: var(--font-body);
}
.geo-compare-col-label {
  display: inline-block;
  font-size: 0.95rem;
}
.geo-compare-recommend {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  background: var(--cyan-500);
  color: #fff;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 600;
  font-family: var(--font-display);
  box-shadow: 0 2px 6px rgba(46, 184, 200, 0.35);
}
.geo-compare-row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--navy-700);
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid var(--line);
}
.geo-compare-row-icon svg {
  width: 15px;
  height: 15px;
}
.geo-compare-row-label {
  font-weight: 600;
  color: var(--navy-800);
  vertical-align: middle;
  white-space: nowrap;
}
.geo-compare-table tbody th {
  font-weight: 600;
  color: var(--navy-800);
  background: var(--surface-soft);
}
.geo-compare-table tbody td {
  color: var(--text);
  line-height: 1.55;
}
/* SEO column: muted */
.geo-compare-table tbody td:not(.col-geo) {
  color: var(--text-muted);
}
/* GEO column: emphasized (box-shadow inset 替代 ::before，避免逃逸到整个表) */
.geo-compare-table tbody td.col-geo {
  background: linear-gradient(135deg, rgba(46, 184, 200, 0.08) 0%, rgba(46, 184, 200, 0.14) 100%);
  color: var(--navy-900);
  font-weight: 500;
  box-shadow: inset 3px 0 0 var(--cyan-500);
}
.geo-compare-table tbody tr:hover td.col-geo {
  background: linear-gradient(135deg, rgba(46, 184, 200, 0.12) 0%, rgba(46, 184, 200, 0.20) 100%);
}
.geo-compare-table tr:last-child th,
.geo-compare-table tr:last-child td { border-bottom: none; }

.geo-what-cards {
  margin-top: 0;
}

/* =====================================================================
 * ③ HOW IT WORKS
 * ===================================================================== */
.geo-how {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(46, 184, 200, 0.06), transparent 60%),
    var(--surface);
}

.geo-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
  list-style: none;
}

.geo-timeline-item {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.geo-timeline-item:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 184, 200, 0.45);
}
.geo-timeline-item::before {
  content: "";
  position: absolute;
  top: 50%; right: -14px;
  width: 14px; height: 1px;
  background: var(--line);
}
.geo-timeline-item:last-child::before { display: none; }

.geo-timeline-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan-500);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.geo-timeline-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 8px;
}
.geo-timeline-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.geo-timeline-out {
  display: inline-block;
  font-size: 0.78rem;
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--navy-700);
  background: var(--surface-soft);
}

/* =====================================================================
 * ④ DIAGNOSE INTERACTIVE
 * ===================================================================== */
.geo-diagnose-section {
  background:
    linear-gradient(180deg, #eef3f8 0%, #e6edf4 100%);
}

.geo-panel { display: none; }
.geo-diagnose-section[data-state="idle"]      .geo-panel--form,
.geo-diagnose-section[data-state="validating"] .geo-panel--form,
.geo-diagnose-section[data-state="loading"]    .geo-panel--loading,
.geo-diagnose-section[data-state="error"]      .geo-panel--error,
.geo-diagnose-section[data-state="success"]    .geo-panel--success,
.geo-diagnose-section[data-state="done"]       .geo-panel--form {
  display: block;
}

.geo-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(4, 16, 31, 0.06);
}
.geo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.geo-field { display: flex; flex-direction: column; }
.geo-field--region { grid-column: 1 / -1; }
.geo-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.geo-field .req { color: var(--geo-danger); margin-left: 2px; }
.geo-field-optional { color: var(--text-muted); font-weight: 400; margin-left: 4px; }
.geo-field input,
.geo-field select {
  height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.geo-field input:focus,
.geo-field select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(46, 184, 200, 0.12);
  outline: none;
}
.geo-field input[aria-invalid="true"],
.geo-field select[aria-invalid="true"] {
  border-color: var(--geo-danger);
  box-shadow: 0 0 0 3px rgba(217, 87, 87, 0.12);
}
.geo-field-error {
  font-size: 0.82rem;
  color: var(--geo-danger);
  margin-top: 6px;
  min-height: 1em;
}

.geo-region {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

/* 业务范围切换（覆盖全国开关） */
.geo-coverage-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 12px;
  padding: 8px 14px;
  background: #f4f7fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-muted, #4d6074);
  user-select: none;
  transition: all 0.15s ease;
}
.geo-coverage-toggle:hover {
  background: #eaf1f5;
  border-color: #c3d2e0;
}
.geo-coverage-toggle input[type="checkbox"] {
  margin: 0;
  cursor: pointer;
  accent-color: var(--cyan-500, #2eb8c8);
  width: 16px; height: 16px;
}
.geo-coverage-toggle-text { line-height: 1.2; }

/* 全国模式：地区字段变灰且禁用 */
.geo-field--region[data-coverage="national"] .geo-region input {
  background: #f4f7fa;
  color: var(--text-muted, #4d6074);
  cursor: not-allowed;
}
.geo-field--region[data-coverage="national"] .geo-coverage-toggle {
  background: rgba(46, 184, 200, 0.08);
  border-color: var(--cyan-500, #2eb8c8);
  color: var(--brand, #143a5c);
  font-weight: 500;
}

/* 字段下方提示文案 */
.geo-field-hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-muted, #4d6074);
  line-height: 1.5;
}
.geo-field--region[data-coverage="national"] .geo-field-hint { display: none; }

.geo-honeypot {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  left: -9999px;
  top: -9999px;
}

.geo-form-actions {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}
.geo-form-tip {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
  margin: 0;
}
.geo-form-tip svg { width: 14px; height: 14px; stroke-width: 2; }
.geo-form-tip a { color: var(--cyan-text); text-decoration: underline; }

/* Loading */
.geo-loading {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 56px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(4, 16, 31, 0.06);
}
.geo-loading-bar {
  height: 8px;
  background: var(--surface-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
}
.geo-loading-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--navy-800), var(--cyan-500));
  border-radius: 999px;
  transition: width 0.4s var(--ease);
}
.geo-loading-stage {
  font-size: 1rem;
  color: var(--navy-800);
  font-weight: 500;
  margin-bottom: 8px;
  min-height: 1.4em;
}
.geo-loading-percent {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan-text);
  letter-spacing: 0.04em;
}

/* Error */
.geo-error {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.geo-error svg {
  width: 48px; height: 48px;
  color: var(--geo-warn);
  stroke-width: 1.75;
  margin-bottom: 12px;
}
.geo-error h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy-800); margin-bottom: 8px; }
.geo-error p { color: var(--text-muted); margin-bottom: 24px; }
.geo-error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----- Success panel（提交成功，等待邮件） */
.geo-success {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px 36px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 8px 32px rgba(4, 16, 31, 0.06);
}
.geo-success > i[data-lucide] {
  font-size: 48px;
  color: #2eb8c8;
  margin-bottom: 12px;
}
.geo-success h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy-800); margin: 0 0 12px; }
.geo-success p { color: var(--text-muted); margin: 8px 0; }
.geo-success-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f4f7fa;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy-800);
  margin: 16px 0 24px !important;
}
.geo-success-email i[data-lucide] { font-size: 18px; color: #2eb8c8; }
.geo-success-tips {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  background: #f4f7fa;
  border-radius: 8px;
  padding: 14px 20px;
}
.geo-success-tips li { padding-left: 14px; position: relative; }
.geo-success-tips li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: #2eb8c8;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
}

/* =====================================================================
 * ⑤ REPORT
 * ===================================================================== */
.geo-report {
  background: var(--surface-soft);
  position: relative;
}

.geo-report[hidden] { display: none; }

.geo-report-head {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(46, 184, 200, 0.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fa 100%);
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--line);
}
.geo-report-head .section-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
}
.geo-report-head .section-eyebrow svg { width: 14px; height: 14px; }
.geo-report-id {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 12px;
  letter-spacing: 0.08em;
}

.geo-report-section { padding: 80px 0; }

.geo-h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: flex; align-items: baseline; gap: 14px;
}
.geo-h3-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan-text);
  letter-spacing: 0.1em;
  background: rgba(29, 142, 156, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
}

.geo-h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  margin: 36px 0 16px;
  letter-spacing: 0.04em;
}

/* 信息块列表：复用 .contact-list */
.geo-info {
  max-width: 720px;
}

/* ---------- 通用表格 ---------- */
.geo-table-scroll {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
}
.geo-table-scroll--wide { max-width: 100%; }
.geo-table-scroll::-webkit-scrollbar { height: 8px; }
.geo-table-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

.geo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 720px;
}
.geo-table thead th {
  background: var(--surface-soft);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy-800);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0;
}
.geo-table tbody th,
.geo-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  vertical-align: middle;
}
.geo-table tbody tr:last-child th,
.geo-table tbody tr:last-child td { border-bottom: none; }
.geo-table tbody tr:hover { background: rgba(46, 184, 200, 0.04); }

.geo-table th[scope="row"] {
  font-weight: 600;
  color: var(--navy-800);
  background: var(--surface-soft);
}
.geo-table .is-self {
  background: rgba(20, 58, 92, 0.04);
  position: relative;
}
.geo-table .is-self::before {
  content: "";
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 3px;
  background: var(--cyan-text);
  border-radius: 2px;
}
.geo-table .is-gated {
  color: var(--text-muted);
}

/* 12 项总览表内的迷你条形 */
.geo-bar {
  display: inline-block;
  width: 60px; height: 6px;
  border-radius: 3px;
  background: var(--surface-soft);
  position: relative;
  vertical-align: middle;
  margin-left: 8px;
}
.geo-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: var(--cyan-text);
  border-radius: 3px;
}
.geo-bar-fill--weak { background: var(--geo-danger); }
.geo-bar-fill--fair { background: var(--geo-warn); }
.geo-bar-fill--strong { background: var(--geo-ok); }

/* verdict 标记 */
.geo-verdict {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.78rem; font-weight: 600;
  padding: 3px 10px; border-radius: 4px;
  letter-spacing: 0.04em;
}
.geo-verdict svg { width: 12px; height: 12px; stroke-width: 2.5; }
.geo-verdict--weak   { background: rgba(217, 87, 87, 0.10); color: var(--geo-danger); }
.geo-verdict--fair   { background: rgba(224, 138, 60, 0.10); color: var(--geo-warn); }
.geo-verdict--strong { background: rgba(61, 153, 112, 0.10); color: var(--geo-ok); }

/* ---------- 图表容器 ---------- */
.geo-chart-figure {
  margin: 24px 0 0;
}
.geo-chart {
  width: 100%;
  height: 360px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.geo-chart--score    { height: 380px; }
.geo-chart--heatmap  { height: 460px; }
.geo-chart--eeat     { height: 380px; }
.geo-chart--content  { height: 280px; }

.geo-chart-skeleton {
  position: absolute; inset: 24px;
  background:
    linear-gradient(90deg, var(--surface-soft), rgba(46, 184, 200, 0.06), var(--surface-soft));
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.6s infinite linear;
  border-radius: 8px;
}

@keyframes skeleton-shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

.geo-chart-data {
  margin-top: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.geo-chart-data summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 0.92rem;
  list-style: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.geo-chart-data summary::-webkit-details-marker { display: none; }
.geo-chart-data summary::before {
  content: "▸";
  transition: transform var(--transition);
}
.geo-chart-data[open] summary::before { transform: rotate(90deg); }
.geo-chart-data table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.88rem;
}
.geo-chart-data caption {
  text-align: left;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 8px;
}
.geo-chart-data th,
.geo-chart-data td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.geo-chart-data thead th {
  background: var(--surface-soft);
  font-weight: 600;
  color: var(--navy-800);
  font-size: 0.82rem;
}

/* ---------- 风险等级 ---------- */
.geo-risk-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 24px;
}
.geo-risk-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.geo-risk-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.geo-risk-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.geo-risk-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.geo-risk-badge svg { width: 22px; height: 22px; stroke-width: 2; }
.geo-risk-level--safe        { background: rgba(61, 153, 112, 0.10); color: var(--geo-ok); }
.geo-risk-level--medium      { background: rgba(224, 138, 60, 0.10); color: var(--geo-warn); }
.geo-risk-level--danger      { background: rgba(217, 87, 87, 0.10); color: var(--geo-danger); }
.geo-risk-level--blacklist   { background: rgba(4, 16, 31, 0.90); color: #fff; }

.geo-risk-list { display: grid; grid-template-columns: 1fr; gap: 12px; }
.geo-risk-list dt {
  font-size: 0.86rem; font-weight: 600; color: var(--navy-700);
  margin-bottom: 6px;
}
.geo-risk-list dd { margin: 0 0 14px 0; }
.geo-risk-list ul { list-style: none; padding: 0; margin: 0; }
.geo-risk-list li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.7;
}
.geo-risk-list li::before {
  content: "•";
  position: absolute; left: 4px; top: 0;
  color: var(--cyan-text);
  font-weight: 700;
}

/* 算法适配 */
.geo-algo-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.geo-algo-item {
  display: grid;
  grid-template-columns: 110px 1fr 80px;
  gap: 14px;
  align-items: center;
  font-size: 0.92rem;
}
.geo-algo-item-label { font-weight: 600; color: var(--navy-800); }
.geo-algo-bar {
  height: 14px;
  background: var(--surface-soft);
  border-radius: 7px;
  position: relative;
  overflow: hidden;
}
.geo-algo-bar-bench {
  position: absolute; top: -2px; bottom: -2px;
  width: 2px; background: var(--text-muted);
  z-index: 2;
}
.geo-algo-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy-800), var(--cyan-text));
  border-radius: 7px;
  transition: width 0.6s var(--ease);
}
.geo-algo-bar-fill--under { background: var(--geo-danger); }
.geo-algo-bar-fill--above { background: var(--geo-ok); }
.geo-algo-delta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  text-align: right;
}
.geo-algo-delta--under { color: var(--geo-danger); }
.geo-algo-delta--above { color: var(--geo-ok); }

/* ---------- 信源核查 ---------- */
.geo-crawlable,
.geo-source-tiers {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-top: 8px;
}

.geo-crawlable-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 14px;
  align-items: start;
}
.geo-crawlable-cell {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  padding: 6px 0;
}
.geo-crawlable-dot {
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  border-radius: 4px;
  font-size: 0.78rem; font-weight: 700;
}
.geo-crawlable-dot--yes { background: rgba(61, 153, 112, 0.14); color: var(--geo-ok); }
.geo-crawlable-dot--no  { background: rgba(217, 87, 87, 0.10); color: var(--geo-danger); }

.geo-source-tiers dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px 18px;
  margin: 0 0 14px;
}
.geo-source-tiers dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--cyan-text);
  letter-spacing: 0.06em;
}
.geo-source-tiers dd {
  margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.geo-source-tier-tag {
  font-size: 0.82rem;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--surface-soft);
  color: var(--text);
  border: 1px solid var(--line);
}

.geo-conclusions {
  list-style: none;
  padding: 0; margin: 8px 0 0;
  counter-reset: conclusion;
}
.geo-conclusions li {
  position: relative;
  padding: 14px 16px 14px 48px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}
.geo-conclusions li::before {
  counter-increment: conclusion;
  content: counter(conclusion);
  position: absolute;
  left: 16px; top: 14px;
  width: 24px; height: 24px;
  background: var(--cyan-text);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- E-E-A-T ---------- */
.geo-eeat-findings {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.geo-eeat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.geo-eeat-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy-800);
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.geo-eeat-card h4 svg { width: 16px; height: 16px; color: var(--cyan-text); stroke-width: 2; }
.geo-eeat-card ul {
  list-style: none; padding: 0; margin: 0 0 10px;
}
.geo-eeat-card li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.7;
}
.geo-eeat-card li::before {
  content: "·";
  position: absolute; left: 6px;
  color: var(--cyan-text);
  font-weight: 700;
}
.geo-eeat-card--has li::before { color: var(--geo-ok); content: "✓"; }
.geo-eeat-card--gap li::before { color: var(--geo-danger); content: "✕"; }

/* ---------- 六大维度 ---------- */
.geo-dim-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 16px;
}
.geo-dim-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  position: relative;
}
.geo-dim-card-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap; gap: 8px;
}
.geo-dim-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
  display: flex; align-items: center; gap: 8px;
}
.geo-dim-card h4 svg { width: 18px; height: 18px; color: var(--cyan-text); stroke-width: 2; }
.geo-dim-severity {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.geo-dim-severity--high   { background: rgba(217, 87, 87, 0.10); color: var(--geo-danger); }
.geo-dim-severity--medium { background: rgba(224, 138, 60, 0.10); color: var(--geo-warn); }
.geo-dim-severity--low    { background: rgba(61, 153, 112, 0.10); color: var(--geo-ok); }

.geo-dim-scores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.geo-dim-score {
  background: var(--surface-soft);
  border-radius: 8px;
  padding: 10px 8px;
  text-align: center;
}
.geo-dim-score-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.geo-dim-score-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-800);
}
.geo-dim-score--self {
  background: rgba(20, 58, 92, 0.06);
  border: 1px solid rgba(20, 58, 92, 0.12);
}
.geo-dim-score--self .geo-dim-score-value { color: var(--cyan-text); }

.geo-dim-metrics {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.geo-dim-metric {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
  border-bottom: 1px dashed var(--line);
}
.geo-dim-metric:last-child { border-bottom: none; }
.geo-dim-metric-label { color: var(--text-muted); font-weight: 600; }
.geo-dim-metric-value { color: var(--text); }
.geo-dim-metric-value--self {
  background: rgba(29, 142, 156, 0.06);
  padding: 2px 6px; border-radius: 3px;
  font-weight: 600;
}

.geo-dim-impact {
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(217, 87, 87, 0.04);
  border-left: 3px solid var(--geo-danger);
  border-radius: 0 6px 6px 0;
  font-size: 0.85rem;
  color: var(--text);
}
.geo-dim-findings {
  list-style: none; padding: 0; margin: 12px 0 0;
}
.geo-dim-findings li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 4px 0 4px 18px;
  position: relative;
  line-height: 1.6;
}
.geo-dim-findings li::before {
  content: "▸";
  position: absolute; left: 4px;
  color: var(--cyan-text);
}

/* ---------- 整改建议 ---------- */
.geo-rec-list {
  list-style: none;
  padding: 0; margin: 16px 0 0;
  counter-reset: rec;
  display: grid; gap: 14px;
}
.geo-rec-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px 22px 70px;
  position: relative;
}
.geo-rec-item::before {
  counter-increment: rec;
  content: counter(rec, decimal-leading-zero);
  position: absolute;
  left: 22px; top: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--cyan-text);
  letter-spacing: 0.04em;
}
.geo-rec-head {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  margin-bottom: 6px;
}
.geo-rec-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy-800);
}
.geo-rec-meta {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.geo-rec-tag {
  font-size: 0.74rem;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.geo-rec-tag--impact { background: rgba(217, 87, 87, 0.10); color: var(--geo-danger); }
.geo-rec-tag--effort { background: rgba(46, 184, 200, 0.10); color: var(--cyan-text); }
.geo-rec-tag--cycle  { background: rgba(20, 58, 92, 0.08); color: var(--navy-700); }

.geo-rec-why {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 6px 0 10px;
}
.geo-rec-actions {
  list-style: none; padding: 0; margin: 0;
}
.geo-rec-actions li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 4px 0 4px 22px;
  position: relative;
}
.geo-rec-actions li::before {
  content: "→";
  position: absolute; left: 4px; top: 4px;
  color: var(--cyan-text);
  font-weight: 700;
}

/* 留资后的整改建议：仅显示标题，正文模糊 */
.geo-rec-item--gated .geo-rec-why,
.geo-rec-item--gated .geo-rec-actions { filter: blur(var(--geo-blur-amount)); user-select: none; pointer-events: none; }

.geo-rec-item--locked {
  position: relative;
}
.geo-rec-item--locked::after {
  content: "🔒 解锁后查看完整方案";
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  background: rgba(4, 16, 31, 0.65);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  cursor: pointer;
}

/* ---------- PDF 下载卡 ---------- */
.geo-pdf-card {
  display: flex; align-items: center; gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex-wrap: wrap;
}
.geo-pdf-card svg {
  width: 36px; height: 36px;
  color: var(--cyan-text);
  stroke-width: 1.75;
}
.geo-pdf-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 4px;
}
.geo-pdf-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* =====================================================================
 * Paywall 分隔线
 * ===================================================================== */
.geo-paywall {
  background: var(--geo-paywall-bg);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.geo-paywall::before,
.geo-paywall::after {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46, 184, 200, 0.3), transparent);
}
.geo-paywall::before { top: 0; }
.geo-paywall::after { bottom: 0; }

.geo-paywall-inner {
  max-width: 720px; margin: 0 auto;
}
.geo-paywall-inner > svg {
  width: 48px; height: 48px;
  color: var(--cyan-400);
  margin-bottom: 18px;
  stroke-width: 1.5;
}
.geo-paywall h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.geo-paywall ul {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: grid; gap: 10px;
  text-align: left;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.geo-paywall li {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: var(--geo-muted-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
}
.geo-paywall li svg { width: 18px; height: 18px; color: var(--cyan-400); stroke-width: 2; flex-shrink: 0; }
.geo-paywall-tip {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 18px;
}
.geo-paywall-tip a {
  color: var(--cyan-400);
  text-decoration: underline;
}

/* =====================================================================
 * Gated content
 * ===================================================================== */
.geo-gated { display: none; }
.geo-report[data-unlock="unlocked"] .geo-gated { display: block; }
.geo-report[data-unlock="unlocked"] .geo-paywall { display: none; }

/* =====================================================================
 * FAQ
 * ===================================================================== */
.geo-faq-section {
  background: var(--surface);
}
.geo-faq {
  max-width: 820px;
  margin: 0 auto;
  display: grid; gap: 12px;
}
.geo-faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.geo-faq details[open] {
  border-color: rgba(46, 184, 200, 0.35);
  box-shadow: 0 4px 16px rgba(4, 16, 31, 0.04);
}
.geo-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-800);
  padding: 16px 0;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px;
}
.geo-faq summary::-webkit-details-marker { display: none; }
.geo-faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cyan-text);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.geo-faq details[open] summary::after { transform: rotate(45deg); }
.geo-faq details > p {
  padding: 0 0 16px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

/* =====================================================================
 * Bottom CTA
 * ===================================================================== */
.geo-cta {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(46, 184, 200, 0.18), transparent 70%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 100%);
  color: #fff;
  padding: 96px 24px;
  text-align: center;
}
.geo-cta-inner { max-width: 760px; margin: 0 auto; }
.geo-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 12px 0 16px;
  letter-spacing: 0.06em;
}
.geo-cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}
.geo-cta-actions {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px;
}

/* =====================================================================
 * Modal
 * ===================================================================== */
.geo-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.geo-modal[aria-hidden="false"] { display: flex; }
.geo-modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(4, 16, 31, 0.65);
  backdrop-filter: blur(4px);
}
.geo-modal-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.32);
  animation: modal-rise 0.3s var(--ease) both;
}
@keyframes modal-rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.geo-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 6px;
  color: var(--text-muted);
}
.geo-modal-close:hover { background: var(--surface-soft); color: var(--text); }
.geo-modal-close svg { width: 20px; height: 20px; }

.geo-modal-head {
  text-align: center;
  margin-bottom: 24px;
}
.geo-modal-head > svg {
  width: 36px; height: 36px;
  color: var(--cyan-text);
  margin-bottom: 8px;
  stroke-width: 1.75;
}
.geo-modal-head h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: 6px;
}
.geo-modal-head p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

.geo-form--modal { padding: 0; box-shadow: none; border: none; background: transparent; }
.geo-form--modal .geo-field { margin-bottom: 16px; }
.geo-form--modal .geo-field[data-field-show="email"] { display: none; }
.geo-form--modal[data-scene="unlock"] .geo-field[data-field-show="email"] { display: flex; }

.geo-consent {
  display: flex; gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 16px 0;
  cursor: pointer;
  align-items: flex-start;
}
.geo-consent input { margin-top: 3px; }
.geo-consent a { color: var(--cyan-text); text-decoration: underline; }

.geo-modal-submit {
  width: 100%;
  margin-top: 8px;
}

/* =====================================================================
 * Toast
 * ===================================================================== */
.geo-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-950);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.24);
}
.geo-toast[aria-hidden="false"] {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.geo-toast--success { background: var(--geo-ok); }
.geo-toast--error { background: var(--geo-danger); }

/* =====================================================================
 * Responsive — 980 / 720
 * ===================================================================== */
@media (max-width: 980px) {
  .geo-what-grid { margin-bottom: 36px; }
  .geo-what-grid > .geo-compare-card { max-width: 100%; }
  .geo-compare-card::before { width: 42%; }
  .geo-compare-card { padding: 22px 18px; }
  .geo-compare-table { font-size: 0.85rem; }
  .geo-compare-table th,
  .geo-compare-table td { padding: 11px 8px; }
  .geo-compare-row-icon { width: 24px; height: 24px; margin-right: 6px; }
  .geo-compare-row-icon svg { width: 13px; height: 13px; }
  .geo-compare-recommend { display: none; }
  .geo-timeline { grid-template-columns: repeat(2, 1fr); }
  .geo-timeline-item:nth-child(2)::before { display: none; }
  .geo-form-grid { grid-template-columns: 1fr; }
  .geo-risk-grid { grid-template-columns: 1fr; }
  .geo-eeat-findings { grid-template-columns: 1fr; }
  .geo-dim-list { grid-template-columns: 1fr; }
  .geo-dim-scores { grid-template-columns: repeat(4, 1fr); }
  .geo-chart--heatmap { height: 420px; }
}

@media (max-width: 720px) {
  .geo-sample-badge {
    top: calc(var(--header-height) + 8px);
    right: 8px;
    font-size: 0.7rem;
    padding: 6px 10px;
  }
  .geo-hero { min-height: 86vh; padding-bottom: 80px; }
  .geo-hero-stats { gap: 32px; }
  .geo-timeline { grid-template-columns: 1fr; }
  .geo-timeline-item::before { display: none; }
  .geo-form { padding: 24px 20px; }
  .geo-region { grid-template-columns: 1fr; }
  .geo-report-section { padding: 56px 0; }
  .geo-algo-item { grid-template-columns: 80px 1fr 60px; font-size: 0.82rem; }
  .geo-dim-scores { grid-template-columns: repeat(2, 1fr); }
  .geo-chart { height: 280px; }
  .geo-chart--score   { height: 360px; }
  .geo-chart--heatmap { height: auto; min-height: 540px; }
  .geo-chart--eeat    { height: 320px; }
  .geo-chart--content { height: 240px; }
  .geo-modal-card { padding: 24px 20px; }
  .geo-rec-item { padding: 18px 18px 18px 56px; }
  .geo-rec-item::before { left: 16px; top: 18px; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .geo-hero-media img,
  .geo-hero-grid,
  .geo-loading-fill,
  .geo-chart-skeleton {
    animation: none !important;
  }
  .geo-chart-skeleton { background: var(--surface-soft); }
}
