/* ==============================================
   SECTION TESTIMONI — Home Page
   Mobile-first, fully responsive
   ============================================== */

.section_testimoni {
  padding: 72px 0 88px;
  background: #ffffff;
}

.testimoni-section {
  gap: 0 !important;
  padding-right: var(--lp-space-screen-x);
  padding-left: var(--lp-space-screen-x);
  padding-bottom: 2rem;
}

.testimoni-section__header {
  text-align: center;
  margin-bottom: 40px;
}

.testimoni-section__eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3954A4;
  margin-bottom: 12px;
}

.testimoni-section__title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.35;
  margin: 0 0 14px;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
}

.testimoni-section__title-accent {
  color: #E31F26;
}

.testimoni-section__title-brand {
  color: #3954A4;
}

.testimoni-section__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 40rem;
}

/* ---- Grid + scrim bawah (gradien transparan → putih di atas list kartu) ---- */
.testimoni-grid-wrap {
  position: relative;
  margin-bottom: 40px;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* Menutupi bagian bawah area grid: atas bening, bawah memudar (setop Figma, arah vertikal) */
.testimoni-grid-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(140px, 48%, 320px);
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0) 36%,
      rgba(255, 255, 255, 1) 91%,
      rgba(255, 255, 255, 1) 100%);
}

/* ---- Card ---- */
.testimoni-card {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.testimoni-card:hover {
  border-color: #d1daea;
  box-shadow: 0 8px 28px rgba(57, 84, 164, 0.08);
}

.testimoni-card__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.testimoni-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #e8edf5;
  flex-shrink: 0;
}

.testimoni-card__meta {
  min-width: 0;
  flex: 1;
}

.testimoni-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 4px;
  line-height: 1.35;
}

.testimoni-card__role {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #64748b;
  margin: 0 0 2px;
  line-height: 1.45;
}

.testimoni-card__inst {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.45;
}

.testimoni-card__quote {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* ---- Footer CTA ---- */
.testimoni-section__footer {
  text-align: center;
}

.testimoni-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3954A4;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1.5px solid #3954A4;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1.2;
}

.testimoni-section__btn:hover {
  background: #2e4490;
  border-color: #2e4490;
  color: #ffffff;
}

.testimoni-section__btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.testimoni-section__btn:hover svg {
  transform: translateX(2px);
}

/* ==============================================
   TABLET — 768px+
   ============================================== */
@media only screen and (min-width: 48rem) {
  .section_testimoni {
    padding: 80px 0 96px;
  }

  .testimoni-section {
    gap: 0 !important;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0;
  }

  .testimoni-section__title {
    font-size: 28px;
  }

  .testimoni-section__subtitle {
    font-size: 15px;
  }

  .testimoni-grid-wrap {
    margin-bottom: 44px;
  }

  .testimoni-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimoni-card {
    padding: 22px 20px 24px;
  }
}

/* ==============================================
   LAPTOP — 1024px+
   ============================================== */
@media only screen and (min-width: 64rem) {
  .section_testimoni {
    padding: 88px 0 104px;
  }

  .testimoni-section__header {
    margin-bottom: 48px;
  }

  .testimoni-section__title {
    font-size: 32px;
  }

  .testimoni-grid-wrap {
    margin-bottom: 48px;
  }

  .testimoni-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .testimoni-card__quote {
    font-size: 13.5px;
  }
}

/* ==============================================
   DESKTOP — 1280px+
   ============================================== */
@media only screen and (min-width: 80rem) {
  .section_testimoni {
    padding: 96px 0 112px;
  }

  .testimoni-section {
    gap: 0 !important;
  }

  .testimoni-section__title {
    font-size: 36px;
  }

  .testimoni-section__btn {
    font-size: 15px;
    padding: 13px 28px;
  }
}