/* ===========================
   Pricing / Choose Plan page
   =========================== */

/* ---- Section spacing on lg ---- */
@media (min-width: 992px){
  #pricing.py-5{ padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
}

/* ---- Cards: base hover polish ---- */
#pricing .rounded-4.bg-white.shadow-sm.border{
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  will-change: transform;
  backdrop-filter: blur(0px);
}
#pricing .rounded-4.bg-white.shadow-sm.border:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.14);
  border-color: rgba(0,0,0,.12);
}

/* ---- Visual accent for Plus card (right column) ---- */
#pricing .row > .col-md-6#plan-plus .rounded-4.bg-white.shadow-sm.border{
  border-color: rgba(0,0,205,.25);               /* brand: #0000CD softened */
  box-shadow: 0 12px 36px rgba(0,0,205,.14);
}
#pricing .row > .col-md-6#plan-plus .rounded-4.bg-white.shadow-sm.border:hover{
  box-shadow: 0 16px 44px rgba(0,0,205,.18);
}

/* ---- Little ribbon / badge ---- */
#pricing .badge.position-absolute,
#pricing .th-badge{
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 700;
}

/* ---- Price text ---- */
#pricing .display-6{
  line-height: 1.05;
  letter-spacing: .1px;
}
#pricing .small.text-muted{ color:#6b7280 !important; }

/* ---- Feature list in cards ---- */
#pricing ul.list-unstyled{ margin:0; padding:0; }
#pricing ul.list-unstyled li{ line-height:1.5; }
#pricing ul.list-unstyled .bi{
  font-size: 1.1rem;
  color: var(--brand, #0000CD);
  line-height:1;
  margin-top:.15rem;
}
#pricing ul.list-unstyled .text-muted .bi{ color:#9ca3af; }

/* ---- CTA buttons ---- */
#pricing .btn{
  transition: transform .14s ease, box-shadow .14s ease, background-color .14s ease, border-color .14s ease;
}
#pricing .btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
#pricing .btn-primary{
  background-color: var(--brand, #0000CD);
  border-color: var(--brand, #0000CD);
}
#pricing .btn-primary:hover{
  background-color:#C1205A;
  border-color:#C1205A;
}
#pricing .btn-outline-primary{
  border-color: var(--brand, #0000CD);
  color: var(--brand, #0000CD);
  background:#fff;
}
#pricing .btn-outline-primary:hover{
  background: var(--brand, #0000CD);
  color:#fff;
  border-color: var(--brand, #0000CD);
}

/* ===== Cancel Confirmation Modal ===== */

/* скрыто по умолчанию */
.confirm-overlay[hidden] { display: none !important; }

/* базовый оверлей */
.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  will-change: opacity;
  animation: cancelOverlayFadeIn 180ms ease-out forwards;
}

/* сам диалог */
.confirm-dialog {
  position: relative;
  width: min(520px, calc(100vw - 32px));
  max-width: 520px;
  background: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #212529);
  border: 1px solid var(--bs-border-color, rgba(0,0,0,0.08));
  border-radius: 16px;
  padding: 22px 20px 20px 20px;
  box-shadow:
    0 20px 50px rgba(0,0,0,.18),
    0 8px 18px rgba(0,0,0,.08);
  transform: translateY(8px) scale(.975);
  opacity: 0;
  will-change: transform, opacity;
  animation: cancelDialogIn 200ms cubic-bezier(.2,.7,.25,1) 60ms forwards;
}

/* иконка предупреждения */
.confirm-icon {
  width: 64px;
  height: 64px;
  margin: 6px auto 12px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bs-danger-bg-subtle, rgba(220,53,69,.12));
  color: var(--bs-danger, #dc3545);
  box-shadow: inset 0 0 0 1px rgba(220, 53, 69, .18);
  font-size: 28px;
}

/* кнопка закрытия (X) */
.confirm-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--bs-secondary-color, #6c757d);
  display: grid;
  place-items: center;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.confirm-close:hover {
  background: var(--bs-secondary-bg, rgba(0,0,0,.05));
  color: var(--bs-body-color, #212529);
}
.confirm-close:active { transform: scale(.96); }
.confirm-close:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(13,110,253,.35);
}

/* текстовые акценты */
.confirm-dialog .plan-name { font-weight: 600; }

/* кнопки — лёгкий hover-эффект */
.confirm-dialog .btn {
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}
.confirm-dialog .btn:hover { transform: translateY(-1px); }

/* ====== OPEN animations ====== */
@keyframes cancelOverlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cancelDialogIn {
  from { opacity: 0; transform: translateY(8px) scale(.975); }
  to   { opacity: 1; transform: translateY(0)  scale(1); }
}

/* ====== CLOSE animations (включаются классом .is-closing на .confirm-overlay) ====== */
@keyframes cancelOverlayFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes cancelDialogOut {
  from { opacity: 1; transform: translateY(0)   scale(1); }
  to   { opacity: 0; transform: translateY(8px) scale(.975); }
}

/* применяем анимации закрытия при .is-closing */
.confirm-overlay.is-closing {
  animation: cancelOverlayFadeOut 160ms ease-in forwards;
}
.confirm-overlay.is-closing .confirm-dialog {
  /* перекрываем анимацию появления */
  animation: cancelDialogOut 180ms cubic-bezier(.4,.1,.3,1) forwards;
}

/* ===== Тёмная тема (если нет BS variables) ===== */
@media (prefers-color-scheme: dark) {
  .confirm-overlay { background: rgba(0, 0, 0, 0.55); }
  .confirm-dialog {
    border-color: rgba(255,255,255,.08);
    box-shadow:
      0 22px 50px rgba(0,0,0,.5),
      0 8px 18px rgba(0,0,0,.25);
  }
}

/* ===== Reduce motion ===== */
@media (prefers-reduced-motion: reduce) {
  .confirm-overlay,
  .confirm-dialog { animation: none !important; }
  .confirm-overlay { opacity: 1; }
  .confirm-dialog { opacity: 1; transform: none; }
  .confirm-overlay.is-closing { opacity: 0; } /* мгновенно скрыть, если решишь не ждать JS */
}

/* ===== Top Toasts ===== */
.toast-area {
  position: fixed;
  top: calc(12px + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  width: min(520px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1085;                  /* поверх контента/хедера */
  pointer-events: none;           /* кликаются только сами тосты */
}

.toast-item {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--bs-border-color, rgba(0,0,0,.08));
  background: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #212529);
  box-shadow:
    0 14px 30px rgba(0,0,0,.14),
    0 6px 16px rgba(0,0,0,.08);
  opacity: 0;
  transform: translateY(-12px);
  animation: toastIn 200ms ease-out forwards;
}

.toast-item .toast-text {
  flex: 1 1 auto;
}

.toast-item .toast-close {
  border: 0;
  background: transparent;
  color: var(--bs-secondary-color, #6c757d);
  padding: 6px;
  border-radius: 8px;
  line-height: 0;
  transition: background-color .15s ease, transform .12s ease;
}
.toast-item .toast-close:hover { background: var(--bs-secondary-bg, rgba(0,0,0,.05)); }
.toast-item .toast-close:active { transform: scale(.96); }

.toast-item.toast-warning {
  background: var(--bs-warning-bg-subtle, #fff3cd);
  border-color: var(--bs-warning-border-subtle, #ffe69c);
  color: var(--bs-warning-text-emphasis, #664d03);
}
.toast-item.toast-info {
  background: var(--bs-info-bg-subtle, #cff4fc);
  border-color: var(--bs-info-border-subtle, #9eeaf9);
  color: var(--bs-info-text-emphasis, #055160);
}
.toast-item.toast-success {
  background: var(--bs-success-bg-subtle, #d1e7dd);
  border-color: var(--bs-success-border-subtle, #a3cfbb);
  color: var(--bs-success-text-emphasis, #0f5132);
}
.toast-item.toast-danger {
  background: var(--bs-danger-bg-subtle, #f8d7da);
  border-color: var(--bs-danger-border-subtle, #f1aeb5);
  color: var(--bs-danger-text-emphasis, #58151c);
}

/* анимации */
@keyframes toastIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-8px); }
}
.toast-item.is-out {
  animation: toastOut 180ms ease-in forwards;
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .toast-item { animation: none !important; opacity: 1; transform: none; }
  .toast-item.is-out { display: none; }
}

/* ---- One-time pulse to draw attention to new Get Free button ---- */
.pulse-once {
  animation: pulseOnce 1.2s ease-out 1;
}
@keyframes pulseOnce {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(13,110,253,.45); }
  50%  { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(13,110,253,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

/* ---- Optional: subtle shake class already used ---- */
.shake { animation: shake .35s ease; }
@keyframes shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-3px); }
  40%, 60% { transform: translateX(3px); }
}

/* Адаптив — на очень узких экранах делаем кнопку компактнее */
@media (max-width: 420px){
  #pricing .btn-outline-danger.btn-lg,
  #pricing .btn-cancel.btn-lg{
    padding: .6rem .9rem;
    font-size: 1rem;
    border-radius: .75rem;
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  #pricing .btn-outline-danger,
  #pricing .btn-cancel{ transition: none !important; }
}

/* ===========================
   Quick highlight tiles (top)
   =========================== */
#pricing .row.g-3 .rounded-4.bg-white.shadow-sm.p-3.h-100{
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
#pricing .row.g-3 .rounded-4.bg-white.shadow-sm.p-3.h-100:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
  border-color: rgba(0,0,0,.12);
}
#pricing .row.g-3 .fw-bold{ letter-spacing:.15px; }

/* ===========================
   Compare table (Free vs Plus)
   =========================== */
#pricing .table.table-compare{
  margin-top:.5rem;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 36px rgba(0,0,0,.10);
}
#pricing .table.table-compare thead th{
  font-weight:900;
  letter-spacing:.2px;
  color:#6b7280;
  border-top:0;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
  vertical-align:middle;
  padding:.9rem 1rem;
}
#pricing .table.table-compare tbody td{
  border-color: rgba(0,0,0,.06);
  vertical-align: middle;
  padding: .85rem 1rem;
}
#pricing .table.table-compare tbody tr:nth-child(even){
  background: linear-gradient(180deg, #fff 0%, #fafbff 100%);
}
#pricing .table.table-compare tbody tr:hover{
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
}

/* Sticky first column + accent Plus column */
#pricing .table.table-compare thead th:first-child,
#pricing .table.table-compare tbody td:first-child{
  position: sticky; left: 0; background: inherit; z-index: 1;
}
#pricing .table.table-compare thead th:nth-child(3){
  color:#1f2530;
  border-left:1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, rgba(0,0,205,.06), rgba(0,0,205,.00)), #fff;
}
#pricing .table.table-compare tbody td:nth-child(3){
  border-left:1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, rgba(0,0,205,.03), rgba(0,0,205,.00));
}

/* Icons: yes / no / limit */
#pricing .table.table-compare .icon-yes,
#pricing .table.table-compare .icon-no,
#pricing .table.table-compare .icon-limit{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:10px;
  font-size:1.05rem; font-weight:800; line-height:1;
}
#pricing .table.table-compare .icon-yes{
  color: var(--brand, #0000CD);
  background: rgba(0,0,205,.10);
  border:1px solid rgba(0,0,205,.18);
}
#pricing .table.table-compare .icon-no{
  color:#9ca3af;
  background: rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,.08);
}
#pricing .table.table-compare .icon-limit{
  color:#b45309; /* amber-700 */
  background: rgba(245,158,11,.12);
  border:1px solid rgba(245,158,11,.25);
}

/* Feature name col */
#pricing .table.table-compare .feature-name{
  font-weight:700; color:#1f2530;
}

/* Row divider helper */
#pricing .table.table-compare tr.row-divider td{
  border-bottom-width:2px;
}

/* Header badge */
#pricing .table.table-compare .th-badge{
  background:#fbd34d;
  color:#1f2530;
}

/* Center values in Free / Plus cols */
#pricing .table.table-compare td:nth-child(2),
#pricing .table.table-compare td:nth-child(3){
  text-align:center;
}

/* ===== WHY GO PLUS — right column (calm teaser) ===== */
#pricing .guarantees{
  display: grid;
  gap: 10px;
}
#pricing .guarantees .g-badge{
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,205,.08);
  border: 1px solid rgba(0,0,205,.14);
  color: var(--brand, #0000CD);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =========================
   Mini packs row — внутри col-lg-6
   ========================= */

/* Базовая сетка: сама подбирает число колонок в зависимости от ширины колонки */
#pricing .mini-packs{
  display: grid;
  gap: 10px;
  /* карточка ужмётся до ~210px, дальше добавится 2-я / 3-я колонка */
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  align-content: start;
}

/* Узкие экраны — в одну колонку (чуть жёстче, чем auto-fit) */
@media (max-width: 575.98px){
  #pricing .mini-packs{ grid-template-columns: 1fr; }
}

/* Контейнер-запросы (если поддерживаются): ещё точнее под ширину именно колонки col-lg-6 */
@supports (container-type: inline-size){
  #pricing .mini-packs{
    container-type: inline-size; /* включаем контейнерный контекст для блока с мини-паками */
  }
  /* До ~460px ширины самой колонки — одна колонка */
  @container (max-width: 460px){
    #pricing .mini-packs{ grid-template-columns: 1fr; }
  }
  /* От ~461 до ~720px — две колонки (типичный col-lg-6) */
  @container (min-width: 461px) and (max-width: 720px){
    #pricing .mini-packs{ grid-template-columns: repeat(2, 1fr); }
  }
  /* Шире ~720px (очень широкая половина) — три колонки */
  @container (min-width: 721px){
    #pricing .mini-packs{ grid-template-columns: repeat(3, 1fr); }
  }
}

/* Карточка — чуть компактнее, чтобы 2–3 столбца выглядели аккуратно */
#pricing .mini-packs .mp-card{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  text-decoration: none;
  color: inherit;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
  min-width: 0; /* важно: чтобы текст не распирал карточку */
}
#pricing .mini-packs .mp-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  border-color: rgba(0,0,0,.10);
}

/* Превью — адаптивный размер через clamp, чтобы не “съедать” ширину колонки */
#pricing .mini-packs .mp-thumb{
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f3f4f6;
  border: 1px solid rgba(0,0,0,.06);
}
#pricing .mini-packs .mp-thumb img{
  width: 100%; height: 100%; object-fit: cover; display: block;
}

/* Мета-блок и тексты */
#pricing .mini-packs .mp-meta{
  display: flex; flex-direction: column; gap: 4px; min-width: 0;
}
#pricing .mini-packs .mp-title{
  font-weight: 800; letter-spacing: .15px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  /* чуть компактнее шрифт на узких колонках */
  font-size: clamp(.9rem, 1.6vw, 1rem);
}
#pricing .mini-packs .mp-tag{
  font-size: .75rem; font-weight: 700;
  display: inline-block; width: fit-content;
  padding: .1rem .45rem;
  border-radius: 999px;
  background: #f3f4f6; color: #1f2530;
  border: 1px solid rgba(0,0,0,.06);
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  #pricing .mini-packs .mp-card{ transition: none !important; }
}

/* Fixed layout on md+ for nicer column widths */
@media (min-width: 768px){
  #pricing .table.table-compare{ table-layout: fixed; }
  #pricing .table.table-compare thead th:first-child,
  #pricing .table.table-compare tbody td:first-child{ width: 46%; }
  #pricing .table.table-compare thead th:nth-child(2),
  #pricing .table.table-compare tbody td:nth-child(2),
  #pricing .table.table-compare thead th:nth-child(3),
  #pricing .table.table-compare tbody td:nth-child(3){ width: 27%; }
}

/* Mobile: turn rows into cards (no HTML changes needed) */
@media (max-width: 576px){
  #pricing .table.table-compare thead{ display:none; }
  #pricing .table.table-compare,
  #pricing .table.table-compare tbody,
  #pricing .table.table-compare tr,
  #pricing .table.table-compare td{ display:block; width:100%; }
  #pricing .table.table-compare tbody tr{
    background:#fff; margin:10px 0;
    border:1px solid rgba(0,0,0,.06);
    border-radius:14px; box-shadow:0 8px 22px rgba(0,0,0,.08);
    overflow:hidden;
  }
  #pricing .table.table-compare tbody tr:hover{ background:#fff; }
  #pricing .table.table-compare tbody td{ border:0; padding:.85rem 1rem; }
  #pricing .table.table-compare tbody td:first-child{
    border-bottom:1px solid rgba(0,0,0,.06);
    background: linear-gradient(180deg,#ffffff 0%, #f8faff 100%);
    font-weight:800;
  }
  /* Inline column labels (requires data-col="Free"/"Plus" on tds) */
  #pricing .table.table-compare tbody td:nth-child(2)::before,
  #pricing .table.table-compare tbody td:nth-child(3)::before{
    content: attr(data-col) " ";
    display:inline-block; min-width:72px; margin-right:.5rem;
    font-size:.85rem; font-weight:800; color:#6b7280;
    text-transform:uppercase; letter-spacing:.3px;
  }
}

/* ===== Progress bar (верхняя тонкая линия) — опционально ===== */
#page-progress {
  position: fixed; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--brand,#0000CD), #C1205A);
  box-shadow: 0 0 8px rgba(0,0,0,.15);
  z-index: 3000; transition: width .25s ease, opacity .25s ease;
  opacity: 0;
}
#page-progress.is-on{ opacity: 1; }

/* ===== Конфетти канвас ===== */
#confetti-canvas{
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  pointer-events: none; z-index: 3001;
}

/* ===== Модалка успеха ===== */
.activation-overlay{
  position: fixed; inset:0; display:flex; align-items:center; justify-content:center;
  background: rgba(17,24,39,.5); /* slate-900/50 */
  z-index: 3002;
  backdrop-filter: blur(2px);
}
.activation-overlay[hidden]{ display:none; }

.activation-dialog{
  width: min(560px, 92vw);
  background:#fff; border:1px solid rgba(0,0,0,.06);
  border-radius: 20px; box-shadow: 0 24px 70px rgba(0,0,0,.25);
  padding: 28px 24px; text-align: center;
  transform: translateY(8px) scale(.98); opacity: 0;
  animation: act-in .35s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes act-in {
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.activation-check{
  width:84px; height:84px; margin:0 auto 12px; border-radius: 999px;
  display:grid; place-items:center;
  background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,205,.18), rgba(0,0,205,.05));
  border:1px solid rgba(0,0,205,.18);
}
.activation-check .bi{ font-size: 2rem; color: var(--brand,#0000CD); }

.activation-dialog h2{
  margin: 8px 0 6px; font-weight: 800;
}
.activation-dialog p{
  margin: 0 0 14px; color:#4b5563;
}

.activation-actions{ margin-top: 8px; }
.activation-timer{
  margin-top: 10px; font-size: .9rem; color:#6b7280;
}

/* состояние кнопок в процессе/успех */
.btn.is-busy{ position: relative; pointer-events: none; opacity: .9; }
.btn.is-success{
  background:#16a34a !important; border-color:#16a34a !important; color:#fff !important;
  box-shadow: 0 8px 24px rgba(22,163,74,.35);
}
.btn.is-success .bi{ margin-left:.35rem; }

/* лёгкая тряска при ошибке */
@keyframes shake {
  10%,90%{transform: translateX(-1px)}
  20%,80%{transform: translateX(2px)}
  30%,50%,70%{transform: translateX(-4px)}
  40%,60%{transform: translateX(4px)}
}
.shake{ animation: shake .35s ease both; }

/* Уважение к reduced motion */
@media (prefers-reduced-motion: reduce){
  #page-progress, .activation-dialog{ transition:none !important; animation:none !important; }
}

/* Focus ring for a11y */
#pricing .table.table-compare td:focus-within{
  outline:2px solid rgba(0,0,205,.25);
  outline-offset:-2px;
  background:#f5f7ff;
}

/* ---- Minor responsive tweaks ---- */
@media (max-width: 576px){
  #pricing .p-lg-5{ padding:1.25rem !important; }
  #pricing .badge.position-absolute{ top:10px; right:10px; }
  #pricing .display-6{ font-size:2rem; }
}

/* ---- Reduced motion respect ---- */
@media (prefers-reduced-motion: reduce){
  #pricing *, #pricing .btn{ transition: none !important; }
}