.pr-plans-page.content-area {
  margin: 0;
  padding: 0;
}

.pr-plans {
  --pr-coral: #ff5e73;
  --pr-coral-dark: #e83f5b;
  --pr-coral-soft: #fff0f3;
  --pr-ink: #17192b;
  --pr-muted: #6f7388;
  --pr-canvas: #f5f6fa;
  --pr-paper: #ffffff;
  --pr-line: #e7e8ef;
  --pr-shadow: 0 20px 60px rgba(23, 25, 43, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(48px, 7vw, 88px) 24px clamp(42px, 6vw, 72px);
  color: var(--pr-ink);
  background: var(--pr-canvas);
  font: inherit;
}

.pr-plans,
.pr-plans * {
  box-sizing: border-box;
}

.pr-plans__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.pr-plans__header {
  max-width: 820px;
  margin-bottom: 32px;
}

.pr-plans__title {
  max-width: 760px;
  margin: 0;
  color: var(--pr-ink);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.pr-plans__lead {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--pr-muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
}

.pr-plans__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pr-plans__facts li {
  position: relative;
  padding: 8px 12px 8px 30px;
  border: 1px solid var(--pr-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #484c61;
  font-size: 13px;
}

.pr-plans__facts li::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  color: var(--pr-coral-dark);
  background: var(--pr-coral-soft);
  content: "✓";
  font-size: 9px;
  font-weight: 900;
  line-height: 13px;
  text-align: center;
  transform: translateY(-50%);
}

.pr-plans__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  padding-top: 12px;
}

.pr-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 310px;
  flex-direction: column;
  padding: 26px 20px 20px;
  border: 1px solid var(--pr-line);
  border-radius: 20px;
  background: var(--pr-paper);
  box-shadow: 0 10px 30px rgba(23, 25, 43, 0.04);
}

.pr-plan-card--featured {
  border: 2px solid var(--pr-coral);
  box-shadow: 0 18px 42px rgba(255, 94, 115, 0.18);
  transform: translateY(-10px);
}

.pr-plan-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--pr-coral);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.pr-plan-card__title {
  margin: 0 0 16px;
  color: var(--pr-ink);
  font-size: 21px;
  line-height: 1.25;
}

.pr-plan-card__price {
  margin: 0;
  color: var(--pr-ink);
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.045em;
}

.pr-plan-card__price s {
  display: block;
  margin-bottom: 4px;
  color: var(--pr-muted);
  font-size: 0.55em;
  font-weight: 700;
}

.pr-plan-card__price .pr-plan-free-label {
  color: #1f8f2a;
}

.pr-plan-card__period {
  min-height: 42px;
  margin: 8px 0 0;
  color: var(--pr-muted);
  font-size: 13px;
  line-height: 1.45;
}

.pr-plan-card__saving {
  align-self: flex-start;
  margin: 8px 0 0;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--pr-coral-dark);
  background: var(--pr-coral-soft);
  font-size: 12px;
  font-weight: 800;
}

.pr-plan-card__benefit {
  margin: 16px 0 20px;
  color: #484c61;
  font-size: 14px;
  line-height: 1.5;
}

.pr-plan-card__button {
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 11px 12px;
  border: 0;
  border-radius: 11px;
  color: var(--pr-ink);
  background: #f0f1f5;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pr-plan-card--featured .pr-plan-card__button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--pr-coral), var(--pr-coral-dark));
  box-shadow: 0 10px 24px rgba(232, 63, 91, 0.24);
}

.pr-plan-card__button:hover {
  transform: translateY(-1px);
}

.pr-plan-card__button:focus-visible,
.pr-plans__legal a:focus-visible {
  outline: 3px solid rgba(124, 103, 255, 0.55);
  outline-offset: 3px;
}

.pr-plan-card form {
  margin: 0;
  display: flex;
}

.pr-plans__legal {
  max-width: 880px;
  margin: 28px auto 0;
  color: #85889a;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.pr-plans__legal a {
  color: var(--pr-coral-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Legal note printed by Prompt_Radar_Checkout_Legal_Note */
.pr-plans .pr-checkout-plans-legal-note {
  max-width: 880px;
  margin: 28px auto 0;
  color: #85889a;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.pr-plans .pr-checkout-plans-legal-note small {
  font-size: inherit;
}

.pr-plans .pr-checkout-plans-legal-note a {
  color: var(--pr-coral-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Notices (next scheduled / continue after login) */
.pr-plans__notice {
  max-width: 820px;
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.pr-plans__notice p {
  margin: 0 0 8px;
}

.pr-plans__notice p:last-child {
  margin-bottom: 0;
}

.pr-plan-next-blocked-notice {
  border: 1px solid #c9e2f3;
  background: #f0f8ff;
  color: #2b4a5e;
}

.pr-plan-selected-note {
  border: 1px dashed var(--pr-coral);
  background: var(--pr-coral-soft);
}

.pr-plan-selected-note .pr-plan-card__button,
.pr-plan-selected-note button {
  width: auto;
  margin-top: 12px;
  padding: 11px 22px;
  border: 0;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--pr-coral), var(--pr-coral-dark));
  box-shadow: 0 10px 24px rgba(232, 63, 91, 0.24);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.pr-plans__radar {
  position: absolute;
  top: -190px;
  right: -120px;
  width: 520px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 42px,
    rgba(255, 94, 115, 0.16) 43px 44px
  );
  opacity: 0.7;
  pointer-events: none;
}

.pr-plans__radar::before,
.pr-plans__radar::after {
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(255, 94, 115, 0.17);
  content: "";
  transform: translate(-50%, -50%);
}

.pr-plans__radar::before {
  width: 100%;
  height: 1px;
}

.pr-plans__radar::after {
  width: 1px;
  height: 100%;
}

@media (max-width: 980px) {
  .pr-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .pr-plan-card--featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .pr-plans {
    padding-inline: 18px;
  }

  .pr-plans__header {
    margin-bottom: 26px;
  }

  .pr-plans__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 6px;
  }

  .pr-plan-card {
    min-height: 0;
    padding: 24px 20px 20px;
  }

  .pr-plan-card--featured {
    margin-top: 8px;
  }

  .pr-plan-card__period {
    min-height: 0;
  }

  .pr-plans__facts {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .pr-plans {
    padding: 42px 14px 38px;
  }

  .pr-plans__title {
    font-size: 31px;
  }

  .pr-plans__lead {
    font-size: 15px;
  }

  .pr-plans__facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .pr-plans__facts li {
    border-radius: 12px;
  }

  .pr-plan-card {
    border-radius: 17px;
  }

  .pr-plans__legal {
    margin-top: 22px;
    text-align: left;
  }

  .pr-plans__radar {
    right: -260px;
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pr-plans .pr-plan-card__button {
    transition: none;
  }

  .pr-plans .pr-plan-card__button:hover {
    transform: none;
  }
}
