/* ===== 服务与价格页面样式 ===== */

.pricing-full {
  padding-top: 20px;
}

.pricing-table-wrapper {
  padding: 0;
  overflow: hidden;
}

.pricing-table {
  width: 100%;
}

.table-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
}

.table-cell {
  padding: 22px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--border-light);
}

.table-cell:last-child {
  border-right: none;
}

.table-feature-cell {
  justify-content: flex-start;
  text-align: left;
  font-weight: 500;
}

.feature-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.table-package-cell {
  flex-direction: column;
  gap: 6px;
  padding: 30px 18px;
  position: relative;
}

.table-package-cell.popular {
  background-color: #f0f7ff;
}

.package-badge {
  padding: 3px 10px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.package-badge.popular-badge {
  background-image: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  color: #ffffff;
  border: none;
}

.package-emoji {
  font-size: 34px;
  line-height: 1;
}

.table-package-cell h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.package-price {
  font-size: 28px;
  font-weight: 700;
  background-image: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}

.package-price span {
  font-size: 13px;
  font-weight: 400;
  -webkit-text-fill-color: var(--text-tertiary);
  color: var(--text-tertiary);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.table-body {
  display: flex;
  flex-direction: column;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.15s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background-color: #f8fafc;
}

.table-row .table-cell {
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-secondary);
}

.table-row .highlight {
  background-color: #f0f7ff;
  color: var(--text-primary);
  font-weight: 500;
}

.check-green {
  color: #10b981;
  font-size: 16px;
  font-weight: 600;
}

.cross-gray {
  color: var(--text-tertiary);
  font-size: 14px;
}

.table-action-row {
  background-color: #fafbff;
}

.table-action-row .table-cell {
  padding: 22px 18px;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
}

.pricing-note p {
  color: var(--text-tertiary);
  font-size: 13px;
}

/* 服务流程 */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  gap: 12px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 22px 14px;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-block;
  padding: 3px 12px;
  background-color: var(--accent-primary);
  color: #ffffff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.step-icon {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.process-step h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.step-time {
  display: inline-block;
  padding: 3px 10px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-tertiary);
}

.process-line {
  flex-shrink: 0;
  width: 32px;
  height: 2px;
  background-image: linear-gradient(90deg, #bfdbfe, #c7d2fe);
  margin-top: 80px;
  position: relative;
}

.process-line::after {
  content: '→';
  position: absolute;
  right: -3px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 12px;
}

/* 为什么选择我们 */
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.whyus-item {
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.whyus-num {
  flex-shrink: 0;
  font-size: 30px;
  font-weight: 700;
  background-image: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.whyus-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.whyus-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* 底部CTA */
.cta-bottom {
  padding: 50px 0 90px;
}

.cta-banner {
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background-image: linear-gradient(135deg, #eff6ff 0%, #eef2ff 100%);
  border-color: #dbeafe;
}

.cta-info h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-info p {
  color: var(--text-secondary);
  font-size: 14px;
}

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

  .process-steps {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-step {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 180px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .pricing-table-wrapper {
    overflow-x: auto;
  }

  .pricing-table {
    min-width: 680px;
  }

  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .whyus-item {
    padding: 20px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    width: 100%;
    max-width: 300px;
    padding: 18px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 28px 22px;
  }

  .cta-info h2 {
    font-size: 18px;
  }
}

