.testimonials-section {
  background: #ffffff;
  padding: var(--space-3xl) 0;
}

.testimonials-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track {
  position: relative;
  min-height: 320px;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -60px;
  user-select: none;
}

.testimonial-quote {
  font-size: 22px;
  line-height: 1.6;
  color: #2d3a4f;
  max-width: 800px;
  margin: 0 auto var(--space-xl);
}

@media (max-width: 640px) {
  .testimonial-quote {
    font-size: 18px;
  }
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f4f6fb;
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-accent);
}

.testimonial-role {
  font-size: 14px;
  color: #5a6b8a;
  margin-bottom: var(--space-xs);
}

.testimonial-type {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-type.client {
  background: rgba(30, 107, 255, 0.15);
  color: var(--color-accent);
}

.testimonial-type.candidate {
  background: rgba(0, 200, 150, 0.15);
  color: var(--color-success);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c5d0e0;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonials-dot:hover {
  background: #a8b8c8;
}

.testimonials-dot.active {
  background: var(--color-accent);
  transform: scale(1.2);
}

.testimonials-arrows {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #2d3a4f;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.testimonials-arrow:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
