/* ============================================================
 * css/pricing.css  —  scoped to the /pricing page only.
 * Reuses tokens from style.css; adds layout for the cards,
 * comparison table, calculator and wallet packs.
 * Mobile-first: 1 col → 2 col @ ≥640 → 4 col @ ≥1024.
 * Class prefix: pp-* (pricing-page).
 * ============================================================ */

/* --------------------------------------------------------
   1. Plan cards grid
-------------------------------------------------------- */
.pp-plans {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 640px) {
  .pp-plans { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pp-plans { grid-template-columns: repeat(4, 1fr); }
}

.pp-card {
  position: relative;
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: var(--radius-lg, 18px);
  padding: 28px 22px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(20,40,80,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(20,40,80,.10);
}
.pp-card--popular {
  border-color: var(--accent, #f59e0b);
  box-shadow: 0 14px 32px rgba(245,158,11,.18);
  transform: translateY(-6px);
}
@media (max-width: 640px) {
  .pp-card--popular { transform: none; }
}

.pp-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #f43f5e);
  color: #fff;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(244,63,94,.35);
}
.pp-card-badge i { margin-right: 4px; }

.pp-card-head { text-align: center; margin-bottom: 16px; }
.pp-card-emoji { font-size: 2rem; line-height: 1; }
.pp-card-name {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 6px 0 4px;
  color: var(--gray-900, #0f172a);
}
.pp-card-tagline { color: var(--text-muted, #64748b); font-size: .82rem; margin: 0; }

.pp-card-price { text-align: center; padding: 12px 0 14px; border-bottom: 1px dashed #e2e8f0; }
.pp-card-price-strike {
  display: block;
  color: #94a3b8;
  text-decoration: line-through;
  font-size: .85rem;
  margin-bottom: 2px;
}
.pp-card-price-amt {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900, #0f172a);
  line-height: 1;
}
.pp-rupee { font-size: 1.4rem; font-weight: 700; vertical-align: 2px; margin-right: 2px; }
.pp-card-price-per { font-size: .85rem; color: var(--text-muted, #64748b); font-weight: 600; }
.pp-card-price-mo  { font-size: .78rem; color: var(--text-muted, #64748b); margin-top: 6px; }

.pp-card-cap {
  margin: 14px auto 10px;
  text-align: center;
  font-size: .9rem;
  background: #f1f5f9;
  color: #1e293b;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.pp-card-cap i { margin-right: 6px; color: #2563eb; }

.pp-card-allfeat {
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(22,163,74,.18);
}
.pp-card-allfeat i { margin-right: 6px; }

.pp-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pp-card-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .85rem;
  color: #334155;
  line-height: 1.5;
}
.pp-card-list li i {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
  margin-top: 3px;
  color: #16a34a;
}
.pp-card-list li i.fa-mobile-alt { color: #2563eb; }
.pp-card-list li i.fa-whatsapp   { color: #25d366; }
.pp-card-list li i.fa-clock      { color: #f59e0b; }
.pp-card-list li i.fa-headset    { color: #8b5cf6; }
.pp-card-list li i.fa-chalkboard-teacher { color: #ea580c; }
.pp-card-list li i.fa-user-tie   { color: #be123c; }
.pp-card-list li i.fa-code       { color: #0891b2; }

.pp-card-cta {
  width: 100%;
  justify-content: center;
}
.pp-card-fineprint {
  text-align: center;
  font-size: .72rem;
  color: var(--text-muted, #64748b);
  margin: 8px 0 0;
}

/* Theme accents on the price block + CTA outline */
.pp-theme-emerald .pp-card-price-amt { color: #047857; }
.pp-theme-blue    .pp-card-price-amt { color: #2563eb; }
.pp-theme-purple  .pp-card-price-amt { color: #7c3aed; }
.pp-theme-gold    .pp-card-price-amt { color: #b45309; }


/* --------------------------------------------------------
   2. "All Features Included" banner + grid
-------------------------------------------------------- */
.pp-banner {
  background: linear-gradient(135deg, #ecfeff, #eff6ff);
  border: 1px solid #c7d2fe;
  border-radius: var(--radius-lg, 18px);
  padding: 28px 24px;
  margin-bottom: 30px;
  text-align: center;
}
.pp-banner h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--gray-900, #0f172a);
}
.pp-banner p {
  margin: 0;
  color: var(--text-muted, #64748b);
  font-size: .95rem;
}

.pp-feat-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 700px)  { .pp-feat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .pp-feat-grid { grid-template-columns: repeat(3, 1fr); } }

.pp-feat-pillar {
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 14px;
  padding: 22px 20px;
}
.pp-feat-pillar h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 12px;
  color: var(--gray-900, #0f172a);
}
.pp-feat-pillar h4 .pp-feat-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #c7d2fe);
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.pp-feat-pillar ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pp-feat-pillar li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .85rem; color: #334155; line-height: 1.5;
}
.pp-feat-pillar li i { color: #16a34a; margin-top: 4px; flex-shrink: 0; }


/* --------------------------------------------------------
   3. Comparison table
-------------------------------------------------------- */
.pp-cmp-wrap { margin-top: 26px; }
.pp-cmp-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 14px; box-shadow: 0 4px 14px rgba(20,40,80,.06); }
.pp-cmp {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-size: .9rem;
}
.pp-cmp th, .pp-cmp td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  vertical-align: middle;
}
.pp-cmp thead th {
  background: #f8fafc;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: .95rem;
  color: #0f172a;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
}
.pp-cmp .pp-cmp-rowhead {
  text-align: left;
  font-weight: 700;
  color: #475569;
  background: #f8fafc;
  position: sticky;
  left: 0;
  z-index: 1;
}
.pp-cmp-emoji { font-size: 1.2rem; display: block; margin-bottom: 2px; }
.pp-cmp-name  { display: block; font-weight: 800; }
.pp-cmp-badge {
  display: inline-block;
  margin-top: 4px;
  font-size: .62rem;
  letter-spacing: .08em;
  background: linear-gradient(135deg, #f59e0b, #f43f5e);
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 800;
}
.pp-cmp-popular { background: rgba(245, 158, 11, .06); }
.pp-cmp .pp-yes { color: #16a34a; }
.pp-cmp .pp-no  { color: #cbd5e1; }
.pp-cmp-parity td, .pp-cmp-parity .pp-cmp-rowhead {
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
  font-weight: 800;
}
.pp-cmp-allyes { color: #047857; font-weight: 800; }
.pp-cmp-allyes i { margin-right: 4px; }
.pp-cmp-hint { font-size: .78rem; color: var(--text-muted, #64748b); text-align: center; margin: 10px 0 0; }


/* --------------------------------------------------------
   4. Cost calculator
-------------------------------------------------------- */
.pp-calc {
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: var(--radius-lg, 18px);
  padding: 28px 24px;
  margin-top: 26px;
  box-shadow: 0 4px 14px rgba(20,40,80,.04);
}
.pp-calc-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .pp-calc-grid { grid-template-columns: 1.1fr 1fr; } }

.pp-calc-title {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--gray-900, #0f172a);
}
.pp-calc-title i { margin-right: 8px; color: #2563eb; }
.pp-calc-sub { color: var(--text-muted, #64748b); margin: 0 0 22px; font-size: .92rem; }

.pp-calc-label {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.pp-calc-label strong { color: #2563eb; font-size: 1.1rem; font-weight: 800; }

.pp-calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #c7d2fe);
  outline: none;
  margin: 4px 0 4px;
}
.pp-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2563eb;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(37,99,235,.25);
}
.pp-calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #2563eb;
  cursor: pointer;
}
.pp-calc-slider-scale {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  color: var(--text-muted, #64748b);
  margin-top: 2px;
  margin-bottom: 24px;
}

.pp-calc-usage { border: 0; padding: 0; margin: 0; }
.pp-calc-usage legend { font-size: .9rem; font-weight: 600; color: #1e293b; margin-bottom: 10px; }
.pp-calc-usage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 480px) { .pp-calc-usage { grid-template-columns: repeat(3, 1fr); } }
.pp-calc-usage legend { grid-column: 1 / -1; }

.pp-calc-usage-opt input { position: absolute; opacity: 0; pointer-events: none; }
.pp-calc-usage-card {
  display: block;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  text-align: center;
}
.pp-calc-usage-opt input:checked + .pp-calc-usage-card {
  border-color: #2563eb;
  background: #eff6ff;
}
.pp-calc-usage-opt input:focus-visible + .pp-calc-usage-card {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.pp-calc-usage-name { display: block; font-weight: 800; color: #1e293b; font-size: .9rem; }
.pp-calc-usage-num  { display: block; color: #2563eb; font-weight: 700; font-size: 1rem; margin: 2px 0; }
.pp-calc-usage-hint { display: block; font-size: .7rem; color: var(--text-muted, #64748b); }

.pp-calc-output {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
  border-radius: 14px;
  padding: 22px 22px 18px;
  border: 1px solid #dbeafe;
}
.pp-calc-rec {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed #c7d2fe;
  margin-bottom: 14px;
}
.pp-calc-rec-lbl { font-size: .8rem; color: var(--text-muted, #64748b); margin-right: auto; }
.pp-calc-rec-name {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: #2563eb;
}
.pp-calc-rec-emoji { font-size: 1.6rem; }

.pp-calc-rows { display: flex; flex-direction: column; gap: 10px; }
.pp-calc-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  color: #475569;
}
.pp-calc-row strong { color: #0f172a; font-weight: 700; }
.pp-calc-row--total {
  border-top: 1px solid #c7d2fe;
  padding-top: 10px;
  margin-top: 4px;
  font-size: 1rem;
}
.pp-calc-row--total strong {
  color: #047857;
  font-size: 1.2rem;
  font-family: var(--font-display, 'Syne', sans-serif);
}
.pp-calc-cta { width: 100%; justify-content: center; margin-top: 18px; }
.pp-calc-fineprint { font-size: .72rem; color: var(--text-muted, #64748b); margin: 10px 0 0; text-align: center; }


/* --------------------------------------------------------
   5. Wallet packs
-------------------------------------------------------- */
.pp-wallets {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 24px;
}
@media (min-width: 640px)  { .pp-wallets { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pp-wallets { grid-template-columns: repeat(4, 1fr); } }

.pp-wallet {
  position: relative;
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 14px;
  padding: 22px 18px 18px;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pp-wallet:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(20,40,80,.08); }
.pp-wallet--best { border-color: #16a34a; box-shadow: 0 12px 28px rgba(22,163,74,.18); }

.pp-wallet-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #16a34a, #15803d);
  color: #fff;
  font-size: .68rem;
  letter-spacing: .08em;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(22,163,74,.3);
}
.pp-wallet-icon {
  width: 48px; height: 48px;
  margin: 0 auto 10px;
  border-radius: 12px;
  background: linear-gradient(135deg, #dbeafe, #c7d2fe);
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.pp-wallet--best .pp-wallet-icon { background: linear-gradient(135deg, #dcfce7, #bbf7d0); color: #16a34a; }
.pp-wallet-name { font-family: var(--font-display, 'Syne', sans-serif); font-size: 1rem; font-weight: 800; margin: 0 0 4px; color: #0f172a; }
.pp-wallet-amt {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #2563eb;
  margin: 4px 0 2px;
}
.pp-wallet--best .pp-wallet-amt { color: #16a34a; }
.pp-wallet-msgs { font-size: .9rem; color: #1e293b; font-weight: 600; }
.pp-wallet-rate { font-size: .76rem; color: var(--text-muted, #64748b); margin-bottom: 12px; }
.pp-wallet-cta  { display: inline-block; padding: 8px 18px; font-size: .85rem; }


/* --------------------------------------------------------
   6. Discount box + Communication transparency
-------------------------------------------------------- */
.pp-discounts, .pp-comms {
  border-radius: var(--radius-lg, 18px);
  padding: 26px 24px;
  margin-top: 26px;
}
.pp-discounts {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 1px solid #fed7aa;
}
.pp-discounts h3, .pp-comms h3 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 14px;
  color: var(--gray-900, #0f172a);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pp-discounts h3 i { color: #ea580c; }
.pp-comms h3 i     { color: #2563eb; }

.pp-discount-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .pp-discount-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pp-discount-grid { grid-template-columns: repeat(5, 1fr); } }
.pp-discount-item {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  border: 1px solid #ffedd5;
}
.pp-discount-item strong {
  display: block;
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: 1.05rem;
  color: #c2410c;
  margin-bottom: 4px;
}
.pp-discount-item span { font-size: .8rem; color: #475569; }

.pp-comms {
  background: linear-gradient(135deg, #eff6ff, #f0fdfa);
  border: 1px solid #c7d2fe;
}
.pp-comms p { margin: 0; color: #334155; line-height: 1.7; font-size: .94rem; }


/* --------------------------------------------------------
   7. Trust bar
-------------------------------------------------------- */
.pp-trust {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin: 30px 0 0;
  background: #fff;
  border: 1px solid #e6ecf2;
  border-radius: 14px;
  padding: 22px;
}
@media (min-width: 1024px) { .pp-trust { grid-template-columns: repeat(5, 1fr); } }
.pp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: #1e293b;
  font-weight: 600;
}
.pp-trust-item i {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* --------------------------------------------------------
   8. Section spacing helpers
-------------------------------------------------------- */
.pp-section-head { text-align: center; margin-bottom: 10px; }
.pp-section-head h2 {
  font-family: var(--font-display, 'Syne', sans-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 6px 0 8px;
  color: var(--gray-900, #0f172a);
}
.pp-section-head p { color: var(--text-muted, #64748b); margin: 0 auto; max-width: 720px; }
