/* pricing.css — membership plan cards for pricing.php */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}
.price-card.featured {
  border-color: var(--blue, #1d4ed8);
  box-shadow: 0 8px 26px rgba(29, 78, 216, .16);
}

.price-tag {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue, #1d4ed8);
  color: #fff;
  font-size: 11.5px; font-weight: 700; letter-spacing: .3px;
  padding: 4px 14px; border-radius: 999px;
  white-space: nowrap;
}

.pc-name { font-size: 18px; font-weight: 700; color: var(--navy, #0f172a); margin: 0 0 10px; }
.pc-price { font-size: 34px; font-weight: 800; color: var(--navy, #0f172a); line-height: 1; }
.pc-price .cur { font-size: 15px; font-weight: 600; color: var(--muted, #6b7280); }
.pc-period { font-size: 13px; color: var(--muted, #6b7280); margin-top: 4px; }

.pc-feats { list-style: none; margin: 20px 0; padding: 0; border-top: 1px solid #f1f5f9; }
.pc-feats li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13.5px; color: #374151;
  padding: 9px 0; border-bottom: 1px solid #f1f5f9;
}
.pc-feats li.no { color: #9ca3af; }
.pc-feats .mark { font-weight: 700; line-height: 1.4; }
.pc-feats li.yes .mark { color: #16a34a; }
.pc-feats li.no .mark { color: #d1d5db; }

.pc-btn {
  display: block; text-align: center;
  padding: 11px 16px; border-radius: 9px;
  font-size: 14px; font-weight: 700;
  text-decoration: none;
  background: #f3f4f6; color: var(--navy, #0f172a);
  border: 1px solid #e5e7eb;
}
.pc-btn:hover { background: #e9edf5; }
.pc-btn.primary { background: var(--blue, #1d4ed8); color: #fff; border-color: var(--blue, #1d4ed8); }
.pc-btn.primary:hover { filter: brightness(1.05); }

.price-note { text-align: center; color: var(--muted, #6b7280); font-size: 13px; margin-top: 26px; }
