.testimonials {
  padding: 90px 20px;
  background: linear-gradient(to bottom, #07111c, #0d1f32);
  color: white;
  font-family: 'Heebo', sans-serif;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-header h2 {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 800;
}

.testimonials-header p {
  opacity: 0.75;
}

.testimonials-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.testimonial-card {
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px;

  backdrop-filter: blur(6px);

  transition: 0.25s ease;
}

/* .testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
} */

.testimonial-stars {
  font-size: 18px;
  color: #f5d27a;
  margin-bottom: 14px;
}

.testimonial-text {
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.9;
}

.testimonial-client {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 14px;
}

.client-name {
  font-weight: 700;
}

.client-case {
  font-size: 14px;
  opacity: 0.7;
}
