.hero {
    min-height: 100vh;
    max-height: 100vh;
    width: 100%;
    max-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(249, 240, 255, 0.75) 50%, rgba(240, 249, 255, 0.75) 100%),
        url('../resources/images/banner.png') center center no-repeat;
    background-size: 
        100% 100%,
        contain;
    background-attachment: scroll;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after, .hero::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
}

.hero::before {
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    animation-direction: reverse;
    animation-duration: 25s;
}

.hero-content {
    max-width: 900px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-black);
    letter-spacing: -0.5px;
    animation: slideInDown 0.8s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.2px;
    animation: slideInUp 0.8s ease-out 0.1s backwards;
    background: linear-gradient(135deg, var(--color-gray-600) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--color-gray-600);
}

/* Device-friendly responsive adjustments - banner image respects viewport */
@media (max-width: 1024px) {
    .hero {
        background-size: 
            100% 100%,
            contain;
    }
}

@media (max-width: 768px) {
    .hero {
        background-size: 
            100% 100%,
            contain;
    }
}

@media (max-width: 480px) {
    .hero {
        background-size: 
            100% 100%,
            contain;
    }
}
