.pricing-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.back-link { font-size: 0.9rem; color: var(--brand, #7dd3fc); }
.pricing-h1 { margin-top: 1rem; }
.pricing-main > p { color: var(--muted, #9fb0c8); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
  align-items: start;
}
.plan-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.75rem;
  background: var(--panel, #121a2a);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.plan-card.featured {
  border-color: var(--brand, #7dd3fc);
  box-shadow: 0 0 0 1px var(--brand, #7dd3fc);
}
.plan-name { font-size: 1rem; font-weight: 700; }
.plan-price { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; }
.plan-price span { font-size: .9rem; font-weight: 400; color: var(--muted, #9fb0c8); }
.plan-price-custom { font-size: 1.4rem; font-weight: 800; }
.plan-features { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.plan-features li { font-size: .85rem; color: var(--muted, #9fb0c8); display: flex; gap: .45rem; align-items: flex-start; }
.plan-features li::before { content: "✓"; color: var(--brand, #7dd3fc); font-weight: 700; flex-shrink: 0; }
.plan-features li.no::before { content: "✗"; color: rgba(255,255,255,.2); }
.plan-features li.no { color: rgba(255,255,255,.25); }
.btn-plan {
  display: block; width: 100%; padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,.18); border-radius: 9px; cursor: pointer;
  font-size: .9rem; font-weight: 600; text-align: center;
  background: transparent; color: var(--muted, #9fb0c8);
  text-decoration: none; transition: all .15s;
}
.btn-plan:hover { border-color: var(--brand, #7dd3fc); color: var(--brand, #7dd3fc); }
.btn-plan.secondary {
  background: transparent;
  border-color: rgba(255,255,255,.18);
  color: var(--muted, #9fb0c8);
}
.plan-card.featured button.btn-plan:not(.secondary) {
  background: var(--brand, #7dd3fc);
  border-color: var(--brand, #7dd3fc);
  color: #06111f;
}
.plan-card.featured button.btn-plan:not(.secondary):hover { background: var(--brand-2, #38bdf8); }
.badge {
  display: inline-block;
  background: rgba(125,211,252,.12);
  color: var(--brand, #7dd3fc);
  border: 1px solid rgba(125,211,252,.3);
  font-size: .72rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 99px; margin-bottom: .4rem;
}
.notice {
  background: var(--panel, #121a2a);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 1rem 1.25rem;
  font-size: .88rem; color: var(--muted, #9fb0c8);
  line-height: 1.6;
}
.notice a { color: var(--brand, #7dd3fc); }
.notice code { color: var(--brand, #7dd3fc); }
.notice-mt { margin-top: 1rem; }
#status-msg { margin-top: 1rem; padding: .75rem 1rem; border-radius: 8px; display: none; }
#status-msg.success { background: rgba(134,239,172,.1); color: #86efac; border: 1px solid rgba(134,239,172,.25); display: block; }
#status-msg.error { background: rgba(252,165,165,.1); color: #fca5a5; border: 1px solid rgba(252,165,165,.25); display: block; }
