/* Pricing Table Modern Styles */
.pricing-section {
  padding: 4rem 1rem;
  background: #f8fafc;
}
.pricing-inner {
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  padding: 2rem 1rem;
}
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
}
.pricing-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}
.pricing-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}
.pricing-grid {
  display: flex;
  gap: 1rem; /* Reduced gap to fit more cards */
  justify-content: space-between; /* Ensure cards are evenly spaced */
  flex-wrap: nowrap; /* Prevent wrapping to a new row */
  padding-bottom: 5px;
}
.pricing-card {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 280px; /* Adjusted minimum width to fit more cards */
  max-width: 320px; /* Ensure cards are not too wide */
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card.featured {
  border: 2px solid #2563eb;
  box-shadow: 0 10px 32px rgba(59,130,246,0.12);
  transform: scale(1.04);
  z-index: 2;
}
.pricing-card:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 32px rgba(59,130,246,0.15);
  transform: translateY(-4px) scale(1.03);
}
.pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  padding: 0.35rem 1.25rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(59,130,246,0.15);
}
.pricing-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  color: #111827;
}
.pricing-card-description {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1rem;
  text-align: center;
}
.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-align: center;
  color: #111827;
}
.pricing-card-small-desc {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.7;
}
.pricing-card-button {
  display: block;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid #2563eb;
  font-size: 1.1rem;
  margin-top: auto;
}
.pricing-card-button.featured {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,0.10);
}
.pricing-card-button:not(.featured) {
  background: #fff;
  color: #2563eb;
}
.pricing-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(59,130,246,0.18);
  background: #2563eb;
  color: #fff;
}
@media (max-width: 900px) {
  .pricing-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .pricing-card {
    min-width: 260px;
    max-width: 98vw;
  }
}