.hero {
    min-height: 60vh !important;
    height: auto;
}

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6), rgba(123, 44, 191, 0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-title .word {
    display: block;
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh !important;
    }
}
