
    /* ── HERO ── */
    @keyframes pp-gradient-flow {
      0%   { background-position: 0% 50%; }
      100% { background-position: 200% 50%; }
    }
    .pp-hero {
      background: #111118;
      padding: 100px 0 0;
      position: relative;
      overflow: hidden;
    }
    .pp-hero-color-bar {
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, #273DB4, #F95CA4, #ED7845, #C50900, #F95CA4, #273DB4);
      background-size: 200% auto;
      animation: pp-gradient-flow 3s linear infinite;
    }
    .pp-hero-glow {
      position: absolute;
      top: -120px; left: 50%;
      transform: translateX(-50%);
      width: 700px;
      height: 400px;
      background: radial-gradient(ellipse at center, rgba(249,92,164,0.18) 0%, rgba(39,61,180,0.14) 45%, transparent 70%);
      pointer-events: none;
    }
    .pp-hero-inner {
      max-width: 980px;
      margin: 0 auto;
      padding: 64px 32px 56px;
      position: relative;
      z-index: 2;
    }
    .pp-hero-breadcrumb {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      margin-bottom: 20px;
      letter-spacing: .04em;
    }
    .pp-hero-breadcrumb a {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
    }
    .pp-hero-breadcrumb a:hover { color: #F95CA4; }
    .pp-hero-breadcrumb span { margin: 0 6px; }
    .pp-hero-title {
      font-size: clamp(36px, 6vw, 64px);
      font-weight: 700;
      letter-spacing: -0.02em;
      margin: 0 0 18px;
      line-height: 1.1;
      background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #F95CA4 65%, #ED7845 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .pp-hero-meta {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }
    .pp-hero-meta-item {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .pp-hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, #F95CA4, #ED7845);
      flex-shrink: 0;
    }
    .pp-hero-rule {
      margin: 40px 0 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(249,92,164,0.5) 0%, rgba(39,61,180,0.3) 50%, transparent 100%);
      border: none;
    }

    /* ── TOC BOX ── */
    .pp-toc-bar {
      background: #eef1fb;
      border-bottom: 1px solid #d4daf0;
    }
    .pp-toc-bar-inner {
      max-width: 980px;
      margin: 0 auto;
      padding: 20px 32px;
    }
    .pp-toc-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2px 32px;
    }
    .pp-toc-grid a {
      font-size: 13px;
      color: #273DB4;
      text-decoration: none;
      padding: 5px 0 5px 14px;
      position: relative;
      line-height: 1.4;
      border-bottom: 1px solid #d4daf0;
      transition: color .2s;
    }
    .pp-toc-grid a::before {
      content: '›';
      position: absolute;
      left: 2px;
      color: #F95CA4;
      font-size: 15px;
      line-height: 1.3;
    }
    .pp-toc-grid a:hover { color: #F95CA4; }

    /* ── CONTENT WRAPPER ── */
    .pp-content {
      background: #f5f6fc;
      padding: 48px 0 80px;
    }
    .pp-content-inner {
      max-width: 980px;
      margin: 0 auto;
      padding: 0 32px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    /* ── SECTION CARD ── */
    .pp-section {
      background: #fff;
      border-radius: 14px;
      border: 1px solid #e8eaf5;
      padding: 36px 40px;
      scroll-margin-top: 90px;
      position: relative;
      overflow: hidden;
      transition: box-shadow .2s;
    }
    .pp-section:hover {
      box-shadow: 0 6px 32px rgba(39,61,180,0.07);
    }
    .pp-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, #273DB4 0%, #F95CA4 50%, #ED7845 100%);
      border-radius: 4px 0 0 4px;
    }

    /* ── H2 HEADING ── */
    .pp-section h2 {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .15em;
      text-transform: uppercase;
      margin: 0 0 20px;
      padding: 8px 14px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(90deg, #eef1fb, #fdf0f7);
      border-radius: 6px;
      border: 1px solid #dde2f5;
      color: #273DB4;
    }
    .pp-section h2::before {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #273DB4, #F95CA4);
      flex-shrink: 0;
    }

    /* ── H3 SUBHEADING ── */
    .pp-section h3 {
      font-size: 14px;
      font-weight: 700;
      color: #1a1a2e;
      margin: 28px 0 10px;
      padding-left: 12px;
      border-left: 3px solid #F95CA4;
      line-height: 1.4;
    }

    /* ── BODY TEXT ── */
    .pp-section p {
      font-size: 14px;
      line-height: 1.82;
      color: #4a4a62;
      margin: 0 0 14px;
    }

    /* ── LISTS ── */
    .pp-section ul {
      margin: 0 0 16px 0;
      padding: 0;
      list-style: none;
    }
    .pp-section ul li {
      font-size: 14px;
      line-height: 1.78;
      color: #4a4a62;
      margin-bottom: 6px;
      padding-left: 20px;
      position: relative;
    }
    .pp-section ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 9px;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(135deg, #273DB4, #F95CA4);
    }

    /* ── INLINE LINKS ── */
    .pp-section a {
      color: #273DB4;
      text-decoration: none;
      border-bottom: 1px solid rgba(39,61,180,0.25);
      transition: color .15s, border-color .15s;
    }
    .pp-section a:hover {
      color: #F95CA4;
      border-color: #F95CA4;
    }

    /* ── CONTACT CARD ── */
    .pp-contact-card {
      background: linear-gradient(135deg, #eef1fb 0%, #fdf0f7 100%);
      border: 1px solid #dde2f5;
      border-radius: 10px;
      padding: 20px 24px;
      margin-top: 4px;
      line-height: 2;
    }
    .pp-contact-card a {
      font-weight: 600;
    }

    @media (max-width: 640px) {
      .pp-toc-grid { grid-template-columns: 1fr; }
      .pp-hero-inner { padding: 40px 20px 44px; }
      .pp-content { padding: 28px 0 60px; }
      .pp-content-inner { padding: 0 16px; gap: 16px; }
      .pp-section { padding: 24px 22px; }
      .pp-toc-bar-inner { padding: 16px 20px; }
    }

    /* ── INFO CARD (cookie policy) ── */
    .pp-info-card {
      background: linear-gradient(135deg, #eef1fb 0%, #fdf0f7 100%);
      border: 1px solid #dde2f5;
      border-radius: 10px;
      padding: 20px 24px;
      margin-top: 4px;
      font-size: 14px;
      line-height: 1.78;
      color: #4a4a62;
    }
    .pp-info-card a {
      font-weight: 600;
    }
