/* ============================================================
   PV TESTIMONIALS — Written Quotes Slider
   ============================================================ */

.pv-testimonials {
  background: #0d0d0d;
  padding: 100px 0;
  overflow: hidden;
}

.pv-testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header */
.pv-testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}
.pv-testimonials__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 14px;
}
.pv-testimonials__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1.1;
}
.pv-testimonials__sub {
  font-size: 1rem;
  color: #666;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Stage / track */
.pv-testimonials__stage {
  position: relative;
}
.pv-testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Card */
.pvt-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #161616;
  border: 1px solid #222;
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.pvt-card:hover {
  border-color: #444;
  transform: translateY(-4px);
}
.pvt-card__quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pvt-card__quote-icon {
  width: 28px;
  height: 22px;
  color: #444;
  flex-shrink: 0;
}
.pvt-card__text {
  font-size: 0.975rem;
  line-height: 1.75;
  color: #ccc;
  margin: 0;
}
.pvt-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid #222;
}
.pvt-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a45d 0%, #8b5e12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.pvt-card__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.pvt-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pvt-card__company {
  font-size: 0.78rem;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Controls */
.pvt-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.pvt-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.pvt-btn:hover {
  border-color: #fff;
  background: #1a1a1a;
}
.pvt-btn svg {
  width: 18px;
  height: 18px;
}
.pvt-progress {
  width: 160px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  overflow: hidden;
}
.pvt-progress__bar {
  height: 100%;
  background: #c8a45d;
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Responsive */
@media (max-width: 900px) {
  .pvt-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .pv-testimonials {
    padding: 70px 0;
  }
  .pv-testimonials__inner {
    padding: 0 20px;
  }
  .pv-testimonials__header {
    margin-bottom: 40px;
  }
  .pvt-card {
    flex: 0 0 calc(85vw);
    padding: 28px 24px;
  }
  .pvt-controls {
    margin-top: 32px;
  }
}
