/* Pricing Page Styles */

.pricing-hero {
  max-width: 900px;
  margin: 4em auto 2.5em auto;
  padding: 2.5em 1em 2em 1em;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px 0 rgba(37, 99, 235, 0.08), 0 1.5px 6px 0 rgba(16, 185, 129, 0.06);
  text-align: center;
}
.pricing-hero h1 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.7em;
}
.pricing-description {
  color: #111;
  font-size: 1.15rem;
}

.pricing-cards-section {
  max-width: 1100px;
  margin: 0 auto 4em auto;
  padding: 0 1em;
}
.pricing-cards-row {
  display: flex;
  gap: 2.5em;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-card {
  background: var(--primary-light);
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(37, 99, 235, 0.07);
  padding: 2.2em 1.5em 2em 1.5em;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1em;
  transition: transform 0.18s, box-shadow 0.18s;
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.13);
}
.pricing-card h2 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.price {
  color: var(--secondary);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1em;
}
.price span {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
}
.features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5em 0;
  color: #111;
  font-size: 1.05rem;
}
.features li {
  margin-bottom: 0.5em;
}
.pricing-card .standard_button {
  width: 100%;
  margin-top: auto;
  text-decoration: none;
}
.pricing-card.featured {
  background: #fff;
  border: 2.5px solid var(--primary);
  box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.13);
  z-index: 1;
}
@media (max-width: 900px) {
  .pricing-cards-row {
    flex-direction: column;
    gap: 1.5em;
    align-items: center;
  }
} 