/* ── SECTION ── */
  .pp {
    padding: 40px 24px 60px;
    background: linear-gradient(153deg, rgb(3 62 141) 32%, rgb(0 67 158) 72%, rgb(0 54 171) 100%);
    position: relative; overflow: hidden;
    border-radius: 20px;
  }
  .pp::before {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px; pointer-events: none;
  }
  .pp-wrap { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

  /* ── HEADING ── */
  .pp-hd { text-align: center; margin-bottom: 72px; }
  .pp-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,193,7,0.12); border: 1px solid rgba(255,193,7,0.3);
    color: rgb(255,193,7); font-size: 11px; letter-spacing: 2.5px;
    text-transform: uppercase; font-weight: 600;
    padding: 5px 15px; border-radius: 100px; margin-bottom: 18px;
  }
  .pp-badge b { width:6px; height:6px; border-radius:50%; background:rgb(255,193,7); animation: pp-blink 1.8s infinite; display:block; }
  @keyframes pp-blink { 0%,100%{opacity:1} 50%{opacity:.25} }
  .pp-hd h2 {
    font-size: clamp(26px,4vw,48px); font-weight: 800; line-height: 1.18;
    letter-spacing: -1px; color: #fff;
  }
  .pp-hd h2 em { font-style: normal; color: rgb(255,193,7); }

  /* ── SNAKE GRID ── */
  .pp-row {
    display: grid; grid-template-columns: repeat(4,1fr);
    position: relative;
  }
  .pp-row::before {
    content: ''; position: absolute; top: 45px;
    left: 12.5%; right: 12.5%; height: 0;
    border-top: 2.5px dashed rgba(255,255,255,0.18);
    z-index: 0;
  }

  /* ── SLOT ── */
  .pp-slot {
    display: flex; flex-direction: column; align-items: center;
    padding: 0 10px; position: relative; z-index: 1;
  }

  /* ── ICON CIRCLE ── */
  .pp-ic {
    width: 90px; height: 90px; border-radius: 50%;
    background: rgba(0,0,0,0.25);
    border: 2px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    position: relative; margin-bottom: 20px; flex-shrink: 0;
    transition: transform .35s, box-shadow .35s, border-color .35s, background .35s;
  }
  .pp-slot:hover .pp-ic {
    transform: translateY(-7px) scale(1.08);
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
    border-color: rgb(255,193,7);
    background: rgba(0,0,0,0.4);
  }
  .pp-ic .pp-n {
    position: absolute; top: -8px; right: -8px;
    font-size: 11px; font-weight: 800; color: #fff;
    background: rgba(0,0,0,0.5);
    width: 26px; height: 26px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.15);
    transition: background .3s, color .3s;
  }
  .pp-slot:hover .pp-ic .pp-n { background: rgb(255,193,7); color: #001a5e; }
  .pp-ic svg {
    width: 42px; height: 42px;
    stroke: rgba(255,255,255,0.75); fill: none;
    stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke .3s;
  }
  .pp-slot:hover .pp-ic svg { stroke: rgb(255,193,7); }

  /* ── CARD ── */
  .pp-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px; padding: 25px 0px 25px 0px;
    width: 100%; text-align: center; color: #fff;
    transition: border-color .35s, box-shadow .35s, transform .35s;
    position: relative; overflow: hidden;
  }
  .pp-card::after {
    content: ''; position: absolute; top:0; left:0; right:0; height:3px;
    background: linear-gradient(90deg, rgba(255,193,7,0.4), rgb(255,193,7));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
  }
  .pp-slot:hover .pp-card {
    border-color: rgba(255,193,7,0.3);
    box-shadow: 0 12px 36px rgba(0,0,0,0.25);
    transform: translateY(-4px);
  }
  .pp-slot:hover .pp-card::after { transform: scaleX(1); }
  .pp-ct { font-size: 15px; font-weight: 700; line-height: 1.35; color:white; }

  /* ── U-TURN connector ── */
  .pp-bend {
    position: relative; height: 60px; display: flex;
  }
  .pp-bend.right { justify-content: flex-end; padding-right: calc(12.5% - 1px); }
  .pp-bend-line {
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgb(255,193,7));
    border-radius: 2px; position: relative;
  }
  .pp-bend-line::after {
    content: ''; position: absolute; bottom:-1px; left:50%; transform:translateX(-50%);
    width:10px; height:10px; border-radius:50%;
    background: rgb(255,193,7); box-shadow:0 0 12px rgb(255,193,7);
  }

  /* ── STATS ── */
  .pp-stats {
    display: flex; margin-top: 80px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 18px;
    overflow: hidden; background: rgba(255,255,255,0.04);
  }
  .pp-si { flex:1; padding:30px 16px; text-align:center; border-right:1px solid rgba(255,255,255,0.1); }
  .pp-si:last-child { border-right:none; }
  .pp-sv { font-size:clamp(24px,3vw,42px); font-weight:800; line-height:1; color:#fff; }
  .pp-sv span { color: rgb(255,193,7); }
  .pp-sl { font-size:11px; letter-spacing:1.8px; text-transform:uppercase; color:rgba(255,255,255,0.5); margin-top:6px; }

  /* ── CTA ── */
  .pp-cta { text-align:center; margin-top:52px; }
  .pp-btn {
    display:inline-flex; align-items:center; gap:10px;
    background: rgb(255,193,7); color: #001a5e;
    font-size:15px; font-weight:700;
    padding:15px 38px; border-radius:100px; text-decoration:none;
    box-shadow:0 8px 28px rgba(255,193,7,0.35);
    border: none;
    transition:transform .25s, box-shadow .25s;
  }
  .pp-btn:hover { transform:translateY(-3px); box-shadow:0 16px 42px rgba(255,193,7,0.5); }
  .pp-btn svg { transition:transform .25s; }
  .pp-btn:hover svg { transform:translateX(4px); }

  /* ── RESPONSIVE ── */
  @media(max-width:860px){
    .pp-row { grid-template-columns:1fr 1fr; gap:28px 0; }
    .pp-row::before, .pp-bend { display:none; }
    .pp-stats { flex-wrap:wrap; }
    .pp-si { flex:1 1 50%; border-right:none; border-bottom:1px solid rgba(255,255,255,0.1); }
    .pp-si:nth-child(odd){ border-right:1px solid rgba(255,255,255,0.1); }
    .pp-si:last-child,.pp-si:nth-last-child(2):nth-child(odd){ border-bottom:none; }
  }
  @media(max-width:480px){
    .pp-row { grid-template-columns:1fr; }
    .pp-si { flex:1 1 100%; border-right:none!important; }
  }