
.swiper-testimonials {
  width: 100%;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  transition: background 0.2s, border-color 0.2s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(249, 115, 22, 0.35);
}

.testimonial-quote {
  font-size: 52px;
  line-height: 1;
  background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: Georgia, serif;
  margin: 0;
  user-select: none;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.testimonial-avatar-empty {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar-empty svg {
  opacity: 0.4;
}

.testimonial-author-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}

.testimonial-author-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.testimonials-nav {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.sw-btn-light {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  user-select: none;
}

.sw-btn-light:hover {
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

.sw-btn-light.swiper-button-disabled {
  opacity: 0.2;
  pointer-events: none;
}

.swiper-testimonials .swiper-pagination {
  position: static;
  margin-top: 24px;
}

.swiper-testimonials .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
  width: 6px;
  height: 6px;
}

.swiper-testimonials .swiper-pagination-bullet-active {
  background: #f97316;
  width: 20px;
  border-radius: 3px;
  transition: width 0.3s;
}
