

    /* Cards grid */
    .cards{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:28px;z-index:2;position:relative;}
    @media (max-width:920px){.cards{grid-template-columns:repeat(2,1fr)}}
    @media (max-width:640px){.cards{grid-template-columns:1fr}}

    .card{
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius:14px;padding:20px;border:1px solid rgba(255,255,255,0.03);
      transition:transform .35s cubic-bezier(.2,.9,.2,1), box-shadow .35s ease, border-color .35s ease;
      position:relative;overflow:hidden;
    }
    .card:hover{
      transform:translateY(-8px);
      box-shadow:0 18px 40px rgba(10,8,30,0.6);
      border-color: rgba(124,90,240,0.22);
    }

    .card .icon{
      width:56px;height:56px;border-radius:12px;display:inline-grid;place-items:center;
      background:linear-gradient(135deg, rgba(124,90,240,0.18), rgba(66,99,255,0.14));
      color:var(--muted);font-weight:700;margin-bottom:12px;
    }
    .card h4{margin:0 0 8px 0;color:var(--muted);font-weight:700}
    .card p{margin:0;color:#cbd3ff;font-size:14px}

   

   