﻿/* =====================================================
   CiroX Landing — Testimonials
   ===================================================== */

.testimonials { padding: var(--space-12) 0; background: rgba(7, 10, 18, 0.5); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}

.t-card {
  padding: var(--space-7);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.t-quote-mark {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-size: 4rem;
  font-weight: 800;
  color: var(--volt-cyan);
  opacity: 0.08;
  line-height: 1;
  font-family: var(--font-display);
}
.t-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-5);
  position: relative;
  z-index: 1;
}
.t-card p strong { color: var(--text-pure); }
.t-user { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); position: relative; z-index: 1; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: var(--text-base);
  background: var(--bg-surface);
  color: var(--text-pure);
  border: 1px solid var(--border-subtle);
}
.t-avatar.slate { background: var(--bg-card-hover); }
.t-avatar.gradient { background: var(--grad-brand); }
.t-user div { display: flex; flex-direction: column; }
.t-user span { font-size: var(--text-xs); color: var(--text-subtle); }

.t-metric {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--space-4); border-top: 1px solid var(--border-subtle);
  position: relative; z-index: 1;
}
.t-metric-label { font-size: var(--text-xs); color: var(--text-subtle); }
.t-metric-value { font-size: var(--text-lg); font-weight: 800; font-family: var(--font-mono); }

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