/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-section {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.testi-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4,106,129,0.3) 0%, transparent 70%);
  filter: blur(60px);
  top: -200px; right: -100px;
  pointer-events: none;
}

.testi-inner { position: relative; z-index: 1; }

.testi-h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: 3.5rem;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 2.4rem;
  transition: all 0.35s var(--ease-out-expo);
}
.testi-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
  font-size: 14px;
}

.testi-quote {
  font-size: 15px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  object-fit: cover;
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: #fff; }
.testi-clinic { font-size: 12px; color: rgba(255,255,255,0.42); margin-top: 2px; }

