/* ═══════════════════════════════
   TESTIMONIALS — mobile first
═══════════════════════════════ */
.testimonials {
  background: #111111;
  padding: 48px 20px;
}

.testimonials-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 11vw, 80px);
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
}

/* ── SLIDER ── */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-card {
  min-width: 100%;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-sizing: border-box;
}

.testimonial-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #333333;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

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

.author-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 3px;
}

.author-handle {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
}

/* ── NAV ── */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.slider-dots { display: flex; gap: 8px; align-items: center; }

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.dot.active {
  background: #ffffff;
  width: 24px;
  border-radius: 4px;
}

.slider-arrows { display: flex; gap: 8px; }

.arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.arrow:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; }

/* ── Tablet ── */
@media (min-width: 768px) {
  .testimonials { padding: 80px 60px; }
  .testimonials-title { text-align: center; }
  .testimonial-card { min-width: 50%; }
  .testimonials-track { flex-wrap: nowrap; }
}

/* ── Mid ── */
@media (min-width: 769px) and (max-width: 1199px) {
  .testimonials { padding: 80px 60px; }
}

/* ── 800–900 ── */
@media (min-width: 800px) and (max-width: 900px) {
  .testimonials { padding: 72px 48px; }
}

/* ── 1000–1199 (iPad landscape) ── */
@media (min-width: 1000px) and (max-width: 1199px) {
  .testimonials { padding: 80px 72px; }
}

/* ── Desktop ── */
@media (min-width: 1200px) {
  .testimonials { padding: 100px 80px; }
  .testimonials-title { font-size: 90px; margin-bottom: 48px; }
  .testimonial-card { min-width: 50%; padding: 40px 36px; }
  .testimonial-text { font-size: 15px; line-height: 1.9; }
  .testimonials-nav { margin-top: 32px; }
  .arrow { width: 48px; height: 48px; }
}

/* ── Small desktop ── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .testimonials { padding: 80px 60px; }
}
