/* ====================================================== */
/* IMPACT STATISTICS SECTION */
/* Menampilkan kredibilitas ilmiah SciencePreneur */
/* ====================================================== */

.stats-section{

/* background biru gradien agar kontras dengan section sebelumnya */

background:linear-gradient(
135deg,
var(--primary-800),
var(--primary-600)
);

/* spacing */

padding:70px 0;

/* teks putih */

color:white;

}


/* ====================================================== */
/* GRID STATISTICS */
/* ====================================================== */

.stats-grid{

display:grid;

/* 4 kolom */

grid-template-columns:repeat(4,1fr);

/* jarak antar kolom */

gap:30px;

/* posisi tengah */

text-align:center;

}


/* ====================================================== */
/* NUMBER */
/* ====================================================== */

.stat-number{

font-family:var(--font-heading);

font-size:44px;

font-weight:700;

color:var(--accent-400);

}


/* ====================================================== */
/* LABEL */
/* ====================================================== */

.stat-label{

font-size:14px;

margin-top:4px;

/* opacity:0.8; */
color:rgba(255,255,255,0.85);
}


/* ====================================================== */
/* SCIENTIFIC CREDENTIALS STRIP                           */
/* Replaces numeric stats — links to verified profiles   */
/* ====================================================== */

.credentials-inner {
  text-align: center;
  padding: 0.5rem 0;
}

.credentials-desc {
  font-size: 1.05rem;
  color: var(--neutral-300);
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.credentials-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--accent-500);
  border-radius: var(--radius-full);
  color: var(--accent-400);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cred-pill:hover {
  background: rgba(46, 196, 182, 0.15);
  color: var(--accent-300);
  border-color: var(--accent-400);
  transform: translateY(-2px);
}


/* ====================================================== */
/* RESPONSIVE - TABLET                                    */
/* ====================================================== */

@media (max-width: 992px) {

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

}

/* ====================================================== */
/* RESPONSIVE - MOBILE                                    */
/* ====================================================== */

@media (max-width: 576px) {

  .stats-section {
    padding: 50px 0;
  }

  .stat-number {
    font-size: 30px;
  }

}