.testimonials {
  background: linear-gradient(180deg, #020b16 0%, #031c2d 100%);
  padding: 50px 0;
  text-align: center;
}

.testimonials h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.testimonials h2 span {
  color: #00d2b9;
}

.testimonials-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}

.testi-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 210, 185, 0.15);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.testi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,210,185,0.5), transparent);
}

.testi-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 210, 185, 0.35);
}

.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.testi-stat {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 900;
  color: #00d2b9;
  line-height: 1;
  letter-spacing: -1px;
}

.testi-quote-icon {
  font-size: 32px;
  color: rgba(0, 210, 185, 0.2);
  line-height: 1;
}

.testi-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-top: -8px;
}

.testi-practice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(0, 210, 185, 0.05);
  border: 1px solid rgba(0, 210, 185, 0.12);
  border-radius: 8px;
}

.testi-icon {
  font-size: 18px;
  color: #00d2b9;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 600;
  color: #00d2b9;
}

.testi-location {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.testi-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.testi-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testi-author {
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.testi-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.testi-stars {
  color: #00d2b9;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .testimonials {
    padding: 60px 0;
  }
}