/* Vistorio Pricing & Implementation — page-specific (pr-) */

.pr-hero-title {
  margin: 0 0 1rem;
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--ink);
}

.pr-hero-tagline {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: var(--red);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.pr-hero-subnote {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 30rem;
  line-height: 1.5;
}

.pr-band--calm {
  background: var(--page-muted);
}

.pr-band--dark {
  background: var(--ink);
  color: #fff;
}

.pr-band--dark .hp-eyebrow { color: rgba(255, 255, 255, 0.5); }
.pr-band--dark .hp-h2 { color: #fff; }
.pr-band--dark .hp-lede { color: rgba(255, 255, 255, 0.65); }

/* Hero editions orbit */
.pr-orbit {
  position: relative;
  margin: 0 auto;
  max-width: 420px;
  aspect-ratio: 1;
}

.pr-orbit__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42%;
  padding: 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow-lg), 0 0 0 3px rgba(177, 18, 38, 0.2);
  z-index: 2;
}

.pr-orbit__hub strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
}

.pr-orbit__hub span {
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.2rem;
  display: block;
}

.pr-orbit__edition {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: hp-float-card 6s ease-in-out infinite;
}

.pr-orbit__edition--core { top: 10%; left: 50%; animation-delay: 0s; }
.pr-orbit__edition--pro { top: 50%; left: 92%; animation-delay: -1.5s; }
.pr-orbit__edition--ent { top: 90%; left: 50%; animation-delay: -3s; }
.pr-orbit__edition--ult { top: 50%; left: 8%; animation-delay: -4.5s; }

.pr-orbit__spokes {
  position: absolute;
  inset: 12%;
  z-index: 0;
}

.pr-orbit__spokes svg { width: 100%; height: 100%; }

/* Edition cards */
.pr-editions {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .pr-editions { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .pr-editions { grid-template-columns: repeat(4, 1fr); }
}

.pr-edition {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.pr-edition:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 18, 38, 0.25);
  box-shadow: var(--shadow-md);
}

.pr-edition--featured {
  border-color: var(--red);
  box-shadow: 0 0 0 1px rgba(177, 18, 38, 0.15), var(--shadow-md);
}

.pr-edition__tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.pr-edition h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pr-edition__for {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.pr-edition > p {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}

.pr-edition__outcomes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.pr-edition__outcomes li {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  padding-left: 1rem;
  position: relative;
}

.pr-edition__outcomes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

.pr-edition__modules {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.pr-edition__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1rem;
}

.pr-edition__cta {
  margin-top: auto;
}

/* Comparison table */
.pr-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.pr-compare {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.pr-compare th,
.pr-compare td {
  padding: 0.75rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.pr-compare th:first-child,
.pr-compare td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--ink);
  position: sticky;
  left: 0;
  background: var(--surface);
  z-index: 1;
}

.pr-compare thead th {
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  border-bottom: none;
}

.pr-compare thead th:first-child {
  background: var(--ink);
  border-radius: 0;
}

.pr-compare tbody tr:hover td {
  background: rgba(177, 18, 38, 0.03);
}

.pr-compare tbody tr:hover td:first-child {
  background: rgba(177, 18, 38, 0.03);
}

.pr-yes {
  color: var(--success);
  font-weight: 800;
}

.pr-adv {
  color: var(--red);
  font-weight: 700;
  font-size: 0.75rem;
}

.pr-no {
  color: #94a3b8;
}

/* Implementation includes */
.pr-includes {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  margin-bottom: 1.5rem;
}

.pr-include {
  padding: 1.15rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
}

.pr-include__icon {
  font-size: 1.35rem;
  margin-bottom: 0.45rem;
}

.pr-include strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.pr-highlight {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 800;
}

/* Timeline */
.pr-timeline {
  display: grid;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.pr-timeline-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding: 0 0 1.5rem 0;
  position: relative;
  opacity: 0.45;
  transition: opacity 0.4s var(--ease);
}

.pr-timeline-step.is-visible { opacity: 1; }

.pr-timeline-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.2rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.pr-timeline-step.is-visible:not(:last-child)::before {
  background: linear-gradient(180deg, var(--red), var(--line));
}

.pr-timeline-step__dot {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--page);
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  z-index: 1;
}

.pr-timeline-step.is-visible .pr-timeline-step__dot {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pr-timeline-step strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pr-timeline-step p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ROI calculator */
.pr-roi {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .pr-roi { grid-template-columns: 1fr 1fr; }
}

.pr-roi-form {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.pr-roi-form h3 {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 800;
}

.pr-roi-field {
  margin-bottom: 1rem;
}

.pr-roi-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.pr-roi-field input,
.pr-roi-field select {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.85rem;
}

.pr-roi-field input[type="range"] {
  padding: 0;
  accent-color: var(--red);
}

.pr-roi-range-val {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
  margin-top: 0.25rem;
}

.pr-roi-results {
  padding: 1.5rem;
  background: var(--ink);
  border-radius: 20px;
  color: #fff;
}

.pr-roi-results h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
}

.pr-roi-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.pr-roi-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pr-roi-metric:last-child { border-bottom: none; }

.pr-roi-metric label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.pr-roi-metric b {
  font-size: 1rem;
  font-weight: 800;
  color: var(--success);
}

/* Benefits, support */
.pr-benefits,
.pr-support {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
}

.pr-benefit,
.pr-support-card {
  padding: 1.25rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.pr-benefit:hover,
.pr-support-card:hover {
  transform: translateY(-3px);
  border-color: rgba(177, 18, 38, 0.25);
}

.pr-benefit__icon,
.pr-support-card__icon {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.pr-benefit strong,
.pr-support-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.35;
}

.pr-support-card p {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Tailored CTA block */
.pr-tailored {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

.pr-tailored-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.25rem 0 1.5rem;
  list-style: none;
  padding: 0;
}

.pr-tailored-list li {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* Final CTA */
.pr-final {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--ink);
  text-align: center;
}

.pr-final .hp-h2 { color: #fff; }
.pr-final .hp-lede { color: rgba(255, 255, 255, 0.65); }

.pr-final .mk-cta-row {
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 600px) {
  .pr-final .mk-cta-row a {
    width: 100%;
    text-align: center;
  }
}
