/* ─── 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: 24px; }
.pricing-card.highlighted .price { color: var(--brand-text); }
.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; }
}
