/* ===========================================================
   PRICING PAGE
   =========================================================== */

/* ============== HERO ============== */
.pr-hero {
  position: relative;
  padding: 140px 0 50px;
  overflow: clip;
  text-align: center;
}
.pr-hero__aurora {
  position: absolute; inset: -20% -10% auto;
  height: 80%;
  background: var(--grad-aurora);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.85;
}
.pr-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}
.pr-hero__inner .eyebrow { margin: 0 auto; }
.pr-hero h1 {
  font-weight: 280;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 22px 0 24px;
}
.pr-hero h2 {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-2);
  font-weight: 400;
  max-width: 620px;
  margin: 0 auto;
}

/* ============== PLANS ============== */
.pr-plans { padding-top: 40px; }
.pr-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.pr-plan {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--line);
  box-shadow: var(--glass-edge);
  border-radius: 22px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
}
.pr-plan--featured {
  background: linear-gradient(160deg, rgba(10,180,250,0.08), var(--surface-card) 60%);
  border-color: rgba(10,180,250,0.45);
  box-shadow: var(--glass-edge), var(--glow-md);
}
.pr-plan__badge {
  position: absolute;
  top: -11px; left: 28px;
  padding: 5px 12px;
  border-radius: 99px;
  background: var(--grad-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pr-plan__head h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.pr-plan__head p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  min-height: 65px;
}
.pr-plan__price {
  margin: 22px 0 22px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pr-plan__price strong {
  display: block;
  font-size: 56px;
  font-weight: 280;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 8px;
}
.pr-plan__price span {
  font-size: 13px;
  color: var(--text-2);
}
.pr-plan__cta { width: 100%; justify-content: center; }
.pr-plan__feats {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pr-plan__feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.45;
}
.pr-plan__feats li i {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(10,180,250,0.18);
  position: relative;
  margin-top: 1px;
}
.pr-plan__feats li i::after {
  content: "";
  position: absolute;
  left: 5px; top: 6px;
  width: 8px; height: 4px;
  border-left: 1.6px solid var(--hilight-light);
  border-bottom: 1.6px solid var(--hilight-light);
  transform: rotate(-45deg);
}

/* ============== CALCULATOR ============== */
.pr-calc__shell {
  background: var(--surface-card);
  border: 1px solid var(--line);
  box-shadow: var(--glass-edge);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}
.pr-calc__field { margin-bottom: 32px; }
.pr-calc__field:last-child { margin-bottom: 0; }
.pr-calc__field label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 600;
}
.pr-calc__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 12px 0 18px;
}
.pr-calc__value span {
  font-size: 28px;
  font-weight: 300;
  color: var(--text-2);
}
.pr-calc__value strong {
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 300;
  letter-spacing: -0.035em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pr-calc__shell input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 99px;
  outline: none;
}
.pr-calc__shell input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  background: var(--grad-blue);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--surface-card), var(--glow-sm);
  transition: transform .15s;
}
.pr-calc__shell input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.1); }
.pr-calc__shell input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: #0AB4FA;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 4px var(--surface-card), var(--glow-sm);
}
.pr-calc__rangelabels {
  display: flex; justify-content: space-between;
  margin-top: 8px;
  color: var(--text-2);
  font-size: 11px;
  letter-spacing: 0.04em;
}
.pr-calc__chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 12px;
}
.pr-calc__chip {
  padding: 10px 16px;
  border-radius: 99px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-2);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.pr-calc__chip:hover { color: var(--text); border-color: var(--line-strong); }
.pr-calc__chip.is-active {
  background: var(--grad-blue);
  color: #fff;
  border-color: transparent;
}
.pr-calc__results {
  background: var(--surface-glass);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.pr-calc__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 18px;
  border-bottom: 1px solid var(--line);
}
.pr-calc__row:last-child { border-bottom: 0; }
.pr-calc__row--save {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(10,180,250,0.10), transparent);
  border-radius: 12px;
}
.pr-calc__provider {
  display: flex; align-items: center; gap: 10px;
}
.pr-calc__provider img {
  width: 24px; height: 24px;
  filter: var(--logo-filter);
}
.pr-calc__provider span {
  font-size: 14px; font-weight: 500; color: var(--text);
}
.pr-calc__provider small {
  font-size: 11px; color: var(--text-2);
  padding: 2px 8px;
  border-radius: 99px;
  background: var(--glass-bg);
  letter-spacing: 0.02em;
}
.pr-calc__provider-mark {
  width: 28px; height: 18px;
  border-radius: 4px;
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.pr-calc__provider-mark--card { background: #1A1F71; }
.pr-calc__provider-mark--paypal { background: #003087; border-radius: 50%; width: 22px; height: 22px; font-size: 13px; font-style: italic; font-weight: 900; }

.pr-calc__amt {
  display: flex; align-items: baseline; gap: 2px;
  font-variant-numeric: tabular-nums;
}
.pr-calc__amt span { font-size: 14px; color: var(--text-2); }
.pr-calc__amt strong { font-size: 22px; font-weight: 500; color: var(--text); letter-spacing: -0.02em; }
.pr-calc__amt--save strong { font-size: 28px; color: var(--hilight-light); font-weight: 600; }
.pr-calc__amt--save small { font-size: 12px; color: var(--text-2); margin-left: 8px; }
.pr-calc__row--us { background: rgba(10,180,250,0.05); border-radius: 12px 12px 0 0; }

/* ============== COMPARE TABLE ============== */
.pr-compare__wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-card);
  box-shadow: var(--glass-edge);
}
.pr-compare__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.pr-compare__table th, .pr-compare__table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.pr-compare__table thead th {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: var(--surface-glass);
}
.pr-compare__table thead th.is-featured {
  background: linear-gradient(180deg, rgba(10,180,250,0.18), rgba(10,180,250,0.05));
  color: var(--hilight-light);
  position: relative;
}
.pr-compare__table tbody td.is-featured {
  background: rgba(10,180,250,0.04);
  font-weight: 500;
}
.pr-compare__table td:first-child {
  color: var(--text-2);
  font-weight: 400;
}
.pr-compare__group td {
  font-size: 11px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2) !important;
  font-weight: 700 !important;
  padding-top: 22px !important;
  padding-bottom: 10px !important;
  background: var(--surface-glass);
  border-bottom: 0 !important;
}
.pr-compare__table tbody tr:last-child td { border-bottom: 0; }

/* ============== FAQ ============== */
.pr-faq__list {
  max-width: 880px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pr-faq__item {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: var(--glass-edge);
}
.pr-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pr-faq__item summary::-webkit-details-marker { display: none; }
.pr-faq__item summary::after {
  content: "";
  width: 12px; height: 12px;
  border-right: 1.8px solid var(--text-2);
  border-bottom: 1.8px solid var(--text-2);
  transform: rotate(45deg);
  transition: transform .2s;
  flex-shrink: 0;
}
.pr-faq__item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.pr-faq__item p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .pr-plans__grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .pr-calc__shell { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
}
@media (max-width: 700px) {
  .pr-hero { padding: 110px 0 30px; }
  .pr-compare__table th, .pr-compare__table td { padding: 12px 16px; font-size: 13px; }
}
