.ac-stats-section-wrapper-dc94c2e8 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.ac-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.ac-stats-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ac-stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(30, 41, 59, 0.08), 0 8px 10px -6px rgba(30, 41, 59, 0.04);
}

.ac-stats-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1E293B; /* Brand Primary */
    opacity: 0.9;
}

.ac-stats-number {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    letter-spacing: -0.03em;
}

.ac-stats-number-val {
    color: #1E293B; /* Brand Dark primary text */
}

.ac-stats-suffix {
    color: #1E293B;
    margin-left: 1px;
}

.ac-stats-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748B;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ac-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ac-stats-grid {
        grid-template-columns: 1fr;
    }
}
