.hero {
    margin-top: -80px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/image.png");
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(8, 8, 10, 0.3) 0%, #08080a 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    text-align: center;
    padding: 60px 80px;
    max-width: 1200px;
    transition: transform 0.1s ease-out;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-content p {
    font-size: 28px;
    font-weight: 300;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 40px 20px;
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 18px;
    }
}
