/* ============================================
       WA SECTION
       ============================================ */
    .wa-section {
      border-radius: 0 0 20px 20px;
      padding: 18px;
      background: linear-gradient(180deg, rgba(35,5,5,.78), rgba(18,2,2,.88));
      backdrop-filter: blur(20px) saturate(160%);
      -webkit-backdrop-filter: blur(20px) saturate(160%);
      border: 1px solid rgba(255,95,95,.18);
      border-top: none;
      box-shadow: 0 20px 50px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
      animation: slideInRight .7s ease-out .35s both;
      position: relative;
      overflow: hidden;
    }

    .wa-section::before {
      content: "";
      position: absolute;
      bottom: -50%;
      right: -20%;
      width: 60%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,45,45,.12), transparent 60%);
      pointer-events: none;
    }

    .wa-list {
      display: grid;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    