/* 套餐页：居中的营销式排版，卡片复用 plans.css */
.pricing-page {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.pricing-hero {
  display: grid;
  max-width: 720px;
  margin: 0 auto 26px;
  gap: 14px;
  text-align: center;
}

.pricing-hero span {
  color: var(--accent-text);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.18em;
}

.pricing-hero h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.pricing-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}

.pricing-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.pricing-stats span {
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: var(--surface);
  font-size: 12px;
  font-weight: 600;
}

.pricing-page .plan-promo {
  justify-content: center;
  margin: 0 auto 28px;
}

.pricing-section {
  margin-top: 44px;
}

.pricing-section-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.pricing-section-head h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.pricing-section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 12.5px;
}

/* 模型积分速览 */
.cost-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.cost-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.cost-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 13px;
}

.cost-card h3 small {
  padding: 1px 7px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-sunken);
  font-size: 10.5px;
  font-weight: 600;
}

.cost-card ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cost-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 12.5px;
}

.cost-card li span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cost-card li img {
  width: 16px;
  height: 16px;
  flex: none;
  object-fit: contain;
}

.cost-card li b {
  flex: none;
  color: var(--accent-text);
  font-variant-numeric: tabular-nums;
}

.cost-card li b small {
  margin-left: 3px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-note {
  margin: 14px 0 0;
  font-size: 12.5px;
}

.pricing-note a {
  color: var(--accent-text);
  font-weight: 600;
}

/* FAQ */
.pricing-faq {
  display: grid;
  margin: 0;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.pricing-faq > div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.pricing-faq dt {
  margin-bottom: 6px;
  font-size: 13.5px;
  font-weight: 700;
}

.pricing-faq dd {
  margin: 0;
  color: var(--muted-strong);
  font-size: 12.5px;
  line-height: 1.7;
}

.pricing-faq a {
  color: var(--accent-text);
}
