.ffl-what { background: var(--ffl-bg); }

.ffl-what__lead {
  margin-bottom: 40px;
}

.ffl-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 14px;
  margin-bottom: 32px;
}

.ffl-stats__item {
  text-align: center;
  padding: 8px 10px;
}

/* Same visual size as year-stats icons on the PC screenshot */
.ffl-stats__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 16px;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.ffl-stats__icon::before,
.ffl-stats__icon::after {
  content: none !important;
  display: none !important;
}

.ffl-stats__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: none !important;
  image-rendering: auto;
}

.ffl-stats__icon--calendar {
  width: 64px;
  height: 64px;
}

@media (min-width: 640px) {
  .ffl-stats { gap: 28px 20px; }

  .ffl-stats__icon,
  .ffl-stats__icon--calendar {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    padding: 0;
    margin-bottom: 14px;
  }
}

@media (min-width: 960px) {
  .ffl-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 16px;
  }

  .ffl-stats__icon,
  .ffl-stats__icon--calendar {
    width: 80px;
    height: 80px;
  }
}

.ffl-stats__value {
  font-family: var(--ffl-display);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  color: var(--ffl-ink);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.ffl-stats__label {
  color: var(--ffl-muted);
  font-weight: 600;
  font-size: 14px;
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.35;
}

.ffl-what__cta {
  display: flex;
  justify-content: center;
}
