/* ==========================================================
   SECTION 3: IMPACT STATISTICS STYLING (dg3.css)
   ========================================================== */
.dg-stats-section {
    background-color: var(--bg-cream);
    padding: 6rem 0;
    position: relative;
}

.dg-stats-card-grid {
    background: var(--surface-white);
    border-radius: 36px;
    padding: 4rem 2.5rem;
    box-shadow: 0 25px 50px var(--shadow-color);
    border: 1px solid var(--border-line);
}

.dg-stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* KUNCI: Rata atas agar ikon sejajar sempurna */
}

.dg-stat-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 1.2rem;
    flex-shrink: 0; /* KUNCI: Mencegah ikon berubah ukuran */
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(181, 58, 45, 0.1), rgba(200, 155, 60, 0.1));
    border-radius: 50%;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.dg-stat-item:hover .dg-stat-icon {
    transform: scale(1.1) rotate(6deg);
}

/* Wrapper Angka Besar & Highlight */
.dg-stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    letter-spacing: -2px;
}

.dg-stat-prefix {
    font-size: 2.8rem;
    color: var(--secondary-gold);
    font-weight: 800;
}

.dg-stat-count {
    display: inline-block;
    background: linear-gradient(135deg, var(--text-heading) 30%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dg-stat-suffix {
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 800;
}

.dg-stat-label {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-body);
    line-height: 1.4;
    margin-top: auto; /* Mendorong label konsisten di bawah */
}