/* ═══════════════════════════════════════════════════════════════
   11 · TRUST STRIP
   Social-proof metrics under the hero
   ═══════════════════════════════════════════════════════════════ */

.trust {
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}

.trust__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
}
.trust__item:last-child { border-right: 0; }

.trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bone);
  color: var(--navy-800);
  flex-shrink: 0;
}

.trust__num {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1;
  margin-bottom: 4px;
}
.trust__num small {
  font-size: 14px;
  color: var(--gold-600);
}

.trust__lbl {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
