    .pb-page {
      min-height: 100vh;
      overflow-x: hidden;
      background:
        radial-gradient(circle at 8% 5%, rgba(212, 82, 213, 0.13), transparent 26rem),
        radial-gradient(circle at 94% 12%, rgba(255, 121, 26, 0.12), transparent 24rem),
        linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
    }

    .pb-container {
      width: min(var(--pb-max), calc(100% - 40px));
      margin: 0 auto;
    }

    /* =========================================================
       Top nav
       ========================================================= */

    .pb-topbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(1, 123, 160, 0.12);
      transition: box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
    }

    .pb-topbar.is-scrolled {
      background: rgba(255, 255, 255, 0.96);
      border-color: rgba(1, 123, 160, 0.18);
      box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
    }

    .pb-nav {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .pb-brand {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      flex: 0 0 auto;
    }

    .pb-logo {
      display: block;
      width: 225px;
      max-width: 46vw;
      height: auto;
    }

    .pb-navlinks {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 7px;
      border: 2px solid rgba(1, 123, 160, 0.16);
      border-radius: 999px;
      background: var(--pb-white);
      box-shadow: 4px 4px 0 rgba(212, 82, 213, 0.12);
    }

    .pb-nav-item {
      position: relative;
    }

    .pb-nav-main {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 10px 13px;
      border-radius: 999px;
      color: var(--pb-ink);
      font-size: 14px;
      font-weight: 900;
      text-decoration: none;
      white-space: nowrap;
    }
    
    .pb-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 50px;
      justify-content: center;
    }

    .pb-has-menu > .pb-nav-main::after {
      content: "";
      width: 7px;
      height: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-2px) rotate(45deg);
      opacity: 0.68;
    }

    .pb-nav-main:hover,
    .pb-nav-item:focus-within > .pb-nav-main,
    .pb-nav-item:hover > .pb-nav-main {
      color: var(--pb-white);
      background: var(--pb-ocean-gradient);
    }

    .pb-dropdown {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      min-width: 242px;
      padding: 10px;
      border: 2px solid rgba(1, 123, 160, 0.16);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 8px 8px 0 rgba(212, 82, 213, 0.14), 0 20px 50px rgba(0, 0, 0, 0.10);
      transform: translate(-50%, 8px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
    }

    .pb-dropdown::before {
      content: "";
      position: absolute;
      top: -16px;
      left: 0;
      right: 0;
      height: 16px;
    }

    .pb-nav-item:hover .pb-dropdown,
    .pb-nav-item:focus-within .pb-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translate(-50%, 0);
    }

    .pb-dropdown a {
      display: block;
      padding: 11px 12px;
      border-radius: 10px;
      color: var(--pb-ink);
      font-size: 14px;
      font-weight: 850;
      line-height: 1.2;
      text-decoration: none;
      white-space: nowrap;
    }

    .pb-dropdown a:hover,
    .pb-dropdown a:focus {
      color: var(--pb-blue);
      background: rgba(1, 123, 160, 0.08);
      outline: none;
    }

    .pb-dropdown .pb-sub-link {
      margin-left: 10px;
      padding-left: 18px;
      color: var(--pb-muted);
      border-left: 2px solid rgba(1, 123, 160, 0.14);
      font-size: 13px;
    }

    .pb-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .pb-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 60px; padding: 0 18px; border-radius: 999px; border: 2px solid transparent; font-size: 20px; font-weight: 900; text-decoration: none; box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.12); transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease; cursor: pointer; }

    .pb-btn:hover {
      transform: translate(-1px, -1px);
      box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.14);
    }

    .pb-btn-primary {
      color: #fff;
      background: var(--pb-gradient);
      border-color: rgba(0, 0, 0, 0.07);
    }

    .pb-btn-ghost {
      color: var(--pb-blue);
      background: #fff;
      border-color: rgba(1, 123, 160, 0.22);
      box-shadow: none;
    }

    .pb-btn-light {
      color: var(--pb-blue);
      background: var(--pb-white);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .pb-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border: 2px solid rgba(1, 123, 160, 0.20);
      border-radius: 12px;
      background: #fff;
      padding: 10px;
      cursor: pointer;
    }

    .pb-menu-btn span {
      display: block;
      height: 2px;
      margin: 5px 0;
      background: var(--pb-ink);
      border-radius: 999px;
    }

    .pb-mobile-panel {
      display: none;
      padding: 0 0 18px;
    }

    .pb-mobile-panel a {
      display: block;
      padding: 14px 0;
      font-weight: 850;
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .pb-mobile-panel .pb-btn { margin-top: 14px; width: 100%; text-align: center; }

    .pb-mobile-group {
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .pb-mobile-group strong {
      display: block;
      padding: 8px 0 4px;
      color: var(--pb-blue);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .pb-mobile-group a {
      padding: 10px 0 10px 14px;
      border-bottom: 0;
      color: var(--pb-ink);
      font-weight: 820;
    }

    /* =========================================================
       Shared
       ========================================================= */

    .pb-label,
    .pb-kicker {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: fit-content;
      margin: 0 0 22px;
      padding: 12px 16px;
      border: 3px solid rgba(21, 49, 58, 0.88);
      border-radius: 18px 18px 18px 4px;
      background: #ffffff;
      box-shadow:
        7px 7px 0 rgba(212, 82, 213, 0.15),
        0 14px 30px rgba(0, 0, 0, 0.06);
      color: var(--pb-blue);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .pb-kicker::before {
      content: "";
      width: 38px;
      height: 7px;
      border-radius: 999px;
      background: var(--pb-gradient);
    }

    .pb-gradient-text {
      background: var(--pb-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .pb-section {
      padding: 76px 0;
    }

    .pb-section-soft {
      background:
        linear-gradient(180deg, rgba(245, 245, 247, 0.88), rgba(255, 255, 255, 0.92)),
        radial-gradient(circle at 92% 20%, rgba(255, 121, 26, 0.10), transparent 20rem);
      border-top: 1px solid rgba(1, 123, 160, 0.08);
      border-bottom: 1px solid rgba(1, 123, 160, 0.08);
    }

    .pb-section-head {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 34px;
      align-items: end;
      margin-bottom: 32px;
    }

    .pb-section-head.center {
      display: block;
      max-width: 840px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .pb-section h2 {
      margin: 0;
      color: var(--pb-ink);
      font-size: clamp(34px, 4.4vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .pb-section-head.center h2 {
      margin-left: auto;
      margin-right: auto;
    }

    .pb-section-intro {
      margin: 12px 0 0;
      color: #40565D;
      font-size: 19px;
      line-height: 1.55;
      font-weight: 620;
    }

    /* =========================================================
       Hero
       ========================================================= */

    .pb-pi-hero {
      position: relative;
      padding: 82px 0 88px;
      overflow: hidden;
      background:
        linear-gradient(rgba(1, 123, 160, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 123, 160, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 10% 18%, rgba(212, 82, 213, 0.13), transparent 26rem),
        radial-gradient(circle at 92% 28%, rgba(255, 121, 26, 0.12), transparent 26rem),
        #ffffff;
      background-size: 32px 32px, 32px 32px, auto, auto, auto;
      border-bottom: 1px solid rgba(1, 123, 160, 0.10);
    }

    .pb-pi-hero-shell {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 0.96fr) minmax(430px, 1.04fr);
      gap: 54px;
      align-items: center;
    }

    .pb-pi-hero h1 {
      max-width: 820px;
      margin: 0;
      color: var(--pb-ink);
      font-size: clamp(48px, 6.6vw, 86px);
      line-height: 0.92;
      letter-spacing: -0.072em;
      font-weight: 950;
      padding-bottom: 0.08em;
    }

    .pb-pi-hero h1 span {
      display: block;
      background: var(--pb-gradient);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .pb-pi-subtitle {
      position: relative;
      max-width: 690px;
      margin: 28px 0 0;
      padding: 22px 26px 22px 34px;
      border-radius: 20px;
      background:
        linear-gradient(135deg, rgba(1, 123, 160, 0.07), rgba(212, 82, 213, 0.045)),
        rgba(255, 255, 255, 0.92);
      border: 2px solid rgba(1, 123, 160, 0.16);
      box-shadow:
        7px 7px 0 rgba(255, 121, 26, 0.10),
        0 16px 34px rgba(0, 0, 0, 0.05);
      color: #40565D;
      font-size: clamp(20px, 1.8vw, 23px);
      line-height: 1.35;
      font-weight: 700;
      letter-spacing: -0.035em;
    }

    .pb-pi-subtitle::before {
      content: "";
      position: absolute;
      left: 16px;
      top: 18px;
      bottom: 18px;
      width: 6px;
      border-radius: 999px;
      background: var(--pb-gradient);
    }

    .pb-pi-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .pb-pi-card-deck {
      position: relative;
      min-height: 530px;
      border: 4px solid rgba(21, 49, 58, 0.88);
      border-radius: 30px;
      background:
        linear-gradient(rgba(1, 123, 160, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1, 123, 160, 0.045) 1px, transparent 1px),
        radial-gradient(circle at 18% 16%, rgba(238, 227, 88, 0.20), transparent 15rem),
        radial-gradient(circle at 86% 86%, rgba(255, 121, 26, 0.14), transparent 17rem),
        #fffdf5;
      background-size: 22px 22px, 22px 22px, auto, auto, auto;
      box-shadow:
        12px 12px 0 rgba(212, 82, 213, 0.16),
        0 24px 55px rgba(0, 0, 0, 0.10);
      overflow: hidden;
      transform: rotate(1deg);
    }

    .pb-pi-deck-label {
      position: absolute;
      left: 28px;
      top: 24px;
      z-index: 5;
      padding: 10px 13px;
      border: 3px solid rgba(21, 49, 58, 0.82);
      border-radius: 999px;
      background: var(--pb-yellow);
      color: var(--pb-ink);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      box-shadow: 5px 5px 0 rgba(1, 123, 160, 0.12);
    }

    .pb-pi-intel-card {
      position: absolute;
      width: min(430px, calc(100% - 72px));
      padding: 24px;
      border: 3px solid rgba(21, 49, 58, 0.88);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.96);
      box-shadow:
        8px 8px 0 rgba(255, 121, 26, 0.11),
        0 18px 38px rgba(0, 0, 0, 0.08);
    }

    .pb-pi-intel-card.card-1 {
      z-index: 4;
      left: 54px;
      top: 92px;
      transform: rotate(-4deg);
      background:
        radial-gradient(circle at 12% 12%, rgba(238, 227, 88, 0.28), transparent 9rem),
        #ffffff;
    }

    .pb-pi-intel-card.card-2 {
      z-index: 3;
      right: 44px;
      top: 184px;
      transform: rotate(5deg);
      background:
        radial-gradient(circle at 88% 14%, rgba(212, 82, 213, 0.12), transparent 10rem),
        #ffffff;
    }

    .pb-pi-intel-card.card-3 {
      z-index: 2;
      left: 78px;
      bottom: 38px;
      transform: rotate(-1deg);
      background:
        radial-gradient(circle at 14% 92%, rgba(1, 123, 160, 0.12), transparent 11rem),
        #ffffff;
    }

    .pb-pi-card-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      margin-bottom: 16px;
    }

    .pb-pi-card-top span {
      display: inline-flex;
      padding: 8px 11px;
      border-radius: 999px;
      color: var(--pb-blue);
      background: rgba(1, 123, 160, 0.09);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .pb-pi-card-top b {
      display: grid;
      place-items: center;
      min-width: 66px;
      min-height: 42px;
      padding: 0 10px;
      border-radius: 14px;
      color: #fff;
      background: var(--pb-gradient);
      font-size: 24px;
      line-height: 1;
      letter-spacing: -0.055em;
      font-weight: 950;
      box-shadow: 4px 4px 0 rgba(1, 123, 160, 0.14);
    }

    .pb-pi-intel-card h2 {
      margin: 0 0 10px;
      color: var(--pb-ink);
      font-size: clamp(28px, 3.2vw, 42px);
      line-height: 0.96;
      letter-spacing: -0.058em;
      font-weight: 950;
    }

    .pb-pi-intel-card p {
      margin: 0;
      color: #40565D;
      font-size: 15.5px;
      line-height: 1.42;
      font-weight: 700;
    }

    .pb-pi-card-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .pb-pi-card-tags span {
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(245, 245, 247, 0.92);
      border: 1px solid rgba(1, 123, 160, 0.12);
      color: var(--pb-ink);
      font-size: 12px;
      font-weight: 900;
    }

    /* =========================================================
       Flow strip
       ========================================================= */

    .pb-flow-strip {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .pb-flow-step {
      position: relative;
      min-height: 128px;
      padding: 18px;
      border-radius: 20px;
      border: 3px solid rgba(21, 49, 58, 0.80);
      background: #fff;
      box-shadow: 7px 7px 0 rgba(9, 152, 143, 0.13), 0 18px 42px rgba(0,0,0,0.06);
    }

    .pb-flow-step:not(:last-child)::after {
      content: "→";
      position: absolute;
      right: -17px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: #fff;
      background: var(--pb-gradient);
      font-size: 17px;
      font-weight: 950;
      box-shadow: 3px 3px 0 rgba(1, 123, 160, 0.14);
    }

    .pb-flow-step b {
      display: block;
      color: var(--pb-blue);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .pb-flow-step span {
      display: block;
      color: var(--pb-ink);
      font-size: 19px;
      line-height: 1.05;
      letter-spacing: -0.04em;
      font-weight: 950;
    }

    /* =========================================================
       Value cards
       ========================================================= */

    .pb-card-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .pb-card-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .pb-value-card,
    .pb-path-card,
    .pb-deliverable-card,
    .pb-pricing-card,
    .pb-execution-card {
      background: #fff;
      border: 2px solid rgba(1, 123, 160, 0.15);
      border-radius: var(--pb-radius-lg);
      box-shadow: var(--pb-soft-shadow);
    }

    .pb-value-card {
      min-height: 300px;
      padding: 26px;
      border: 3px solid rgba(21, 49, 58, 0.84);
      box-shadow: 8px 8px 0 rgba(9, 152, 143, 0.13), 0 18px 42px rgba(0, 0, 0, 0.06);
      display: flex;
      flex-direction: column;
    }

    .pb-value-number {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--pb-gradient);
      box-shadow: 4px 4px 0 rgba(1, 123, 160, 0.16);
      font-size: 14px;
      font-weight: 950;
      margin-bottom: 22px;
    }

    .pb-value-card h3,
    .pb-path-card h3,
    .pb-deliverable-card h3,
    .pb-pricing-card h3,
    .pb-execution-card h3 {
      margin: 0 0 12px;
      color: var(--pb-ink);
      font-size: 30px;
      line-height: 1;
      letter-spacing: -0.05em;
      font-weight: 950;
    }

    .pb-value-card p,
    .pb-path-card p,
    .pb-deliverable-card p,
    .pb-pricing-card p,
    .pb-execution-card p {
      margin: 0;
      color: var(--pb-muted);
      font-size: 16px;
      line-height: 1.5;
      font-weight: 650;
    }

    .pb-list {
      list-style: none;
      padding: 0;
      margin: auto 0 0;
      display: grid;
      gap: 10px;
    }

    .pb-list li {
      position: relative;
      padding-left: 22px;
      color: #40565D;
      font-size: 14px;
      line-height: 1.35;
      font-weight: 850;
    }

    .pb-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.48em;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--pb-gradient);
      box-shadow: 3px 3px 0 rgba(1, 123, 160, 0.14);
    }

    .pb-path-card {
      position: relative;
      padding: 30px;
      border: 3px solid rgba(21, 49, 58, 0.84);
      box-shadow: 8px 8px 0 rgba(212, 82, 213, 0.13), 0 18px 42px rgba(0, 0, 0, 0.06);
      overflow: hidden;
    }

    .pb-path-card::after {
      content: "";
      position: absolute;
      right: -42px;
      bottom: -52px;
      width: 150px;
      height: 150px;
      border-radius: 36px;
      background: var(--pb-gradient);
      opacity: 0.08;
      transform: rotate(14deg);
    }

    .pb-path-pill {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 18px;
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(1, 123, 160, 0.09);
      color: var(--pb-blue);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .pb-path-card ul {
      position: relative;
      z-index: 1;
      margin-top: 22px;
    }

    .pb-deliverable-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .pb-deliverable-card {
      padding: 22px;
      min-height: 220px;
      border-color: rgba(21, 49, 58, 0.80);
      box-shadow: 7px 7px 0 rgba(255, 121, 26, 0.12), 0 18px 42px rgba(0,0,0,0.06);
    }

    .pb-deliverable-card strong {
      display: inline-flex;
      margin-bottom: 16px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--pb-pink);
      background: rgba(212, 82, 213, 0.09);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .pb-deliverable-card h3 {
      font-size: 24px;
      line-height: 1.04;
    }

/* =========================================================
   Upgrade system
   ========================================================= */

.pb-upgrade-system {
  position: relative;
  padding: 34px;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 30px;
  background:
    linear-gradient(rgba(1, 123, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 123, 160, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 16%, rgba(238, 227, 88, 0.20), transparent 15rem),
    radial-gradient(circle at 86% 86%, rgba(255, 121, 26, 0.14), transparent 17rem),
    #fffdf5;
  background-size: 22px 22px, 22px 22px, auto, auto, auto;
  box-shadow:
    12px 12px 0 rgba(212, 82, 213, 0.16),
    0 24px 55px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.pb-upgrade-system::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border-radius: 42px;
  background: var(--pb-gradient);
  opacity: 0.08;
  transform: rotate(14deg);
}

.pb-upgrade-header {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 30px;
}

.pb-upgrade-header .pb-label {
  margin-bottom: 14px;
}

.pb-upgrade-header h2 {
  max-width: 880px;
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.pb-upgrade-header p {
  max-width: 760px;
  margin: 16px 0 0;
  color: #40565D;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 680;
}

.pb-upgrade-bridge {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.pb-upgrade-card {
  position: relative;
  min-height: 300px;
  padding: 26px;
  border: 3px solid rgba(21, 49, 58, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    8px 8px 0 rgba(9, 152, 143, 0.13),
    0 18px 42px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.pb-upgrade-card::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -52px;
  width: 145px;
  height: 145px;
  border-radius: 34px;
  background: var(--pb-gradient);
  opacity: 0.08;
  transform: rotate(14deg);
}

.pb-upgrade-card-reliq {
  transform: rotate(-1deg);
}

.pb-upgrade-card-precision {
  transform: rotate(1deg);
  box-shadow:
    8px 8px 0 rgba(212, 82, 213, 0.14),
    0 18px 42px rgba(0, 0, 0, 0.06);
}

.pb-upgrade-card-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(1, 123, 160, 0.09);
  color: var(--pb-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.pb-upgrade-card-precision .pb-upgrade-card-label {
  background: rgba(212, 82, 213, 0.10);
  color: var(--pb-pink);
}

.pb-upgrade-card h3 {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 0 12px;
  color: var(--pb-ink);
  font-size: clamp(32px, 3.3vw, 46px);
  line-height: 0.96;
  letter-spacing: -0.058em;
  font-weight: 950;
}

.pb-upgrade-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 0;
  color: #40565D;
  font-size: 16.5px;
  line-height: 1.48;
  font-weight: 680;
}

.pb-upgrade-chip-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pb-upgrade-chip-row span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(245, 245, 247, 0.92);
  border: 1px solid rgba(1, 123, 160, 0.13);
  color: var(--pb-ink);
  font-size: 12px;
  font-weight: 900;
}

.pb-upgrade-arrow {
  display: grid;
  place-items: center;
  align-self: center;
  width: 104px;
  height: 104px;
  border: 3px solid rgba(21, 49, 58, 0.86);
  border-radius: 999px;
  background: var(--pb-gradient);
  color: #fff;
  box-shadow:
    6px 6px 0 rgba(1, 123, 160, 0.14),
    0 16px 34px rgba(0, 0, 0, 0.08);
}

.pb-upgrade-arrow::before {
  content: "→";
  display: block;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.pb-upgrade-arrow span {
  position: absolute;
  width: 94px;
  margin-top: 72px;
  padding: 7px 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--pb-ink);
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 3px 3px 0 rgba(255, 121, 26, 0.12);
}

.pb-upgrade-output {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.pb-upgrade-output div {
  min-height: 96px;
  padding: 18px;
  border: 2px solid rgba(1, 123, 160, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 5px 5px 0 rgba(255, 121, 26, 0.10);
}

.pb-upgrade-output b {
  display: block;
  color: var(--pb-orange);
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.pb-upgrade-output span {
  display: block;
  color: var(--pb-ink);
  font-size: 14px;
  line-height: 1.22;
  font-weight: 900;
}
/* =========================================================
   Pricing
   ========================================================= */

.pb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 34px;
}

.pb-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 26px;
  border: 3px solid rgba(21, 49, 58, 0.86);
  border-radius: 24px;
  background: #ffffff;
  box-shadow:
    8px 8px 0 rgba(1, 123, 160, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.pb-price-card.is-featured {
  box-shadow:
    8px 8px 0 rgba(212, 82, 213, 0.16),
    0 18px 42px rgba(0, 0, 0, 0.08);
}

.pb-price-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border-radius: 34px;
  background: var(--pb-gradient);
  opacity: 0.07;
  transform: rotate(14deg);
}

.pb-price-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(1, 123, 160, 0.09);
  color: var(--pb-blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.pb-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--pb-gradient);
  color: #ffffff;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(1, 123, 160, 0.14);
}

.pb-price-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: var(--pb-ink);
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.pb-price {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--pb-ink);
}

.pb-price strong {
  display: block;
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 0.88;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.pb-price span {
  display: block;
  padding-bottom: 6px;
  color: var(--pb-muted);
  font-size: 14px;
  font-weight: 900;
}

.pb-price-card > p {
  position: relative;
  z-index: 1;
  min-height: 88px;
  margin: 0 0 20px;
  color: #40565D;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 720;
}

.pb-price-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 11px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.pb-price-list li {
  position: relative;
  padding-left: 22px;
  color: #40565D;
  font-size: 14px;
  line-height: 1.28;
  font-weight: 850;
}

.pb-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pb-gradient);
  box-shadow: 3px 3px 0 rgba(1, 123, 160, 0.14);
}

.pb-price-card .pb-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.pb-pricing-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--pb-muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 780;
  text-align: center;
}
    /* =========================================================
       Execution partner section
       ========================================================= */

    .pb-execution-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
      padding: 34px;
      border: 3px solid rgba(21, 49, 58, 0.88);
      border-radius: 28px;
      color: #fff;
      background: var(--pb-ocean-gradient);
      box-shadow: 10px 10px 0 rgba(212, 82, 213, 0.15);
    }

    .pb-execution-panel small {
      display: block;
      margin-bottom: 12px;
      color: var(--pb-yellow);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .pb-execution-panel h2 {
      max-width: 760px;
      margin: 0;
      color: #fff;
      font-size: clamp(34px, 4.4vw, 56px);
      line-height: 0.98;
      letter-spacing: -0.055em;
      font-weight: 950;
    }

    .pb-execution-panel p {
      max-width: 760px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.86);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.5;
    }

/* =========================================================
   Implementation partner panel
   ========================================================= */

.pb-operator-panel {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 3px solid rgba(21, 49, 58, 0.88);
  border-radius: 30px;
  background:
    linear-gradient(rgba(1, 123, 160, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 123, 160, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 16%, rgba(238, 227, 88, 0.20), transparent 15rem),
    radial-gradient(circle at 86% 86%, rgba(255, 121, 26, 0.14), transparent 17rem),
    #fffdf5;
  background-size: 22px 22px, 22px 22px, auto, auto, auto;
  box-shadow:
    12px 12px 0 rgba(212, 82, 213, 0.16),
    0 24px 55px rgba(0, 0, 0, 0.10);
  overflow: hidden;
}

.pb-operator-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 230px;
  height: 230px;
  border-radius: 42px;
  background: var(--pb-gradient);
  opacity: 0.08;
  transform: rotate(14deg);
}

.pb-operator-copy {
  position: relative;
  z-index: 2;
  padding: 28px;
  border: 3px solid rgba(21, 49, 58, 0.84);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    8px 8px 0 rgba(255, 121, 26, 0.10),
    0 18px 38px rgba(0, 0, 0, 0.06);
}

.pb-operator-copy .pb-label {
  margin-bottom: 16px;
}

.pb-operator-copy h2 {
  margin: 0;
  color: var(--pb-ink);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 950;
}

.pb-operator-copy p:not(.pb-label) {
  margin: 18px 0 0;
  color: #40565D;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}

.pb-operator-cards {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.pb-operator-cards article {
  padding: 20px;
  border: 2px solid rgba(1, 123, 160, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 5px 5px 0 rgba(1, 123, 160, 0.10);
}

.pb-operator-cards b {
  display: block;
  margin-bottom: 10px;
  color: var(--pb-orange);
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.pb-operator-cards h3 {
  margin: 0 0 8px;
  color: var(--pb-ink);
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.pb-operator-cards p {
  margin: 0;
  color: var(--pb-muted);
  font-size: 15px;
  line-height: 1.42;
  font-weight: 720;
}

.pb-operator-action {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: -8px;
}

.pb-operator-action .pb-btn {
  background: var(--pb-gradient);
  color: #ffffff;
  border-color: rgba(21, 49, 58, 0.12);
  text-align: center;
  font-size: 28px;
  line-height: normal;
}

    /* =========================================================
       Final CTA
       ========================================================= */

    .pb-final {
      padding: 72px 0;
      background: linear-gradient(135deg, rgba(1, 123, 160, 0.22), rgba(0, 0, 0, 0)), var(--pb-gradient);
    }

    .pb-final-inner {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .pb-final h2 {
      font-size: clamp(33px, 4.4vw, 52px);
      line-height: 1.04;
      letter-spacing: -0.052em;
      font-weight: 900;
      margin-bottom: 12px;
      color: var(--pb-white);
    }

    .pb-final p {
      margin: 0;
      max-width: 720px;
      color: rgba(255, 255, 255, 0.84);
      font-size: 18px;
      font-weight: 620;
    }

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 1180px) {
  .pb-container {
    width: min(100% - 40px, var(--pb-max));
  }

  .pb-pi-hero-shell,
  .pb-section-head,
  .pb-execution-panel,
  .pb-final-inner {
    grid-template-columns: 1fr;
  }

  .pb-pi-card-deck {
    max-width: 720px;
    transform: none;
  }

  .pb-card-grid-3,
  .pb-deliverable-grid,
  .pb-flow-strip {
    grid-template-columns: 1fr 1fr;
  }

  .pb-card-grid-2 {
    grid-template-columns: 1fr;
  }

  .pb-upgrade-bridge {
    grid-template-columns: 1fr;
  }

  .pb-upgrade-arrow {
    width: 86px;
    height: 86px;
    justify-self: center;
    transform: rotate(90deg);
  }

  .pb-upgrade-arrow span {
    transform: rotate(-90deg);
  }

  .pb-upgrade-output {
    grid-template-columns: 1fr;
  }

  .pb-flow-step:not(:last-child)::after {
    display: none;
  }

  .pb-operator-panel {
    grid-template-columns: 1fr;
  }
  .pb-mobile-panel.is-open { display: block; }
  .pb-operator-action {
    justify-content: flex-start;
    margin-top: 0;
  }
}

@media (max-width: 1080px) {
  .pb-navlinks,
  .pb-actions {
    display: none;
  }
  .pb-mobile-panel.is-open { display: block; }
  .pb-menu-btn {
    display: block;
  }
}

/* Keep pricing 3-column longer than the other grids */
@media (max-width: 980px) {
  .pb-pricing-grid {
    grid-template-columns: 1fr;
  }

  .pb-price-card {
    min-height: auto;
  }
  .pb-mobile-panel.is-open { display: block; }
  .pb-price-card > p {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .pb-container {
    width: min(100% - 32px, var(--pb-max));
  }

  .pb-logo {
    width: 210px;
    max-width: 62vw;
  }

  .pb-nav {
    min-height: 74px;
    gap: 12px;
  }

  .pb-pi-hero {
    padding: 52px 0 58px;
  }

      .pb-kicker {
        font-size: 11px;
        letter-spacing: 0.10em;
        padding: 11px 13px;
      }

      .pb-kicker::before {
        width: 28px;
        height: 5px;
      }
  .pb-mobile-panel.is-open { display: block; }
  .pb-pi-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
    line-height: 0.94;
    letter-spacing: -0.072em;
  }

  .pb-pi-subtitle {
    padding: 20px 20px 20px 30px;
    font-size: 19px;
  }

  .pb-pi-hero-actions {
    display: grid;
  }

  .pb-pi-card-deck {
    min-height: 620px;
    border-radius: 24px;
  }

  .pb-pi-deck-label {
    left: 18px;
    top: 18px;
  }

  .pb-pi-intel-card {
    width: calc(100% - 42px);
    padding: 20px;
  }

  .pb-pi-intel-card.card-1 {
    left: 20px;
    top: 78px;
  }

  .pb-pi-intel-card.card-2 {
    right: 18px;
    top: 252px;
  }

  .pb-pi-intel-card.card-3 {
    left: 20px;
    bottom: 28px;
  }

  .pb-pi-card-top b {
    min-width: 56px;
    font-size: 21px;
  }

  .pb-card-grid-3,
  .pb-card-grid-2,
  .pb-deliverable-grid,
  .pb-flow-strip,
  .pb-pricing-grid
  {
    grid-template-columns: 1fr;
  }

  .pb-section {
    padding: 58px 0;
  }

  .pb-section h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .pb-section-intro {
    font-size: 17px;
  }

  .pb-value-card,
  .pb-path-card,
  .pb-deliverable-card,
  .pb-pricing-card,
  .pb-execution-panel,
  .pb-upgrade-copy,
  .pb-upgrade-steps {
    padding: 22px;
  }

  .pb-upgrade-system {
    padding: 22px;
    border-radius: 24px;
  }

  .pb-upgrade-header h2 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .pb-upgrade-header p {
    font-size: 17px;
  }

  .pb-upgrade-card {
    min-height: auto;
    padding: 22px;
    transform: none;
  }

  .pb-upgrade-card-reliq,
  .pb-upgrade-card-precision {
    transform: none;
  }

  .pb-upgrade-card h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .pb-upgrade-arrow {
    width: 76px;
    height: 76px;
  }

  .pb-upgrade-arrow::before {
    font-size: 32px;
  }

  .pb-upgrade-arrow span {
    display: none;
  }

  .pb-price-card {
    padding: 22px;
  }

  .pb-price-badge {
    position: relative;
    top: auto;
    right: auto;
    width: fit-content;
    margin: -6px 0 16px;
  }

  .pb-price strong {
    font-size: 48px;
  }

  .pb-operator-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .pb-operator-copy {
    padding: 22px;
  }

  .pb-operator-copy h2 {
    font-size: clamp(34px, 11vw, 46px);
  }
}