/* Pricing / upgrade page — shares the dark gradient + Roboto of the landing. */

.pricing {
  padding: 64px 24px 96px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing__title {
  margin: 40px 0 0;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}
.pricing__subtitle {
  margin: 16px auto 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.5;
}

/* Status banner (already-business, canceled, errors) */
.pricing-banner {
  margin: 28px auto 0;
  max-width: 620px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.pricing-banner--error {
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(248, 113, 113, 0.5);
}
.pricing-banner--success {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(52, 211, 153, 0.5);
}

/* Plan cards */
.plans {
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 760px;
}
.plan-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
.plan-card--featured {
  outline: 3px solid #6d28d9;
  transform: translateY(-6px);
}
.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 28px;
  background: #6d28d9;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.plan-card__name {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #1e293b;
}
.plan-card__price {
  margin: 8px 0 20px;
  color: #0f172a;
}
.plan-card__price .amount {
  font-size: 40px;
  font-weight: 800;
}
.plan-card__price .per {
  font-size: 16px;
  color: #64748b;
  margin-left: 4px;
}
.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.plan-card__features li {
  position: relative;
  padding: 8px 0 8px 26px;
  color: #334155;
  font-size: 15px;
  line-height: 1.4;
  border-bottom: 1px solid #f1f5f9;
}
.plan-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: #16a34a;
  font-weight: 700;
}
.plan-card__cta {
  width: 100%;
  justify-content: center;
}
.plan-card__cta[disabled] {
  opacity: 0.55;
  cursor: default;
}
.plan-card__note {
  margin: 12px 0 0;
  font-size: 13px;
  color: #64748b;
  min-height: 18px;
  text-align: center;
}

.pricing__fineprint {
  margin: 40px auto 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
.support-link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
}
.support-link:hover { text-decoration: underline; }

@media (max-width: 620px) {
  .plan-card--featured { transform: none; }
  .pricing__title { font-size: 32px; }
}
