.billing-wrap { padding: 10px 10px 20px; }
.billing-head { text-align:center; margin-bottom: 22px; }
.billing-head h1 { margin: 0 0 8px; font-size: 34px; font-weight: 900; }
.billing-head p { margin: 0; color: rgba(255,255,255,0.65); }
.gold { color: #fcb64d; font-weight: 900; }

.plans-grid {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.plan-card {
  position: relative;
  background: rgba(30,30,30,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  padding: 44px 22px 22px;
  border-radius: 16px;
  width: 280px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.plan-card:hover { transform: translateY(-2px); border-color: rgba(252,182,77,0.25); }

.plan-card h2 { margin: 8px 0 6px; font-size: 22px; font-weight: 900; text-align:center; }
.price { text-align:center; font-size: 28px; margin: 8px 0 10px; font-weight: 900; }
.per-month { font-size: 12px; color: rgba(255,255,255,0.55); font-weight: 700; }

.subtext {
  margin: 0 0 14px;
  text-align: center;
  color: rgba(255,255,255,0.62);
  font-size: 13px;
  line-height: 1.45;
}

.plan-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.plan-card li { display:flex; align-items:center; gap: 10px; margin-bottom: 9px; color: rgba(255,255,255,0.85); }
.plan-card li .iconify { font-size: 18px; opacity: 0.95; }

.badge{
  position:absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  letter-spacing: 0.6px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.78);
}
.badge-gold{
  border-color: rgba(252,182,77,0.35);
  background: rgba(252,182,77,0.12);
  color: #fcb64d;
}

.featured{
  border-color: rgba(252,182,77,0.22);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}

.action-btn {
  background-color: #fcb64d;
  color: #000;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.12s ease, filter 0.12s ease;
  align-self: center;
  width: 100%;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.action-btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.action-btn:active { transform: translateY(0); filter: brightness(0.98); }

.action-btn:disabled{
  opacity: 0.75;
  cursor: default;
  filter: none;
  transform: none;
}

.disabled { opacity: 0.78; }
.disabled-btn{
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.12);
}
.disabled-btn:hover{ filter: none; transform: translateY(-1px); }

.tiny-note{
  margin-top: 10px;
  text-align:center;
  font-size: 12px;
  color: rgba(255,255,255,0.52);
}

@media (max-width: 900px) {
  .plans-grid { flex-direction: column; align-items: center; }
  .plan-card { width: min(420px, 92vw); }
}
