.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 68px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: #111827;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
    background: transparent;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 20, 0.5);
}

.hero__content {
    position: relative;
    z-index: 1;
    color: var(--white);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1rem;
}

.hero__title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 680px;
}

.hero__title span {
    color: var(--accent);
}

.hero__desc {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 520px;
    opacity: 0.88;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.4rem;
    }

    .hero__desc {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 4rem;
    }
}
