/* ---------------------------------------------
   DiPStrategy -- Results / 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: 24px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- CARD --- */
.testimony-card {
  flex: 0 0 calc((100% - 72px) / 4);
  box-sizing: border-box;
  padding: 8px 10px 8px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
  border-left: 2px solid rgba(9, 53, 100, 0.2);
}

.testimony-metric {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(35px, 4vw, 55px);
  color: #093564;
  line-height: 1;
  letter-spacing: -0.02em;
}

.testimony-label {
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(9, 53, 100, 0.75);
  margin-top: 4px;
}

.testimony-client {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(9, 53, 100, 0.4);
  margin-top: 12px;
}

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

.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-track { gap: 16px; }
  .testimony-card {
    flex: 0 0 calc(50% - 8px);
    padding: 32px 16px;
  }
}
