/* ========== 费用价格页面样式 ========== */
.price-page {
  background: #f9faff;
  padding: 40px 0 80px;
}
.price-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 标题区 */
.price-hero {
  text-align: center; margin-bottom: 30px;
}
.price-badge {
  display: inline-block; padding: 6px 20px;
  background: rgba(45,125,252,0.08); color: #2d7dfc;
  border-radius: 30px; font-size: 13px; font-weight: 600;
  letter-spacing: 1px; margin-bottom: 16px;
}
.price-hero h1 {
  font-size: 36px; font-weight: 700; color: #1a1f2e; margin-bottom: 10px;
}
.price-hero p {
  font-size: 15px; color: #666; max-width: 750px; margin: 0 auto 20px; line-height: 1.6;
}
.price-hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 30px;
  font-size: 13px; color: #888;
}
.price-hero-stats span {
  padding: 4px 16px; background: #f0f4ff; border-radius: 20px;
}

/* 承诺横幅 */
.price-promise-bar {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 30px;
  margin-bottom: 40px; padding: 16px 20px;
  background: #fff; border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  font-size: 14px; color: #555;
}
.price-promise-bar span {
  display: flex; align-items: center; gap: 6px;
}
.price-promise-bar svg { stroke: #2d7dfc; }

/* 卡片网格 */
.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px;
  margin-bottom: 50px;
}
.price-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  overflow: hidden; transition: 0.3s;
}
.price-card:hover { box-shadow: 0 18px 40px rgba(45,125,252,0.08); transform: translateY(-3px); }

.card-head {
  display: flex; align-items: center; gap: 16px;
  padding: 25px 28px; background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}
.card-icon {
  width: 48px; height: 48px; background: rgba(45,125,252,0.08);
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; color: #2d7dfc; flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.card-title-area h2 {
  font-size: 20px; font-weight: 700; color: #1a1f2e; margin-bottom: 4px;
}
.card-level {
  font-size: 13px; color: #888; font-weight: 500;
}

.card-body {
  padding: 20px 28px;
}
.price-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  padding: 14px 0; border-bottom: 1px dashed #eef2f8;
}
.price-row:last-child { border-bottom: none; }
.price-info {
  font-size: 14px; color: #555; width: 170px; flex-shrink: 0;
}
.price-info strong { color: #1a1f2e; }
.price-desc {
  font-size: 13px; color: #777; flex: 1; min-width: 120px;
}
.price-tag {
  font-size: 18px; font-weight: 700; color: #2d7dfc; white-space: nowrap;
}
.price-tag span {
  font-size: 12px; font-weight: 500; color: #888;
}

.card-note {
  padding: 14px 28px; font-size: 13px; color: #999;
  border-top: 1px solid #eef2f8; background: #fafbfc; line-height: 1.6;
}

/* CTA */
.price-cta {
  text-align: center; padding: 30px; background: #fff;
  border-radius: 20px; box-shadow: 0 6px 18px rgba(0,0,0,0.03);
}
.price-cta p { font-size: 15px; color: #555; margin-bottom: 8px; }
.cta-btn-main {
  display: inline-block; margin-top: 16px; padding: 14px 36px;
  background: #2d7dfc; color: #fff; border-radius: 50px;
  font-weight: 700; font-size: 16px; text-decoration: none; transition: 0.3s;
}
.cta-btn-main:hover { background: #1a5bbf; transform: translateY(-2px); }

/* 响应式 */
@media (max-width: 768px) {
  .price-grid { grid-template-columns: 1fr; }
  .price-hero h1 { font-size: 28px; }
  .price-info { width: auto; }
  .price-row { flex-direction: column; align-items: flex-start; gap: 4px; }
}
