/* --- Section 2: stats Layout --- */
.section2-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-col {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.stats-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.huge-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 450px;
}

/* Stat Cards */
.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card.highlight-bg {
    background: linear-gradient(135deg, rgba(255, 248, 225, 0.05), rgba(255, 255, 255, 0.02));
    /* Mimicking the beige tone slightly or keeping it dark theme consistent */
    border-color: rgba(255, 215, 0, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stat-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.stat-desc {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 20px;
    line-height: 1.4;
}

.card-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.refresh-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Progress Bars */
.bar-group {
    margin-bottom: 15px;
}

.bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 6px;
}

.bar-val {
    font-weight: 700;
}

.green-text {
    color: #2ecc71;
}

.progress-track {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    /* Start at 0 for animation */
    border-radius: 6px;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.fill-gray {
    background: #7f8c8d;
}

.fill-green {
    background: #2ecc71;
}