.hero-section {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><linearGradient id="network1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.2);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.08);stop-opacity:1" /></linearGradient></defs><g fill="none" stroke="url(%23network1)" stroke-width="2"><path d="M150 200 L300 150 L450 200 L600 150 L750 200 L900 150"/><path d="M150 400 L300 350 L450 400 L600 350 L750 400 L900 350"/><path d="M150 600 L300 550 L450 600 L600 550 L750 600 L900 550"/><path d="M150 200 L150 400 L150 600"/><path d="M300 150 L300 350 L300 550"/><path d="M450 200 L450 400 L450 600"/><path d="M600 150 L600 350 L600 550"/><path d="M750 200 L750 400 L750 600"/><path d="M900 150 L900 350 L900 550"/></g><circle cx="150" cy="200" r="8" fill="url(%23network1)"/><circle cx="300" cy="150" r="8" fill="url(%23network1)"/><circle cx="450" cy="200" r="8" fill="url(%23network1)"/><circle cx="600" cy="150" r="8" fill="url(%23network1)"/><circle cx="750" cy="200" r="8" fill="url(%23network1)"/><circle cx="900" cy="150" r="8" fill="url(%23network1)"/></svg>');
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-stat {
        padding: 0.8rem;
    }
    
    .hero-stat-number {
        font-size: 2rem;
    }
}