/* =========================
   STATISTICS SECTION
========================= */

.statistics-section {
    background: var(--color-white);
}


/* =========================
   STATISTICS GRID
========================= */

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================
   STAT CARD
========================= */

.stat-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    min-height: 150px;

    padding: 24px;

    background: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.stat-card:hover {
    transform: translateY(-3px);

    border-color: rgba(8, 127, 75, 0.22);

    box-shadow: var(--shadow-md);
}


/* =========================
   STAT ICON
========================= */

.stat-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(8, 127, 75, 0.10),
            rgba(217, 173, 69, 0.12)
        );

    color: var(--color-green);

    font-size: 19px;
    font-weight: 800;
}


/* =========================
   STAT CONTENT
========================= */

.stat-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.stat-label {
    color: var(--color-text-soft);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.stat-value {
    display: block;

    margin-top: 4px;

    overflow: hidden;

    color: var(--color-green-dark);

    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;

    text-overflow: ellipsis;
    white-space: nowrap;
}

.stat-description {
    display: block;

    margin-top: 5px;

    color: var(--color-text-soft);

    font-size: 12px;
    line-height: 1.4;
}


/* =========================
   GOLD ACCENT
========================= */

.stat-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 24px;

    width: 36px;
    height: 3px;

    border-radius: 0 0 4px 4px;

    background: var(--color-gold);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 850px) {

    .statistics-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 125px;
    }

}


@media (max-width: 500px) {

    .stat-card {
        padding: 20px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
    }

    .stat-value {
        font-size: 23px;
    }

}