.testimonials {
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(157, 70, 255, 0.1), transparent 60%);
  z-index: -1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials-description {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-light);
}

.testimonial-content {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 4rem;
  opacity: 0.1;
  color: var(--primary);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-position {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.testimonial-star {
  color: #FFD700;
}

.testimonial-companies {
  margin-top: 5rem;
  text-align: center;
}

.testimonial-companies-title {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.companies-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.company-logo {
  height: 2.5rem;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .companies-grid {
    gap: 3rem 2rem;
  }
  
  .company-logo {
    height: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonials-header {
    margin-bottom: 3rem;
  }
  
  .testimonials-title {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
  }
  
  .companies-grid {
    gap: 2rem 1.5rem;
  }
}