.hero-section {
    padding: 120px 0 100px 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(79, 70, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .stat-badge-large {
        justify-content: center;
        margin: 0 auto;
        padding: 16px 24px;
    }
    .stat-badge-large-number {
        font-size: 1.75rem;
    }
    .stat-badge-large-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

.stat-badge-large {
    background: white;
    padding: 24px 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.stat-badge-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.stat-badge-large-icon {
    background: var(--primary-color);
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 20px;
}

.stat-badge-large-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.stat-badge-large-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}

.hero-decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
}

.opacity-25 { opacity: 0.25; }
