.trusted-by-section {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
}

.trusted-by-container {
  max-width: 100rem;
  margin: 0 auto;
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.trusted-by-label {
  font-size: 0.8rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.trusted-by-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: center;
}

.trusted-by-item {
  font-size: 1.05rem;
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.trusted-by-dot {
  color: rgba(252, 163, 17, 0.5);
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .trusted-by-container {
    padding: 2.5rem 2rem;
    gap: 1.25rem;
  }

  .trusted-by-item {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trusted-by-container {
    padding: 2rem 1.5rem;
  }

  .trusted-by-item {
    font-size: 0.95rem;
  }
}

@media (max-width: 375px) {
  .trusted-by-container {
    padding: 1.75rem 1rem;
  }
}

@media (max-width: 320px) {
  .trusted-by-container {
    padding: 1.5rem 0.75rem;
  }

  .trusted-by-item {
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
  }

  .trusted-by-dot {
    display: none;
  }
}
