.testimonials.section {
  padding-bottom: 48px;
}

.testimonials-counter {
  text-align: center;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 48px;
}

.testimonials-counter span {
  color: var(--color-brand); /* fallback */
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 71, 255, 0.25);
  box-shadow: var(--shadow-brand);
}

.testimonial-quote {
  font-size: 48px;
  line-height: 1;
  color: var(--color-brand);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testimonial-text {
  flex: 1;
  font-size: var(--text-base);
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.testimonial-author {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-name {
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 4px;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: var(--text-xs);
}
