.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--color-overlay);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    padding-top: 120px;
}

.hero-content h1 {
    font-size: clamp(1.5rem, 3vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 32px;
    color: var(--color-text-light);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}