/* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .testimonials-section {
      max-width: 1460px;
      margin: 0 auto;
      padding: 0 30px 150px;
      text-align: center;
    }

    /* ───────────────────────────────────────────
       HEADING
    ─────────────────────────────────────────── */
    .testimonials-section__heading-wrapper {
      margin-bottom: 52px;
    }

    .testimonials-section__heading {
      color: #000;
      font-family: Lufga;
      font-weight: 600;
      font-size: 46px;
      line-height: 62px;
      letter-spacing: 0;
      text-align: center;
      padding: 0;
      margin: 0 0 40px;
    }

    /* ───────────────────────────────────────────
       CARDS GRID
    ─────────────────────────────────────────── */
    .testimonials-section__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-bottom: 75px;
      text-align: left;
    }

    /* ───────────────────────────────────────────
       CARD
    ─────────────────────────────────────────── */
    .testimonial-card {
      border-radius: 16px;
      padding: 45px;
      display: flex;
      flex-direction: column;
      box-shadow: 0px 2px 4px 1px #0000001F;
    }

    /* Stars image */
    .testimonial-card__stars-wrapper {
      margin-bottom: 16px;
    }

    .testimonial-card__stars {
      display: flex;
    }

    .testimonial-card__stars img {
      width: 120px;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* Quote */
    .testimonial-card__quote-wrapper {
  margin: 0 0 20px;
    }

    .testimonial-card__quote-wrapper p {
      color: rgba(0,0,0,0.7);
      font-family: Lufga;
      font-weight: 400;
      font-size: 16px;
      line-height: 27px;
      letter-spacing: -0.02em;
      padding: 0;
      margin: 0 0 15px;
    }
.testimonial-card__quote-wrapper p:last-of-type{
  margin: 0;
}
    /* Author */
    .testimonial-card__author-wrapper {
      margin-top: auto;
    }

    .testimonial-card__name {
      color: #000;
      margin-bottom: 4px;
      font-family: Lufga;
      font-weight: 600;
      font-size: 18px;
      line-height: 100%;
      letter-spacing: 0;
      margin: 25px 0 10px;
    }

    .testimonial-card__role-wrapper p {
      color: rgba(0,0,0,0.5);
      font-weight: 400;
      font-size: 15px;
      line-height: 100%;
      letter-spacing: 0;
      padding: 0;
      margin: 0;
    }

    /* ───────────────────────────────────────────
       TRUSTPILOT BADGE
    ─────────────────────────────────────────── */
    .testimonials-section__trustpilot {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      justify-content: center;
    }

    .trustpilot-stars {
      display: flex;
      align-items: center;
    }

    .trustpilot-stars img {
      height: 28px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    .trustpilot-label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      font-weight: 600;
      color: #111;
    }

    .trustpilot-label__icon {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .trustpilot-label__icon img {
      width: 22px;
      height: 22px;
      display: block;
      object-fit: contain;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
      .testimonials-section {
        padding: 0 30px 130px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1366px
    ─────────────────────────────────────────── */
    @media (max-width: 1366px) {
      .testimonials-section {
      }

      .testimonials-section__heading {
        font-size: 44px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
      .testimonials-section {
      }

      .testimonials-section__heading {
        font-size: 40px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .testimonials-section {
        padding: 0 20px 90px;
      }

      .testimonials-section__heading {
        font-size: 36px;
      }

      .testimonials-section__heading-wrapper {
        margin-bottom: 40px;
      }

      .testimonials-section__grid {
        gap: 20px;
      }

      .testimonial-card {
        padding: 24px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      .testimonials-section {
      }

      .testimonials-section__heading {
        font-size: 32px;
      }

      .testimonials-section__grid {
        gap: 20px;
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .testimonials-section {
        padding: 0 15px 60px;
      }

      .testimonials-section__heading {
        font-size: 28px;
      }

      .testimonials-section__heading-wrapper {
        margin-bottom: 32px;
      }

      .testimonials-section__grid {
        margin-bottom: 36px;
        grid-template-columns: repeat(1, 1fr);
      }

      .testimonial-card {
        padding: 24px 20px;
      }
    }