 /* ───────────────────────────────────────────
       SECTION
    ─────────────────────────────────────────── */
    .stats-cards-section {
      width: 100%;
    }

    .stats-cards-section__inner {
      max-width: 1260px;
      margin: 0 auto;
      padding: 120px 30px 0;
    }

    /* ───────────────────────────────────────────
       GRID
    ─────────────────────────────────────────── */
    .stats-cards-section__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    /* ───────────────────────────────────────────
       CARD
    ─────────────────────────────────────────── */
.stat-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 0px 4px rgba(0, 0, 0, 0.04);
}

    /* Icon */
    .stat-card__icon-wrapper {
      width: 35px;
      height: 35px;
      margin-bottom: 30px;
    }

    .stat-card__icon-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* Value */
    .stat-card__value {
      color: #000;
      letter-spacing: 0;
      margin: 0 0 5px;
      padding: 0;
      font-family: Lufga;
      font-weight: 500;
      font-size: 24px;
      line-height: 34px;
    }

    /* Label */
    .stat-card__label-wrapper p {
      color: rgba(0, 0, 0, 0.8);
      padding: 0;
      margin: 0;
      font-family: Lufga;
      font-weight: 400;
      font-size: 15px;
      line-height: 29px;
      letter-spacing: 0.01em;
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1440px
    ─────────────────────────────────────────── */
    @media (max-width: 1440px) {
      .stats-cards-section__inner {
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1280px
    ─────────────────────────────────────────── */
    @media (max-width: 1280px) {
      .stats-cards-section__inner {
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 1024px
    ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .stats-cards-section__inner {
        padding: 100px 20px 0;
      }

      .stats-cards-section__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 991px
    ─────────────────────────────────────────── */
    @media (max-width: 991px) {
      .stats-cards-section__grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ───────────────────────────────────────────
       RESPONSIVE — 767px
    ─────────────────────────────────────────── */
    @media (max-width: 767px) {
      .stats-cards-section__inner {
        padding: 60px 15px 0;
      }

      .stats-cards-section__grid {
        grid-template-columns: repeat(1, 1fr);
      }

      .stat-card {
        padding: 22px 20px 26px;
      }

      .stat-card__value {
        font-size: 20px;
      }
    }