/* Qulay Makon — Trust Badge (brand_redesign_categories.md, Faza B)
   Hero ostida to'q ko'k bo'lim — N1 brand statement va 3 statistika tile.
*/
.trust-badge {
  background: var(--color-primary);
  color: #fff;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
.trust-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06), transparent 50%);
  pointer-events: none;
}
.trust-badge__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.trust-badge__title {
  font-size: clamp(22px, 3.4vw, 34px);
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 12px;
  color: #fff;
  letter-spacing: -0.3px;
}
.trust-badge__subtitle {
  font-size: clamp(14px, 1.8vw, 17px);
  line-height: 1.5;
  opacity: 0.9;
  margin: 0 0 28px;
}
.trust-badge__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.trust-stat {
  text-align: center;
}
.trust-stat__value {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.trust-stat__label {
  font-size: 13px;
  opacity: 0.88;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .trust-badge { padding: 32px 0; }
  .trust-badge__stats { gap: 12px; }
  .trust-stat__label { font-size: 12px; }
}
