.testimonials {
  background: #0b101b;
  border-block: 1px solid #1c2638;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid #27334b;
  border-radius: 16px;
  background: linear-gradient(145deg, #121a2a, #0d1422);
}

.testimonial-card .stars {
  color: #ffc857;
  letter-spacing: .18em;
}

.example-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #7f8ba0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.testimonial-card > p {
  min-height: 125px;
  color: #b1bbca;
  font-size: 15px;
}

.client {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 18px;
  border-top: 1px solid #27334b;
}

.client > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #536dff, #a855f7);
  color: white;
  font-weight: 800;
}

.client div { display: flex; flex-direction: column; }
.client small { color: #7f8ba0; }

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px 12px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #062f17;
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(37, 211, 102, .32);
  transition: transform .25s ease, box-shadow .25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 48px rgba(37, 211, 102, .45);
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

@media (max-width: 800px) {
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card > p { min-height: auto; }
}

@media (max-width: 520px) {
  .whatsapp-float { right: 15px; bottom: 15px; padding: 12px; }
  .whatsapp-float span { display: none; }
}
