/* ============================================================
   KunaBox 2.0 — Testimonials section (#kbTestimonials)
   ============================================================ */

.kb-testimonials {
  position: relative;
  z-index: var(--z-content);
  padding: var(--space-3xl) var(--space-xl);
}

.kb-testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.kb-testimonials__title {
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 auto 16px;
}

/* ── 3-column testimonial grid ─────────────────────────────── */
.kb-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Individual testimonial card ───────────────────────────── */
.kb-testimonials__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.kb-testimonials__quote-mark {
  font-family: var(--font-grotesk);
  font-size: 42px;
  color: var(--color-accent);
  line-height: 0.9;
  margin-bottom: 14px;
  opacity: 0.6;
}

.kb-testimonials__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ── Author row ────────────────────────────────────────────── */
.kb-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kb-testimonials__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}

.kb-testimonials__author-name {
  font-family: var(--font-grotesk);
  font-size: 14px;
  font-weight: 600;
}

.kb-testimonials__author-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
}

/* ── Star rating ───────────────────────────────────────────── */
.kb-testimonials__stars {
  color: #FCD34D;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
