/* ---------------------------------------------
   DiPStrategy -- Testimony Section
   style/testimony.css
   --------------------------------------------- */

.testimony-section {
  background: #DEFF2D;
  padding: 64px 56px;
  overflow: hidden;
  position: relative;
}

/* --- SLIDER TRACK --- */
.testimony-track-wrap {
  overflow: hidden;
}

.testimony-track {
  display: flex;
  gap: 32px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- CARD --- */
.testimony-card {
  flex: 0 0 calc((100% - 64px) / 3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  border-left: 2px solid rgba(9,53,100,0.15);
}

/* Quote mark */
.testimony-quote-mark {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(9,53,100,0.15);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
}

/* Quote text */
.testimony-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #093564;
}

/* Attribution */
.testimony-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

.testimony-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  font-size: 14px;
  font-style: italic;
  color: #093564;
}

.testimony-company {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 14px;
  font-style: italic;
  color: rgba(9,53,100,0.6);
}

/* --- DOTS --- */
.testimony-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.testimony-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(9,53,100,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.testimony-dot.active {
  background: #093564;
  width: 20px;
  border-radius: 3px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .testimony-section { padding: 48px 24px; }
  .testimony-card { flex: 0 0 calc(100% - 48px); }
  .testimony-text { font-size: 16px; }
}
