/* ========== PRICING HERO SECTION ========== */

.pricing-hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(67, 97, 238, 0.1),
    rgba(58, 12, 163, 0.1)
  );
}

.pricing-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: var(--light-text);
}

/* ========== PRICING SECTION ========== */

.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  flex: 1 1 300px; /* flexible width but min 300px */
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text);
}

.pricing-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 25px;
  text-align: left; /* so bullets line up nicely */
  display: inline-block; /* to center the bullets */
}

.pricing-card ul li {
  margin-bottom: 8px;
  color: var(--text);
}

.pricing-card .primary-btn {
  /* optional spacing or styles for the button within a card */
  margin-top: 10px;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }

  .pricing-hero p {
    font-size: 1rem;
  }

  .pricing-card {
    max-width: 100%;
  }
}
