#hero {
    background: linear-gradient(135deg, var(--color3) 0%, #1a1a1a 100%);
    color: var(--color1);
    padding: 80px 40px 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 202, 82, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 186, 120, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#hero .hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
}

#hero .hero-badge {
    display: inline-block;
    background-color: rgba(243, 202, 82, 0.15);
    border: 1px solid var(--color8);
    color: var(--color8);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

#hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--color1);
}

#hero h1 .highlight {
    color: var(--color8);
}

#hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

#hero .hero-actions .button {
    background-color: var(--color8);
    color: var(--color3);
    border-radius: 50px;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color8);
    animation: subtleShake 2.5s ease-in-out infinite;
}

#hero .hero-actions .button:hover {
    background-color: transparent;
    color: var(--color8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 202, 82, 0.3);
}

#hero .hero-actions .button-secondary {
    background-color: transparent;
    color: var(--color1);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#hero .hero-actions .button-secondary:hover {
    background-color: var(--color1);
    color: var(--color3);
    border-color: var(--color1);
    transform: translateY(-2px);
}

#hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

#hero .stat {
    text-align: center;
}

#hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color8);
    display: block;
}

#hero .stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
}

@media screen and (max-width: 768px) {
    #hero {
        padding: 60px 20px 50px;
        min-height: auto;
    }

    #hero h1 {
        font-size: 2.2rem;
    }

    #hero .hero-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    #hero .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    #hero .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    #hero .hero-actions .button,
    #hero .hero-actions .button-secondary {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
        font-size: 0.95rem;
    }

    #hero .hero-stats {
        gap: 25px;
        margin-top: 35px;
    }

    #hero .stat-number {
        font-size: 1.8rem;
    }

    #hero .stat-label {
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 360px) {
    #hero h1 {
        font-size: 1.9rem;
    }

    #hero .hero-actions .button,
    #hero .hero-actions .button-secondary {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
}
