/* ── Pricing ── */
.pricing { padding: 4.5rem 0; border-bottom: 1px solid var(--border); }
.pricing__header { max-width: 720px; margin: 0 auto 2rem; text-align: center; }
.pricing__cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.pricing__card { position: relative; display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.pricing__card--popular { border-color: rgba(79, 70, 229, 0.4); box-shadow: 0 16px 40px rgba(79, 70, 229, 0.12); }
.pricing__card--free { background: linear-gradient(180deg, rgba(148, 163, 184, 0.08), transparent); }
.pricing__badge { display: inline-flex; align-items: center; width: fit-content; padding: 0.3rem 0.65rem; border-radius: 999px; background: rgba(148, 163, 184, 0.12); color: var(--text-muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.pricing__badge--popular { background: rgba(79, 70, 229, 0.12); color: var(--primary); }
.pricing__card h3 { margin: 0; font-size: 1.35rem; }
.pricing__price { margin: 0; font-size: 2.3rem; font-weight: 800; line-height: 1; color: var(--text); }
.pricing__price span { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }
.pricing__list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.7rem; color: var(--text-muted); }
.pricing__list li { position: relative; padding-left: 1.2rem; line-height: 1.55; }
.pricing__list li::before { content: "•"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 800; }
.pricing__card .btn { margin-top: auto; justify-content: center; }
.pricing__recap {
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(129, 140, 248, 0.38);
  border-radius: var(--radius-lg);
  background: linear-gradient(110deg, #0f172a 0%, #111a34 52%, #101827 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 16px 40px rgba(2, 6, 23, 0.35);
}
.pricing__recap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0.08) 45%, rgba(99, 102, 241, 0.04) 100%);
  pointer-events: none;
}
.pricing__recap > * {
  position: relative;
  z-index: 1;
}
.pricing__recap strong { display: block; margin-bottom: 0.35rem; font-size: 1rem; color: #f8fafc; }
.pricing__recap p { margin: 0; color: rgba(226, 232, 240, 0.95); }
.pricing__recap .btn-primary {
  background: linear-gradient(135deg, #5b52f1 0%, #4f46e5 100%);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.34);
}
.pricing__recap .btn-primary:hover {
  background: linear-gradient(135deg, #6a61ff 0%, #5b52f1 100%);
  border-color: rgba(167, 139, 250, 0.95);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.45);
}
@media (max-width: 900px) {
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing__recap { flex-direction: column; align-items: flex-start; }
  .pricing__recap .btn { width: 100%; justify-content: center; }
}
