/* ================================================
   TESTIMONIALS — Auto-rotating carousel
   ================================================ */

.tst-bg {
  background: linear-gradient(180deg, transparent 0%, rgba(13, 74, 47, 0.03) 50%, transparent 100%);
}

.car {
  position: relative;
  overflow: hidden;
}

.car-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-slide {
  min-width: 100%;
  padding: 0 24px;
}

.t-inner {
  max-width: 680px;
  margin: 0 auto;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 42px;
}

.q-mark {
  font-size: 76px;
  color: var(--accent);
  opacity: 0.18;
  line-height: 0.5;
  margin-bottom: 18px;
  font-family: Georgia, serif;
}

.stars {
  color: #f59e0b;
  font-size: 17px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.t-txt {
  font-size: 18px;
  line-height: 1.73;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.88);
}

.t-auth {
  display: flex;
  align-items: center;
  gap: 14px;
}

.av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.an {
  font-weight: 700;
  font-size: 15px;
}

.ac {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Carousel dots ── */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.d {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s;
}

.d.a {
  background: var(--accent);
  width: 24px;
}
