.testimonials {
  overflow: hidden;
}
.tst-viewport {
  overflow: hidden;
  max-width: 760px;
  margin-inline: auto;
}
.tst-track {
  display: flex;
  transition: transform 0.6s var(--ease);
}
.tst-card {
  flex: 0 0 100%;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--r-lg);
  text-align: center;
}
.tst-stars {
  color: var(--orange-500);
  letter-spacing: 3px;
  font-size: 1.1rem;
}
.tst-text {
  margin-top: 1rem;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.35rem);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
}
.tst-person {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.tst-person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.tst-person .who {
  text-align: left;
}
.tst-person .who strong {
  font-family: var(--font-display);
}
.tst-person .who span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}
.tst-controls {
  margin-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.tst-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--blue-700);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.tst-arrow:hover {
  background: var(--grad-warm);
  color: var(--white);
  transform: scale(1.08);
}
.tst-dots {
  display: flex;
  gap: 0.5rem;
}
.tst-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-300);
  transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.tst-dots button.active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--grad-warm);
}

/* Marquee */
.marquee {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1rem + 1vw, 1.6rem);
  color: var(--blue-800);
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "🐾";
  opacity: 0.6;
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}