.trusted-by-wrapper {
  padding: 88px 0 96px;
  border-top: 1px solid var(--line);;
  background: rgba(248, 250, 252, 0.94);
}

.trusted-by-section {
  padding: 0;
}

.trusted-by-shell {
  display: grid;
  gap: 44px;
  padding: 0;
}

.trusted-by-copy {
  display: block;
  max-width: 980px;
}

.trusted-by-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  color: var(--label-ink);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}

.trusted-by-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  max-width: 700px;
  line-height: 1.08;
}

.trusted-by-description {
  margin: 24px 0 0;
  color: var(--muted-ink);
  font-size: 0.98rem;
  line-height: 1.85;
  max-width: 620px;
}

.client-logos {
  display: grid;
  gap: 0;
  padding-top: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.client-logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.client-logo-card {
  min-height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.25s ease;
}

.client-logo-card img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo-card:hover {
  border-color: rgba(31, 122, 87, 0.36);
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 1100px) {
  .client-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .client-logo-row {
    display: contents;
  }
}

@media (max-width: 768px) {
  .trusted-by-wrapper {
    padding: 52px 0 60px;
  }

  .trusted-by-shell {
    padding: 0;
  }

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

@media (max-width: 576px) {
  .trusted-by-shell {
    padding: 0;
  }

  .client-logo-card {
    min-height: 84px;
  }

  .client-logo-card img {
    max-height: 30px;
  }

  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
