/* ─── TESTIMONIALS ──────────────────────────────────────────────── */
#testimonial { padding: 8rem 2rem; }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .test-grid { grid-template-columns: 1fr; }
}

.test-card {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 8px;
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s;
}
.test-card:hover {
  border-color: rgba(0,192,127,0.12);
  background: rgba(0,192,127,0.015);
}

.test-stars { color: var(--emerald); font-size: 0.85rem; margin-bottom: 1.25rem; }
.test-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}
.test-author { display: flex; align-items: center; gap: 0.75rem; }
.test-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,192,127,0.08);
  border: 1px solid rgba(0,192,127,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--emerald);
  flex-shrink: 0;
}
.test-name { font-size: 0.85rem; font-weight: 500; }
.test-role { font-size: 0.72rem; color: var(--text-muted); margin-top: 1px; }

/* ─── TESTIMONIAL — QUOTE WATERMARK ──────────────────────────── */
.test-card { position: relative; overflow: hidden; }
.test-card::before {
  content: '\201C';
  position: absolute;
  top: -1.5rem;
  left: 1.2rem;
  font-family: 'Instrument Serif', serif;
  font-size: 9rem;
  line-height: 1;
  color: rgba(0,192,127,0.04);
  pointer-events: none;
  transition: color 0.4s;
}
.test-card:hover::before { color: rgba(0,192,127,0.075); }

/* Section decompression — breathing room enterprise */
#testimonial { padding: 12rem 2rem; }
