/* ─── PRICING ────────────────────────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}
.pricing-card.highlighted {
  border-color: var(--brand);
  background: var(--brand-light);
  box-shadow: 0 12px 30px rgba(29,122,107,0.1);
}
.pricing-card.highlighted h3 { color: var(--brand-text); }
.pricing-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.pricing-card .price { font-size: 40px; font-weight: 700; color: var(--brand); margin-bottom: 0px; }
.pricing-card.highlighted .price { color: var(--brand-text); }

.price-container {
  margin-bottom: 24px;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.price-old {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.old-amount {
  font-size: 16px;
  color: var(--text-3);
  text-decoration: line-through;
  font-weight: 500;
}
.discount-badge {
  background: #fee2e2;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 9999px;
  text-transform: uppercase;
}
.pricing-card.highlighted .old-amount {
  color: rgba(255,255,255,0.7);
}
.pricing-card.highlighted .discount-badge {
  background: rgba(255,255,255,0.25);
  color: white;
}

.pricing-card ul { list-style: none; padding: 0; margin-bottom: 32px; flex-grow: 1; }
.pricing-card li { margin-bottom: 12px; font-size: 15px; color: var(--text-2); display: flex; align-items: center; gap: 8px; }
.pricing-card li::before { content: "✓"; color: var(--brand); font-weight: bold; }
.pricing-card.highlighted li::before { color: var(--brand-text); }
.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 40px auto 0; }
}
