.pricing-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(142, 111, 42, 0.18), transparent 28rem),
    linear-gradient(135deg, #111317 0%, #202124 45%, #f5f2ea 45%, #f5f2ea 100%);
  color: #151515;
}

.pricing-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.pricing-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  color: #f8f5ed;
}

.pricing-hero h1 {
  margin: 8px 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.pricing-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(248, 245, 237, 0.78);
  font-size: 1.05rem;
}

.pricing-kicker,
.plan-badge {
  color: #8e6f2a;
  font-weight: 800;
}

.back-link,
.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.back-link {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
}

.plan-card.featured {
  background: #17191d;
  color: #fff;
  border-color: rgba(142, 111, 42, 0.6);
}

.plan-card h2 {
  margin: 14px 0 8px;
  font-size: 2rem;
}

.plan-price {
  display: block;
  margin: 12px 0;
  font-size: 1.7rem;
}

.plan-card p {
  color: inherit;
  opacity: 0.76;
  line-height: 1.8;
}

.plan-card ul {
  min-height: 120px;
  margin: 22px 0;
  padding: 0 20px 0 0;
  line-height: 2;
}

.plan-button {
  width: 100%;
  box-sizing: border-box;
  background: #8e6f2a;
  color: #fff;
}

.plan-button.muted {
  background: #ece8dd;
  color: #222;
}

.payment-note {
  margin-top: 18px;
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 34, 34, 0.12);
}

.payment-note h2 {
  margin-top: 0;
}

.small-note {
  color: #54605f;
}

@media (max-width: 860px) {
  .pricing-hero {
    flex-direction: column-reverse;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
