/* Pricing Section Styles */

/* Hero Section */
.pricing-hero {
  margin-bottom: 12px;
  background: linear-gradient(to right, #f0f4ff, #e6f0ff);
  border-radius: 12px;
  padding: 12px;
}

.pricing-hero-content {
  display: flex;
  justify-content: center;
}

.pricing-hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  min-width: 90px;
}

.stat-value {
  font-size: 22px;
  font-weight: bold;
  color: #3a6df0;
}

.stat-label {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

.pricing-cta-button {
  background: linear-gradient(90deg, #7b61ff, #9e8bff);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(123, 97, 255, 0.25);
}

.pricing-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(123, 97, 255, 0.3);
}

/* Pricing Comparison */
.pricing-comparison {
  padding: 0 10px;
}

.comparison-title {
  text-align: center;
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.pricing-cards-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Pricing Cards */
.pricing-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 320px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.pricing-card.popular {
  border: 2px solid #3a6df0;
  z-index: 1;
}

.popular-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #3a6df0;
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
}

.card-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.card-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: white;
  margin-bottom: 8px;
}

.card-badge.economy {
  background: #6c757d;
}

.card-badge.recommended {
  background: #3a6df0;
}

.card-badge.premium {
  background: #7338be;
}

.card-title {
  font-size: 18px;
  margin: 5px 0;
  color: #333;
}

.card-price {
  margin: 10px 0;
}

.price-value {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.price-period {
  font-size: 14px;
  color: #777;
}

.card-description {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.card-body {
  padding: 10px 20px;
  flex-grow: 1;
}

.feature-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.feature-icon {
  margin-right: 8px;
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}

.feature-text {
  color: #444;
}

.feature-item.disabled .feature-text {
  color: #999;
  text-decoration: line-through;
}

.card-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 6px;
  background: #3a6df0;
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
  flex: 1;
}

.card-btn:hover {
  background: #2952cc;
}

.card-btn.secondary {
  background: #f0f2f5;
  color: #444;
}

.card-btn.secondary:hover {
  background: #e0e2e5;
}

.btn-icon {
  margin-right: 5px;
}

/* Notes Section */
.pricing-notes {
  margin-top: 8px;
  padding: 0 16px;
}

.note-item {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.note-icon {
  margin-right: 8px;
  font-size: 14px;
}

.note-text {
  margin: 0;
}

.note-link {
  color: #3a6df0;
  text-decoration: none;
  font-weight: 500;
}

.note-link:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .pricing-cards-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    max-width: 100%;
    width: 100%;
    margin-bottom: 15px;
  }
}

/* 新增紧凑版本样式 */
.pricing-card.compact {
  padding: 0;
}

.pricing-card.compact .card-header {
  padding: 12px 15px 8px;
}

.pricing-card.compact .card-body {
  padding: 0 15px 8px;
}

.pricing-card.compact .feature-list {
  margin: 0;
}

.pricing-card.compact .feature-item {
  padding: 5px 0;
  margin-bottom: 0;
}

.pricing-card.compact .card-footer {
  padding: 8px 15px 12px;
}

.pricing-card.compact .card-btn {
  padding: 6px 10px;
  font-size: 12px;
} 