:root {
    --seed-green: #05A453;
    --seed-yellow: #f9ed12;
    --card-bg: rgba(255, 255, 255, .08);
    --card-border: rgba(255, 255, 255, .18);
    --text-on-dark: #ffffff;
}

/* Section Background */
.stats-section {
    position: relative;
    padding: 100px 20px;
    color: var(--text-on-dark);
    background: linear-gradient(140deg, #05A453, #05A453, #05A453);
    overflow: hidden;
}

/* Soft blurred circles */
.stats-section::before,
.stats-section::after {
    content: "";
    position: absolute;
    inset: auto;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .25;
    pointer-events: none;
}

.stats-section::before {
    background: #05A453;
    top: -140px;
    left: -140px;
}

.stats-section::after {
    background: #f9ed12;
    bottom: -160px;
    right: -140px;
}

/* Container */
.stats-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

@media (max-width:992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Card */
.stat-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 40px 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
    text-align: center;
    transform: translateY(15px);
    opacity: 0;
    animation: cardIn .7s ease forwards;
}

.stat-card:nth-child(2) {
    animation-delay: .1s
}

.stat-card:nth-child(3) {
    animation-delay: .2s
}

.stat-card:nth-child(4) {
    animation-delay: .3s
}

@keyframes cardIn {
    to {
        transform: translateY(0);
        opacity: 1
    }
}

/* Icon Circle */
.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--seed-yellow), #27c46f);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .25), inset 0 2px 6px rgba(255, 255, 255, .25);
}

/* Number */
.stat-number {
    font-weight: 800;
    font-size: 52px;
    line-height: 1;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    margin-bottom: 10px;
    position: relative;
}

/* shimmer animation */
.stat-number::after {
    content: "";
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .35), transparent 70%);
    transform: translateY(-12px);
    opacity: 0;
    animation: shine 3s ease-in-out infinite 1s;
}

@keyframes shine {

    0%,
    100% {
        opacity: 0;
        transform: translateY(-12px);
    }

    40% {
        opacity: .6;
        transform: translateY(0);
    }

    70% {
        opacity: 0;
    }
}

/* Label */
.stat-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .3px;
    color: #fdfdfd;
    opacity: .9;
    line-height: 1.2;
}

/* Hover */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 38px rgba(0, 0, 0, .35);
}

/* Section Background */