/* ===========================
   引数数据 - 白板涂鸦风格
   背景：纯白/浅色系
   色调：黑色手绘线条 + 蓝色 + 红色点缀
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600;700&display=swap');

:root {
  --white: #ffffff;
  --bg-light: #f7f6f2;
  --bg-section: #f0ede6;
  --ink: #1a1a1a;
  --ink-light: #444444;
  --ink-muted: #888888;
  --blue: #1a56db;
  --blue-light: #3b82f6;
  --blue-pale: #dbeafe;
  --red: #dc2626;
  --red-pale: #fee2e2;
  --yellow: #fbbf24;
  --yellow-pale: #fef3c7;
  --green: #16a34a;
  --green-pale: #dcfce7;
  --border: #d1cdc4;
  --shadow: rgba(0,0,0,0.08);
  --sketch-font: 'Caveat', 'Ma Shan Zheng', cursive, sans-serif;
  --body-font: -apple-system, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== 手绘纹理背景 ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.03) 39px, rgba(0,0,0,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.02) 39px, rgba(0,0,0,0.02) 40px);
  pointer-events: none;
  z-index: 0;
}

/* ===== 导航栏 ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border-bottom: 2.5px solid var(--ink);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 38px; height: 38px;
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale);
  transform: rotate(-2deg);
  box-shadow: 2px 2px 0 var(--ink);
}

.nav-brand-name {
  font-family: var(--sketch-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 1px;
  position: relative;
}

.nav-brand-name::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: skewX(-5deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 4px;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-pale);
  transform: rotate(-1deg);
}

.nav-links a.nav-cta {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  border-radius: 4px;
  box-shadow: 3px 3px 0 var(--blue);
  font-weight: 600;
}

.nav-links a.nav-cta:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; }

/* ===== Hero区域 ===== */
.hero {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  padding: 100px 40px 60px;
  position: relative;
  overflow: hidden;
}

/* 手绘装饰背景元素 */
.hero-doodles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-pale);
  border: 2px solid var(--yellow);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 24px;
  transform: rotate(-1deg);
  box-shadow: 2px 2px 0 var(--yellow);
  font-family: var(--sketch-font);
  font-size: 1rem;
}

.hero-text h1 {
  font-family: var(--body-font);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-text h1 .underline-blue {
  position: relative;
  display: inline-block;
}

.hero-text h1 .underline-blue::after {
  content: '';
  position: absolute;
  bottom: 2px; left: -2px; right: -2px;
  height: 12px;
  background: rgba(59,130,246,0.25);
  z-index: -1;
  transform: skewX(-3deg);
  border-radius: 2px;
}

.hero-text h1 .underline-red {
  position: relative;
  display: inline-block;
  color: var(--red);
}

.hero-text h1 .underline-red::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  transform: skewX(-5deg);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--ink-light);
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 12px 28px;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 4px 4px 0 var(--blue);
  transition: all 0.15s;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--blue);
}

.btn-outline {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  padding: 12px 28px;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 4px 4px 0 var(--border);
  transition: all 0.15s;
}

.btn-outline:hover {
  background: var(--bg-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--border);
}

/* Hero 右侧白板插图 */
.hero-board {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 6px 6px 0 var(--ink);
  position: relative;
  transform: rotate(1deg);
}

.hero-board::before {
  content: '引数数据 GEO白板';
  position: absolute;
  top: -14px; left: 20px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  padding: 2px 12px;
  font-family: var(--sketch-font);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 3px;
}

.board-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.board-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 6px;
  background: var(--bg-light);
  position: relative;
  transition: all 0.2s;
}

.board-step:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
  transform: translateX(4px);
}

.board-step-num {
  width: 28px; height: 28px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sketch-font);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.board-step-num.blue { background: var(--blue); }
.board-step-num.red { background: var(--red); }

.board-step-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.board-step-arrow {
  text-align: center;
  color: var(--ink-muted);
  font-size: 1.2rem;
  line-height: 1;
}

/* ===== 通用区块 ===== */
.section {
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: var(--bg-light);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--sketch-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  border: 2px solid var(--blue);
  padding: 4px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
  transform: rotate(-1deg);
  box-shadow: 2px 2px 0 var(--blue);
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 10%; right: 10%;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  transform: skewX(-5deg);
}

.section-header p {
  color: var(--ink-muted);
  font-size: 1rem;
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== 关于我们 - 便利贴风格 ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.4;
}

.about-text h2 span {
  color: var(--blue);
  position: relative;
}

.about-text p {
  color: var(--ink-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.sticky-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sticky-note {
  padding: 20px;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.2s;
}

.sticky-note:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.sticky-note.yellow { background: #fef9c3; }
.sticky-note.blue { background: var(--blue-pale); }
.sticky-note.red { background: var(--red-pale); }
.sticky-note.green { background: var(--green-pale); }

.sticky-note .note-icon {
  margin-bottom: 10px;
}

.sticky-note h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.sticky-note p {
  font-size: 0.82rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ===== 服务卡片 - 手绘卡片风格 ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: all 0.2s;
  position: relative;
}

.service-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.service-card:nth-child(1) { background: #fff8e1; }
.service-card:nth-child(2) { background: var(--blue-pale); }
.service-card:nth-child(3) { background: var(--red-pale); }
.service-card:nth-child(4) { background: var(--green-pale); }
.service-card:nth-child(5) { background: #f3e8ff; }
.service-card:nth-child(6) { background: #fff8e1; }

.service-card-num {
  position: absolute;
  top: -14px; right: 16px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sketch-font);
  font-size: 1.1rem;
  font-weight: 700;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--ink);
}

.service-icon {
  width: 48px; height: 48px;
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  margin-bottom: 16px;
  box-shadow: 2px 2px 0 var(--ink);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.7;
}

/* ===== 流程区 - 手绘流程图 ===== */
.process-flow {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding: 20px 0 40px;
}

.process-step {
  flex: 1;
  min-width: 160px;
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -16px;
  font-size: 1.8rem;
  color: var(--blue);
  font-family: var(--sketch-font);
  font-weight: 700;
  z-index: 2;
}

.process-circle {
  width: 64px; height: 64px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}

.process-step:hover .process-circle {
  background: var(--blue-pale);
  transform: scale(1.1);
}

.process-step:nth-child(1) .process-circle { background: #fef9c3; }
.process-step:nth-child(2) .process-circle { background: var(--blue-pale); }
.process-step:nth-child(3) .process-circle { background: var(--red-pale); }
.process-step:nth-child(4) .process-circle { background: var(--green-pale); }
.process-step:nth-child(5) .process-circle { background: #f3e8ff; }

.process-step h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
  padding: 0 8px;
}

/* ===== 平台区 ===== */
.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.platform-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 2.5px solid var(--ink);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.15s;
  cursor: default;
}

.platform-tag:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--blue);
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

.platform-tag.highlight {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.platform-divider {
  text-align: center;
  margin: 24px 0 12px;
  font-family: var(--sketch-font);
  font-size: 1rem;
  color: var(--ink-muted);
  position: relative;
}

.platform-divider::before,
.platform-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 2px;
  background: var(--border);
}
.platform-divider::before { left: 0; }
.platform-divider::after { right: 0; }

/* ===== 新闻区 ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  transition: all 0.2s;
}

.news-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.news-card-thumb {
  height: 160px;
  position: relative;
  border-bottom: 2.5px solid var(--ink);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-card-thumb.t1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.news-card-thumb.t2 { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.news-card-thumb.t3 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }

.news-card-thumb svg {
  opacity: 0.5;
}

.news-card-body { padding: 20px; }

.news-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  margin-bottom: 10px;
  background: var(--yellow-pale);
  box-shadow: 1px 1px 0 var(--ink);
}

.news-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}

.news-card h3 a {
  text-decoration: none;
  color: inherit;
}

.news-card h3 a:hover { color: var(--blue); }

.news-card p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-muted);
  border-top: 1.5px dashed var(--border);
  padding-top: 10px;
}

.news-card-meta a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.news-card-meta a:hover { text-decoration: underline; }

.news-more {
  text-align: center;
  margin-top: 40px;
}

/* ===== 联系区 ===== */
.contact-section {
  background: var(--bg-section);
  border-top: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.4;
}

.contact-info p {
  color: var(--ink-light);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-item-icon {
  width: 36px; height: 36px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale);
  flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--ink);
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* 联系表单 */
.contact-form {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 6px 6px 0 var(--ink);
}

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--border);
  font-family: var(--sketch-font);
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg-light);
  outline: none;
  transition: all 0.2s;
  font-family: var(--body-font);
  box-shadow: 2px 2px 0 var(--border);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 2px 2px 0 var(--blue);
}

.form-group textarea { resize: vertical; min-height: 100px; }

/* ===== 页脚 ===== */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 40px 0;
  position: relative;
  z-index: 1;
  border-top: 3px solid var(--ink);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1.5px dashed rgba(255,255,255,0.2);
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand-icon {
  width: 36px; height: 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: var(--sketch-font);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 0;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1.5px solid rgba(255,255,255,0.2);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== 新闻列表页 ===== */
.page-hero {
  background: var(--bg-light);
  border-bottom: 2.5px solid var(--ink);
  padding: 100px 40px 48px;
  text-align: center;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* 新闻列表 */
.news-list-section {
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}

.news-list-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.news-list { display: flex; flex-direction: column; gap: 24px; }

.news-list-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.2s;
}

.news-list-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--blue);
  border-color: var(--blue);
}

.news-list-thumb {
  width: 120px;
  height: 90px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--ink);
}

.nl-thumb-1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.nl-thumb-2 { background: linear-gradient(135deg, #fef9c3, #fde68a); }
.nl-thumb-3 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.nl-thumb-4 { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }
.nl-thumb-5 { background: linear-gradient(135deg, #fee2e2, #fecaca); }
.nl-thumb-6 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.nl-thumb-7 { background: linear-gradient(135deg, #dbeafe, #93c5fd); }
.nl-thumb-8 { background: linear-gradient(135deg, #dcfce7, #6ee7b7); }

.news-list-body { flex: 1; }

.news-list-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
}

.news-list-body h3 a {
  text-decoration: none;
  color: inherit;
}

.news-list-body h3 a:hover { color: var(--blue); }

.news-list-body p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 10px;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.news-list-meta a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  margin-left: auto;
}

/* 侧边栏 */
.news-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 4px 4px 0 var(--ink);
}

.sidebar-widget h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px dashed var(--border);
  font-family: var(--sketch-font);
  font-size: 1.1rem;
}

.sidebar-news-list { display: flex; flex-direction: column; gap: 10px; }

.sidebar-news-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
}

.sidebar-news-item .num {
  width: 20px; height: 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-news-item a {
  text-decoration: none;
  color: var(--ink-light);
  line-height: 1.5;
}

.sidebar-news-item a:hover { color: var(--blue); }

.sidebar-tags { display: flex; flex-wrap: wrap; gap: 8px; }

.sidebar-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-light);
  box-shadow: 2px 2px 0 var(--ink);
  cursor: pointer;
  transition: all 0.15s;
}

.sidebar-tag:hover {
  background: var(--blue-pale);
  border-color: var(--blue);
  color: var(--blue);
  transform: translate(-1px, -1px);
}

/* 分页 */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.15s;
}

.pagination a:hover,
.pagination a.active {
  background: var(--ink);
  color: var(--white);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--blue);
}
.pagination ul.pagination {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagination ul.pagination li > a,
.pagination ul.pagination li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.15s;
}
.pagination ul.pagination li:first-child > * {width: 60px;}
.pagination ul.pagination li:last-child > * {width: 60px;}
.pagination ul.pagination li.active > a,
.pagination ul.pagination li.active > span,
.pagination ul.pagination li > a:hover {
  background: var(--ink);
  color: var(--white);
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--blue);
}

/* ===== 新闻详情页 ===== */
.news-detail-section {
  padding: 60px 40px;
  position: relative;
  z-index: 1;
}

.news-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
}

.news-detail-header {
  margin-bottom: 24px;
}

.news-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 16px;
}

.news-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 4px;
}

.news-detail-cover {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 5px 5px 0 var(--ink);
}
.news-list-thumb img,
.news-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-detail-body {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--ink-light);
}

.news-detail-body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--ink);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--blue);
}

.news-detail-body p { margin-bottom: 16px; }

.news-detail-body ul {
  margin: 16px 0 16px 24px;
}

.news-detail-body ul li {
  margin-bottom: 8px;
}

.news-detail-body blockquote {
  background: var(--blue-pale);
  border: 2px solid var(--blue);
  border-left: 5px solid var(--blue);
  border-radius: 4px;
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--ink-light);
  box-shadow: 3px 3px 0 rgba(59,130,246,0.2);
}

.news-detail-body strong { color: var(--ink); }
.news-detail-body img { max-width: 100%; height: auto; display: block; border-radius: 6px; }

.news-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px dashed var(--border);
}

.news-nav-btn {
  display: block;
  padding: 14px 16px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.85rem;
  line-height: 1.5;
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.2s;
}

.news-nav-btn:hover {
  border-color: var(--blue);
  box-shadow: 3px 3px 0 var(--blue);
  transform: translate(-1px, -1px);
}

.news-nav-btn span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-bottom: 4px;
}

/* ===== Hero对话气泡 ===== */
.hero-chat-scene {
  position: relative;
  z-index: 1;
}

.chat-window {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  transform: rotate(1deg);
  max-width: 460px;
}

.chat-header {
  background: var(--bg-section);
  border-bottom: 2.5px solid var(--ink);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-dots { display: flex; gap: 6px; }
.chat-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: block;
}
.chat-dots span:nth-child(1) { background: #dc2626; }
.chat-dots span:nth-child(2) { background: #fbbf24; }
.chat-dots span:nth-child(3) { background: #16a34a; }

.chat-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--sketch-font);
  font-size: 1rem;
}

.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }

.chat-bubble {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.chat-bubble.user { flex-direction: row-reverse; }

.bubble-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 1px 1px 0 var(--ink);
}

.user-av { background: var(--yellow-pale); color: var(--ink); }
.ai-av { background: var(--blue-pale); color: var(--blue); }

.bubble-text {
  background: var(--bg-light);
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  max-width: 320px;
}

.chat-bubble.user .bubble-text {
  background: var(--blue-pale);
  border-color: var(--blue);
  box-shadow: 2px 2px 0 var(--blue);
}

.mention.highlight {
  display: inline-block;
  background: #fef9c3;
  border: 1.5px solid var(--yellow);
  border-radius: 3px;
  padding: 1px 8px;
  font-weight: 700;
  color: var(--ink);
  margin: 2px 0;
}

.mention { color: var(--ink-muted); font-size: 0.82rem; }

.typing-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--ink-muted);
  border-radius: 50%;
  margin: 0 2px;
  animation: blink 1.2s infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 80%, 100% { opacity: 0.2; }
  40% { opacity: 1; }
}

.chat-note {
  background: var(--yellow-pale);
  border-top: 2px dashed var(--border);
  padding: 8px 16px;
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-family: var(--sketch-font);
  font-size: 0.9rem;
  text-align: center;
}

/* ===== 痛点区 ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: all 0.2s;
  position: relative;
}

.pain-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.pain-icon {
  width: 52px; height: 52px;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 var(--ink);
}

.pain-icon.red { background: var(--red-pale); }
.pain-icon.yellow { background: var(--yellow-pale); }
.pain-icon.blue { background: var(--blue-pale); }

.pain-inline-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-bottom: 12px;
}

.pain-question {
  font-family: var(--sketch-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 6px 12px;
  margin-bottom: 0;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 2px 2px 0 var(--border);
}

.pain-result {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 0;
  border: 2px solid;
  white-space: nowrap;
}

.pain-result.bad {
  background: var(--red-pale);
  border-color: var(--red);
  color: var(--red);
}

.pain-result.warn {
  background: var(--yellow-pale);
  border-color: var(--yellow);
  color: #92400e;
}

.pain-card p {
  font-size: 0.85rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 14px;
}

.pain-arrow {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--sketch-font);
  font-size: 0.95rem;
  border-top: 1.5px dashed var(--border);
  padding-top: 10px;
}

.pain-solution-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-pale);
  border: 2.5px solid #16a34a;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #14532d;
  box-shadow: 4px 4px 0 #16a34a;
  font-family: var(--sketch-font);
  font-size: 1.05rem;
}

/* ===== 数据看板 ===== */
.dashboard-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 8px 8px 0 var(--ink);
}

.dashboard-sidebar {
  background: var(--bg-light);
  border-right: 2.5px solid var(--ink);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
  border: 2px solid transparent;
}

.dash-feature:hover, .dash-feature.active {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 2px 2px 0 var(--blue);
}

.dash-feat-icon {
  width: 32px; height: 32px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  flex-shrink: 0;
}

.dash-feature strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.dash-feature span {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.dashboard-preview {
  padding: 24px;
}

.dash-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--border);
}

.dash-brand-tag {
  font-family: var(--sketch-font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
}

.dash-date {
  font-size: 0.8rem;
  color: var(--ink-muted);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.dash-metric {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  transition: all 0.2s;
}

.dash-metric:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}

.dash-metric-label {
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.dash-metric-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: var(--sketch-font);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.dash-trend {
  font-size: 0.78rem;
  font-weight: 700;
  color: #16a34a;
  background: var(--green-pale);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: var(--body-font);
}

.dash-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

.dash-platforms {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}

.dash-plat-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.dash-plat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.plat-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1.5px solid;
}

.plat-badge.on {
  background: var(--green-pale);
  border-color: #16a34a;
  color: #14532d;
}

.plat-badge.pending {
  background: var(--yellow-pale);
  border-color: var(--yellow);
  color: #92400e;
}

.dash-note {
  font-size: 0.72rem;
  color: var(--ink-muted);
  margin-top: 12px;
  text-align: right;
}

/* ===== 对比表 ===== */
.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--white);
}

.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1.5px solid var(--border);
  font-size: 0.9rem;
}

.compare-table thead th {
  background: var(--bg-section);
  border-bottom: 2.5px solid var(--ink);
  font-weight: 700;
}

.compare-item-col { width: 22%; color: var(--ink); }

.compare-th-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 6px;
  border: 2px solid;
}

.compare-th-inner.bad {
  background: var(--red-pale);
  border-color: var(--red);
  color: var(--red);
}

.compare-th-inner.good {
  background: var(--green-pale);
  border-color: #16a34a;
  color: #14532d;
}

.compare-table tbody tr:hover td {
  background: var(--bg-light);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.bad-cell {
  color: #991b1b;
  background: #fff5f5;
}

.good-cell {
  color: #14532d;
  background: #f0fdf4;
  font-weight: 600;
}

/* ===== 行业图标墙 ===== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.2s;
  cursor: default;
}

.industry-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--ink);
  background: var(--bg-light);
}

.industry-icon {
  width: 64px; height: 64px;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--ink);
  transition: all 0.2s;
}

.industry-card:hover .industry-icon {
  background: var(--blue-pale);
  border-color: var(--blue);
  box-shadow: 3px 3px 0 var(--blue);
}

.industry-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 0.78rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-board { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 90px 20px 50px; }
  .hero-text h1 { font-size: 2rem; }
  .section { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .news-list-container { grid-template-columns: 1fr; }
  .news-detail-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .news-nav { grid-template-columns: 1fr; }
  .process-flow { flex-direction: column; align-items: center; }
  .process-step:not(:last-child)::after { content: '↓'; top: auto; bottom: -20px; right: 50%; transform: translateX(50%); }
  .sticky-notes { grid-template-columns: 1fr; }
}

/* 新增模块响应式补充 */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { border-right: none; border-bottom: 2.5px solid var(--ink); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-metrics { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.82rem; }
  .hero-chat-scene { display: none; }
  .pain-inline-row {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}

/* 新增模块响应式补充 */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dashboard-sidebar { border-right: none; border-bottom: 2.5px solid var(--ink); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-metrics { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.82rem; }
  .hero-chat-scene { display: none; }
  .pain-inline-row {
    flex-wrap: wrap;
    row-gap: 8px;
  }
}
