/* Client showcase: a static, accessible grid enhanced into a moving arc. */
.hero { padding-bottom: 0; }
.client-showcase { margin-top: 44px; }
.client-showcase-heading {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  padding-inline: 23px; min-height: 40px;
}
.client-showcase-heading h2 {
  font-size: 12px; font-weight: 400; letter-spacing: 0; line-height: 1.6;
  color: var(--sc-ink-soft);
}
.arc-toggle {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; padding: 0; border-radius: 50%;
  border: 1px solid #c6d7d2; color: var(--sc-ink); background: transparent;
  cursor: pointer; touch-action: manipulation;
}
.arc-toggle[hidden] { display: none; }
.arc-toggle:hover { background: #e7f1ed; }
.arc-toggle:focus-visible { outline: 3px solid #c15a1e; outline-offset: 4px; }
.arc-toggle svg { width: 13px; height: 13px; fill: currentColor; }
.arc-toggle .play-symbol { display: none; }
.arc-toggle[data-paused="true"] .pause-symbol { display: none; }
.arc-toggle[data-paused="true"] .play-symbol { display: block; }
.client-arc {
  --card-width: 240px; --card-height: 310px; --card-gap: 30px;
  position: relative; width: 100%; max-width: 1500px; margin-inline: auto;
}
.client-list {
  list-style: none; padding: 28px 24px 52px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 240px));
  justify-content: center; gap: 24px;
}
.client-card {
  width: 100%; height: var(--card-height); min-width: 0; margin: 0;
  border: 1px solid #dce5e1; border-radius: 18px; overflow: hidden;
  background: white; box-shadow: 0 12px 24px -16px #192d353d;
}
.client-visual { height: 216px; overflow: hidden; background: #e7efeb; }
.client-visual img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.client-identity { height: 93px; padding: 13px 17px 12px; background: #fff; }
.client-logo { height: 34px; display: flex; align-items: center; margin-bottom: 7px; }
.client-logo img { width: auto; max-width: 156px; max-height: 34px; object-fit: contain; }
.client-logo img[data-spaced] { max-width: 166px; max-height: 47px; }
.client-service { font-size: 10px; font-weight: 400; line-height: 1.4; color: #586b71; }
.client-arc.is-animated { height: 478px; overflow: hidden; overflow: clip; }
.is-animated .client-list {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.arc-track { display: none; }
.is-animated .arc-track { display: block; position: absolute; inset: 0; pointer-events: none; }
.arc-track .client-card {
  position: absolute; top: 0; left: 50%; width: var(--card-width);
  transform-origin: 50% 50%; will-change: transform;
}
@media (max-width: 760px) {
  .client-showcase { margin-top: 35px; }
  .client-showcase-heading { gap: 12px; }
  .client-showcase-heading h2 { font-size: 10px; }
  .arc-toggle { width: 36px; height: 36px; }
  .client-arc { --card-width: 170px; --card-height: 230px; --card-gap: 20px; }
  .client-arc.is-animated { height: 303px; }
  .client-list { grid-template-columns: repeat(2, minmax(0, 170px)); gap: 15px; padding: 24px 20px 38px; }
  .client-card { border-radius: 18px; }
  .client-visual { height: 152px; }
  .client-identity { height: 77px; padding: 10px 12px; }
  .client-logo { height: 26px; margin-bottom: 6px; }
  .client-logo img { max-width: 130px; max-height: 26px; }
  .client-logo img[data-spaced] { max-width: 135px; max-height: 36px; }
  .client-service { font-size: 8.5px; }
}
@media (prefers-reduced-motion: reduce) {
  .client-arc.is-animated { height: auto; overflow: visible; }
  .is-animated .client-list { position: static; width: auto; height: auto; padding: 28px 24px 52px; margin: 0 auto; overflow: visible; clip-path: none; white-space: normal; }
  .is-animated .arc-track, .arc-toggle { display: none; }
}
