  /* ─────────────────────────────────────────
     SECTION BASE
     NOTE: NO overflow:hidden here — that was
     clipping slide-up animations on mobile
  ───────────────────────────────────────── */
  #wcu-section {
    background: #07122b;
    padding: 60px 0 0;
    font-family: 'Inter', sans-serif;
  }

  /* ─────────────────────────────────────────
     SCROLL-REVEAL BASE STATE
     Every animated element starts hidden.
     JS adds .wcu-in to reveal it.
  ───────────────────────────────────────── */
  .wcu-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

  .wcu-reveal.wcu-in {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─────────────────────────────────────────
     HEADING BLOCK
  ───────────────────────────────────────── */
  .wcu-eyebrow {
    display: block;
    color: #FFD700;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
  }

  .wcu-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.65rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    margin: 0 auto 16px;
    max-width: 580px;
  }

  .wcu-subtitle {
    font-size: clamp(0.88rem, 2vw, 1rem);
    color: rgba(255,255,255,0.65);
    text-align: center;
    max-width: 460px;
    margin: 0 auto 22px;
    line-height: 1.7;
  }

  .wcu-rule {
    width: 50px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    margin: 0 auto 40px;
  }

  /* ─────────────────────────────────────────
     CARDS GRID
  ───────────────────────────────────────── */
  .wcu-grid {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 44px;
  }

  .wcu-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,215,0,0.12);
    border-radius: 14px;
    padding: 22px 18px 20px;
    text-align: center;
    height: 100%;
    cursor: default;
    /* hover transition separate from reveal transition */
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s ease,
                border-color 0.3s ease;
  }

  /* card starts hidden via .wcu-reveal above */

  /* hover only works after card is revealed */
  .wcu-card.wcu-in:hover {
    background: rgba(255,215,0,0.07);
    border-color: rgba(255,215,0,0.4);
    transform: translateY(-5px);
  }

  /* ─────────────────────────────────────────
     ICON BADGE
  ───────────────────────────────────────── */
  .wcu-icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,215,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: box-shadow 0.3s ease;
    min-width: 52px;
  }

  .wcu-icon-badge .ti {
    font-size: 22px;
    color: #FFD700;
    line-height: 1;
    display: block;
  }

  .wcu-card.wcu-in:hover .wcu-icon-badge {
    box-shadow: 0 0 0 7px rgba(255,215,0,0.07);
  }

  /* ─────────────────────────────────────────
     CARD TEXT
  ───────────────────────────────────────── */
  .wcu-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  .wcu-card-body {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.65;
    margin: 0;
  }

  /* ─────────────────────────────────────────
     TRUST BANNER
  ───────────────────────────────────────── */
  .wcu-trust-banner {
    background: #0d1f4a;
    border-top: 1px solid rgba(255,215,0,0.15);
    padding: 26px 24px;
  }

  .wcu-trust-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .wcu-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 32px;
  }

  .wcu-trust-item .ti {
    font-size: 22px;
    color: #FFD700;
    flex-shrink: 0;
    display: block;
  }

  .wcu-trust-item span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.78);
    font-weight: 500;
    white-space: nowrap;
  }

  .wcu-trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,215,0,0.25);
    flex-shrink: 0;
    align-self: center;
  }

  /* ─────────────────────────────────────────
     MOBILE  ≤ 575px
  ───────────────────────────────────────── */
  @media (max-width: 575.98px) {
    #wcu-section {
      padding-top: 40px;
    }
    .wcu-rule {
      margin-bottom: 28px;
    }
    /* Faster transition on mobile — feels snappier */
    .wcu-reveal {
      transition-duration: 0.45s;
    }
    /* Stack trust items vertically */
    .wcu-trust-inner {
      flex-direction: column;
      gap: 2px;
    }
    .wcu-trust-item {
      padding: 6px 16px;
    }
    .wcu-trust-divider {
      display: none;
    }
  }

  /* ─────────────────────────────────────────
     TABLET  576px – 991px
  ───────────────────────────────────────── */
  @media (min-width: 576px) and (max-width: 991.98px) {
    .wcu-trust-item {
      padding: 8px 20px;
    }
  }

  /* ─────────────────────────────────────────
     REDUCED MOTION — respect user preference
  ───────────────────────────────────────── */
  @media (prefers-reduced-motion: reduce) {
    .wcu-reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }
