
  .partners-band{
    background:#0f172a;
    padding:28px 0;
    margin-top:5px;
    border-top:1px solid var(--border,rgba(255,255,255,.10));
    border-bottom:1px solid var(--border,rgba(255,255,255,.10));
    overflow:hidden;
  }
  .partners-head{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    margin-bottom:14px;
  }
  .partners-head h2{ margin:0;font-size:1.1rem;color:var(--text-100,#f7f9fc); }
  .partners-note{ color:var(--muted,#97a3b6); font-size:.95rem; }

  /* marquee */
  .marquee{ position:relative; overflow:hidden; }
  .marquee-content{
    display:flex;
    gap:22px;
    width:max-content;
    animation:scrollLeft 30s linear infinite;
    
  }
  @keyframes scrollLeft{
    0%{ transform:translateX(0); }
    100%{ transform:translateX(-50%); }
  }

  .logo-tile{
    background:#000;
    border:1px solid var(--line,rgba(255,255,255,.10));
    border-radius:12px;
    padding:12px;
    height:72px;
    width:140px;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 18px rgba(0,0,0,.4);
    flex:0 0 auto;
  }
  .logo-tile img{
    max-height:40px; width:auto; display:block; opacity:.9;
  }

  @media (max-width:600px){
    .logo-tile{ width:110px; height:64px; padding:8px; }
    .logo-tile img{ max-height:34px; }
  }