/* ========================================
   新增模块样式：内容资产 / 黄金信源 / 五步流程
   六大AI策略 / 服务行业 / 服务价格 / 双CTA
   ======================================== */

/* ---------- 通用按钮与标签 ---------- */
.btn-ghost {
  background: transparent;
  color: var(--primary-blue);
  border: 1px solid var(--border-color-strong);
}

.btn-ghost:hover {
  background: rgba(12, 23, 49, 0.08);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.join-btn {
  padding: 12px 40px;
  border-radius: var(--radius-md);
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: all var(--transition);
}

.join-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 23, 49, 0.3);
}

.data-source {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: nowrap;
  letter-spacing: -0.3px;
}

/* ---------- 内容资产三性 ---------- */
.asset-block {
  margin-top: 64px;
}

.asset-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--title-dark);
  margin-bottom: 32px;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.asset-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
}

.asset-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-color-strong);
}

.asset-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(12, 23, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-blue);
}

.asset-icon svg {
  width: 28px;
  height: 28px;
}

.asset-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--title-dark);
}

.asset-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- AI提问标签 ---------- */
.ai-question-tag em {
  font-style: normal;
  color: var(--title-gold-dark);
  font-weight: 700;
  margin-right: 6px;
}

/* ---------- 黄金信源分级 ---------- */
.source {
  background: var(--bg-secondary);
}

.source-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 8px;
  box-shadow: var(--shadow-card);
}

.source-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.source-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--title-dark);
  background: rgba(12, 23, 49, 0.04);
  border-bottom: 2px solid var(--border-color);
}

.source-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.source-table tbody tr:last-child td {
  border-bottom: none;
}

.source-table tbody tr:hover {
  background: rgba(12, 23, 49, 0.03);
}

.level-badge {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  color: #ffffff;
}

.level-badge.t0 { background: linear-gradient(135deg, #d4af37 0%, #f0c674 100%); }
.level-badge.t1 { background: #0C1731; }
.level-badge.t2 { background: rgba(12, 23, 49, 0.55); }
.level-badge.t3 { background: #94a3b8; }

.source-table td.warn {
  color: #dc2626;
  font-weight: 600;
}

.source-note {
  margin-top: 28px;
  text-align: center;
  padding: 16px 24px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- 五步流程 ---------- */
.process-grid.five-steps {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* ---------- 为什么选择慧眼 · 附加能力条 ---------- */
.why-us-extra {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 40px;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.extra-item:hover {
  border-color: var(--border-color-strong);
  transform: translateY(-3px);
}

.extra-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
}

/* ---------- 六大AI差异化策略 ---------- */
.ai-strategy {
  background: var(--bg-secondary);
}

.strategy-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.strategy-tab {
  padding: 10px 24px;
  border-radius: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
}

.strategy-tab:hover {
  border-color: var(--border-color-strong);
  color: var(--primary-blue);
}

.strategy-tab.active {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(12, 23, 49, 0.25);
}

.strategy-panel {
  display: none;
}

.strategy-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease forwards;
}

.strategy-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

.strategy-content h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: var(--title-dark);
}

.strategy-content p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.strategy-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.channel-tag {
  padding: 6px 16px;
  background: rgba(12, 23, 49, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---------- 服务行业 ---------- */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-color-strong);
}

.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(12, 23, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary-blue);
}

.industry-icon svg {
  width: 28px;
  height: 28px;
}

.industry-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--title-dark);
}

.industry-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- 行业趋势补充说明 ---------- */
.trend-note {
  margin-top: 28px;
  text-align: center;
  padding: 14px 22px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--text-secondary);
}

/* ---------- 服务价格表 ---------- */
.pricing {
  background: url('../image/bg_4.png') center / 100% 100% no-repeat;
}

.pricing-table-wrap {
  overflow-x: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.pricing-table th {
  padding: 18px 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--title-dark);
  background: rgba(12, 23, 49, 0.04);
  border-bottom: 2px solid var(--border-color);
}

.pricing-table th.featured {
  background: rgba(212, 175, 55, 0.14);
  color: var(--title-gold-dark);
}

.pricing-table td {
  padding: 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-table td.item-name {
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.pricing-table td.featured {
  background: rgba(212, 175, 55, 0.06);
}

.pricing-table tbody tr:hover td {
  background: rgba(12, 23, 49, 0.02);
}

.pricing-table tbody tr:hover td.featured {
  background: rgba(212, 175, 55, 0.1);
}

.price {
  font-size: 22px;
  font-weight: 800;
  color: var(--title-gold-dark);
}

.price-sub {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.price-row td {
  padding-top: 24px;
  padding-bottom: 24px;
}

.action-row td {
  border-bottom: none;
  padding-top: 24px;
  padding-bottom: 24px;
}

.pricing-note {
  text-align: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---------- 底部双 CTA ---------- */
.cta-secondary {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-secondary-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

.cta-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
}

/* ---------- 响应式适配 ---------- */
@media (max-width: 1200px) {
  .process-grid.five-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .asset-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid.five-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .asset-grid,
  .industry-grid,
  .process-grid.five-steps {
    grid-template-columns: 1fr;
  }
  .asset-title {
    font-size: 22px;
  }
  .strategy-content {
    padding: 30px 22px;
  }
  .strategy-content h3 {
    font-size: 20px;
  }
  .strategy-tabs {
    gap: 8px;
  }
  .strategy-tab {
    padding: 8px 16px;
    font-size: 14px;
  }
  .cta-secondary {
    flex-direction: column;
    gap: 12px;
  }
  .data-source {
    font-size: 11px;
    text-align: left;
    white-space: normal;
  }
}

/* ========================================
   招商加盟页 join.html
   ======================================== */
.join-hero {
  position: relative;
  padding: 150px 0 90px;
  background: var(--gradient-hero);
  overflow: hidden;
  text-align: center;
}

.join-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 40px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(86, 132, 238, 0.35);
  color: var(--title-gold-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.join-hero .hero-title {
  font-size: 56px;
  margin-bottom: 20px;
}

.join-hero .hero-subtitle {
  margin-bottom: 36px;
}

.join-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.join-hero .hero-cta {
  justify-content: center;
}

.join-hero .hero-cta .btn {
  min-width: 180px;
}

.join-stat {
  text-align: center;
}

.join-stat .num {
  font-size: 40px;
  font-weight: 800;
  color: var(--title-gold-dark);
  line-height: 1.2;
}

.join-stat .label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ---------- join.html 紧凑间距优化 ---------- */
.join-page .section {
  padding: 56px 0;
}

.join-page .section-title {
  margin-bottom: 12px;
}

.join-page .section-subtitle {
  margin-bottom: 30px;
}

.join-page .join-hero {
  padding: 130px 0 60px;
}

.join-page .join-hero .hero-subtitle {
  margin-bottom: 28px;
}

.join-page .join-hero-stats {
  margin-top: 36px;
}

.join-page .market-grid,
.join-page .timeline,
.join-page .benefit-grid,
.join-page .gift-grid,
.join-page .condition-box,
.join-page .income-summary,
.join-page .support-grid,
.join-page .process-grid.five-steps {
  margin-top: 0;
}

@media (max-width: 768px) {
  .join-page .section {
    padding: 44px 0;
  }

  .join-page .join-hero {
    padding: 110px 0 50px;
  }

  .join-page .join-hero-stats {
    margin-top: 28px;
    gap: 28px;
  }
}

/* ---------- 市场前景 ---------- */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.market-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: all var(--transition);
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-color-strong);
}

.market-icon,
.support-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(12, 23, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 18px;
}

.market-icon svg,
.support-icon svg {
  width: 28px;
  height: 28px;
}

.market-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.market-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--title-dark);
  margin-bottom: 12px;
}

.market-value strong {
  font-size: 26px;
}

.market-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.market-forecast {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-color);
  font-size: 14px;
  color: var(--text-secondary);
}

.market-forecast strong {
  color: var(--title-gold-dark);
}

/* ---------- 行业时间线 ---------- */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--border-color), var(--title-gold), var(--border-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 26px;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 3px solid var(--border-color-strong);
}

.timeline-item.active .timeline-dot {
  background: var(--title-gold);
  border-color: var(--title-gold);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.18);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.timeline-phase {
  font-size: 17px;
  font-weight: 700;
  color: var(--title-dark);
  margin-bottom: 8px;
}

.timeline-item.active .timeline-phase {
  color: var(--title-gold-dark);
}

.timeline-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- 六大收益 ---------- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-color-strong);
}

.benefit-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--title-gold-dark);
  line-height: 1.1;
  margin-bottom: 14px;
}

.benefit-num span {
  font-size: 24px;
}

.benefit-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--title-dark);
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- 区县代理商销售课程和报告收益 ---------- */
.founder-incentive {
  background: var(--bg-secondary);
}

.incentive-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.incentive-plan,
.incentive-points-card,
.incentive-usage-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}

.incentive-plan:hover,
.incentive-points-card:hover,
.incentive-usage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-color-strong);
}

.plan-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.plan-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.plan-icon svg {
  width: 24px;
  height: 24px;
}

.incentive-plan h3 {
  font-size: 20px;
  color: var(--title-dark);
}

.plan-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.plan-desc strong {
  color: var(--primary-blue);
}

.plan-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric {
  background: linear-gradient(135deg, #ffffff 0%, #f7f9ff 100%);
  border: 1px solid rgba(12, 23, 49, 0.08);
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
}

.metric-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--title-dark);
  line-height: 1.2;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-muted);
}

.metric-highlight {
  background: linear-gradient(135deg, #fff9e6 0%, #fff0c2 100%);
  border-color: rgba(86, 132, 238, 0.4);
}

.metric-highlight .metric-num {
  color: var(--title-gold-dark);
}

.incentive-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.incentive-points-card h3,
.incentive-usage-card h3 {
  font-size: 18px;
  color: var(--title-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.incentive-points-card p,
.incentive-usage-card li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.incentive-points-card strong {
  color: var(--primary-blue);
}

.incentive-usage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.incentive-usage-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.usage-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .plan-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .incentive-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .plan-metrics {
    grid-template-columns: 1fr;
  }
  .incentive-plan,
  .incentive-points-card,
  .incentive-usage-card {
    padding: 24px;
  }
}

/* ---------- 合作条件 ---------- */
.condition-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.condition-main {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px dashed var(--border-color);
  flex-wrap: wrap;
}

.condition-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--title-gold-dark);
  line-height: 1;
}

.condition-amount span {
  font-size: 24px;
  margin-left: 6px;
}

.condition-text h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--title-dark);
}

.condition-text p {
  font-size: 15px;
  color: var(--text-secondary);
}

.condition-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 26px;
}

.condition-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.condition-item svg {
  width: 22px;
  height: 22px;
  color: var(--title-gold);
  flex-shrink: 0;
}

/* ---------- 合作大礼包 ---------- */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.gift-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all var(--transition);
}

.gift-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-color-strong);
}

.gift-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.gift-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--title-dark);
}

.gift-value {
  font-size: 30px;
  font-weight: 800;
  color: var(--title-gold-dark);
  margin-bottom: 12px;
}

.gift-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}

.gift-note {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- 年收益估算 ---------- */
.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.income-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(12, 23, 49, 0.04), rgba(40, 104, 232, 0.06));
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.income-total span {
  font-size: 15px;
  color: var(--text-secondary);
}

.income-total strong {
  font-size: 30px;
  font-weight: 800;
  color: var(--title-gold-dark);
}

.income-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- 总部支持 ---------- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.support-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--border-color-strong);
}

.support-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  color: var(--title-dark);
}

.support-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- 招商页响应式 ---------- */
@media (max-width: 1024px) {
  .market-grid,
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .income-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .join-hero .hero-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .market-grid,
  .support-grid,
  .benefit-grid,
  .condition-list,
  .gift-grid,
  .income-grid {
    grid-template-columns: 1fr;
  }
  .join-hero {
    padding: 120px 0 60px;
  }
  .join-hero .hero-title {
    font-size: 32px;
  }
  .join-hero-stats {
    gap: 24px;
  }
  .join-stat .num {
    font-size: 32px;
  }
  .condition-box {
    padding: 28px 22px;
  }
  .condition-amount {
    font-size: 48px;
  }
  .timeline {
    padding-left: 30px;
  }
  .timeline-dot {
    left: -28px;
  }
}

/* ===== 首页新增：六大AI平台月活数据条 ===== */
.mau-strip {
  background: linear-gradient(135deg, #0C1731 0%, #1b3a8f 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px 32px;
  margin: 4px 0 56px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.mau-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% -25%, rgba(212, 175, 55, 0.18), transparent 60%);
  pointer-events: none;
}
.mau-head {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 26px;
  letter-spacing: 0.01em;
}
.mau-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.mau-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}
.mau-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}
.mau-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}
.mau-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--title-gold-light);
  line-height: 1;
}
.mau-num small {
  font-size: 14px;
  font-weight: 600;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.7);
}
.mau-foot {
  margin-top: 26px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== 首页新增：营销演进四阶段 ===== */
.evolution {
  background: url('../image/bg_2.png') center / 100% 100% no-repeat;
}
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.phase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.phase-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-strong);
  box-shadow: var(--shadow-card);
}
.phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.phase-card:hover::before {
  transform: scaleX(1);
}
.phase-stage {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--gradient-primary);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.phase-card h3 {
  font-size: 20px;
  color: var(--title-dark);
  margin-bottom: 6px;
}
.phase-years {
  font-size: 13px;
  font-weight: 600;
  color: var(--title-gold-dark);
  margin-bottom: 14px;
  letter-spacing: 0.03em;
}
.phase-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== 首页新增：响应式 ===== */
@media (max-width: 1024px) {
  .mau-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .phase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .mau-strip {
    padding: 28px 20px;
  }
  .mau-head {
    font-size: 16px;
  }
  .mau-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .mau-num {
    font-size: 26px;
  }
  .phase-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== AI可见度效果监测 ===== */
.monitoring {
  background: var(--bg-primary);
}
.monitor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.monitor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.monitor-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-color-strong);
  box-shadow: var(--shadow-card);
}
.monitor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.monitor-card:hover::before {
  transform: scaleX(1);
}
.monitor-card .feature-icon {
  margin: 0 auto 18px;
}
.monitor-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}
.monitor-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .monitor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .monitor-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== GEO营销闭环 CMSE四步 ===== */
.geoloop {
  background: var(--bg-card);
}
.loop-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.loop-step {
  background: #ffffff;
  border: 1px solid rgba(12, 23, 49, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px 22px;
  text-align: left;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.loop-step:hover {
  transform: translateY(-6px);
  border-color: rgba(86, 132, 238, 0.35);
  box-shadow: 0 20px 50px rgba(12, 23, 49, 0.1);
}
.loop-step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.loop-step-num {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0C1731 0%, #16264a 100%);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(86, 132, 238, 0.35);
}
.loop-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0C1731 0%, #24437c 100%);
  color: #d4af37;
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(12, 23, 49, 0.2);
}
.loop-en {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.loop-step h3 {
  font-size: 19px;
  margin-bottom: 8px;
  color: var(--title-dark);
}
.loop-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}
.loop-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
  background: #f5faff;
  border: 1px solid rgba(86, 132, 238, 0.12);
}
.loop-visual svg {
  display: block;
  width: 100%;
  height: 100%;
}
.loop-caption {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: auto;
  padding-top: 4px;
  padding-right: 42px;
}
.loop-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .loop-flow {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .loop-flow {
    grid-template-columns: 1fr;
  }
}

/* 分销商合作 */
.distributor-revenue-title {
  margin: 48px 0 22px;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink, #0C1731);
  text-align: center;
}
.distributor-revenue-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 2px;
  background: var(--gold, #d4af37);
}

/* ---------- GEO服务清单（AI科技感） ---------- */
.geoservices {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(37, 99, 235, 0.06), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(212, 175, 55, 0.05), transparent 60%),
    linear-gradient(180deg, #f7faff 0%, #ffffff 55%, #f7faff 100%);
}
.geoservices::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(86, 132, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 132, 238, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 100%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 40%, transparent 100%);
  pointer-events: none;
}
.gs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.4;
  pointer-events: none;
}
.gs-orb-1 { width: 320px; height: 320px; top: -120px; left: 8%; background: rgba(37, 99, 235, 0.1); }
.gs-orb-2 { width: 260px; height: 260px; bottom: -100px; right: 6%; background: rgba(212, 175, 55, 0.08); }
.gs-orb-3 { width: 180px; height: 180px; top: 40%; right: 30%; background: rgba(86, 132, 238, 0.1); }

.geoservices .container { position: relative; z-index: 1; }
.geoservices .section-title { color: var(--title-dark); }
.geoservices .section-subtitle { color: var(--text-secondary); }

.geo-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.geo-card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, #ffffff, #f8faff);
  border: 1px solid rgba(86, 132, 238, 0.18);
  box-shadow: 0 6px 24px rgba(12, 23, 49, 0.06);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.geo-card::before {
  content: "";
  position: absolute;
  top: 0; left: 18px; right: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.85), transparent);
  opacity: 0.6;
  transition: opacity 0.35s ease;
}
.geo-card::after {
  content: "";
  position: absolute;
  top: -40%; right: -40%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(86, 132, 238, 0.08), transparent 70%);
  pointer-events: none;
}
.geo-card:hover {
  transform: translateY(-6px);
  border-color: rgba(86, 132, 238, 0.55);
  box-shadow: 0 18px 40px rgba(12, 23, 49, 0.12), 0 0 24px rgba(212, 175, 55, 0.1);
}
.geo-card:hover::before { opacity: 1; }

.geo-card-num {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.45);
  letter-spacing: 0.02em;
}
.geo-card-icon {
  width: 50px; height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8912a;
  background: linear-gradient(140deg, rgba(86, 132, 238, 0.14), rgba(212, 175, 55, 0.12));
  border: 1px solid rgba(86, 132, 238, 0.4);
  box-shadow: inset 0 0 12px rgba(86, 132, 238, 0.08), 0 0 12px rgba(212, 175, 55, 0.08);
  margin-bottom: 18px;
}
.geo-card-icon svg { width: 24px; height: 24px; }
.geo-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--title-dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.geo-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .geo-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .geo-service-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ========================================
   why-geo / asset 图标改用 PNG 图片
   （image/area1/1-6.png，3D彩色图标，容器去深色底）
   ======================================== */
.feature-icon img,
.asset-icon img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
}
.feature-icon:has(img),
.asset-icon:has(img) {
  background: transparent;
  box-shadow: none;
  border: none;
}
.feature-card:hover .feature-icon:has(img),
.asset-card:hover .asset-icon:has(img) {
  box-shadow: none;
}


/* ========================================
   移动端表格适配：窄屏下取消固定最小宽度，
   缩小内边距与字号，让表格自然贴合屏宽
   ======================================== */
@media (max-width: 768px) {
  .source-table {
    min-width: 0;
  }

  .source-table th,
  .source-table td {
    padding: 12px 10px;
    font-size: 13px;
  }

  .level-badge {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .pricing-table {
    min-width: 0;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 12px 12px;
    font-size: 13.5px;
  }
}


/* ========================================
   常见问题 FAQ 模块
   ======================================== */
.faq-section {
  background: #ffffff;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(201, 162, 39, 0.5);
  box-shadow: 0 6px 20px rgba(12, 23, 49, 0.06);
}

.faq-item.open {
  border-color: var(--primary-gold, #c9a227);
  box-shadow: 0 8px 24px rgba(12, 23, 49, 0.08);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-q-badge {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q-text {
  flex: 1;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--primary-blue);
  line-height: 1.5;
}

.faq-toggle {
  flex-shrink: 0;
  position: relative;
  width: 22px;
  height: 22px;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--text-muted);
  transition: transform var(--transition), background var(--transition);
}

.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after { width: 2px; height: 14px; }

.faq-item.open .faq-toggle::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-item.open .faq-toggle::before { background: var(--primary-blue); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 320px; }

.faq-a p {
  margin: 0;
  padding: 0 20px 20px 62px;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .faq-q { padding: 15px 16px; gap: 10px; }
  .faq-q-badge { width: 24px; height: 24px; font-size: 13px; }
  .faq-q-text { font-size: 14.5px; }
  .faq-a p { padding: 0 16px 16px 50px; font-size: 14px; }
  .faq-item.open .faq-a { max-height: 560px; }
}
