/* --- SIMPLIFIED PRICING SECTION --- */
#getting-started{
    margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  border: 1px solid var(--pico-muted-border-color);
  border-radius: var(--pico-border-radius);
  transition: transform 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: var(--pico-primary);
}

/* Highlight the middle card */
.pricing-card.popular {
  border: 2px solid var(--pico-primary);
  transform: scale(1.05);
  z-index: 2;
}

/* Reset scale on mobile */
@media (max-width: 768px) {
  .pricing-card.popular {
    transform: none;
  }
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pico-primary);
  color: var(--pico-primary-inverse);
  font-size: 0.7rem;
  font-weight: bold;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Pricing Typography */
.pricing-card header {
  margin-bottom: 2rem;
}

.pricing-card header small {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--pico-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.credits {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.8;
}

.pricing-card footer {
  margin-top: auto;
}

.pricing-card a[role="button"] {
  width: 100%;
  text-align: center;
}