/* ============================================================
   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);
}
@media (hover: hover) {
  .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-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  letter-spacing: 0.005em;
}

.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; }

@media (max-width: 600px) {
  .testi-grid {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 0;
    scrollbar-width: none;
  }
  .testi-grid::-webkit-scrollbar { display: none; }
  .testi-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
  }
  .testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
  }
  .testi-dot.active {
    background: var(--teal);
    transform: scale(1.3);
  }
}

@media (min-width: 601px) {
  .testi-dots { display: none; }
}

