/* ── STAT COUNTER SECTION ── */
.sc-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── HEADER ── */
.sc-header {
  margin-bottom: 2.5rem;
}

.content .sc-header h2 {
  margin-bottom: .75rem;
}

.content .sc-intro {
  margin-top: .5rem;
}

/* ── CARDS ROW ── */
.sc-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -1rem;
}

.sc-card {
  flex: 0 0 calc(33.333% - 1rem);
  margin-left: 1rem;
  margin-bottom: 1rem;
  background: #09476E;
  border-radius: 10px;
  padding: 2.25rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.sc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(9,71,110,.25);
}

.sc-card-highlight {
  background: #07344f;
  border-top: 3px solid #C5960C;
}

/* ── NUMBER / VALUE ── */
.content .sc-card-display {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
}

.content .sc-val {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0;
}

.container .content .sc-card .sc-val span.sc-number {
  font-size:48px !important; 
  font-family:"Galano Grotesque Bold",Sans-Serif !important;
  color: #C5960C !important;
  line-height: 1;
}

.content .sc-card .sc-val .sc-char {
  color: #FFFFFF !important;
  font-size:36px !important; 
  line-height: 1;
}

.content .sc-card .sc-val .sc-char-before {
  margin-right: 8px;
} 
.content .sc-card .sc-val .sc-char-after {
  margin-left: 8px;
}

/* ── ICON (no-number card) ── */
.content .sc-icon {
  width: 125px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content .sc-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(60%) saturate(600%) hue-rotate(5deg) brightness(95%);
}

/* ── LABEL ── */
.content .sc-label {
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .content .sc-card {
    flex: 0 0 calc(100% - 1rem);
  }
}
