.sc-trusted {
  --sc-accent: #754ffe;
  --sc-eyebrow: #9b8aff;
  --sc-text: #111827;
  --sc-muted: #6b7280;
  --sc-border: #e8eaef;
  --sc-bg: #f4f6fa;
  background: var(--sc-bg);
  padding: 4.5rem 1.25rem 5rem;
  margin-top: 1rem;
}

.sc-trusted-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.sc-trusted-eyebrow {
  margin: 0 0 1rem;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sc-eyebrow);
  font-weight: 600;
}

.sc-trusted-title {
  margin: 0 auto 2rem;
  max-width: 820px;
  color: var(--sc-text);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.25;
  font-weight: 700;
}

.sc-trusted-accent {
  color: var(--sc-accent);
}

.sc-trusted-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 auto 2.5rem;
  max-width: 720px;
}

.sc-trusted-stats > div {
  flex: 1 1 160px;
  padding: 0.35rem 1.5rem;
  border-right: 1px solid var(--sc-border);
}

.sc-trusted-stats > div:last-child {
  border-right: none;
}

.sc-trusted-stats strong {
  display: block;
  font-size: 1.65rem;
  color: var(--sc-text);
  font-weight: 700;
  line-height: 1.2;
}

.sc-trusted-stats span {
  display: block;
  margin-top: 0.25rem;
  color: var(--sc-muted);
  font-size: 0.95rem;
}

.sc-trusted-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  background: #fff;
  border: 1px solid var(--sc-border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.04);
}

.sc-trusted-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0.85rem 0.75rem;
  border-right: 1px solid var(--sc-border);
  border-bottom: 1px solid var(--sc-border);
  background: #fff;
}

.sc-trusted-cell:nth-child(8n) {
  border-right: none;
}

.sc-trusted-cell:nth-last-child(-n + 8) {
  border-bottom: none;
}

.sc-trusted-cell img {
  max-width: 100%;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
}

@media (max-width: 992px) {
  .sc-trusted-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .sc-trusted-cell:nth-child(8n) {
    border-right: 1px solid var(--sc-border);
  }

  .sc-trusted-cell:nth-child(4n) {
    border-right: none;
  }

  .sc-trusted-cell:nth-last-child(-n + 8) {
    border-bottom: 1px solid var(--sc-border);
  }

  .sc-trusted-cell:nth-last-child(-n + 4) {
    border-bottom: none;
  }
}

@media (max-width: 576px) {
  .sc-trusted {
    padding: 3rem 1rem 3.5rem;
  }

  .sc-trusted-stats > div {
    border-right: none;
    border-bottom: 1px solid var(--sc-border);
    padding: 0.75rem 0.5rem;
  }

  .sc-trusted-stats > div:last-child {
    border-bottom: none;
  }

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

  .sc-trusted-cell:nth-child(4n) {
    border-right: 1px solid var(--sc-border);
  }

  .sc-trusted-cell:nth-child(2n) {
    border-right: none;
  }

  .sc-trusted-cell:nth-last-child(-n + 4) {
    border-bottom: 1px solid var(--sc-border);
  }

  .sc-trusted-cell:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}


/* Product detail brand logos */
.breadcrumb-row img {
  max-height: 52px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}
.services-details-area .breadcrumb-row img,
.sapher-container .breadcrumb-row img {
  max-height: 56px;
  max-width: 280px;
}
