:root {
  --pn-bg: #f5f8ff;
  --pn-surface: #ffffff;
  --pn-ink: #0f172a;
  --pn-muted: #52617a;
  --pn-soft: #eef4ff;
  --pn-line: #dbe5f5;
  --pn-blue: #2458ff;
  --pn-blue-dark: #173ec0;
  --pn-teal: #00a6a6;
  --pn-green: #12a160;
  --pn-amber: #d99021;
  --pn-shadow: 0 22px 56px rgba(31, 66, 154, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.pn-page {
  margin: 0;
  color: var(--pn-ink);
  background: var(--pn-bg);
  font-family: Manrope, Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.pn-page a {
  color: inherit;
  text-decoration: none;
}

body.pn-page img {
  display: block;
  max-width: 100%;
}

.pn-container {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
}

.pn-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(calc(100% - 28px), 1180px);
  min-height: 66px;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(219, 229, 245, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 16px 40px rgba(31, 66, 154, .12);
  backdrop-filter: blur(18px);
}

.pn-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.pn-brand img {
  width: 106px;
  height: auto;
}

.pn-brand span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding-left: 12px;
  border-left: 1px solid var(--pn-line);
  color: var(--pn-muted);
  font-size: .88rem;
  white-space: nowrap;
}

.pn-nav,
.pn-actions,
.pn-lang {
  display: flex;
  align-items: center;
}

.pn-nav {
  gap: 18px;
}

.pn-nav a,
.pn-login {
  color: var(--pn-muted);
  font-size: .92rem;
  font-weight: 800;
  white-space: nowrap;
}

.pn-nav a:hover,
.pn-login:hover {
  color: var(--pn-blue);
}

.pn-actions {
  gap: 10px;
}

.pn-lang {
  gap: 2px;
  padding: 4px;
  border: 1px solid var(--pn-line);
  border-radius: 999px;
  background: #fff;
}

.pn-lang a {
  display: inline-flex;
  min-width: 36px;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--pn-muted);
  font-size: .78rem;
  font-weight: 800;
}

.pn-lang a.active {
  color: #fff;
  background: var(--pn-blue);
}

.pn-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.pn-button:hover {
  transform: translateY(-1px);
}

.pn-button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pn-blue), #4a79ff);
  box-shadow: 0 16px 34px rgba(36, 88, 255, .26);
}

.pn-button-secondary {
  color: var(--pn-ink);
  background: rgba(255, 255, 255, .92);
  border-color: var(--pn-line);
}

.pn-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  padding: 154px 0 74px;
  background:
    linear-gradient(180deg, rgba(245, 248, 255, .72) 0%, rgba(245, 248, 255, .96) 82%),
    linear-gradient(135deg, #ffffff 0%, #eef4ff 46%, #e7fbf7 100%);
}

.pn-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--pn-line);
  content: "";
}

.pn-hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.pn-grid-layer {
  position: absolute;
  inset: 0;
  opacity: .6;
  background-image:
    linear-gradient(rgba(36, 88, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 88, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 100%);
}

.pn-flow-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--pn-blue), var(--pn-teal), transparent);
  opacity: .7;
}

.line-a {
  top: 35%;
  right: 4%;
  width: 58%;
  transform: rotate(-7deg);
}

.line-b {
  right: 8%;
  bottom: 27%;
  width: 52%;
  transform: rotate(8deg);
}

.pn-scene-node {
  position: absolute;
  display: grid;
  width: 146px;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(219, 229, 245, .92);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--pn-shadow);
}

.pn-scene-node span {
  color: var(--pn-ink);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.node-1 {
  top: 24%;
  right: 42%;
}

.node-2 {
  top: 18%;
  right: 18%;
}

.node-3 {
  top: 43%;
  right: 27%;
  width: 190px;
}

.node-4 {
  right: 9%;
  bottom: 25%;
}

.node-5 {
  right: 38%;
  bottom: 16%;
}

.pn-signal {
  position: absolute;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--pn-ink);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .18);
  font-size: .8rem;
  font-weight: 800;
}

.signal-a {
  top: 34%;
  right: 34%;
  background: var(--pn-green);
}

.signal-b {
  right: 16%;
  bottom: 39%;
  background: var(--pn-amber);
}

.signal-c {
  right: 50%;
  bottom: 30%;
  background: var(--pn-blue-dark);
}

.pn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.pn-eyebrow,
.pn-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(36, 88, 255, .18);
  border-radius: 999px;
  color: var(--pn-blue);
  background: rgba(255, 255, 255, .88);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pn-hero h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 800;
  line-height: .95;
  letter-spacing: 0;
}

.pn-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--pn-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.68;
}

.pn-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pn-value-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 740px;
  margin-top: 34px;
}

.pn-value-line span,
.pn-tags span,
.pn-trust-grid span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--pn-line);
  border-radius: 999px;
  color: var(--pn-ink);
  background: rgba(255, 255, 255, .86);
  font-size: .78rem;
  font-weight: 800;
}

.pn-section {
  padding: 88px 0;
  scroll-margin-top: 96px;
}

.pn-two,
.pn-econ-grid,
.pn-dash-grid,
.pn-proof-grid,
.pn-free-grid,
.pn-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 46px;
  align-items: center;
}

.pn-section h2 {
  max-width: 800px;
  margin: 14px 0 16px;
  color: var(--pn-ink);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.pn-section h3 {
  margin: 0 0 10px;
  color: var(--pn-ink);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.pn-lead,
.pn-section-head p,
.pn-card p,
.pn-offer p,
.pn-role p,
.pn-tracking p,
.pn-audience-band p,
.pn-proof p,
.pn-free p,
.pn-form p {
  margin: 0;
  color: var(--pn-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.pn-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.pn-section-head.compact {
  margin-bottom: 26px;
}

.pn-chain {
  display: grid;
  gap: 12px;
}

.pn-chain-step {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(31, 66, 154, .08);
}

.pn-chain-num {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--pn-ink);
  font-size: .8rem;
  font-weight: 800;
}

.pn-chain-step strong {
  font-size: 1.1rem;
}

.pn-lifecycle {
  display: grid;
  grid-template-columns: repeat(7, minmax(126px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: var(--pn-line);
}

.pn-life-step {
  min-height: 160px;
  padding: 18px;
  background: #fff;
}

.pn-life-step span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--pn-blue);
  font-size: .78rem;
  font-weight: 800;
}

.pn-life-step strong,
.pn-life-step small {
  display: block;
}

.pn-life-step strong {
  font-size: 1rem;
}

.pn-life-step small {
  margin-top: 8px;
  color: var(--pn-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.pn-economics {
  color: #fff;
  background: #111827;
}

.pn-economics h2,
.pn-economics h3,
.pn-economics .pn-lead,
.pn-economics .pn-kicker {
  color: #fff;
}

.pn-economics .pn-lead,
.pn-economics .pn-calc p,
.pn-economics .pn-disclaimer {
  color: rgba(255, 255, 255, .72);
}

.pn-economics .pn-kicker {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}

.pn-equation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.pn-equation-part {
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.pn-equation-part span {
  display: block;
  height: 24px;
  color: var(--pn-teal);
  font-size: 1.2rem;
  font-weight: 800;
}

.pn-equation-part strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: .9rem;
  line-height: 1.35;
}

.pn-calc {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--pn-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.pn-calc-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.pn-calc h3 {
  margin-bottom: 6px;
  color: var(--pn-ink);
}

.pn-calc p {
  color: var(--pn-muted);
  font-size: .92rem;
}

.pn-calc output {
  display: grid;
  min-width: 72px;
  height: 56px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--pn-blue);
  font-size: 1.4rem;
  font-weight: 800;
}

.pn-calc label {
  display: block;
  margin: 22px 0 10px;
  color: var(--pn-ink);
  font-size: .88rem;
  font-weight: 800;
}

.pn-range {
  width: 100%;
  accent-color: var(--pn-blue);
}

.pn-calc-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.pn-calc-results div {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: var(--pn-soft);
}

.pn-calc-results .wide {
  grid-column: 1 / -1;
  min-height: 74px;
  background: #e9fbf7;
}

.pn-calc-results span {
  display: block;
  color: var(--pn-muted);
  font-size: .78rem;
  font-weight: 800;
}

.pn-calc-results strong {
  display: block;
  margin-top: 12px;
  color: var(--pn-ink);
  font-size: 1.45rem;
  line-height: 1;
}

.pn-disclaimer {
  margin-top: 16px;
  font-size: .8rem;
}

.pn-tool-grid,
.pn-role-grid,
.pn-channel-grid,
.pn-trust-grid {
  display: grid;
  gap: 14px;
}

.pn-tool-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pn-card,
.pn-role,
.pn-offer,
.pn-disclosure-box {
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(31, 66, 154, .08);
}

.pn-card,
.pn-role,
.pn-disclosure-box {
  padding: 22px;
}

.pn-card-mark {
  display: block;
  width: 36px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pn-blue), var(--pn-teal));
}

.pn-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.pn-offer {
  min-height: 240px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(36, 88, 255, .09), transparent 55%),
    #fff;
}

.pn-offer-check {
  background:
    linear-gradient(135deg, rgba(0, 166, 166, .12), transparent 55%),
    #fff;
}

.pn-offer-price,
.pn-zero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--pn-ink);
  font-size: 2.5rem;
  font-weight: 800;
}

.pn-roles {
  padding-top: 24px;
}

.pn-role-grid {
  grid-template-columns: repeat(3, 1fr);
}

.pn-role {
  min-height: 186px;
  border-top: 4px solid var(--pn-blue);
}

.pn-role:nth-child(2) {
  border-top-color: var(--pn-teal);
}

.pn-role:nth-child(3) {
  border-top-color: var(--pn-green);
}

.pn-roadmap {
  overflow: hidden;
  background: #fff;
}

.pn-road {
  position: relative;
  min-height: 340px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 248, 255, .6), rgba(255, 255, 255, .96)),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(36, 88, 255, .06) 92px 93px);
}

.pn-road::before {
  position: absolute;
  top: 52%;
  left: 7%;
  width: 86%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pn-blue), var(--pn-teal), var(--pn-green), var(--pn-amber));
  content: "";
}

.pn-road-stop {
  position: absolute;
  display: grid;
  width: 138px;
  min-height: 62px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(31, 66, 154, .12);
}

.pn-road-stop span {
  font-size: .85rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.stop-1 { top: 18%; left: 4%; }
.stop-2 { top: 58%; left: 16%; }
.stop-3 { top: 22%; left: 29%; }
.stop-4 { top: 61%; left: 43%; }
.stop-5 { top: 18%; left: 57%; }
.stop-6 { top: 58%; left: 70%; }
.stop-7 { top: 24%; right: 4%; }

.pn-dashboard {
  color: #fff;
  background: #0f172a;
}

.pn-dashboard h2,
.pn-dashboard h3,
.pn-dashboard .pn-kicker {
  color: #fff;
}

.pn-dashboard .pn-lead,
.pn-tracking p {
  color: rgba(255, 255, 255, .72);
}

.pn-dashboard .pn-kicker {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
}

.pn-tracking {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.pn-track-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
}

.pn-track-line span {
  min-height: 46px;
  padding: 14px 10px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}

.pn-dashboard-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: #fff;
  color: var(--pn-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.pn-preview-label {
  margin-bottom: 14px;
  color: var(--pn-muted);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pn-dash-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: var(--pn-soft);
}

.pn-dash-header span,
.pn-dash-metrics span,
.pn-dash-list span {
  display: block;
  color: var(--pn-muted);
  font-size: .78rem;
  font-weight: 800;
}

.pn-dash-header strong {
  display: block;
  margin-top: 8px;
  word-break: break-word;
  font-size: .9rem;
}

.pn-dash-header button {
  align-self: flex-start;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--pn-blue);
  font: inherit;
  font-size: .8rem;
  font-weight: 800;
}

.pn-dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.pn-dash-metrics div {
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
}

.pn-dash-metrics strong {
  display: block;
  margin-top: 16px;
  font-size: 1.6rem;
}

.pn-dash-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.pn-dash-list div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
}

.pn-dash-list strong {
  color: var(--pn-green);
  font-size: .82rem;
}

.pn-channel-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pn-audience-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 28px;
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
}

.pn-audience-band h2 {
  margin-top: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.pn-tags,
.pn-trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pn-proof {
  background: #fff;
}

.pn-proof-grid {
  align-items: stretch;
}

.pn-proof-grid article {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: var(--pn-bg);
}

.pn-proof-grid h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.pn-free-grid {
  align-items: stretch;
}

.pn-free-grid > div:first-child,
.pn-disclosure-box {
  padding: 30px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
}

.pn-free h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.pn-zero {
  background: var(--pn-green);
}

.pn-final {
  color: #fff;
  background: #111827;
}

.pn-final h2,
.pn-final .pn-kicker {
  color: #fff;
}

.pn-final .pn-lead {
  color: rgba(255, 255, 255, .74);
}

.pn-existing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}

.pn-existing a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pn-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: #fff;
  color: var(--pn-ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.pn-form label {
  display: grid;
  gap: 7px;
  color: var(--pn-ink);
  font-size: .84rem;
  font-weight: 800;
}

.pn-form input,
.pn-form textarea {
  width: 100%;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
  color: var(--pn-ink);
  font: inherit;
  font-size: 1rem;
}

.pn-form input {
  min-height: 50px;
  padding: 0 14px;
}

.pn-form textarea {
  min-height: 112px;
  padding: 12px 14px;
  resize: vertical;
}

.pn-form input:focus,
.pn-form textarea:focus {
  outline: 3px solid rgba(36, 88, 255, .16);
  border-color: var(--pn-blue);
}

.pn-form button {
  width: 100%;
  margin-top: 4px;
}

.pn-form p {
  font-size: .82rem;
}

@media (prefers-reduced-motion: no-preference) {
  .pn-scene-node,
  .pn-signal {
    animation: pnFloat 8s ease-in-out infinite;
  }

  .node-2,
  .signal-b {
    animation-delay: -2s;
  }

  .node-4,
  .signal-c {
    animation-delay: -4s;
  }

  @keyframes pnFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
}

@media (max-width: 1060px) {
  .pn-nav {
    display: none;
  }

  .pn-hero {
    min-height: auto;
  }

  .pn-hero h1 {
    max-width: 680px;
  }

  .pn-scene-node,
  .pn-signal {
    opacity: .55;
  }

  .pn-two,
  .pn-econ-grid,
  .pn-dash-grid,
  .pn-proof-grid,
  .pn-free-grid,
  .pn-final-grid,
  .pn-audience-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .pn-tool-grid,
  .pn-channel-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pn-lifecycle {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}

@media (max-width: 760px) {
  .pn-header {
    top: 8px;
    width: min(calc(100% - 16px), 1180px);
    min-height: 58px;
    padding: 8px;
    border-radius: 14px;
  }

  .pn-brand img {
    width: 92px;
  }

  .pn-brand span,
  .pn-login,
  .pn-header > .pn-actions > .pn-button {
    display: none;
  }

  .pn-hero {
    padding-top: 118px;
    padding-bottom: 52px;
  }

  .pn-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }

  .pn-hero p {
    font-size: 1rem;
  }

  .pn-hero-scene {
    opacity: .52;
  }

  .pn-scene-node {
    width: 120px;
    min-height: 60px;
  }

  .node-1 { top: 12%; right: 52%; }
  .node-2 { top: 16%; right: 5%; }
  .node-3 { top: 36%; right: 10%; width: 150px; }
  .node-4 { right: 2%; bottom: 18%; }
  .node-5 { right: 48%; bottom: 12%; }

  .pn-section {
    padding: 62px 0;
  }

  .pn-section h2 {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

  .pn-lifecycle,
  .pn-tool-grid,
  .pn-role-grid,
  .pn-channel-grid,
  .pn-offers,
  .pn-equation,
  .pn-calc-results,
  .pn-dash-metrics,
  .pn-track-line {
    grid-template-columns: 1fr;
  }

  .pn-life-step {
    min-height: 128px;
  }

  .pn-life-step span {
    margin-bottom: 24px;
  }

  .pn-road {
    min-height: 540px;
  }

  .pn-road::before {
    top: 7%;
    left: 50%;
    width: 6px;
    height: 86%;
    transform: translateX(-50%);
  }

  .pn-road-stop {
    left: 50% !important;
    right: auto !important;
    width: min(220px, calc(100% - 42px));
    transform: translateX(-50%);
  }

  .stop-1 { top: 4%; }
  .stop-2 { top: 18%; }
  .stop-3 { top: 32%; }
  .stop-4 { top: 46%; }
  .stop-5 { top: 60%; }
  .stop-6 { top: 74%; }
  .stop-7 { top: 88%; }
}

@media (max-width: 460px) {
  .pn-hero-buttons,
  .pn-button {
    width: 100%;
  }

  .pn-value-line span {
    width: 100%;
    justify-content: center;
  }

  .pn-dash-header,
  .pn-dash-list div {
    flex-direction: column;
  }
}

/* Hero visual implementation pass: SVG ecosystem system map. */
.pn-hero-system {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 68% 42%, rgba(0, 166, 166, .20), transparent 34%),
    radial-gradient(circle at 24% 70%, rgba(36, 88, 255, .22), transparent 30%),
    #0f172a;
  color: #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .22);
}

.pn-system-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 4px 14px;
}

.pn-system-caption span,
.pn-system-caption strong {
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pn-system-caption span {
  color: rgba(255, 255, 255, .58);
}

.pn-system-caption strong {
  max-width: 210px;
  color: #8fe9dd;
  text-align: right;
}

.pn-system-svg {
  display: block;
  width: 100%;
  height: auto;
}

.pn-network-cluster,
.pn-intro-node,
.pn-client-bridge,
.pn-ecosystem-core,
.pn-value-node {
  transform-box: fill-box;
  transform-origin: center;
}

.pn-service-node {
  color: var(--pn-blue);
}

.pn-service-node .pn-service-orb {
  fill: rgba(255, 255, 255, .97);
  stroke: rgba(143, 233, 221, .78);
  stroke-width: 1.6;
}

.pn-service-node use {
  color: var(--pn-blue);
}

.pn-service-label {
  fill: rgba(255, 255, 255, .97);
  stroke: rgba(219, 229, 245, .96);
  stroke-width: 1.2;
}

.pn-service-node text {
  fill: #0f172a;
  font-size: 9.5px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
}

.pn-mobile-system {
  display: none;
}

.pn-hero-photo-layer {
  display: none;
}

@media (prefers-reduced-motion: no-preference) {
  .pn-flow {
    stroke-dasharray: 18 16;
    animation: pnSignalMove 8s ease-in-out infinite;
  }

  .pn-flow-return {
    animation-delay: -2.6s;
  }

  .pn-ecosystem-core {
    animation: pnSystemBreathe 7s ease-in-out infinite;
  }

  .pn-service-node:nth-child(2n) {
    animation: pnServicePulse 7s ease-in-out infinite;
  }

  .pn-service-node:nth-child(2n+1) {
    animation: pnServicePulse 7s ease-in-out infinite;
    animation-delay: -2s;
  }

  .pn-value-node {
    animation: pnValueLift 8s ease-in-out infinite;
  }

  @keyframes pnSignalMove {
    0%, 100% { stroke-dashoffset: 0; opacity: .84; }
    50% { stroke-dashoffset: -42; opacity: 1; }
  }

  @keyframes pnSystemBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.018); }
  }

  @keyframes pnServicePulse {
    0%, 100% { opacity: .82; }
    50% { opacity: 1; }
  }

  @keyframes pnValueLift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
  }
}

@media (max-width: 760px) {
  .pn-hero-system {
    padding: 16px;
  }

  .pn-system-caption {
    display: grid;
    gap: 6px;
  }

  .pn-system-caption strong {
    max-width: none;
    text-align: left;
  }

  .pn-system-svg {
    display: none;
  }

  .pn-mobile-system {
    display: grid;
    gap: 10px;
  }

  .pn-mobile-step {
    position: relative;
    display: grid;
    gap: 6px;
    min-height: 90px;
    align-content: center;
    padding: 18px 18px 18px 72px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
  }

  .pn-mobile-step::before {
    position: absolute;
    top: 50%;
    left: 18px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: rgba(143, 233, 221, .16);
    border: 1px solid rgba(143, 233, 221, .54);
    transform: translateY(-50%);
    content: "";
  }

  .pn-mobile-step span {
    color: #8fe9dd;
    font-size: .75rem;
    font-weight: 800;
  }

  .pn-mobile-step strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.25;
  }

  .pn-mobile-step small {
    color: rgba(255, 255, 255, .62);
    font-size: .82rem;
    line-height: 1.35;
  }

  .pn-mobile-step.ecosystem {
    background: rgba(36, 88, 255, .20);
  }

  .pn-mobile-step.value {
    background: rgba(18, 161, 96, .17);
  }

  .pn-mobile-arrow,
  .pn-mobile-return {
    display: grid;
    min-height: 30px;
    place-items: center;
    color: #8fe9dd;
    font-weight: 800;
  }

  .pn-mobile-return {
    justify-content: start;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 8px;
    background: rgba(18, 161, 96, .12);
    color: #fff;
    text-align: left;
  }
}

/* Product-design pass: stronger system visuals for the key partner sections. */
.pn-hero {
  min-height: 92svh;
  padding: 136px 0 70px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(245,248,255,.98)),
    linear-gradient(90deg, #f5f8ff, #eaf7f7);
}

.pn-hero .pn-grid-layer {
  opacity: .72;
  mask-image: linear-gradient(90deg, #000 0%, #000 100%);
}

.pn-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(560px, 1.14fr);
  gap: 32px;
  align-items: center;
}

.pn-hero-copy {
  max-width: 560px;
}

.pn-ru-page .pn-hero .pn-container {
  width: min(calc(100% - 64px), 1560px);
}

.pn-ru-page .pn-hero-layout {
  grid-template-columns: minmax(520px, .78fr) minmax(780px, 1.22fr);
  gap: 34px;
}

.pn-ru-page .pn-hero-copy {
  max-width: 660px;
}

.pn-ru-page .pn-hero h1 {
  max-width: 660px;
  font-size: clamp(3rem, 3.62vw, 4.28rem);
  line-height: 1.01;
}

.pn-ru-page .pn-hero p {
  max-width: 560px;
}

.pn-ru-page .pn-hero-system {
  overflow: visible;
  margin-top: -26px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-18px) scale(1.04);
  transform-origin: left center;
}

.pn-ru-page .pn-system-caption {
  display: none;
}

.pn-ru-page .pn-system-svg {
  overflow: visible;
  filter:
    drop-shadow(0 28px 42px rgba(31, 66, 154, .12))
    drop-shadow(0 0 28px rgba(0, 166, 166, .18));
}

.pn-ru-page .pn-system-bg {
  fill: transparent;
}

.pn-ru-page .pn-system-grid {
  opacity: 0;
}

.pn-ru-page .pn-service-node,
.pn-ru-page .pn-value-node {
  filter: drop-shadow(0 10px 18px rgba(31, 66, 154, .14));
}

.pn-ru-page .pn-network-cluster,
.pn-ru-page .pn-client-bridge {
  opacity: 0;
}

.pn-ru-page .pn-flow {
  stroke-width: 8;
}

.pn-ru-page .pn-flow-return {
  stroke-width: 9;
}

.pn-ru-page .pn-core-inner {
  fill: url("#pnCoreBlue");
  stroke: rgba(255, 255, 255, .92);
  stroke-width: 2.5;
}

.pn-ru-page .pn-core-bars-blue,
.pn-ru-page .pn-core-bars-teal {
  stroke: #ffffff;
}

.pn-ru-page .pn-core-bars-teal {
  opacity: .72;
}

.pn-ru-page .pn-core-word {
  fill: #ffffff;
  font-size: 31px;
  letter-spacing: 0;
}

.pn-ru-page .pn-value-card {
  fill: rgba(255, 255, 255, .96);
  stroke: rgba(18, 161, 96, .38);
}

.pn-ru-page .pn-value-title {
  fill: var(--pn-ink);
}

.pn-ru-page .pn-value-subtitle {
  fill: #52617a;
}

.pn-ru-page .pn-hero-photo-layer {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.pn-photo-network,
.pn-photo-client {
  position: absolute;
  z-index: 4;
}

.pn-photo-network {
  top: 17.5%;
  left: -1%;
  width: 246px;
  height: 266px;
}

.pn-photo-main,
.pn-client-portrait,
.pn-mini-avatar {
  overflow: hidden;
  border: 4px solid #fff;
  background: #eaf7ff;
  box-shadow: 0 18px 34px rgba(31, 66, 154, .18);
}

.pn-photo-main {
  position: absolute;
  left: 58px;
  top: 54px;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  outline: 2px solid rgba(36, 88, 255, .36);
}

.pn-photo-main img,
.pn-client-portrait img,
.pn-mini-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pn-photo-main img {
  object-position: 50% 24%;
}

.pn-client-portrait img {
  object-position: 50% 20%;
}

.pn-mini-avatar {
  position: absolute;
  width: 46px;
  height: 46px;
  border-width: 3px;
  border-radius: 999px;
}

.pn-mini-avatar.mini-a { top: 0; left: 60px; }
.pn-mini-avatar.mini-b { top: 30px; right: 8px; }
.pn-mini-avatar.mini-c { bottom: 70px; left: 2px; }
.pn-mini-avatar.mini-d { bottom: 58px; right: 0; }

.pn-photo-network::before {
  position: absolute;
  top: 52px;
  left: 56px;
  width: 154px;
  height: 154px;
  border: 2px solid rgba(36, 88, 255, .62);
  border-radius: 999px;
  background: rgba(36, 88, 255, .10);
  content: "";
}

.pn-photo-network::after {
  position: absolute;
  top: 30px;
  left: 124px;
  width: 3px;
  height: 184px;
  background: linear-gradient(180deg, transparent, rgba(36, 88, 255, .30), transparent);
  transform: rotate(54deg);
  content: "";
}

.pn-photo-label,
.pn-client-label {
  position: absolute;
  display: grid;
  justify-items: center;
  border: 1px solid rgba(219, 229, 245, .96);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 28px rgba(31, 66, 154, .14);
}

.pn-photo-label {
  right: 12px;
  bottom: 0;
  min-width: 184px;
  padding: 12px 16px 11px;
  border-radius: 12px;
}

.pn-client-label {
  left: 50%;
  top: 126px;
  min-width: 124px;
  padding: 8px 12px 7px;
  border-radius: 12px;
  transform: translateX(-50%);
}

.pn-photo-label strong,
.pn-client-label strong {
  color: var(--pn-ink);
  font-size: .96rem;
  line-height: 1.1;
}

.pn-photo-label span,
.pn-client-label span {
  color: var(--pn-muted);
  font-size: .62rem;
  font-weight: 800;
  line-height: 1.2;
}

.pn-photo-client {
  top: 27%;
  left: 27%;
  width: 160px;
  height: 196px;
}

.pn-client-portrait {
  position: absolute;
  left: 50%;
  top: 0;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  outline: 5px solid rgba(36, 88, 255, .76);
  transform: translateX(-50%);
}

.pn-hero h1 {
  max-width: 610px;
  font-size: clamp(2.7rem, 4.7vw, 4.65rem);
  line-height: 1;
}

.pn-hero p {
  max-width: 600px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.pn-hero-map {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(15,23,42,.96), rgba(20,34,68,.98)),
    #0f172a;
  color: #fff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .24);
}

.pn-map-top,
.pn-map-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.pn-map-top {
  align-items: flex-start;
}

.pn-map-top span,
.pn-map-bottom span,
.pn-map-node small,
.pn-client-bubble span,
.pn-calc-question span,
.pn-primary-income span,
.pn-annual-range span,
.pn-lifetime-panel > span,
.pn-cumulative span {
  color: rgba(255, 255, 255, .62);
  font-size: .74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pn-map-top strong {
  max-width: 180px;
  text-align: right;
  font-size: .92rem;
}

.pn-map-canvas {
  position: relative;
  z-index: 1;
  height: 480px;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 44px 44px;
}

.pn-map-canvas::before,
.pn-map-canvas::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.pn-map-canvas::before {
  top: 50%;
  left: 9%;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, var(--pn-blue), var(--pn-teal), var(--pn-green));
  transform: translateY(-50%);
}

.pn-map-canvas::after {
  top: 31%;
  right: 18%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: inset 0 0 0 28px rgba(36,88,255,.08);
}

.pn-map-node,
.pn-map-service,
.pn-map-pulse {
  position: absolute;
  z-index: 3;
}

.pn-map-node {
  display: grid;
  gap: 6px;
  width: 128px;
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.pn-map-node strong {
  color: #fff;
  font-size: .92rem;
  line-height: 1.22;
}

.pn-map-node span {
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  line-height: 1.35;
}

.pn-you { top: 38%; left: 6%; }
.pn-intro { top: 19%; left: 30%; }
.pn-client { top: 45%; left: 41%; background: rgba(36,88,255,.22); }
.pn-ecosystem { top: 24%; right: 6%; width: 176px; min-height: 116px; }
.pn-income { right: 7%; bottom: 8%; width: 142px; background: rgba(18,161,96,.22); }

.pn-map-service {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255,255,255,.10);
  font-size: .76rem;
  font-weight: 800;
}

.service-a { top: 17%; right: 40%; }
.service-b { right: 43%; bottom: 24%; }
.service-c { right: 22%; bottom: 24%; }
.service-d { top: 43%; right: 2%; }

.pn-map-pulse {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 999px;
  color: #0f172a;
  background: #fff;
  font-size: .8rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0,0,0,.24);
}

.pulse-a { top: 36%; left: 27%; }
.pulse-b { top: 61%; left: 62%; }
.pulse-c { right: 33%; bottom: 9%; }

.pn-map-bottom {
  margin-top: 14px;
}

.pn-map-bottom div {
  flex: 1;
  min-height: 72px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.pn-map-bottom strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 1.45rem;
}

.pn-economics {
  padding: 58px 0 76px;
  background:
    linear-gradient(180deg, #0f172a, #101a31 58%, #0b1220);
}

.pn-econ-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .82fr);
  gap: 28px;
  align-items: end;
  max-width: 1180px;
  margin-bottom: 26px;
}

.pn-econ-head .pn-kicker {
  grid-column: 1 / -1;
  justify-self: start;
}

.pn-econ-head h2 {
  grid-column: 1;
  max-width: 600px;
  font-size: clamp(2rem, 3.3vw, 3rem);
}

.pn-econ-head .pn-lead {
  grid-column: 2;
  max-width: 560px;
  padding-bottom: 10px;
}

.pn-revenue-studio {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 16px;
  align-items: stretch;
}

.pn-calc-main,
.pn-range-panel,
.pn-lifetime-panel {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
}

.pn-calc-main {
  grid-row: span 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
  gap: 18px;
  align-content: start;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(36,88,255,.28), rgba(0,166,166,.16)),
    rgba(255,255,255,.06);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}

.pn-calc-question h3 {
  max-width: 720px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(1.55rem, 2.65vw, 2.65rem);
  line-height: 1.04;
}

.pn-slider-panel {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
}

.pn-client-bubble {
  display: grid;
  min-height: 124px;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--pn-ink);
}

.pn-client-bubble output {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1;
}

.pn-client-bubble span {
  color: var(--pn-muted);
}

.pn-range {
  height: 36px;
  accent-color: #8fe9dd;
}

.pn-primary-income {
  display: grid;
  grid-row: 1 / span 2;
  grid-column: 2;
  grid-template-columns: 1fr;
  gap: 6px;
  align-items: start;
  align-content: center;
  margin-top: 0;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  color: var(--pn-ink);
}

.pn-primary-income span {
  grid-column: 1 / -1;
  color: var(--pn-muted);
}

.pn-primary-income strong {
  font-size: clamp(3rem, 5.6vw, 4.8rem);
  line-height: .9;
}

.pn-primary-income em {
  align-self: start;
  padding-bottom: 0;
  color: var(--pn-blue);
  font-style: normal;
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 800;
}

.pn-formula-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr auto 1.35fr auto 1.1fr auto 1.25fr;
  gap: 10px;
  align-items: stretch;
  margin-top: 14px;
}

.pn-formula-strip span,
.pn-formula-strip b {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 10px;
  border-radius: 8px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.10);
  font-size: .82rem;
  font-weight: 800;
  text-align: center;
}

.pn-formula-strip b {
  min-width: 38px;
  color: #8fe9dd;
  background: transparent;
  font-size: 1.2rem;
}

.pn-range-panel,
.pn-lifetime-panel {
  padding: 22px;
  background: rgba(255,255,255,.07);
}

.pn-annual-range strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.pn-scenario-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.pn-scenario-list div {
  padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.pn-scenario-list div.active {
  border-color: rgba(143,233,221,.7);
  background: rgba(143,233,221,.12);
}

.pn-scenario-list span {
  display: block;
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pn-scenario-list strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: .98rem;
}

.pn-scenario-list b {
  color: #8fe9dd;
}

.pn-lifetime-panel {
  background:
    linear-gradient(135deg, rgba(18,161,96,.18), rgba(36,88,255,.12)),
    rgba(255,255,255,.07);
}

.pn-year-bars {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.pn-year-bars div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.pn-year-bars span {
  color: rgba(255,255,255,.64);
  font-size: .78rem;
  font-weight: 800;
}

.pn-year-bars strong {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  color: #fff;
}

.pn-cumulative {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  color: var(--pn-ink);
}

.pn-cumulative span {
  color: var(--pn-muted);
}

.pn-cumulative strong {
  display: block;
  margin-top: 8px;
  color: var(--pn-green);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .95;
}

.pn-economics .pn-equation {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2px;
}

.pn-economics .pn-equation div {
  min-height: 86px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}

.pn-economics .pn-equation span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  font-weight: 800;
}

.pn-economics .pn-equation strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 1.2rem;
}

.pn-economics .pn-disclaimer {
  max-width: 880px;
  margin-top: 18px;
  color: rgba(255,255,255,.58);
}

.pn-tools .pn-section-head {
  max-width: 760px;
}

.pn-tools .pn-tool-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 26px;
}

.pn-tools .pn-card {
  min-height: 0;
  padding: 0 0 0 16px;
  border: 0;
  border-left: 3px solid var(--pn-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pn-tools .pn-card-mark {
  display: none;
}

.pn-tools .pn-card h3 {
  color: var(--pn-blue-dark);
}

.pn-offers {
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}

.pn-offer {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(260px, 1fr);
  gap: 22px;
  min-height: 420px;
  padding: clamp(22px, 3vw, 34px);
  align-items: center;
  overflow: hidden;
  border: 0;
  box-shadow: 0 26px 70px rgba(31, 66, 154, .14);
}

.pn-product-formation {
  background:
    linear-gradient(135deg, rgba(36,88,255,.96), rgba(23,62,192,.96)),
    var(--pn-blue);
  color: #fff;
}

.pn-product-checkup {
  background:
    linear-gradient(135deg, #ffffff, #f1fbfb);
  color: var(--pn-ink);
}

.pn-offer h3 {
  color: inherit;
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
}

.pn-offer p {
  color: currentColor;
  opacity: .78;
}

.pn-product-formation .pn-offer-price,
.pn-product-checkup .pn-offer-price {
  width: auto;
  height: auto;
  justify-content: flex-start;
  margin: 0 0 18px;
  border-radius: 0;
  background: transparent;
  color: currentColor;
  font-size: clamp(4.8rem, 10vw, 8.5rem);
  line-height: .82;
}

.pn-product-checkup .pn-offer-price {
  color: var(--pn-teal);
  font-size: clamp(3.5rem, 6vw, 5.6rem);
}

.pn-fee-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: .88rem;
}

.pn-offer-path {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
}

.pn-offer-path span {
  position: relative;
  display: grid;
  min-height: 44px;
  align-items: center;
  padding: 0 14px 0 42px;
  border-radius: 8px;
  background: rgba(255,255,255,.16);
  font-weight: 800;
}

.pn-offer-path span::before {
  position: absolute;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: #fff;
  content: "";
}

.pn-diagnostic-report {
  padding: 16px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(31, 66, 154, .12);
}

.pn-report-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding: 14px;
  border-radius: 8px;
  background: var(--pn-soft);
}

.pn-report-head span,
.pn-report-row span {
  color: var(--pn-muted);
  font-size: .78rem;
  font-weight: 800;
}

.pn-report-head strong {
  color: var(--pn-green);
  font-size: 1.8rem;
}

.pn-report-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 4px;
  border-top: 1px solid var(--pn-line);
}

.pn-report-row strong {
  font-size: .85rem;
}

.pn-report-row.ok strong { color: var(--pn-green); }
.pn-report-row.warn strong { color: var(--pn-amber); }
.pn-report-row.risk strong { color: #dc2626; }
.pn-report-row.plan strong { color: var(--pn-blue); }

.pn-roles {
  padding: 94px 0;
  background:
    linear-gradient(180deg, #0b1220, #111827);
  color: #fff;
}

.pn-asset-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: center;
}

.pn-asset-copy h2 {
  color: #fff;
  font-size: clamp(2.25rem, 4vw, 4rem);
}

.pn-asset-copy p:not(.pn-kicker) {
  max-width: 500px;
  color: rgba(255,255,255,.72);
  line-height: 1.68;
}

.pn-asset-system {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    rgba(255,255,255,.05);
  background-size: 42px 42px;
}

.pn-asset-system::before,
.pn-asset-system::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.pn-asset-system::before {
  top: 35%;
  left: 12%;
  width: 76%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8fe9dd, #ffffff, #12a160);
}

.pn-asset-system::after {
  left: 18%;
  right: 18%;
  bottom: 26%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(270deg, #8fe9dd, rgba(143,233,221,.15));
}

.pn-entry-products {
  position: absolute;
  top: 9%;
  left: 5%;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.pn-entry-products div,
.pn-client-core,
.pn-future-needs span,
.pn-value-return span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
}

.pn-entry-products div {
  width: 190px;
  padding: 16px;
}

.pn-entry-products span {
  display: block;
  color: #8fe9dd;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.pn-entry-products strong,
.pn-client-core span,
.pn-value-return span {
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
}

.pn-client-core {
  position: absolute;
  top: 27%;
  left: 43%;
  z-index: 3;
  display: grid;
  width: 170px;
  min-height: 132px;
  place-items: center;
  padding: 18px;
  background: rgba(36,88,255,.30);
  text-align: center;
}

.pn-client-core strong {
  color: #fff;
  font-size: 2rem;
}

.pn-future-needs {
  position: absolute;
  top: 12%;
  right: 5%;
  z-index: 2;
  display: flex;
  width: 260px;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.pn-future-needs span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 10px;
  color: rgba(255,255,255,.86);
  font-size: .78rem;
  font-weight: 800;
}

.pn-value-return {
  position: absolute;
  right: 8%;
  bottom: 10%;
  left: 8%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.pn-value-return span {
  display: grid;
  min-height: 54px;
  place-items: center;
  padding: 10px;
  text-align: center;
  background: rgba(18,161,96,.18);
}

.pn-roadmap {
  background:
    linear-gradient(180deg, #fff, #f5f8ff);
}

.pn-year-lifecycle {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
}

.pn-year-lifecycle::before {
  display: none;
}

.pn-year-stage {
  position: relative;
  display: grid;
  min-height: 360px;
  padding: 26px;
  border-right: 1px solid var(--pn-line);
  background:
    linear-gradient(180deg, rgba(36,88,255,.05), transparent 46%),
    #fff;
}

.pn-year-stage:last-of-type {
  border-right: 0;
}

.pn-year-top span {
  display: block;
  color: var(--pn-blue);
  font-size: .8rem;
  font-weight: 800;
}

.pn-year-top strong {
  display: block;
  margin-top: 8px;
  color: var(--pn-ink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.pn-year-services {
  display: grid;
  align-content: start;
  gap: 10px;
  margin-top: 28px;
}

.pn-year-services span {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--pn-soft);
  color: var(--pn-ink);
  font-weight: 800;
}

.pn-value-moments {
  display: flex;
  gap: 8px;
  align-self: end;
  margin-top: 28px;
}

.pn-value-moments em {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--pn-green);
  font-style: normal;
  font-size: .8rem;
  font-weight: 800;
}

.pn-partner-relationship {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 74px;
  padding: 18px 26px;
  background: #0f172a;
  color: #fff;
}

.pn-partner-relationship span {
  color: #8fe9dd;
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.pn-partner-relationship strong {
  font-size: 1rem;
}

.pn-dashboard {
  background:
    linear-gradient(180deg, #0f172a, #111827);
}

.pn-attribution-proof {
  max-width: 560px;
  padding: 0;
  border: 0;
  background: transparent;
}

.pn-attribution-proof .pn-track-line {
  grid-template-columns: 1.05fr .95fr .8fr .7fr;
  gap: 8px;
  margin-top: 22px;
  background: transparent;
}

.pn-attribution-proof .pn-track-line span {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}

.pn-dashboard-card {
  padding: 18px;
  background: #f8fbff;
}

.pn-client-lifecycle {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
}

.pn-client-head,
.pn-client-event,
.pn-client-earnings {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.pn-client-head {
  margin-bottom: 12px;
}

.pn-client-head span,
.pn-client-event span,
.pn-client-earnings span {
  color: var(--pn-muted);
  font-size: .78rem;
  font-weight: 800;
}

.pn-client-head strong {
  color: var(--pn-ink);
  font-size: 1.6rem;
}

.pn-client-event {
  position: relative;
  min-height: 46px;
  padding-left: 22px;
  border-top: 1px solid var(--pn-line);
}

.pn-client-event::before {
  position: absolute;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--pn-blue);
  content: "";
}

.pn-client-event strong {
  font-size: .9rem;
}

.pn-client-earnings {
  margin-top: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #e9fbf7;
}

.pn-client-earnings strong {
  color: var(--pn-green);
  font-size: 2.25rem;
  line-height: 1;
}

.pn-dashboard-card .pn-dash-metrics {
  margin-top: 14px;
}

.pn-dashboard-card .pn-dash-metrics div {
  background: #fff;
}

@media (max-width: 1060px) {
  .pn-hero-layout,
  .pn-econ-head,
  .pn-revenue-studio,
  .pn-asset-grid {
    grid-template-columns: 1fr;
  }

  .pn-econ-head h2,
  .pn-econ-head .pn-lead {
    grid-column: 1;
    max-width: none;
  }

  .pn-hero-map {
    min-height: 540px;
  }

  .pn-calc-main {
    grid-row: auto;
  }

  .pn-offers,
  .pn-offer {
    grid-template-columns: 1fr;
  }

  .pn-tools .pn-tool-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .pn-hero {
    padding-top: 112px;
  }

  .pn-hero-map {
    min-height: 610px;
  }

  .pn-map-canvas {
    height: 456px;
  }

  .pn-map-node {
    width: 118px;
    min-height: 78px;
    padding: 11px;
  }

  .pn-map-node strong {
    font-size: .78rem;
  }

  .pn-you { top: 8%; left: 5%; }
  .pn-intro { top: 7%; left: auto; right: 5%; }
  .pn-client { top: 35%; left: 50%; transform: translateX(-50%); }
  .pn-ecosystem { top: 58%; right: 5%; width: 140px; }
  .pn-income { right: auto; left: 5%; bottom: 9%; }
  .pn-map-service { display: none; }
  .pulse-a { top: 32%; left: 29%; }
  .pulse-b { display: none; }
  .pulse-c { right: 31%; bottom: 8%; }

  .pn-map-bottom,
  .pn-calc-main,
  .pn-slider-panel,
  .pn-formula-strip,
  .pn-economics .pn-equation,
  .pn-year-lifecycle,
  .pn-value-return {
    grid-template-columns: 1fr;
  }

  .pn-primary-income {
    grid-template-columns: 1fr;
    grid-column: auto;
    grid-row: auto;
  }

  .pn-primary-income em {
    padding-bottom: 0;
  }

  .pn-formula-strip b {
    min-height: 28px;
  }

  .pn-tools .pn-tool-grid {
    grid-template-columns: 1fr;
  }

  .pn-offer {
    min-height: auto;
  }

  .pn-asset-system {
    min-height: 680px;
  }

  .pn-entry-products {
    top: 5%;
    right: 5%;
  }

  .pn-entry-products div {
    width: auto;
  }

  .pn-client-core {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
  }

  .pn-future-needs {
    top: 56%;
    right: 5%;
    left: 5%;
    width: auto;
    justify-content: center;
  }

  .pn-value-return {
    right: 5%;
    bottom: 4%;
    left: 5%;
  }

  .pn-year-stage {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--pn-line);
  }

  .pn-partner-relationship {
    flex-direction: column;
    align-items: flex-start;
  }

  .pn-attribution-proof .pn-track-line,
  .pn-dashboard-card .pn-dash-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pn-ru-page .pn-hero .pn-container {
    width: min(calc(100% - 32px), 1500px);
  }

  .pn-ru-page .pn-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .pn-ru-page .pn-hero-copy,
  .pn-ru-page .pn-hero-system,
  .pn-ru-page .pn-hero h1,
  .pn-ru-page .pn-hero p {
    max-width: none;
    min-width: 0;
  }

  .pn-ru-page .pn-hero-system {
    margin-top: 0;
    transform: none;
  }

  .pn-ru-page .pn-hero-photo-layer {
    display: none;
  }

  .pn-ru-page .pn-hero h1 {
    font-size: clamp(2.55rem, 10.9vw, 3.35rem);
    line-height: 1.02;
  }

  .pn-ru-page .pn-mobile-system {
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 8px;
    background:
      radial-gradient(circle at 70% 36%, rgba(0, 166, 166, .20), transparent 38%),
      #0f172a;
    box-shadow: 0 22px 46px rgba(15, 23, 42, .18);
  }
}

/* RU approved hero rebuild. English keeps its existing hero for now. */
body.pn-ru-page {
  overflow-x: clip;
}

.pn-ru-page .pn-hero {
  min-height: 92svh;
  padding: 132px 0 48px;
}

.pn-ru-page .pn-hero .pn-container {
  width: min(calc(100% - 64px), 1500px);
}

.pn-ru-page .pn-hero-layout {
  grid-template-columns: minmax(500px, .4fr) minmax(810px, .6fr);
  gap: 26px;
  align-items: center;
}

.pn-ru-page .pn-hero-copy {
  max-width: 640px;
}

.pn-ru-page .pn-hero h1 {
  max-width: 640px;
  font-size: clamp(3.15rem, 3.55vw, 4.1rem);
  line-height: 1.02;
}

.pn-ru-page .pn-hero h1 span {
  display: block;
}

.pn-ru-page .pn-hero p {
  max-width: 590px;
  font-size: clamp(1rem, 1.18vw, 1.14rem);
  line-height: 1.65;
}

.pn-ru-page .pn-value-line {
  display: none;
}

.pn-ru-page .pn-hero-system {
  overflow: visible;
  min-width: 0;
  margin-top: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.pn-ru-hero-visual {
  position: relative;
  min-height: 492px;
  color: var(--pn-ink);
}

.pn-ru-hero-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 190px 28px 128px 30px 246px 30px 150px;
  min-height: 378px;
  align-items: center;
}

.pn-ru-stage {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
}

.pn-ru-stage-network {
  min-height: 286px;
}

.pn-ru-network-orbit {
  position: relative;
  width: 190px;
  height: 208px;
}

.pn-ru-network-ring {
  position: absolute;
  top: 37px;
  left: 20px;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(36, 88, 255, .40);
  border-radius: 50%;
  background: radial-gradient(circle at 46% 42%, rgba(36, 88, 255, .16), rgba(36, 88, 255, .04) 64%, transparent 65%);
}

.pn-ru-portrait,
.pn-ru-satellite {
  display: block;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 999px;
  background: #eef7ff;
  box-shadow: 0 14px 28px rgba(31, 66, 154, .14);
}

.pn-ru-portrait img,
.pn-ru-satellite img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pn-ru-partner-main {
  position: absolute;
  top: 51px;
  left: 30px;
  z-index: 2;
  width: 160px;
  height: 160px;
  border-width: 5px;
  box-shadow: 0 0 0 2px rgba(36, 88, 255, .38), 0 20px 36px rgba(31, 66, 154, .18);
}

.pn-ru-partner-main img,
.pn-ru-client-main img {
  object-position: center;
}

.pn-ru-satellite {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-width: 3px;
}

.pn-ru-satellite.sat-1 { top: 0; left: 80px; }
.pn-ru-satellite.sat-2 { top: 36px; left: 6px; }
.pn-ru-satellite.sat-3 { top: 50px; right: -7px; }
.pn-ru-satellite.sat-4 { bottom: 13px; left: 40px; }
.pn-ru-satellite.sat-5 { bottom: 8px; right: 13px; }

.pn-ru-channel {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #0d6bff;
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(36, 88, 255, .24);
}

.channel-linkedin { top: 24px; right: 22px; }
.channel-telegram { top: 88px; right: -18px; }
.channel-email { bottom: 22px; right: -5px; }

.pn-ru-stage-label {
  position: relative;
  z-index: 5;
  display: grid;
  min-width: 186px;
  justify-items: center;
  gap: 4px;
  margin-top: -4px;
  padding: 12px 18px 13px;
  border: 1px solid rgba(219, 229, 245, .96);
  border-radius: 13px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 34px rgba(31, 66, 154, .12);
  text-align: center;
}

.pn-ru-stage-label strong {
  color: var(--pn-ink);
  font-size: 1.05rem;
  line-height: 1.1;
}

.pn-ru-stage-label span {
  color: var(--pn-muted);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.25;
}

.pn-ru-main-arrow {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 88, 255, .65), #0d6bff);
}

.pn-ru-main-arrow::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 20px;
  height: 20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 18px solid #0d6bff;
  transform: translateY(-50%);
  content: "";
}

.pn-ru-client-main {
  width: 128px;
  height: 128px;
  border-width: 5px;
  box-shadow: 0 0 0 2px rgba(36, 88, 255, .32), 0 18px 32px rgba(31, 66, 154, .16);
}

.pn-ru-stage-client .pn-ru-stage-label {
  min-width: 142px;
  margin-top: 10px;
  padding: 11px 16px 12px;
}

.pn-ru-edeal-orbit {
  position: relative;
  display: grid;
  width: 246px;
  height: 308px;
  place-items: center;
}

.pn-ru-edeal-orbit::before {
  position: absolute;
  width: 238px;
  height: 238px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 166, 166, .20), rgba(36, 88, 255, .10) 55%, rgba(36, 88, 255, .04));
  box-shadow: 0 0 52px rgba(0, 166, 166, .20);
  content: "";
}

.pn-ru-edeal-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 205px;
  height: 205px;
  place-items: center;
  align-content: center;
  gap: 13px;
  border: 3px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  background: radial-gradient(circle at 42% 26%, #18c1ff 0%, #2458ff 52%, #0533bd 100%);
  color: #fff;
  box-shadow: 0 26px 54px rgba(36, 88, 255, .24);
}

.pn-ru-edeal-core strong {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.pn-ru-edeal-mark {
  display: grid;
  gap: 9px;
}

.pn-ru-edeal-mark i {
  display: block;
  width: 56px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
}

.pn-ru-edeal-mark i:nth-child(2) {
  width: 44px;
}

.pn-ru-edeal-mark i:nth-child(3) {
  width: 34px;
}

.pn-ru-service-node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 86px;
  min-height: 86px;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(219, 229, 245, .94);
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: var(--pn-ink);
  text-align: center;
  box-shadow: 0 15px 30px rgba(31, 66, 154, .12);
}

.pn-ru-service-node strong {
  font-size: .66rem;
  line-height: 1.08;
}

.pn-service-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #0d6bff;
  font-size: 1.15rem;
  line-height: 1;
}

.service-formation { top: 2px; left: 13px; }
.service-taxes { top: 13px; right: 5px; }
.service-books { bottom: 9px; left: 4px; }
.service-cfo { right: 4px; bottom: 6px; }

.pn-ru-value-card {
  position: relative;
  width: 150px;
  min-height: 186px;
  padding: 28px 16px 16px;
  border: 1px solid rgba(18, 161, 96, .42);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 36px rgba(18, 161, 96, .16);
}

.pn-ru-dollar {
  position: absolute;
  top: -24px;
  right: 12px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 4px solid #d8ffef;
  border-radius: 50%;
  background: #12a160;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 900;
}

.pn-ru-value-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pn-ink);
  font-size: 1.05rem;
  line-height: 1.15;
}

.pn-ru-value-card > span:not(.pn-ru-dollar) {
  display: block;
  max-width: 108px;
  color: var(--pn-muted);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.35;
}

.pn-ru-chart {
  position: absolute;
  right: 14px;
  bottom: 20px;
  display: flex;
  height: 74px;
  align-items: end;
  gap: 8px;
}

.pn-ru-chart i {
  display: block;
  width: 13px;
  border-radius: 4px 4px 2px 2px;
  background: #12a160;
}

.pn-ru-chart i:nth-child(1) { height: 22px; }
.pn-ru-chart i:nth-child(2) { height: 32px; }
.pn-ru-chart i:nth-child(3) { height: 43px; }
.pn-ru-chart i:nth-child(4) { height: 58px; }
.pn-ru-chart i:nth-child(5) { height: 74px; }

.pn-ru-value-card svg {
  position: absolute;
  right: 12px;
  bottom: 42px;
  width: 124px;
  height: 60px;
}

.pn-ru-return-flow {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 38px;
  left: 30px;
  width: calc(100% - 50px);
  height: 150px;
  overflow: visible;
}

.pn-ru-return-label {
  position: absolute;
  z-index: 3;
  left: 43%;
  bottom: 39px;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  gap: 14px;
  padding: 11px 22px 11px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #12a160, #07925a);
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 161, 96, .22);
  transform: translateX(-50%);
}

.pn-ru-return-label span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: 1.5rem;
  font-weight: 900;
}

.pn-ru-return-label strong {
  color: #fff;
  font-size: .88rem;
  line-height: 1.22;
}

.pn-ru-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 6px;
  padding: 20px 24px;
  border: 1px solid rgba(219, 229, 245, .92);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 44px rgba(31, 66, 154, .08);
}

.pn-ru-benefits div {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  border-right: 1px solid rgba(36, 88, 255, .18);
}

.pn-ru-benefits div:last-child {
  border-right: 0;
}

.pn-ru-benefits strong {
  color: var(--pn-ink);
  font-size: .95rem;
  line-height: 1.25;
}

.benefit-icon {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #0d6bff;
  font-size: 1.85rem;
  font-weight: 900;
}

.benefit-icon.gift::before,
.benefit-icon.chart::before,
.benefit-icon.chart::after {
  position: absolute;
  content: "";
}

.benefit-icon.gift::before {
  width: 30px;
  height: 24px;
  border: 5px solid #0d6bff;
  border-radius: 5px;
  box-shadow: inset 9px 0 0 transparent;
}

.benefit-icon.gift::after {
  position: absolute;
  width: 5px;
  height: 35px;
  border-radius: 999px;
  background: #0d6bff;
  content: "";
}

.benefit-icon.chart::before {
  bottom: 6px;
  left: 7px;
  width: 7px;
  height: 18px;
  border-radius: 4px;
  background: #0d6bff;
  box-shadow: 11px -8px 0 #0d6bff, 22px -18px 0 #0d6bff;
}

.benefit-icon.infinity {
  font-size: 2.4rem;
}

.pn-ru-mobile-visual {
  display: none;
}

@media (max-width: 1260px) {
  .pn-ru-page .pn-hero-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .pn-ru-page .pn-hero-copy {
    max-width: 760px;
  }

  .pn-ru-page .pn-hero h1,
  .pn-ru-page .pn-hero p {
    max-width: 760px;
  }

  .pn-ru-hero-visual {
    width: min(100%, 920px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .pn-ru-page .pn-hero {
    padding: 112px 0 34px;
  }

  .pn-ru-page .pn-hero .pn-container {
    width: min(calc(100% - 32px), 1500px);
  }

  .pn-ru-page .pn-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .pn-ru-page .pn-hero h1 {
    font-size: clamp(2.35rem, 9.8vw, 3.05rem);
    line-height: 1.04;
  }

  .pn-ru-page .pn-hero h1 span {
    display: inline;
  }

  .pn-ru-page .pn-hero h1 span + span::before {
    content: " ";
  }

  .pn-ru-page .pn-hero p {
    font-size: .98rem;
    line-height: 1.55;
  }

  .pn-ru-page .pn-hero-buttons,
  .pn-ru-page .pn-button {
    width: 100%;
  }

  .pn-ru-hero-visual {
    min-height: auto;
  }

  .pn-ru-hero-track,
  .pn-ru-return-flow,
  .pn-ru-return-label {
    display: none;
  }

  .pn-ru-mobile-visual {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(219, 229, 245, .92);
    border-radius: 18px;
    background:
      radial-gradient(circle at 70% 30%, rgba(0, 166, 166, .14), transparent 42%),
      rgba(255, 255, 255, .78);
    box-shadow: 0 18px 44px rgba(31, 66, 154, .09);
  }

  .pn-ru-mobile-card {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 16px;
    border: 1px solid rgba(219, 229, 245, .88);
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
    text-align: center;
  }

  .pn-ru-mobile-card .pn-ru-portrait {
    width: 106px;
    height: 106px;
    border-width: 4px;
  }

  .pn-ru-mobile-card .pn-ru-edeal-core {
    width: 122px;
    height: 122px;
    gap: 8px;
  }

  .pn-ru-mobile-card .pn-ru-edeal-core strong {
    font-size: 1.25rem;
  }

  .pn-ru-mobile-card .pn-ru-edeal-mark {
    gap: 5px;
  }

  .pn-ru-mobile-card .pn-ru-edeal-mark i {
    width: 34px;
    height: 6px;
  }

  .pn-ru-mobile-card strong {
    color: var(--pn-ink);
    font-size: 1.05rem;
  }

  .pn-ru-mobile-card small {
    color: var(--pn-muted);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .pn-ru-mobile-card.is-value {
    padding-top: 28px;
  }

  .pn-ru-mobile-card.is-value .pn-ru-dollar {
    position: static;
    width: 48px;
    height: 48px;
    border-width: 3px;
    font-size: 1.55rem;
  }

  .pn-ru-mobile-arrow {
    display: grid;
    place-items: center;
    color: #0d6bff;
    font-size: 1.3rem;
    font-weight: 900;
  }

  .pn-ru-mobile-return {
    padding: 14px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #12a160, #07925a);
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
  }

  .pn-ru-benefits {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    padding: 8px 18px;
    border-radius: 16px;
  }

  .pn-ru-benefits div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 88, 255, .14);
  }

  .pn-ru-benefits div:last-child {
    border-bottom: 0;
  }
}

/* RU hero refinement pass: typography, visual scale, loop weight, benefits lightness. */
@media (min-width: 761px) {
  .pn-ru-page .pn-hero .pn-container {
    width: min(calc(100% - 44px), 1320px);
    margin-inline: auto;
  }

  .pn-ru-page .pn-hero-layout {
    grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
    gap: 16px;
  }

  .pn-ru-page .pn-hero-copy {
    max-width: 560px;
  }

  .pn-ru-page .pn-hero h1 {
    max-width: 560px;
    font-size: clamp(2.9rem, 2.85vw, 3.08rem);
    line-height: 1.04;
  }

  .pn-ru-page .pn-hero p {
    max-width: 565px;
  }

  .pn-ru-hero-visual {
    width: min(100%, 764px);
    min-height: 472px;
    margin-left: auto;
  }

  .pn-ru-hero-track {
    grid-template-columns: 188px 22px 126px 20px 252px 20px 144px;
    min-height: 370px;
    justify-content: center;
  }

  .pn-ru-stage-network {
    min-height: 292px;
  }

  .pn-ru-network-orbit {
    width: 188px;
    height: 212px;
  }

  .pn-ru-network-ring {
    top: 40px;
    left: 22px;
    width: 164px;
    height: 164px;
  }

  .pn-ru-partner-main {
    top: 52px;
    left: 32px;
    width: 178px;
    height: 178px;
  }

  .pn-ru-satellite {
    width: 52px;
    height: 52px;
  }

  .pn-ru-satellite.sat-1 { top: 0; left: 88px; }
  .pn-ru-satellite.sat-2 { top: 39px; left: 4px; }
  .pn-ru-satellite.sat-3 { top: 54px; right: -13px; }
  .pn-ru-satellite.sat-4 { bottom: 15px; left: 42px; }
  .pn-ru-satellite.sat-5 { bottom: 8px; right: 12px; }

  .pn-ru-channel {
    width: 46px;
    height: 46px;
  }

  .channel-linkedin { top: 28px; right: 18px; }
  .channel-telegram { top: 99px; right: -24px; }
  .channel-email { bottom: 17px; right: -9px; }

  .pn-ru-stage-label {
    min-width: 188px;
  }

  .pn-ru-client-main {
    width: 148px;
    height: 148px;
  }

  .pn-ru-stage-client .pn-ru-stage-label {
    min-width: 152px;
  }

  .pn-ru-edeal-orbit {
    width: 252px;
    height: 312px;
  }

  .pn-ru-edeal-orbit::before {
    width: 246px;
    height: 246px;
  }

  .pn-ru-edeal-core {
    width: 226px;
    height: 226px;
  }

  .pn-ru-edeal-core strong {
    font-size: 2.2rem;
  }

  .pn-ru-service-node {
    width: 90px;
    min-height: 90px;
  }

  .service-formation { top: 6px; left: 18px; }
  .service-taxes { top: 15px; right: 7px; }
  .service-books { bottom: 10px; left: 8px; }
  .service-cfo { right: 8px; bottom: 9px; }

  .pn-ru-value-card {
    width: 158px;
    min-height: 186px;
  }

  .pn-ru-return-flow {
    right: 78px;
    bottom: 58px;
    left: 128px;
    width: calc(100% - 206px);
    height: 92px;
    opacity: .76;
  }

  .pn-ru-return-flow path {
    stroke-width: 5;
  }

  .pn-ru-return-label {
    left: 50%;
    bottom: 60px;
    min-height: 48px;
    gap: 12px;
    padding: 9px 20px 9px 12px;
    box-shadow: 0 12px 26px rgba(18, 161, 96, .16);
  }

  .pn-ru-return-label span {
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
  }

  .pn-ru-return-label strong {
    font-size: .82rem;
  }

  .pn-ru-benefits {
    margin-top: 0;
    padding: 10px 2px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .pn-ru-benefits div {
    min-height: 46px;
    gap: 12px;
    padding: 0 22px;
    border-right-color: rgba(36, 88, 255, .12);
  }

  .pn-ru-benefits strong {
    font-size: .9rem;
  }

  .benefit-icon {
    width: 34px;
    height: 34px;
    font-size: 1.55rem;
  }

  .benefit-icon.gift::before {
    width: 25px;
    height: 20px;
    border-width: 4px;
  }

  .benefit-icon.gift::after {
    width: 4px;
    height: 30px;
  }

  .benefit-icon.chart::before {
    bottom: 5px;
    left: 6px;
    width: 6px;
    height: 15px;
    box-shadow: 10px -7px 0 #0d6bff, 20px -15px 0 #0d6bff;
  }

  .benefit-icon.infinity {
    font-size: 2.1rem;
  }
}

@media (min-width: 761px) and (max-width: 1480px) {
  .pn-ru-page .pn-hero .pn-container {
    width: min(calc(100% - 44px), 1320px);
  }

  .pn-ru-page .pn-hero-layout {
    grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
    gap: 14px;
  }

  .pn-ru-page .pn-hero h1 {
    max-width: 560px;
    font-size: clamp(2.58rem, 2.65vw, 2.9rem);
  }

  .pn-ru-page .pn-hero-copy {
    max-width: 560px;
  }

  .pn-ru-hero-track {
    grid-template-columns: 184px 22px 124px 18px 248px 18px 140px;
    min-height: 366px;
  }

  .pn-ru-partner-main {
    width: 168px;
    height: 168px;
  }

  .pn-ru-satellite {
    width: 49px;
    height: 49px;
  }

  .pn-ru-client-main {
    width: 140px;
    height: 140px;
  }

  .pn-ru-edeal-orbit {
    width: 248px;
    height: 308px;
  }

  .pn-ru-edeal-orbit::before {
    width: 242px;
    height: 242px;
  }

  .pn-ru-edeal-core {
    width: 222px;
    height: 222px;
  }

  .pn-ru-service-node {
    width: 90px;
    min-height: 90px;
  }

  .pn-ru-hero-visual {
    width: min(100%, 746px);
    min-height: 448px;
    transform: scale(.96);
    transform-origin: left top;
  }
}

@media (min-width: 761px) and (max-width: 1380px) {
  .pn-ru-page .pn-hero-layout {
    grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
    gap: 12px;
  }

  .pn-ru-page .pn-hero-copy,
  .pn-ru-page .pn-hero h1 {
    max-width: 520px;
  }

  .pn-ru-page .pn-hero-system {
    min-width: 0;
    overflow: visible;
  }

  .pn-ru-hero-visual {
    width: min(100%, 724px);
    min-height: 420px;
    transform: scale(.9);
    transform-origin: left top;
  }

  .pn-ru-benefits {
    width: 100%;
    max-width: 100%;
  }
}

/* RU approved visual system pass: calculator, offers, relationship asset, lifecycle, dashboard. */
.pn-ru-page .pn-section > .pn-container {
  width: min(calc(100% - 44px), 1180px);
}

.pn-ru-page .pn-economics {
  color: var(--pn-ink);
  background:
    radial-gradient(circle at 76% 8%, rgba(36, 88, 255, .11), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.pn-ru-page .pn-economics h2,
.pn-ru-page .pn-economics h3,
.pn-ru-page .pn-economics .pn-lead,
.pn-ru-page .pn-economics .pn-kicker {
  color: var(--pn-ink);
}

.pn-ru-page .pn-economics .pn-lead,
.pn-ru-page .pn-economics .pn-calc p,
.pn-ru-page .pn-economics .pn-disclaimer {
  color: var(--pn-muted);
}

.pn-ru-page .pn-economics .pn-kicker {
  border-color: rgba(36, 88, 255, .18);
  background: #fff;
  color: var(--pn-blue);
}

.pn-ru-page .pn-econ-head {
  grid-template-columns: minmax(0, .82fr) minmax(360px, .7fr);
  max-width: 980px;
}

.pn-ru-page .pn-revenue-studio {
  max-width: 880px;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, .8fr);
  gap: 16px;
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(193, 211, 238, .86);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 246, 255, .82));
  box-shadow: 0 24px 58px rgba(31, 66, 154, .10);
}

.pn-ru-page .pn-calc-main,
.pn-ru-page .pn-range-panel,
.pn-ru-page .pn-lifetime-panel {
  border: 1px solid rgba(193, 211, 238, .88);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
  box-shadow: none;
}

.pn-ru-page .pn-calc-main {
  grid-row: auto;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 20px;
}

.pn-ru-page .pn-calc-question h3 {
  max-width: 340px;
  margin-top: 6px;
  color: var(--pn-ink);
  font-size: 1.12rem;
  line-height: 1.24;
}

.pn-ru-page .pn-calc-question span,
.pn-ru-page .pn-lifetime-panel > span,
.pn-ru-page .pn-primary-income span,
.pn-ru-page .pn-annual-range span {
  color: #52658a;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.pn-ru-page .pn-slider-panel {
  grid-template-columns: 92px 1fr;
  gap: 16px;
  margin-top: 0;
}

.pn-ru-page .pn-client-bubble {
  min-height: 92px;
  background: transparent;
}

.pn-ru-page .pn-client-bubble output {
  color: var(--pn-blue);
  font-size: 4rem;
}

.pn-ru-page .pn-client-bubble span {
  font-size: .78rem;
  font-weight: 800;
}

.pn-ru-page .pn-range {
  accent-color: var(--pn-blue);
}

.pn-ru-page .pn-primary-income {
  grid-row: auto;
  grid-column: auto;
  min-height: 116px;
  padding: 18px;
  border-radius: 16px;
  background: #dce9ff;
}

.pn-ru-page .pn-primary-income strong {
  color: var(--pn-blue);
  font-size: clamp(3.05rem, 5vw, 4.1rem);
}

.pn-ru-page .pn-primary-income em {
  color: var(--pn-blue);
  font-size: .95rem;
}

.pn-ru-page .pn-formula-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: -2px;
}

.pn-ru-page .pn-formula-strip span,
.pn-ru-page .pn-formula-strip b {
  min-height: 28px;
  padding: 4px 0;
  color: #52658a;
  background: transparent;
  font-size: .78rem;
}

.pn-ru-page .pn-formula-strip b:nth-of-type(n+2),
.pn-ru-page .pn-formula-strip span:nth-of-type(n+3) {
  display: none;
}

.pn-ru-page .pn-range-panel {
  grid-column: 1;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.pn-ru-page .pn-annual-range {
  padding: 0 8px 2px;
}

.pn-ru-page .pn-annual-range strong {
  margin-top: 4px;
  color: var(--pn-ink);
  font-size: 1rem;
}

.pn-ru-page .pn-scenario-list {
  display: none;
}

.pn-ru-page .pn-lifetime-panel {
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: 24px;
  background: #e8f7f1;
}

.pn-ru-page .pn-cumulative {
  order: 1;
  margin-top: 8px;
  padding: 0;
  background: transparent;
}

.pn-ru-page .pn-cumulative strong {
  color: var(--pn-ink);
  font-size: clamp(2.35rem, 4vw, 3.4rem);
}

.pn-ru-page .pn-year-bars {
  order: 2;
  display: flex;
  align-items: end;
  gap: 10px;
  min-height: 92px;
  margin-top: 18px;
  padding-left: 16px;
}

.pn-ru-page .pn-year-bars div {
  width: 32px;
  display: block;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(180deg, #12c779, #12a160);
}

.pn-ru-page .pn-year-bars div:nth-child(1) { height: 38px; opacity: .42; }
.pn-ru-page .pn-year-bars div:nth-child(2) { height: 60px; opacity: .68; }
.pn-ru-page .pn-year-bars div:nth-child(3) { height: 84px; }

.pn-ru-page .pn-year-bars span,
.pn-ru-page .pn-year-bars strong {
  display: none;
}

.pn-ru-page .pn-economics .pn-equation {
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: -2px;
  border: 1px solid rgba(193, 211, 238, .88);
  border-radius: 14px;
  background: rgba(255, 255, 255, .74);
  overflow: hidden;
}

.pn-ru-page .pn-economics .pn-equation div {
  min-height: 82px;
  border: 0;
  border-right: 1px solid rgba(193, 211, 238, .88);
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.pn-ru-page .pn-economics .pn-equation div:last-child {
  border-right: 0;
}

.pn-ru-page .pn-economics .pn-equation span {
  color: var(--pn-ink);
  font-size: .88rem;
}

.pn-ru-page .pn-economics .pn-equation strong {
  color: var(--pn-blue);
  font-size: 1rem;
}

.pn-ru-page .pn-economics .pn-disclaimer {
  max-width: 880px;
  margin-inline: auto;
  color: #65738d;
}

.pn-ru-page .pn-tools {
  background: #f8fbff;
}

.pn-ru-page .pn-offers {
  grid-template-columns: minmax(0, 1fr) minmax(0, .94fr);
  gap: 18px;
}

.pn-ru-page .pn-offer {
  position: relative;
  min-height: 355px;
  grid-template-columns: minmax(0, .9fr) minmax(132px, .45fr);
  gap: 16px;
  border: 1px solid rgba(193, 211, 238, .86);
  border-radius: 18px;
  background: linear-gradient(135deg, #ffffff, #eef6ff);
  color: var(--pn-ink);
  box-shadow: 0 22px 52px rgba(31, 66, 154, .10);
}

.pn-ru-page .pn-product-checkup {
  grid-template-columns: minmax(0, .78fr) minmax(250px, 1fr);
}

.pn-ru-page .pn-product-formation .pn-offer-path {
  grid-column: 1 / -1;
}

.pn-ru-page .pn-offer h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
}

.pn-ru-page .pn-offer p {
  color: var(--pn-muted);
  opacity: 1;
}

.pn-ru-page .pn-product-formation .pn-offer-price {
  color: var(--pn-blue);
  font-size: clamp(5.4rem, 8vw, 7.6rem);
}

.pn-ru-page .pn-product-checkup .pn-offer-price {
  color: #12b886;
  font-size: clamp(3.6rem, 5.8vw, 5.2rem);
}

.pn-ru-page .pn-fee-note {
  margin-top: 12px;
  background: #e8f1ff;
  color: #19305e;
}

.pn-ru-page .pn-formation-document {
  position: relative;
  align-self: center;
  width: 128px;
  height: 150px;
  border: 1px solid rgba(36, 88, 255, .22);
  border-radius: 12px;
  background:
    linear-gradient(#eaf2ff 0 0) 30px 62px / 68px 8px no-repeat,
    linear-gradient(#eaf2ff 0 0) 30px 83px / 76px 8px no-repeat,
    linear-gradient(#eaf2ff 0 0) 30px 104px / 54px 8px no-repeat,
    linear-gradient(135deg, #fff, #d9e9ff);
  box-shadow: 16px 12px 0 rgba(36, 88, 255, .12), 32px 24px 0 rgba(0, 166, 166, .10);
}

.pn-ru-page .pn-formation-document::before {
  position: absolute;
  top: 22px;
  left: 30px;
  width: 54px;
  height: 34px;
  border-radius: 5px;
  background:
    linear-gradient(#fff 0 0) 0 0 / 100% 5px repeat-y,
    linear-gradient(90deg, #2458ff 0 38%, #fff 38% 42%, #ef4444 42%);
  content: "";
}

.pn-ru-page .pn-offer-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  background: transparent;
}

.pn-ru-page .pn-offer-path span {
  min-width: 0;
  min-height: auto;
  display: grid;
  justify-items: center;
  gap: 8px;
  flex: 1 1 0;
  padding: 0;
  background: transparent;
  color: var(--pn-ink);
  text-align: center;
  font-size: .76rem;
  line-height: 1.15;
}

.pn-ru-page .pn-offer-path span::before {
  display: none;
}

.pn-ru-page .pn-offer-path span + span::before {
  display: none;
}

.pn-ru-page .pn-offer-path span:not(:last-child)::after {
  position: absolute;
  top: 19px;
  right: -15px;
  width: 20px;
  height: 10px;
  background: var(--pn-blue);
  clip-path: polygon(0 42%, 68% 42%, 68% 0, 100% 50%, 68% 100%, 68% 58%, 0 58%);
  content: "";
}

.pn-ru-page .pn-offer-path i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--pn-blue);
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.pn-ru-page .pn-diagnostic-report {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(31, 66, 154, .12);
}

.pn-ru-page .pn-report-head {
  display: grid;
  grid-template-columns: 96px 1fr;
  min-height: 112px;
  align-items: center;
  background: transparent;
}

.pn-ru-page .pn-report-head::before {
  grid-row: 1 / span 2;
  width: 78px;
  height: 78px;
  border: 15px solid #15b884;
  border-right-color: #e5effb;
  border-radius: 50%;
  content: "";
}

.pn-ru-page .pn-report-head span {
  align-self: end;
  color: var(--pn-ink);
  font-size: .9rem;
}

.pn-ru-page .pn-report-head strong {
  align-self: start;
  color: var(--pn-ink);
}

.pn-ru-page .pn-report-head strong b {
  font-size: 2.7rem;
}

.pn-ru-page .pn-report-head strong small {
  color: #52658a;
  font-size: 1rem;
}

.pn-ru-page .pn-report-row {
  padding: 12px 0;
}

.pn-ru-page .pn-report-row.plan {
  display: grid;
  place-items: center;
  margin-top: 12px;
  border: 0;
  border-radius: 12px;
  background: #eaf2ff;
}

.pn-ru-page .pn-report-row.plan span {
  display: none;
}

.pn-ru-page .pn-roles {
  background: #f7fbff;
  color: var(--pn-ink);
}

.pn-ru-page .pn-asset-grid {
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1fr);
  gap: 30px;
}

.pn-ru-page .pn-asset-copy h2 {
  color: var(--pn-ink);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.pn-ru-page .pn-asset-copy p:not(.pn-kicker) {
  color: var(--pn-muted);
}

.pn-ru-page .pn-asset-system {
  min-height: 420px;
  border-color: rgba(193, 211, 238, .86);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 166, 166, .12), transparent 32%),
    linear-gradient(135deg, #fff, #eef6ff);
  box-shadow: 0 22px 52px rgba(31, 66, 154, .10);
}

.pn-ru-page .pn-asset-system::before {
  top: 34%;
  left: 19%;
  width: 28%;
  height: 3px;
  background: linear-gradient(90deg, var(--pn-blue), var(--pn-teal));
  transform: rotate(26deg);
}

.pn-ru-page .pn-asset-system::after {
  right: 7%;
  bottom: 13%;
  left: 8%;
  height: 4px;
  background: linear-gradient(90deg, #12a160, #18c47c);
  border-radius: 999px;
}

.pn-ru-page .pn-entry-products {
  top: 18%;
  left: 6%;
  gap: 22px;
}

.pn-ru-page .pn-entry-products div,
.pn-ru-page .pn-client-core,
.pn-ru-page .pn-future-needs span {
  border-color: rgba(193, 211, 238, .92);
  background: rgba(255, 255, 255, .94);
  color: var(--pn-ink);
  backdrop-filter: none;
}

.pn-ru-page .pn-entry-products div {
  width: 160px;
  min-height: 76px;
  box-shadow: 0 14px 34px rgba(31, 66, 154, .10);
}

.pn-ru-page .pn-entry-products span {
  color: var(--pn-blue);
  font-size: 1.35rem;
}

.pn-ru-page .pn-entry-products div:nth-child(2) span {
  color: var(--pn-green);
}

.pn-ru-page .pn-entry-products strong,
.pn-ru-page .pn-client-core span {
  color: var(--pn-ink);
}

.pn-ru-page .pn-client-core {
  top: 22%;
  left: 37%;
  width: 156px;
  min-height: 176px;
  border-radius: 999px;
  background: #f7fbff;
  box-shadow: 0 14px 34px rgba(31, 66, 154, .12);
}

.pn-ru-page .pn-client-core img {
  width: 82px;
  height: 82px;
  margin-bottom: 8px;
  border-radius: 50%;
  object-fit: cover;
}

.pn-ru-page .pn-client-core strong {
  color: #52658a;
  font-size: .78rem;
  line-height: 1.25;
}

.pn-ru-page .pn-future-needs {
  top: 14%;
  right: 6%;
  width: 210px;
  display: grid;
  gap: 12px;
}

.pn-ru-page .pn-future-needs span {
  min-height: 52px;
  justify-content: flex-start;
  padding: 0 16px;
  color: var(--pn-ink);
  box-shadow: 0 12px 30px rgba(31, 66, 154, .09);
}

.pn-ru-page .pn-future-needs span::before {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 50%;
  background: #e4eeff;
  content: "";
}

.pn-ru-page .pn-value-return {
  right: 11%;
  bottom: 7%;
  left: 28%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #12a160, #0f9b67);
  color: #fff;
  box-shadow: 0 14px 34px rgba(18, 161, 96, .18);
}

.pn-ru-page .pn-value-return span,
.pn-ru-page .pn-value-return strong {
  min-height: auto;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}

.pn-ru-page .pn-roadmap {
  background: #f6f9ff;
}

.pn-ru-page .pn-year-lifecycle {
  gap: 18px;
  padding: 18px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.pn-ru-page .pn-year-stage {
  min-height: 320px;
  border: 1px solid rgba(193, 211, 238, .88);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(31, 66, 154, .08);
}

.pn-ru-page .pn-year-stage::before {
  display: block;
  width: 78px;
  height: 78px;
  margin-bottom: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--pn-blue), #0d6bff);
  content: "";
}

.pn-ru-page .pn-year-stage:nth-child(2)::before {
  background: linear-gradient(135deg, var(--pn-teal), #0ca6b8);
}

.pn-ru-page .pn-year-stage:nth-child(3)::before {
  background: linear-gradient(135deg, #7c3aed, #9d4edd);
}

.pn-ru-page .pn-year-stage + .pn-year-stage::after {
  position: absolute;
  top: 42%;
  left: -30px;
  width: 42px;
  height: 18px;
  background: var(--pn-blue);
  clip-path: polygon(0 35%, 68% 35%, 68% 0, 100% 50%, 68% 100%, 68% 65%, 0 65%);
  content: "";
}

.pn-ru-page .pn-year-stage:nth-child(3)::after {
  background: #7c3aed;
}

.pn-ru-page .pn-year-top span {
  color: var(--pn-blue);
  letter-spacing: .035em;
}

.pn-ru-page .pn-year-stage:nth-child(2) .pn-year-top span,
.pn-ru-page .pn-year-stage:nth-child(2) .pn-year-services span::before {
  color: var(--pn-teal);
  background: var(--pn-teal);
}

.pn-ru-page .pn-year-stage:nth-child(3) .pn-year-top span,
.pn-ru-page .pn-year-stage:nth-child(3) .pn-year-services span::before {
  color: #7c3aed;
  background: #7c3aed;
}

.pn-ru-page .pn-year-services span {
  min-height: 34px;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: #52658a;
}

.pn-ru-page .pn-year-services span::before {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pn-blue);
  content: "";
}

.pn-ru-page .pn-partner-relationship {
  position: relative;
  grid-column: 1 / -1;
  display: grid;
  justify-content: center;
  min-height: 84px;
  background: transparent;
  color: var(--pn-ink);
  text-align: center;
}

.pn-ru-page .pn-partner-relationship::before {
  display: block;
  width: min(100%, 900px);
  height: 4px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #15b884, #12a160);
  content: "";
}

.pn-ru-page .pn-partner-relationship span {
  color: var(--pn-green);
}

.pn-ru-page .pn-partner-relationship strong {
  color: #52658a;
}

.pn-ru-page .pn-dashboard {
  background:
    radial-gradient(circle at 18% 10%, rgba(36, 88, 255, .12), transparent 28%),
    linear-gradient(180deg, #f8fbff, #eef5ff);
}

.pn-ru-page .pn-dashboard h2,
.pn-ru-page .pn-dashboard h3,
.pn-ru-page .pn-dashboard .pn-kicker,
.pn-ru-page .pn-dashboard .pn-lead {
  color: var(--pn-ink);
}

.pn-ru-page .pn-dashboard .pn-kicker {
  border-color: rgba(36, 88, 255, .18);
  background: #fff;
  color: var(--pn-blue);
}

.pn-ru-page .pn-dashboard .pn-lead {
  color: var(--pn-muted);
}

.pn-ru-page .pn-dashboard-card {
  padding: 18px;
  border: 1px solid rgba(193, 211, 238, .88);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 52px rgba(31, 66, 154, .10);
}

.pn-ru-page .pn-dashboard-card .pn-dash-metrics-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 0;
}

.pn-ru-page .pn-dashboard-card .pn-dash-metrics-top div {
  min-height: 90px;
  padding: 16px;
  border: 1px solid rgba(193, 211, 238, .88);
  border-radius: 14px;
  background: #f8fbff;
}

.pn-ru-page .pn-dashboard-card .pn-dash-metrics-top span {
  color: #52658a;
  font-size: .78rem;
  font-weight: 900;
}

.pn-ru-page .pn-dashboard-card .pn-dash-metrics-top strong {
  display: block;
  margin-top: 8px;
  color: var(--pn-blue);
  font-size: 1.55rem;
}

.pn-ru-page .pn-dashboard-card .pn-dash-metrics-top div:nth-child(n+2) strong,
.pn-ru-page .pn-dashboard-card .pn-dash-metrics-top small {
  color: var(--pn-green);
}

.pn-ru-page .pn-dashboard-card .pn-dash-metrics-top small {
  display: block;
  margin-top: 5px;
  font-size: .72rem;
  font-weight: 900;
}

.pn-ru-page .pn-client-lifecycle {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-top: 14px;
  padding: 24px;
  border-radius: 18px;
}

.pn-ru-page .pn-client-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 16px;
}

.pn-ru-page .pn-client-head strong {
  grid-column: 1;
  grid-row: 1;
  font-size: 1.5rem;
}

.pn-ru-page .pn-client-head span {
  grid-column: 1;
  grid-row: 2;
  color: #52658a;
}

.pn-ru-page .pn-client-head em {
  grid-column: 2;
  grid-row: 1 / span 2;
  color: var(--pn-green);
  font-style: normal;
  font-size: 2rem;
  font-weight: 900;
}

.pn-ru-page .pn-client-event {
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 116px;
  padding: 52px 4px 0;
  border-top: 0;
  text-align: center;
}

.pn-ru-page .pn-client-event::before {
  top: 8px;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translateX(-50%);
}

.pn-ru-page .pn-client-event:not(:last-of-type)::after {
  position: absolute;
  top: 24px;
  left: calc(50% + 17px);
  width: calc(100% - 34px);
  height: 4px;
  border-radius: 999px;
  background: #d8e5f8;
  content: "";
}

.pn-ru-page .pn-client-event:last-of-type::before {
  background: var(--pn-green);
}

.pn-ru-page .pn-client-event span {
  color: #52658a;
  font-size: .86rem;
}

.pn-ru-page .pn-client-event strong {
  color: var(--pn-ink);
  font-size: .95rem;
}

.pn-ru-page .pn-dash-bottom {
  margin-top: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #e5f9f0;
  color: var(--pn-green);
  font-weight: 900;
  text-align: center;
}

@media (max-width: 1060px) {
  .pn-ru-page .pn-revenue-studio,
  .pn-ru-page .pn-offers,
  .pn-ru-page .pn-asset-grid,
  .pn-ru-page .pn-dash-grid {
    grid-template-columns: 1fr;
  }

  .pn-ru-page .pn-offer {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .pn-ru-page .pn-section > .pn-container {
    width: min(calc(100% - 48px), 390px);
  }

  .pn-ru-page .pn-econ-head,
  .pn-ru-page .pn-section-head {
    display: block;
  }

  .pn-ru-page .pn-econ-head h2,
  .pn-ru-page .pn-section-head h2,
  .pn-ru-page .pn-dashboard h2 {
    font-size: clamp(1.75rem, 7.4vw, 2.1rem);
    line-height: 1.08;
  }

  .pn-ru-page .pn-revenue-studio {
    max-width: 390px;
    grid-template-columns: 1fr;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .pn-ru-page .pn-calc-main,
  .pn-ru-page .pn-lifetime-panel {
    border-radius: 24px;
  }

  .pn-ru-page .pn-calc-main {
    padding: 20px;
  }

  .pn-ru-page .pn-calc-question h3 {
    max-width: none;
    font-size: 1rem;
  }

  .pn-ru-page .pn-slider-panel {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pn-ru-page .pn-client-bubble {
    justify-items: start;
    min-height: auto;
  }

  .pn-ru-page .pn-primary-income {
    border-radius: 24px;
  }

  .pn-ru-page .pn-primary-income strong {
    font-size: clamp(3.05rem, 13vw, 4rem);
  }

  .pn-ru-page .pn-formula-strip {
    font-size: .78rem;
  }

  .pn-ru-page .pn-lifetime-panel {
    grid-column: auto;
    grid-row: auto;
    min-height: 122px;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .pn-ru-page .pn-cumulative {
    grid-column: 1;
  }

  .pn-ru-page .pn-cumulative strong {
    font-size: clamp(2.8rem, 12vw, 3.9rem);
  }

  .pn-ru-page .pn-year-bars {
    grid-column: 2;
    min-height: 80px;
    margin-top: 0;
  }

  .pn-ru-page .pn-year-bars div {
    width: 14px;
  }

  .pn-ru-page .pn-economics .pn-equation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border: 0;
    background: transparent;
  }

  .pn-ru-page .pn-economics .pn-equation div {
    min-height: 70px;
    padding: 12px 8px;
    border: 1px solid rgba(193, 211, 238, .88);
    border-radius: 14px;
    background: #fff;
  }

  .pn-ru-page .pn-economics .pn-equation span,
  .pn-ru-page .pn-economics .pn-equation strong {
    font-size: .78rem;
  }

  .pn-ru-page .pn-offers {
    gap: 18px;
  }

  .pn-ru-page .pn-offer {
    min-height: auto;
    padding: 28px 22px;
    box-shadow: none;
  }

  .pn-ru-page .pn-product-formation .pn-offer-price,
  .pn-ru-page .pn-product-checkup .pn-offer-price {
    font-size: clamp(4.2rem, 16vw, 5.2rem);
  }

  .pn-ru-page .pn-formation-document {
    display: none;
  }

  .pn-ru-page .pn-product-formation .pn-offer-path {
    position: relative;
    display: grid;
    gap: 0;
    margin-top: 28px;
    padding-left: 22px;
  }

  .pn-ru-page .pn-product-formation .pn-offer-path::before {
    position: absolute;
    top: 31px;
    bottom: 31px;
    left: 51px;
    width: 3px;
    border-radius: 999px;
    background: var(--pn-blue);
    content: "";
  }

  .pn-ru-page .pn-product-formation .pn-offer-path span {
    grid-template-columns: 58px 1fr;
    justify-items: start;
    min-height: 84px;
    gap: 22px;
    text-align: left;
    font-size: 1.05rem;
  }

  .pn-ru-page .pn-offer-path span + span::before {
    display: none;
  }

  .pn-ru-page .pn-offer-path span:not(:last-child)::after {
    display: none;
  }

  .pn-ru-page .pn-product-formation .pn-offer-path i {
    width: 58px;
    height: 58px;
    border: 1px solid var(--pn-blue);
    border-radius: 50%;
    background: #f8fbff;
    color: var(--pn-blue);
    font-size: 1.1rem;
  }

  .pn-ru-page .pn-diagnostic-report {
    padding: 20px;
    box-shadow: none;
  }

  .pn-ru-page .pn-report-head {
    grid-template-columns: 104px 1fr;
  }

  .pn-ru-page .pn-asset-grid {
    gap: 18px;
  }

  .pn-ru-page .pn-asset-copy h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .pn-ru-page .pn-asset-system {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .pn-ru-page .pn-asset-system::before,
  .pn-ru-page .pn-asset-system::after {
    display: none;
  }

  .pn-ru-page .pn-entry-products {
    position: static;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .pn-ru-page .pn-entry-products div {
    width: auto;
    min-height: 80px;
    text-align: center;
  }

  .pn-ru-page .pn-client-core {
    position: static;
    width: 124px;
    min-height: 124px;
    margin: 54px auto 38px;
    transform: none;
  }

  .pn-ru-page .pn-client-core img,
  .pn-ru-page .pn-client-core strong {
    display: none;
  }

  .pn-ru-page .pn-client-core span {
    font-size: 1.1rem;
  }

  .pn-ru-page .pn-future-needs {
    position: static;
    width: auto;
  }

  .pn-ru-page .pn-future-needs span {
    min-height: 54px;
    border-radius: 16px;
  }

  .pn-ru-page .pn-value-return {
    position: static;
    margin-top: 30px;
    min-height: 78px;
    border-radius: 22px;
    background: #e5f9f0;
    box-shadow: none;
  }

  .pn-ru-page .pn-value-return span,
  .pn-ru-page .pn-value-return strong {
    color: var(--pn-green);
    font-size: 1rem;
  }

  .pn-ru-page .pn-year-lifecycle {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .pn-ru-page .pn-year-stage {
    min-height: 0;
    padding: 24px 20px;
  }

  .pn-ru-page .pn-year-stage::before {
    display: none;
  }

  .pn-ru-page .pn-year-stage + .pn-year-stage::after {
    top: -34px;
    left: 50%;
    width: 18px;
    height: 34px;
    clip-path: polygon(42% 0, 58% 0, 58% 68%, 100% 68%, 50% 100%, 0 68%, 42% 68%);
    transform: translateX(-50%);
  }

  .pn-ru-page .pn-year-top strong {
    font-size: 1.75rem;
  }

  .pn-ru-page .pn-partner-relationship {
    min-height: 58px;
    padding: 12px 16px;
    border-radius: 18px;
    background: #e5f9f0;
  }

  .pn-ru-page .pn-partner-relationship::before {
    display: none;
  }

  .pn-ru-page .pn-dashboard-card .pn-dash-metrics-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pn-ru-page .pn-dashboard-card .pn-dash-metrics-top div {
    min-height: 84px;
    padding: 12px;
  }

  .pn-ru-page .pn-dashboard-card .pn-dash-metrics-top strong {
    font-size: 1.3rem;
  }

  .pn-ru-page .pn-dashboard-card .pn-dash-metrics-top span,
  .pn-ru-page .pn-dashboard-card .pn-dash-metrics-top small {
    font-size: .68rem;
  }

  .pn-ru-page .pn-client-lifecycle {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 20px;
  }

  .pn-ru-page .pn-client-event {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
    justify-content: start;
    min-height: 64px;
    padding: 0 0 0 58px;
    text-align: left;
  }

  .pn-ru-page .pn-client-event::before {
    left: 8px;
  }

  .pn-ru-page .pn-client-event:not(:last-of-type)::after {
    top: 30px;
    left: 23px;
    width: 3px;
    height: calc(100% - 26px);
  }

  .pn-ru-page .pn-proof-grid article {
    min-width: 0;
    min-height: auto;
    padding: 24px;
  }

  .pn-ru-page h1,
  .pn-ru-page h2,
  .pn-ru-page h3,
  .pn-ru-page .pn-proof-grid p,
  .pn-ru-page .pn-trust-grid span {
    overflow-wrap: break-word;
    hyphens: auto;
  }

  .pn-ru-page .pn-proof-grid h2 {
    font-size: clamp(1.45rem, 5.8vw, 2rem);
    line-height: 1.12;
  }

  .pn-ru-page .pn-audience-band h2 {
    font-size: clamp(1.5rem, 6vw, 2.1rem);
    line-height: 1.1;
  }
}

@media (max-width: 430px) {
  .pn-ru-page .pn-economics .pn-equation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pn-ru-page .pn-revenue-studio,
  .pn-ru-page .pn-revenue-studio > * {
    min-width: 0;
  }

  .pn-ru-page .pn-primary-income strong {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .pn-ru-page .pn-cumulative strong {
    font-size: clamp(2.05rem, 9vw, 3.2rem);
  }

  .pn-ru-page .pn-primary-income strong,
  .pn-ru-page .pn-cumulative strong,
  .pn-ru-page .pn-annual-range strong {
    overflow-wrap: anywhere;
  }
}

/* RU vertical rhythm: remove excess space between Hero and the next section. */
.pn-ru-page .pn-hero {
  min-height: auto;
  padding-bottom: 12px;
}

.pn-ru-page .pn-hero-layout {
  row-gap: 10px;
}

.pn-ru-page .pn-philosophy {
  padding-top: 30px;
}

@media (max-width: 760px) {
  .pn-ru-page .pn-hero {
    padding-bottom: 18px;
  }

  .pn-ru-page .pn-philosophy {
    padding-top: 32px;
  }
}

/* ============================================================
   ITERATION 2 — de-dupe + new blocks (asset arrows, scenarios,
   you/edeal/you-get, mutual partnership, FAQ)
   ============================================================ */

/* ---- Block 05: light for both languages + arrow SVG ---- */
.pn-roles {
  padding: 88px 0;
  background: #f7fbff;
  color: var(--pn-ink);
}
.pn-asset-copy h2 { color: var(--pn-ink); }
.pn-asset-copy p:not(.pn-kicker) { color: #52658a; }
.pn-asset-system {
  min-height: auto;
  padding: 8px 0 0;
  border: 0;
  overflow: visible;
  background: none;
}
.pn-asset-system::before,
.pn-asset-system::after,
.pn-ru-page .pn-asset-system::before,
.pn-ru-page .pn-asset-system::after { display: none; }
.pn-asset-svg { display: block; width: 100%; height: auto; }
.pn-asset-svg text { font-family: 'Manrope', system-ui, sans-serif; }
.pn-asset-mobile { display: none; }

/* mobile stacked fallback for block 05 */
.pn-am-doors { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pn-am-doors > div { display: grid; gap: 6px; padding: 16px; border: 1px solid var(--pn-line); border-radius: 16px; background: #fff; text-align: center; }
.pn-am-doors span { font-size: 1.9rem; font-weight: 800; }
.pn-am-blue { color: var(--pn-blue); }
.pn-am-green { color: var(--pn-green); }
.pn-am-doors strong { font-size: .82rem; color: var(--pn-ink); }
.pn-am-arrow { text-align: center; font-size: 1.4rem; color: var(--pn-blue); line-height: 1; margin: 8px 0; }
.pn-am-arrow-green { color: var(--pn-green); }
.pn-am-client { display: grid; justify-items: center; gap: 4px; padding: 18px; border: 1px solid var(--pn-line); border-radius: 18px; background: #fff; }
.pn-am-client img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; border: 3px solid var(--pn-blue); }
.pn-am-client strong { font-size: .95rem; }
.pn-am-client small { color: #52658a; }
.pn-am-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pn-am-services span { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid var(--pn-line); border-radius: 12px; background: #fff; font-size: .86rem; font-weight: 600; }
.pn-am-ico { color: var(--pn-blue); flex: 0 0 auto; }
.pn-am-partner { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; border-radius: 16px; background: var(--pn-green); color: #fff; }
.pn-am-partner span { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.22); font-size: 1.2rem; font-weight: 800; }
.pn-am-partner strong { font-size: 1rem; }
.pn-am-return { margin-top: 12px; padding: 12px 16px; border-radius: 999px; background: #e5f9f0; color: var(--pn-green); font-weight: 800; text-align: center; font-size: .9rem; }

/* ---- Scenarios ---- */
.pn-scn-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.pn-scn { position: relative; display: grid; gap: 10px; padding: 24px 22px; border: 1px solid var(--pn-line); border-radius: 16px; background: #fff; }
.pn-scn-ico { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: #eef3ff; color: var(--pn-blue); }
.pn-scn-num { position: absolute; top: 20px; right: 22px; font-size: .82rem; font-weight: 800; color: #c2d3ee; }
.pn-scn h3 { font-size: 1.02rem; font-weight: 800; color: var(--pn-ink); }
.pn-scn p { font-size: .9rem; line-height: 1.5; color: #52658a; }

/* ---- You / Edeal / You get ---- */
.pn-division-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 14px; margin-top: 26px; }
.pn-zone { display: grid; gap: 12px; align-content: start; padding: 28px 24px; border: 1px solid var(--pn-line); border-radius: 18px; background: #fff; }
.pn-zone-ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; }
.pn-zone strong { font-size: 1.15rem; font-weight: 800; color: var(--pn-ink); }
.pn-zone p { font-size: .92rem; line-height: 1.55; color: #52658a; }
.pn-zone-0 { border-top: 3px solid var(--pn-blue); }
.pn-zone-0 .pn-zone-ico { background: #eef3ff; color: var(--pn-blue); }
.pn-zone-1 { border-top: 3px solid #0f172a; }
.pn-zone-1 .pn-zone-ico { background: #0f172a; color: #fff; }
.pn-zone-2 { border-top: 3px solid var(--pn-green); }
.pn-zone-2 .pn-zone-ico { background: #e5f9f0; color: var(--pn-green); }
.pn-zone-arrow { display: grid; place-items: center; font-size: 1.6rem; font-weight: 800; color: #b8c8e4; }

/* ---- Mutual partnership ---- */
.pn-mutual-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr); gap: 44px; align-items: center; }
.pn-mutual-copy h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.pn-mutual-card { display: grid; gap: 16px; padding: 28px; border: 1px solid var(--pn-line); border-radius: 20px; background: #fff; box-shadow: 0 24px 60px -40px rgba(15,23,42,.4); }
.pn-mutual-source { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 14px; background: linear-gradient(120deg, #2458ff, #1b47db); color: #fff; }
.pn-mutual-source strong { font-size: 1.15rem; letter-spacing: .04em; }
.pn-mutual-mark { display: inline-flex; gap: 3px; }
.pn-mutual-mark i { width: 5px; height: 18px; border-radius: 2px; background: #fff; }
.pn-mutual-mark i:nth-child(2) { height: 13px; align-self: center; opacity: .85; }
.pn-mutual-mark i:nth-child(3) { height: 9px; align-self: center; opacity: .7; }
.pn-mutual-beam { display: flex; justify-content: center; gap: 10px; }
.pn-mutual-beam span { width: 3px; height: 20px; border-radius: 2px; background: linear-gradient(#2458ff, #12a160); opacity: .5; }
.pn-mutual-list { display: grid; gap: 10px; }
.pn-mutual-list li { display: flex; align-items: flex-start; gap: 10px; padding: 13px 16px; border: 1px solid var(--pn-line); border-radius: 12px; background: #f7fbff; font-size: .95rem; font-weight: 600; color: var(--pn-ink); }
.pn-mutual-check { flex: 0 0 auto; margin-top: 1px; color: var(--pn-green); }
.pn-mutual-target { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-radius: 14px; background: var(--pn-green); color: #fff; }
.pn-mutual-target strong { display: block; font-size: 1rem; }
.pn-mutual-target small { opacity: .85; }

/* ---- Trust block spacing inside proof ---- */
.pn-trust-block { margin-bottom: 40px; }

/* ---- FAQ ---- */
.pn-faq-list { display: grid; gap: 12px; margin-top: 26px; max-width: 900px; }
.pn-faq-item { border: 1px solid var(--pn-line); border-radius: 14px; background: #fff; overflow: hidden; }
.pn-faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; cursor: pointer; list-style: none; font-size: 1.02rem; font-weight: 700; color: var(--pn-ink); }
.pn-faq-item summary::-webkit-details-marker { display: none; }
.pn-faq-item summary i { position: relative; flex: 0 0 auto; width: 20px; height: 20px; }
.pn-faq-item summary i::before,
.pn-faq-item summary i::after { position: absolute; top: 50%; left: 50%; background: var(--pn-blue); content: ""; transition: transform .2s ease; }
.pn-faq-item summary i::before { width: 14px; height: 2.4px; transform: translate(-50%, -50%); }
.pn-faq-item summary i::after { width: 2.4px; height: 14px; transform: translate(-50%, -50%); }
.pn-faq-item[open] summary i::after { transform: translate(-50%, -50%) scaleY(0); }
.pn-faq-item[open] summary { color: var(--pn-blue); }
.pn-faq-item p { padding: 0 22px 20px; margin: 0; color: #52658a; line-height: 1.6; }

/* ---- Responsive ---- */
@media (max-width: 1060px) {
  .pn-asset-svg { display: none; }
  .pn-asset-mobile { display: block; }
  .pn-scn-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pn-division-flow { grid-template-columns: 1fr; }
  .pn-zone-arrow { transform: rotate(90deg); }
  .pn-mutual-grid { grid-template-columns: 1fr; gap: 26px; }
}
@media (max-width: 600px) {
  .pn-scn-grid { grid-template-columns: 1fr; }
  .pn-am-services { grid-template-columns: 1fr; }
}

/* ============================================================
   ITERATION 3 — RU dashboard readability + free-section clarity
   ============================================================ */

/* RU tracking sub-block: no white card, just readable text + top divider */
.pn-ru-page .pn-tracking {
  margin-top: 24px;
  padding: 22px 0 0;
  border: 0;
  border-top: 1px solid var(--pn-line);
  border-radius: 0;
  background: transparent;
}
.pn-ru-page .pn-tracking p { color: #52658a; }
.pn-ru-page .pn-track-line { background: transparent; gap: 8px; }
.pn-ru-page .pn-track-line span {
  color: var(--pn-ink);
  border: 1px solid var(--pn-line);
  border-radius: 10px;
  background: #fff;
}

/* RU timeline labels were colliding on desktop (>=761px) */
@media (min-width: 761px) {
  .pn-ru-page .pn-client-lifecycle { column-gap: 8px; }
  .pn-ru-page .pn-client-event { padding-left: 9px; padding-right: 9px; }
  .pn-ru-page .pn-client-event span { font-size: .8rem; }
  .pn-ru-page .pn-client-event strong { font-size: .86rem; line-height: 1.16; }
}

/* Free section: right block is now "what you don't need", not the disclosure */
.pn-free-points {
  padding: 30px;
  border: 1px solid var(--pn-line);
  border-radius: 8px;
  background: #fff;
}
.pn-free-points h3 { margin-bottom: 16px; font-size: 1.12rem; font-weight: 800; color: var(--pn-ink); }
.pn-free-points ul { display: grid; gap: 12px; }
.pn-free-points li { display: flex; align-items: flex-start; gap: 10px; color: var(--pn-ink); font-weight: 600; }
.pn-free-check { flex: 0 0 auto; margin-top: 2px; color: var(--pn-green); }

/* Partner disclosure moved to a small footnote under the form */
.pn-form-disclosure { margin-top: 4px; font-size: .76rem; line-height: 1.5; color: #93a6c4; }

/* track-line: wrap chips on small screens (partner_key token) */
@media (max-width: 760px) {
  .pn-ru-page .pn-track-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pn-ru-page .pn-track-line span { overflow-wrap: anywhere; }
}
@media (max-width: 1060px) {
  .pn-ru-page .pn-dash-grid > * { min-width: 0; }
}

/* === Partner feedback 2026-08 · simplified economics + earnings/trust + offers intro === */
.pn-offers-intro{
  max-width:760px;margin:26px auto 4px;text-align:center;
  color:var(--pn-muted);font-size:1.02rem;font-weight:600;
}
/* simplified economics: calc-main | one clean formula card */
.pn-ru-page .pn-revenue-simple{
  grid-template-columns:minmax(0,1.15fr) minmax(260px,.85fr);
  align-items:stretch;
}
.pn-ru-page .pn-simple-formula{
  display:flex;flex-direction:column;justify-content:center;gap:12px;
  padding:22px;border:1px solid rgba(193,211,238,.88);border-radius:14px;
  background:rgba(255,255,255,.9);
}
.pn-simple-formula .pn-sf-row{
  display:flex;align-items:baseline;justify-content:space-between;gap:14px;
  padding-bottom:12px;border-bottom:1px solid rgba(193,211,238,.7);
}
.pn-simple-formula .pn-sf-row span{color:var(--pn-muted);font-size:.92rem;font-weight:600;}
.pn-simple-formula .pn-sf-row strong{color:var(--pn-ink);font-size:1.15rem;font-weight:800;white-space:nowrap;}
.pn-simple-formula .pn-sf-accent strong{color:var(--pn-blue);font-size:1.35rem;}
.pn-simple-formula .pn-sf-total{
  display:flex;align-items:baseline;justify-content:space-between;gap:14px;
  margin-top:2px;padding:14px 16px;border-radius:12px;
  background:linear-gradient(135deg,rgba(36,88,255,.1),rgba(0,166,166,.08));
}
.pn-simple-formula .pn-sf-total span{color:var(--pn-muted);font-size:.86rem;font-weight:700;}
.pn-simple-formula .pn-sf-total b{color:var(--pn-ink);}
.pn-simple-formula .pn-sf-total strong{color:var(--pn-blue);font-size:1.5rem;font-weight:800;white-space:nowrap;}
/* earnings / trust block */
.pn-earn-block .pn-earn-stats{
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:8px 0 22px;
}
.pn-earn-stat{
  padding:22px;border:1px solid var(--pn-line);border-radius:16px;
  background:linear-gradient(135deg,rgba(36,88,255,.06),rgba(255,255,255,.9));
}
.pn-earn-stat strong{display:block;color:var(--pn-blue);font-size:clamp(2rem,3.4vw,2.8rem);font-weight:800;line-height:1;}
.pn-earn-stat span{display:block;margin-top:8px;color:var(--pn-ink);font-size:1rem;font-weight:700;}
.pn-earn-stat small{display:block;margin-top:8px;color:var(--pn-muted);font-size:.85rem;line-height:1.35;}
.pn-earn-trust{display:grid;gap:14px;padding-top:18px;border-top:1px solid var(--pn-line);}
.pn-earn-trust p{max-width:760px;color:var(--pn-muted);font-size:1rem;line-height:1.5;margin:0;}
.pn-earn-note{margin-top:14px;color:var(--pn-muted);font-size:.8rem;}
@media(max-width:760px){
  .pn-earn-block .pn-earn-stats{grid-template-columns:1fr;}
}
