/* Nowo Trust Strip (v1.2.0) */
.nowo-trust{
  --band-bg:#0f2453;--band-color:#fff;--band-height:44px;
  /* Speeds are numbers (px per second) */
  --top-speed:50;--bottom-speed:50;--slider-speed:18;
  --heading-color:#111;--card-bg:#fff;--card-text:#444;--stars:#FFB703;
  --body-max:1200px;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;color:#111
}
.nowo-trust .nowo-marquee{background:var(--band-bg);color:var(--band-color);height:var(--band-height);display:flex;align-items:center;overflow:hidden;white-space:nowrap}
.nowo-trust .nowo-marquee .nowo-track{
  display:inline-block;padding-inline:24px;
  /* Duration = distance / speed  → seconds */
  animation:nowo-marquee linear infinite;
  animation-duration:calc((10000px / (var(--top-speed) * 1px)) * 1s);
}
.nowo-trust .nowo-marquee.nowo-bottom .nowo-track{
  animation-duration:calc((10000px / (var(--bottom-speed) * 1px)) * 1s);
}
@keyframes nowo-marquee{from{transform:translateX(0)}to{transform:translateX(-100%)}}
.nowo-trust[data-top-dir="right"] .nowo-marquee.top .track{animation-direction:reverse}
.nowo-trust[data-bottom-dir="left"] .nowo-marquee.nowo-bottom .nowo-track{animation-direction:reverse}

.nowo-trust .nowo-body{max-width:var(--body-max);width:100%;margin:0 auto;padding:24px 16px 12px}
.nowo-trust .nowo-heading{color:var(--heading-color);font-size:clamp(22px,2.6vw,40px);text-align:center;font-weight:800;letter-spacing:.3px;margin:8px auto 18px;display:flex;justify-content:center;gap:12px;align-items:center}
.nowo-trust .nowo-slider{position:relative;overflow:hidden}
.nowo-trust .nowo-rail{display:flex;gap:18px;will-change:transform}
.nowo-trust .nowo-card{display:flex;gap:14px;align-items:flex-start;min-width:320px;max-width:420px;padding:16px 18px;border-radius:28px;background:var(--card-bg);box-shadow:0 6px 18px rgba(0,0,0,.06);color:var(--card-text)}
.nowo-trust .nowo-card .avatar{flex:0 0 auto;width:54px;height:54px;border-radius:16px;background:#eef2f6;display:grid;place-items:center;overflow:hidden}
.nowo-trust .nowo-card .avatar img{width:100%;height:100%;object-fit:cover}
.nowo-trust .avatar-placeholder{font-weight:700;opacity:.7}
.nowo-trust .meta{flex:1 1 auto}
.nowo-trust .row{display:flex;align-items:center;gap:10px;margin-bottom:6px}
.nowo-trust .name{font-weight:700}
.nowo-trust .stars{display:inline-flex;gap:2px;color:var(--stars)}
.nowo-trust .star{fill:currentColor}.nowo-trust .star .outline{fill:none;stroke:currentColor;stroke-width:2;opacity:.4}
.nowo-trust .text{line-height:1.45;font-size:15px;margin:0}

@media (max-width:768px){
  .nowo-trust .nowo-card{min-width:280px;border-radius:22px}
  .nowo-trust .nowo-body{padding:16px 10px}
}

.nowo-trust .nowo-marquee .nowo-track{animation-play-state:running}
