.client-list {
  grid-template-columns: repeat(3, 1fr);
}

.client-list > a {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.client-list > a:hover,
.client-list > a:focus-visible {
  border-color: var(--cyan);
  box-shadow: 0 12px 30px rgba(8, 47, 80, .1);
  transform: translateY(-3px);
}

.client-list img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 72px;
  object-fit: contain;
}

.case-logo {
  display: block;
  width: 150px;
  height: 62px;
  margin: -18px 0 26px;
  object-fit: contain;
  object-position: left center;
}

.case-logo-fallback {
  display: flex;
  width: fit-content;
  min-height: 48px;
  align-items: center;
  margin: -10px 0 28px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
}

.multiverse-logo {
  display: flex !important;
  flex-direction: column;
  gap: 4px;
  color: #131313;
}

.multiverse-logo span {
  display: grid;
  width: 36px;
  height: 36px;
  min-height: 0;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(135deg, #ff783f, #7847ff);
  color: #fff;
  font-weight: 900;
}

.multiverse-logo b {
  font-size: 1.05rem;
  letter-spacing: -.04em;
}

@media (max-width: 700px) {
  .client-list { grid-template-columns: 1fr 1fr; }
}

.testimonial {
  padding: 105px 0;
  color: #fff;
  background: var(--navy);
}

.testimonial-inner {
  max-width: 980px;
}

.testimonial blockquote {
  margin: 35px 0 45px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.16;
  letter-spacing: -.045em;
}

.testimonial-source {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-source > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 900;
}

.testimonial-source div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-source small {
  color: rgba(255, 255, 255, .62);
}
