
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.25s ease;
}

.testimonial-card:hover {
  border-color: #34d399;
  box-shadow: 0 12px 32px rgba(52, 211, 153, 0.12);
  transform: translateY(-4px);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  width: 18px;
  height: 18px;
  color: #d1d5db;
}

.star--filled {
  color: #fbbf24;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.85);
  margin: 0 0 20px 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.12), rgba(59, 130, 246, 0.08));
  color: #34d399;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

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

.testimonial-avatar svg {
  width: 24px;
  height: 24px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.testimonial-service {
  font-size: 13px;
  color: rgba(15, 23, 42, 0.65);
}

.btn--white {
  background: #fff;
  color: #34d399;
  border: none;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
  transition: all 0.25s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  display: inline-block;
}

.btn--white:hover {
  background: #f8fafc;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  color: #6d28d9;
}

.btn--large {
  padding: 18px 40px;
  font-size: 18px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 24px;
  }
}
