/* ============================================
   subscription.css – اشتراک ویژه (Dark Neon)
   ============================================ */
:root {
  --neon-gold: #fbbf24;
  --neon-glow: rgba(251, 191, 36, 0.5);
}

.subscription-page__title {
  text-align: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 12px;
}

.subscription-page__subtitle {
  text-align: center;
  color: #94a3b8;
  margin-bottom: 48px;
}

/* کانتینر طرح‌ها */
.plans {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* کارت طرح */
.plan-card {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.plan-card--popular {
  border-color: var(--neon-gold);
  box-shadow: 0 0 20px rgba(251,191,36,0.2);
  background: rgba(251,191,36,0.05);
}

.plan-card--popular::before {
  content: 'محبوب‌ترین';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--neon-gold), #f59e0b);
  color: black;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 16px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(251,191,36,0.4);
}

.plan-card__name {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 8px;
}

.plan-card__price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--neon-gold);
  margin: 16px 0;
}

.plan-card__price small {
  font-size: 1rem;
  font-weight: 400;
  color: #94a3b8;
}

.plan-card__features {
  list-style: none;
  margin: 24px 0;
  color: #cbd5e1;
}

.plan-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-card__features li:last-child {
  border-bottom: none;
}

/* دکمه خرید اشتراک */
.plan-card .btn--primary {
  width: 100%;
  margin-top: 12px;
}

/* ریسپانسیو */
@media (max-width: 768px) {
  .subscription-page__title { font-size: 2rem; }
}