/* ============================================
   互亿无线·语音通知 - 内页通用样式 inner.css
   包含：内页Hero / 面包屑 / 侧边栏 / 内容区 / 标签页 / 表格 / 代码块
   ============================================ */

/* ---------- 内页 Hero ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + 48px) 0 56px;
  background:
    radial-gradient(at 80% 50%, rgba(0,153,255,.12) 0, transparent 50%),
    linear-gradient(180deg, #EAF5FF 0%, #FFFFFF 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,153,255,.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-hero-content {
  flex: 1;
  min-width: 0;
}

.page-hero-image {
  width: 300px;
  flex-shrink: 0;
  text-align: center;
}

.page-hero-image img {
  max-width: 100%;
  height: auto;
  opacity: .9;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: var(--border);
}

.breadcrumb .current {
  color: var(--text);
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -.5px;
  animation: fadeInUp .5s ease both;
}

.page-hero h1 .highlight {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
  animation: fadeInUp .5s ease .1s both;
}

.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  animation: fadeInUp .5s ease .2s both;
}

.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.page-hero-meta-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* ---------- 内页内容区 ---------- */
.page-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 56px var(--container-padding) 72px;
}

.page-content-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px var(--container-padding) 72px;
}

/* ---------- 带侧边栏布局 ---------- */
.with-sidebar {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  max-height: calc(100vh - var(--nav-height) - 48px);
  overflow-y: auto;
}

.sidebar-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-nav a {
  display: block;
  padding: 8px 12px;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: all var(--transition-fast);
  line-height: 1.5;
}

.sidebar-nav a:hover {
  background: var(--primary-lighter);
  color: var(--primary);
}

.sidebar-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-nav .nav-group {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 12px 12px 6px;
  margin-top: 8px;
}

.sidebar-nav .nav-group:first-child {
  margin-top: 0;
}

/* ---------- 文章内容样式 ---------- */
.article-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}

.article-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
}

.article-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 20px 0 10px;
}

.article-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 16px;
}

.article-content ul, .article-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.article-content ul li, .article-content ol li {
  font-size: 15px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 8px;
}

.article-content ul li {
  list-style: disc;
}

.article-content ol li {
  list-style: decimal;
}

.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content a:hover {
  color: var(--primary-dark);
}

.article-content strong {
  color: var(--ink);
  font-weight: 700;
}

.article-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-lighter);
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-content blockquote p {
  margin-bottom: 0;
  color: var(--text);
  font-style: italic;
}

/* 提示框 */
.article-content .tip-box,
.article-content .warning-box,
.article-content .info-box {
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin: 20px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.article-content .tip-box {
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
}

.article-content .warning-box {
  background: rgba(245,158,11,.08);
  border: 1px solid rgba(245,158,11,.2);
}

.article-content .info-box {
  background: var(--primary-lighter);
  border: 1px solid rgba(0,153,255,.2);
}

.article-content .tip-box svg,
.article-content .warning-box svg,
.article-content .info-box svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.article-content .tip-box svg { color: var(--success); }
.article-content .warning-box svg { color: var(--warning); }
.article-content .info-box svg { color: var(--primary); }

.article-content .tip-box p,
.article-content .warning-box p,
.article-content .info-box p {
  margin-bottom: 0;
  font-size: 14px;
}

/* ---------- 表格 ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}

.data-table thead {
  background: var(--bg-gray);
}

.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  font-size: 13.5px;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  line-height: 1.6;
}

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

.data-table tbody tr:hover {
  background: var(--primary-lighter);
}

.data-table code {
  background: var(--bg-gray);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--primary-dark);
}

/* ---------- 标签页 ---------- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 24px;
  overflow-x: auto;
}

.tab {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab:hover {
  color: var(--primary);
}

.tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn .3s ease;
}

/* ---------- 代码块（内页） ---------- */
.code-block {
  background: var(--ink);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 20px 0;
}

.code-block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.code-block-dots {
  display: flex;
  gap: 8px;
}

.code-block-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-block-dots span:nth-child(1) { background: #FF5F57; }
.code-block-dots span:nth-child(2) { background: #FEBC2E; }
.code-block-dots span:nth-child(3) { background: #28C840; }

.code-block-lang {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  font-family: var(--font-mono);
}

.code-block-body {
  padding: 20px;
  overflow-x: auto;
}

.code-block-body pre {
  color: #E2E8F0;
  font-size: 13px;
  line-height: 1.8;
  font-family: var(--font-mono);
  margin: 0;
}

.code-block-body .comment { color: #64748B; }
.code-block-body .keyword { color: #7DD3FC; }
.code-block-body .string { color: #86EFAC; }
.code-block-body .func { color: #FBBF24; }
.code-block-body .var { color: #F9A8D4; }
.code-block-body .number { color: #F472B6; }

/* 语言切换标签 */
.lang-tabs {
  display: flex;
  gap: 4px;
}

.lang-tab {
  padding: 5px 12px;
  font-size: 12px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.5);
  background: transparent;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-tab:hover {
  color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.05);
}

.lang-tab.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}

/* ---------- FAQ 样式 ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  gap: 16px;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-category {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-category svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
}

/* ---------- 定价卡片 ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-slow);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.pricing-card.featured::before {
  content: '推荐';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 32px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 4px;
}

.pricing-card-price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-card-unit {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card-features li {
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card-features li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* ---------- 文章卡片 ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition-slow);
}

.article-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.article-card-cover {
  height: 160px;
  background: var(--primary-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.article-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.article-card-category {
  display: inline-block;
  padding: 3px 10px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

.article-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
}

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

.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all var(--transition-fast);
}

.pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pagination .disabled {
  opacity: .4;
  pointer-events: none;
}

/* ---------- 关于我们 ---------- */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.about-stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--bg-gray);
  border-radius: var(--radius);
}

.about-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin: 32px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}

.timeline-year {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* 客户logo墙 */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 32px 0;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: all var(--transition);
}

.client-logo-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.client-logo-item img {
  max-height: 36px;
  max-width: 100%;
  object-fit: contain;
  opacity: .7;
  transition: opacity var(--transition);
}

.client-logo-item:hover img {
  opacity: 1;
}

/* ---------- 响应式 ---------- */
@media (max-width: 1024px) {
  .with-sidebar {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    max-height: none;
  }
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .client-logo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-height) + 32px) 0 40px;
  }
  .page-hero-inner {
    flex-direction: column;
    gap: 24px;
  }
  .page-hero-image {
    width: 200px;
  }
  .page-hero h1 {
    font-size: 28px;
  }
  .page-hero-desc {
    font-size: 15px;
  }
  .page-content {
    padding: 36px var(--container-padding) 56px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-stat-num {
    font-size: 28px;
  }
  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .data-table {
    font-size: 13px;
  }
  .data-table th, .data-table td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   从首页迁移的样式（功能卡片/场景卡片）
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.feature-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--primary-light);
}

.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

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

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scenario-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.scenario-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.scenario-card-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  opacity: .12;
  z-index: 0;
  pointer-events: none;
}

.scenario-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.scenario-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.scenario-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.scenario-tag {
  padding: 4px 12px;
  background: var(--primary-lighter);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
}

/* 场景卡片上下布局（相关场景用） */
.scenario-card-vertical {
  text-align: center;
  padding: 24px 20px;
}

.scenario-card-vertical .scenario-card-image {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scenario-card-vertical .scenario-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
}

.scenario-card-vertical h3 {
  position: relative;
  z-index: 1;
  font-size: 16px;
  margin-bottom: 8px;
}

.scenario-card-vertical p {
  position: relative;
  z-index: 1;
  font-size: 13px;
  margin-bottom: 0;
}

/* 场景卡片背景图大小变体 */
.scenarios-grid.size-60 .scenario-card-bg {
  width: 108px;
  height: 108px;
  top: -10px;
  right: -10px;
}

.scenarios-grid.size-40 .scenario-card-bg {
  width: 72px;
  height: 72px;
  top: -8px;
  right: -8px;
}

/* 内页响应式 */
@media (max-width: 1024px) {
  .features-grid, .scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid, .scenarios-grid {
    grid-template-columns: 1fr;
  }
  .feature-card { padding: 24px; }
  .scenario-card { padding: 24px; }
}

/* ============================================
   表格隔行变色
   ============================================ */
.data-table.zebra tbody tr:nth-child(even) {
  background: var(--bg-gray);
}

.data-table.zebra tbody tr:hover {
  background: var(--primary-lighter);
}

/* ============================================
   内页 Hero 新背景色
   ============================================ */
.page-hero {
  background:
    radial-gradient(at 25% 70%, #dbeafe 0, transparent 55%),
    radial-gradient(at 70% 30%, #fce7f3 0, transparent 55%),
    radial-gradient(at 55% 10%, #ede9fe 0, transparent 55%),
    #f8fafc;
}

.page-hero::before {
  display: none;
}
