/* =========================================================
   Pricing Plan — gold/dark themed for GoldenIPTV Pro
   Adapted from design parts/pricing_plan/styles.css
   ========================================================= */

.pp-section {
  --pp-bg: #0d0d0d;
  --pp-card: #161616;
  --pp-card-hover: #1a1a1a;
  --pp-ink: #f3f4f6;
  --pp-ink-soft: #d1d5db;
  --pp-muted: #9aa0ab;
  --pp-line: rgba(255,255,255,.10);
  --pp-line-strong: rgba(255,255,255,.18);

  --pp-accent: #eab308;
  --pp-accent-strong: #facc15;
  --pp-accent-deep: #ca8a04;
  --pp-accent-soft: rgba(234,179,8,.12);

  --pp-pink: rgba(239, 68, 68, 0.15);
  --pp-pink-ink: #fca5a5;

  --pp-check-bg: rgba(234,179,8,.14);
  --pp-check-ink: #facc15;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-pill: 999px;

  --shadow-card: 0 8px 24px -12px rgba(0,0,0,.7), 0 2px 6px -2px rgba(0,0,0,.4);
  --shadow-featured: 0 18px 40px -16px rgba(234,179,8,.30), 0 2px 8px -2px rgba(0,0,0,.5);

  --font-head: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-body: 'Outfit', system-ui, -apple-system, sans-serif;

  font-family: var(--font-body);
  color: var(--pp-ink);
}

.pp-section *, .pp-section *::before, .pp-section *::after { box-sizing: border-box; }
.pp-section button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.pp-section .tier-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 36px;
  padding-top: 6px;
}
.pp-section .tier-shell__heading {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pp-muted);
  margin: 0 0 12px;
}
.pp-section .tier-switcher {
  display: flex;
  width: fit-content;
  background: var(--pp-card);
  border: 1px solid var(--pp-line);
  border-radius: var(--r-pill);
  padding: 5px;
  box-shadow: 0 12px 28px -14px rgba(0,0,0,.6), 0 2px 6px rgba(0,0,0,.2);
  gap: 4px;
}
.pp-section .tier-switcher__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 11px 22px;
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--pp-ink-soft);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease, transform .15s ease;
}
.pp-section .tier-switcher__btn-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pp-pink);
  color: var(--pp-pink-ink);
  border: 1px solid rgba(248, 113, 113, 0.35);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}
.pp-section .tier-switcher__btn:hover:not(.tier-switcher__btn--active) {
  background: var(--pp-accent-soft);
  color: var(--pp-accent-strong);
}
.pp-section .tier-switcher__btn--active {
  background: var(--pp-accent);
  color: #0a0a0a;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -8px rgba(234,179,8,.55), 0 2px 4px rgba(234,179,8,.18);
}
@media (max-width: 480px) {
  .pp-section .tier-switcher__btn { padding: 9px 14px; font-size: 13px; min-width: 0; }
}

.pp-section .pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 880px) {
  .pp-section .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.pp-section .plan {
  position: relative;
  background: var(--pp-card);
  border: 1px solid var(--pp-line);
  border-radius: var(--r-lg);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pp-section .plan:hover {
  transform: translateY(-2px);
  border-color: rgba(234,179,8,.32);
}
.pp-section .plan--featured {
  border: 2px solid var(--pp-accent);
  padding: 23px 21px 21px;
  box-shadow: var(--shadow-featured);
}
.pp-section .plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #eab308, #ef4444);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(234,179,8,.55);
}

.pp-section .plan__head {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--pp-line);
}
.pp-section .plan__duration {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  color: var(--pp-ink-soft);
  margin: 4px 0 6px;
}
.pp-section .plan__price {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  font-family: var(--font-head);
  color: var(--pp-ink);
  line-height: 1;
  margin: 0;
  gap: 1px;
}
.pp-section .plan__price-curr { font-size: 20px; font-weight: 700; margin-top: 6px; align-self: flex-start; color: var(--pp-accent); }
.pp-section .plan__price-int { font-size: 46px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.pp-section .plan__price-frac { font-size: 20px; font-weight: 700; align-self: flex-end; margin-bottom: 4px; }

.pp-section .plan__subtitle {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pp-muted);
  margin: 10px 0 2px;
  text-align: center;
}
.pp-section .plan__permonth {
  color: var(--pp-accent-strong);
  font-weight: 600;
  font-size: 13px;
  margin-top: 6px;
  text-align: center;
}
.pp-section .plan__tag {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(90deg, #eab308, #ef4444);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.pp-section .plan__devices { text-align: center; margin: 14px 0 6px; }
.pp-section .plan__devices-label {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pp-muted);
  margin: 0 0 8px;
}
.pp-section .plan__counter { display: inline-flex; align-items: center; gap: 14px; }
.pp-section .plan__step {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--pp-line-strong);
  color: var(--pp-ink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  transition: border-color .15s ease, color .15s ease, background .15s ease, transform .1s ease;
}
.pp-section .plan__step:hover:not(:disabled) {
  border-color: var(--pp-accent);
  color: var(--pp-accent-strong);
  background: var(--pp-accent-soft);
}
.pp-section .plan__step:active:not(:disabled) { transform: scale(0.92); }
.pp-section .plan__step:disabled { opacity: 0.35; cursor: not-allowed; }
.pp-section .plan__count {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--pp-accent-strong);
  min-width: 18px;
  text-align: center;
  line-height: 1;
}

.pp-section .plan__items {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pp-section .plan__item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 22px;
}
.pp-section .plan__check {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pp-check-bg);
  color: var(--pp-check-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-section .plan__check svg { width: 11px; height: 11px; }
.pp-section .plan__text { color: var(--pp-ink-soft); font-size: 13.5px; font-weight: 500; }

.pp-section .plan__item--highlight .plan__check {
  background: var(--pp-accent);
  color: #0a0a0a;
  box-shadow: 0 0 0 3px rgba(234,179,8,.18);
}
.pp-section .plan__item--highlight .plan__text { color: var(--pp-accent-strong); font-weight: 700; }

.pp-section .plan__logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 0 1 auto;
  /* The brand wordmarks (Disney+, Prime, Apple TV+, Showtime, OCS) use their
     official dark colors and disappear on the dark plan card. Sit them on a
     light "chip" — their intended surface — so every logo is clearly visible. */
  background: #eef1f7;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 8px;
  padding: 5px 9px;
}
.pp-section .plan__logo { display: inline-flex; align-items: center; height: 15px; flex: 0 0 auto; }
.pp-section .plan__logo svg { height: 100%; width: auto; display: block; }

.pp-section .plan__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--pp-accent);
  color: #0a0a0a;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 16px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}
.pp-section .plan__cta:hover {
  background: var(--pp-accent-strong);
  box-shadow: 0 10px 22px -10px rgba(234,179,8,.5);
}
.pp-section .plan__cta:active { transform: scale(0.98); }

/* =========================================================
   Payment Trust Badges — gold-themed
   ========================================================= */
.ptb {
  --ptb-card: #1a1a1a;
  --ptb-border: rgba(255,255,255,.10);
  --ptb-accent: #eab308;
  --ptb-accent-glow: rgba(234,179,8,.45);
  --ptb-ink: #f3f4f6;
  --ptb-ink-muted: #9aa0ab;
  --ptb-cell-h: 40px;
  --ptb-cell-radius: 8px;
  --ptb-gap: 8px;
  --ptb-cols: 8;
  --ptb-max-w: 720px;
  --ptb-font: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  font-family: var(--ptb-font);
  color: var(--ptb-ink);
  max-width: var(--ptb-max-w);
  margin: 32px auto 0;
  text-align: center;
}
.ptb__title {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ptb-ink-muted);
}
.ptb .pay {
  display: grid;
  grid-template-columns: repeat(var(--ptb-cols), 1fr);
  gap: var(--ptb-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}
.ptb .pay__badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--ptb-cell-h);
  padding: 0;
  background: var(--ptb-card);
  border: 1px solid var(--ptb-border);
  border-radius: var(--ptb-cell-radius);
  overflow: hidden;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.ptb .pay__badge:hover {
  border-color: var(--ptb-accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -4px var(--ptb-accent-glow);
}
.ptb .pay__badge svg { width: 100%; height: 100%; display: block; }
.ptb .pay__note {
  margin: 14px 0 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ptb-ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ptb .pay__note::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ptb-accent);
  box-shadow: 0 0 8px var(--ptb-accent-glow);
}
@media (max-width: 720px) {
  .ptb { --ptb-cols: 4; --ptb-max-w: 380px; }
}
@media (max-width: 380px) {
  .ptb { --ptb-cols: 3; }
}
