.testimonials {
  background: rgba(14,36,16,.4);
  padding: 64px 0;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

.testimonials-header { text-align: center; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.testi-card {
  background: var(--surface);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  padding: 24px;
}

.stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testi-text {
  font-size: .84rem;
  color: var(--text-sec);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.7;
}

.testi-author { display: flex; align-items: center; gap: 10px; }

.testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border-str);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--accent);
}

.testi-name { font-size: .82rem; font-weight: 700; }
.testi-role { font-size: .72rem; color: var(--text-muted); }
