    .showcase-section {
      min-height: 100vh;
      padding: clamp(18px, 3vw, 46px);
      background:
        radial-gradient(circle at 20% 15%, rgba(255, 113, 206, .08), transparent 28%),
        radial-gradient(circle at 82% 24%, rgba(125, 90, 255, .08), transparent 30%),
        linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    }

    .feature-grid {
      width: min(1780px, 100%);
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 20px;
    }

    .feature-card {
      position: relative;
      min-height: 920px;
      border-radius: 10px;
      overflow: hidden;
      background: rgba(255,255,255,.84);
      border: 1px solid #dbe6f1;
      box-shadow:
        0 24px 70px rgba(32, 54, 87, .07),
        inset 0 1px 0 rgba(255,255,255,.9);
      isolation: isolate;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.9), transparent 35%),
        radial-gradient(circle at 50% 58%, rgba(255, 88, 182, .08), transparent 34%);
      pointer-events: none;
    }

    .feature-header {
      position: relative;
      z-index: 4;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
      padding: clamp(28px, 3vw, 40px);
    }

    .feature-title {
      max-width: 460px;
      font-size: clamp(32px, 2.55vw, 46px);
      line-height: 1.05;
      
      font-weight: 560;
      color: #071a33;
    }

    .open-btn {
      width: 52px;
      height: 52px;
      border: 0;
      border-radius: 8px;
      display: grid;
      place-items: center;
      color: #5c32ff;
      background: #f3f1ff;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
    }

    .open-btn svg { width: 24px; height: 24px; }

    canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .commerce-content,
    .card-content,
    .globe-content {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
    }

    .chat-stack {
      position: absolute;
      left: 61%;
      top: 26%;
      width: min(360px, 76%);
      transform: translateX(-50%);
      display: grid;
      gap: 28px;
    }

    .chat-bubble {
      border-radius: 10px;
      padding: 18px 60px;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(216,225,235,.9);
      box-shadow: 0 18px 45px rgba(45,60,90,.10);
      color: #111827;
      font-size: 16px;
      line-height: 1.42;
      animation: floatSoft 6s ease-in-out infinite;
    }

    .chat-bubble:nth-child(2) { animation-delay: -2s; }

    .product-panel {
      position: absolute;
      left: 61%;
      bottom: 135px;
      transform: translateX(-50%);
      width: min(390px, 78%);
      padding: 14px;
      border-radius: 10px;
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(216,225,235,.92);
      box-shadow: 0 28px 70px rgba(45,60,90,.13);
      animation: floatSoftRight 7s ease-in-out infinite -1s;
    }

    .product-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .product {
      overflow: hidden;
      border-radius: 9px;
      background: #eef4f9;
      border: 1px solid #d7e3ee;
    }

    .product-img {
      height: 150px;
      display: grid;
      place-items: center;
      background: linear-gradient(180deg, #eaf2f8, #dde8f1);
    }

    .shirt,
    .hoodie {
      width: 74px;
      height: 98px;
      position: relative;
      filter: drop-shadow(0 12px 16px rgba(0,0,0,.18));
    }

    .shirt::before {
      content: "";
      position: absolute;
      inset: 22px 10px 0;
      border-radius: 12px 12px 6px 6px;
      background: linear-gradient(135deg, #0875d6, #0053a7);
    }

    .shirt::after {
      content: "";
      position: absolute;
      left: 0;
      top: 24px;
      width: 100%;
      height: 34px;
      clip-path: polygon(0 0, 22% 0, 36% 28%, 64% 28%, 78% 0, 100% 0, 88% 38%, 73% 30%, 73% 100%, 27% 100%, 27% 30%, 12% 38%);
      background: linear-gradient(135deg, #1193ff, #0055b7);
    }

    .hoodie::before {
      content: "";
      position: absolute;
      inset: 16px 8px 0;
      border-radius: 24px 24px 8px 8px;
      background: linear-gradient(135deg, #0a1e42, #07142d);
    }

    .hoodie::after {
      content: "";
      position: absolute;
      left: 17px;
      top: 0;
      width: 40px;
      height: 34px;
      border-radius: 24px 24px 8px 8px;
      background: #0b2149;
      border: 3px solid rgba(255,255,255,.08);
    }

    .matter-icon {
      position: relative;
      width: 120px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .matter-folder {
      position: absolute;
      width: 92px;
      height: 62px;
      border-radius: 14px;
      background: linear-gradient(135deg, #7c3aed, #ec4899);
      box-shadow: 0 18px 28px rgba(124,58,237,.25);
      transform: rotate(-6deg);
    }

    .matter-folder::before {
      content: "";
      position: absolute;
      top: -12px;
      left: 10px;
      width: 36px;
      height: 18px;
      border-radius: 10px 10px 0 0;
      background: #a855f7;
    }

    .matter-doc {
      position: absolute;
      width: 46px;
      height: 58px;
      border-radius: 10px;
      background: rgba(255,255,255,.96);
      transform: rotate(8deg) translate(18px,-6px);
      box-shadow: 0 10px 22px rgba(0,0,0,.12);
    }

    .matter-doc::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 14px;
      width: 24px;
      height: 3px;
      background: #d946ef;
      box-shadow: 0 10px 0 #d946ef, 0 20px 0 #d946ef;
    }

    .matter-badge {
      position: absolute;
      right: 10px;
      bottom: 12px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: linear-gradient(135deg, #fb7185, #f97316);
      border: 4px solid white;
    }

    .client-icon {
      position: relative;
      width: 120px;
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-avatar {
      position: absolute;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, #60a5fa, #2563eb);
      box-shadow: 0 14px 24px rgba(37,99,235,.22);
    }

    .client-avatar::before {
      content: "";
      position: absolute;
      left: 11px;
      top: 8px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(255,255,255,.92);
    }

    .client-avatar::after {
      content: "";
      position: absolute;
      left: 8px;
      bottom: 6px;
      width: 30px;
      height: 16px;
      border-radius: 16px 16px 10px 10px;
      background: rgba(255,255,255,.92);
    }

    .client-avatar.small {
      width: 36px;
      height: 36px;
      transform: translate(30px,18px);
      background: linear-gradient(135deg, #f472b6, #a855f7);
    }

    .client-avatar.small::before {
      left: 8px;
      top: 6px;
      width: 18px;
      height: 18px;
    }

    .client-avatar.small::after {
      left: 6px;
      width: 24px;
      height: 12px;
    }

    .client-chat {
      position: absolute;
      width: 84px;
      height: 54px;
      border-radius: 16px;
      background: rgba(255,255,255,.9);
      border: 1px solid #dbe4f0;
      transform: translateY(28px);
      box-shadow: 0 12px 24px rgba(0,0,0,.08);
    }

    .client-chat::before {
      content: "";
      position: absolute;
      left: 14px;
      top: 16px;
      width: 42px;
      height: 4px;
      background: #c084fc;
      box-shadow: 0 10px 0 #e879f9;
      border-radius: 10px;
    }

    .product-info {
      padding: 12px;
      color: #0d1b2f;
      font-size: 14px;
      line-height: 1.3;
    }

    .product-info small { display: block; color: #54708d; margin: 3px 0 10px; }
    .product-info strong { display: block; font-weight: 750; }

    .buy-btn {
      margin-top: 12px;
      width: 100%;
      height: 52px;
      border: 0;
      border-radius: 8px;
      background: #e8f0f8;
      color: #2468af;
      font-size: 16px;
      font-weight: 700;
    }

    .card-art {
      position: absolute;
      left: 50%;
      top: 24%;
      width: min(385px, 68%);
      height: 560px;
      transform: translateX(-50%) perspective(1000px) rotateX(1deg) rotateY(-1deg);
      border-radius: 26px;
      overflow: hidden;
      background:
        radial-gradient(circle at 32% 10%, rgba(255,255,255,.92), transparent 18%),
        linear-gradient(145deg, #ff8ec7 0%, #ff4fc2 28%, #8c55ff 58%, #ffb879 100%);
      box-shadow:
        0 34px 80px rgba(168, 90, 255, .20),
        inset 0 1px 0 rgba(255,255,255,.6);
      animation: cardFloat 7s ease-in-out infinite;
      transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, filter .45s ease;
      will-change: transform;
      pointer-events: auto;
    }

    .card-programme-card:hover .card-art {
      animation-play-state: paused;
      transform: translateX(-50%) translateY(-22px) perspective(1000px) rotateX(7deg) rotateY(-10deg) rotateZ(1deg) scale(1.035);
      box-shadow:
        0 54px 110px rgba(168, 90, 255, .32),
        0 18px 46px rgba(255, 91, 177, .18),
        inset 0 1px 0 rgba(255,255,255,.75);
      filter: saturate(1.08) brightness(1.04);
    }

    .card-art::before {
      content: "";
      position: absolute;
      inset: -35%;
      background:
        linear-gradient(120deg, transparent 28%, rgba(255,255,255,.75) 43%, transparent 51%),
        linear-gradient(150deg, transparent 46%, rgba(255,220,150,.45) 56%, transparent 64%);
      filter: blur(6px);
      animation: shineMove 5.5s ease-in-out infinite;
    }

    .card-chip {
      position: absolute;
      right: 98px;
      top: 92px;
      width: 52px;
      height: 42px;
      border-radius: 10px;
      background:
        linear-gradient(90deg, transparent 32%, rgba(0,0,0,.18) 33%, transparent 34%),
        linear-gradient(180deg, transparent 45%, rgba(0,0,0,.15) 46%, transparent 47%),
        linear-gradient(135deg, #f8f8f8, #d8d8d8);
      z-index: 2;
      border: 1px solid rgba(0,0,0,.16);
    }

    .contactless {
      position: absolute;
      right: 56px;
      top: 100px;
      width: 36px;
      height: 32px;
      z-index: 2;
    }

    .contactless span {
      position: absolute;
      inset: 0;
      border-right: 4px solid rgba(255,255,255,.82);
      border-radius: 50%;
    }

    .contactless span:nth-child(1) { transform: scaleX(.45); }
    .contactless span:nth-child(2) { transform: scaleX(.72); }
    .contactless span:nth-child(3) { transform: scaleX(1); }

    .visa {
      position: absolute;
      left: 34px;
      bottom: 24px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 90px;
      height: 44px;
    }

    .visa img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
    }

    .visa-text {
      font-size: 34px;
      font-weight: 900;
      letter-spacing: -.08em;
      color: rgba(255,255,255,.96);
      font-family: Arial, Helvetica, sans-serif;
      text-shadow: 0 8px 24px rgba(0,0,0,.22);
      margin-left: 10px;
      transform: skewX(-10deg);
    }

    .card-bg-mesh {
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 42% 46%, rgba(255, 82, 190, .28), transparent 26%),
        radial-gradient(circle at 65% 66%, rgba(121, 77, 255, .18), transparent 34%),
        radial-gradient(circle at 83% 90%, rgba(255, 147, 72, .22), transparent 26%);
      filter: blur(42px);
    }

    .globe-content canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .globe-card-panel::before {
      background:
        radial-gradient(circle at 52% 62%, rgba(255,255,255,.92), transparent 26%),
        radial-gradient(circle at 50% 72%, rgba(128, 90, 255, .12), transparent 38%),
        radial-gradient(circle at 82% 58%, rgba(255, 92, 160, .10), transparent 32%);
    }

    .globe-card-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        radial-gradient(circle at 16% 52%, rgba(125, 90, 255, .12), transparent 20%),
        radial-gradient(circle at 88% 64%, rgba(255, 111, 158, .14), transparent 22%),
        radial-gradient(circle at 50% 96%, rgba(140, 92, 255, .10), transparent 24%);
      filter: blur(4px);
    }

    .globe-orb {
      position: absolute;
      z-index: 4;
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: #ff4fb7;
      box-shadow:
        0 0 0 8px rgba(255,79,183,.12),
        0 0 28px rgba(255,79,183,.55);
      animation: globeOrbFloat 5.5s ease-in-out infinite;
    }

    .globe-orb.one { left: 27%; top: 47%; }
    .globe-orb.two { right: 25%; top: 59%; background:#ff8a3d; box-shadow:0 0 0 8px rgba(255,138,61,.12),0 0 28px rgba(255,138,61,.52); animation-delay:-2s; }
    .globe-orb.three { left: 47%; bottom: 17%; background:#8b5cff; box-shadow:0 0 0 8px rgba(139,92,255,.12),0 0 28px rgba(139,92,255,.52); animation-delay:-3.4s; }

    .globe-hud {
      position: absolute;
      z-index: 5;
      left: 8%;
      bottom: 12%;
      display: grid;
      gap: 10px;
      pointer-events: none;
    }

    .globe-hud-line {
      width: 160px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(139,92,255,.26), rgba(255,79,183,.18), transparent);
      animation: hudPulse 4s ease-in-out infinite;
    }

    .globe-hud-line:nth-child(2) { width: 115px; animation-delay: -1.3s; }
    .globe-hud-line:nth-child(3) { width: 82px; animation-delay: -2.4s; }

    @keyframes globeOrbFloat {
      0%, 100% { transform: translateY(0) scale(1); opacity: .72; }
      50% { transform: translateY(-12px) scale(1.12); opacity: 1; }
    }

    @keyframes hudPulse {
      0%, 100% { opacity: .35; transform: translateX(0); }
      50% { opacity: .9; transform: translateX(12px); }
    }

    @keyframes floatSoft {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-14px); }
    }

    @keyframes floatSoftRight {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-14px); }
    }

    @keyframes cardFloat {
      0%, 100% { transform: translateX(-50%) translateY(0) perspective(1000px) rotateX(1deg) rotateY(-1deg); }
      50% { transform: translateX(-50%) translateY(-18px) perspective(1000px) rotateX(2deg) rotateY(2deg); }
    }

    @keyframes shineMove {
      0%, 100% { transform: translateX(-18%) translateY(-10%) rotate(0deg); opacity: .7; }
      50% { transform: translateX(16%) translateY(18%) rotate(3deg); opacity: 1; }
    }

    @media (max-width: 1100px) {
      .feature-grid { grid-template-columns: 1fr; }
      .feature-card { min-height: 780px; }
      .feature-title { max-width: 80%; }
    }