/* Shared trust bar — registration service pages */
.svc-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #e2e8f0;
  background: #f4f6ff;
}

.svc-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-right: 1px solid #e2e8f0;
  min-width: 0;
}

.svc-trust__item:last-child {
  border-right: none;
}

.svc-trust__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.svc-trust__icon--reviews {
  background: #fff7ed;
  color: #ea580c;
  font-weight: 800;
}

.svc-trust__icon--exp {
  background: #fef9c3;
}

.svc-trust__icon--users {
  background: #ffedd5;
}

.svc-trust__copy {
  min-width: 0;
  flex: 1;
}

.svc-trust__copy strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.25;
  margin-bottom: 2px;
}

.svc-trust__copy > span {
  display: block;
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.35;
}

.svc-trust__stars {
  color: #f59e0b;
  font-size: 0.62rem;
  letter-spacing: -0.5px;
  vertical-align: middle;
}

@media (max-width: 900px) {
  .svc-trust {
    grid-template-columns: 1fr;
  }

  .svc-trust__item {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 18px;
  }

  .svc-trust__item:last-child {
    border-bottom: none;
  }
}

@media (min-width: 901px) and (max-width: 1024px) {
  .svc-trust__item {
    padding: 12px 10px;
    gap: 8px;
  }

  .svc-trust__copy strong {
    font-size: 0.78rem;
  }

  .svc-trust__copy > span {
    font-size: 0.66rem;
  }
}
