/* ── Trust signals section ────────────────────────────── */

.section--trust {
  max-width: none;
  background: var(--warm-cream);
}

.trust__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Header ──────────────────────────────────────────── */

.trust__header {
  margin-bottom: 64px;
}

.trust__headline {
  font-family: var(--font-headline);
  font-size: 2.75rem;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 16px;
}

.trust__subhead {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--dark);
  opacity: 0.6;
  max-width: 600px;
}

/* ── Stat counters ───────────────────────────────────── */

.trust__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(17, 26, 14, 0.1);
  border-radius: 16px;
}

.stat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--shield-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--warm-cream);
}

.stat-card__number {
  font-family: var(--font-headline);
  font-size: 3rem;
  line-height: 1;
  color: var(--shield-green);
  margin-bottom: 8px;
}

.stat-card__label {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  line-height: 1.5;
  color: var(--dark);
  opacity: 0.65;
}

/* ── Testimonial cards ───────────────────────────────── */

.trust__testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  border: 1px solid rgba(17, 26, 14, 0.1);
  border-radius: 16px;
  padding: 36px 28px;
}

.testimonial-card__quote {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  opacity: 0.85;
  margin-bottom: 24px;
}

.testimonial-card__quote::before {
  content: '\201C';
  font-family: var(--font-headline);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.3em;
  color: var(--wheat-gold);
  margin-right: 4px;
}

.testimonial-card__attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--shield-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-cream);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-card__role {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--dark);
  opacity: 0.55;
}

/* ── Mobile ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .trust__headline {
    font-size: 2rem;
  }

  .trust__header {
    margin-bottom: 40px;
  }

  .trust__stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .stat-card {
    padding: 28px 24px;
  }

  .stat-card__number {
    font-size: 2.5rem;
  }

  .trust__testimonials {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }
}

/* ── Tablet (stats stay 3-col, testimonials go 1-col at narrow) */

@media (min-width: 769px) and (max-width: 1024px) {
  .trust__testimonials {
    grid-template-columns: 1fr;
  }
}
