/* Pricing-specific styles */
.pricing-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.pricing-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem 2.5rem;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #cbd5e1;
}

.pricing-card.featured {
  border-color: #6366f1;
  box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 48px rgba(99, 102, 241, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.pricing-plan-description {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-currency {
  font-size: 2rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 0.25rem;
}

.pricing-period {
  color: #64748b;
  font-size: 1rem;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
  flex-grow: 1;
}

.pricing-feature {
  padding: 0.875rem 0;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature-icon {
  color: #6366f1;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
  display: block;
}

.pricing-cta-primary {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
}

.pricing-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.pricing-cta-secondary {
  background: white;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}

.pricing-cta-secondary:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
}

.pricing-faq {
  max-width: 800px;
  margin: 6rem auto 0;
  padding-top: 4rem;
  border-top: 1px solid #e2e8f0;
}

.pricing-faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3rem;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #64748b;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }
}
