/* ── Shared showcase section (carousel + stats) ── */
.section-showcase {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  /* Subtle dot-grid texture */
  background-image: radial-gradient(circle, #d0dff0 1px, transparent 1px);
  background-size: 28px 28px;           /* dot spacing: adjust to taste */
  padding: 4rem 0;                      /* section padding: adjust to taste */
}

/* ── Carousel ── */
.showcase-carousel-block {
  margin-bottom: 3rem;                  /* space between carousel and divider: adjust to taste */
}

.brand-carousel-heading {
  text-align: center;
  font-family: Kumbh Sans, sans-serif;
  font-size: 1.7rem;                    /* heading size: adjust to taste */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-blue);
  margin-bottom: 2.5rem;               /* space below heading: adjust to taste */
}

.brand-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  /* Fade logos in/out at the edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.brand-carousel-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-scroll 30s linear infinite;
}

.brand-carousel-track:hover {
  animation-play-state: paused;
}

.brand-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6rem;                   /* space between logos: adjust to taste */
}

.brand-carousel-item img {
  height: 96px;                         /* logo height: adjust to taste */
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s ease, opacity 0.2s ease;
}

.brand-carousel-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-carousel-item--dark {
  background-color: #2c2c2c;
  border-radius: 12px;
  padding: 12px 20px;
}

@keyframes brand-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Divider ── */
.showcase-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(27, 57, 100, 0.2), transparent);
  margin-bottom: 3rem;                  /* space between divider and stats: adjust to taste */
}

/* ── Stats ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats-number {
  font-family: Kumbh Sans, sans-serif;
  font-size: 4rem;                      /* number size: adjust to taste */
  font-weight: 800;
  color: var(--blue);                   /* blue pop: try --dark-blue for deeper tone */
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stats-label {
  font-family: Kumbh Sans, sans-serif;
  font-size: 1rem;                      /* label size: adjust to taste */
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-blue);
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}