.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url("../img/hiro.7bffe55f3732.webp");
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(13, 40, 24, 0.92) 0%,
        rgba(13, 40, 24, 0.75) 55%,
        rgba(13, 40, 24, 0.2) 100%
    );
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 var(--container-padding);
    max-width: 680px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.hero__title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.15;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero__subtitle {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: var(--fw-regular);
    line-height: 1.6;
}

.hero__cta {
    margin-bottom: 2rem;
}

.hero__features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.9);
}

.hero__feature-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__feature-check svg {
    width: 11px;
    height: 11px;
    color: var(--bg-dark);
}

.hero__scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-hint svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@media (min-width: 768px) {
    .hero__title {
        font-size: var(--fs-4xl);
    }

    .hero__subtitle {
        font-size: var(--fs-lg);
    }

    .hero__content {
        padding: 0 2rem;
        max-width: 720px;
    }

    .hero__features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: var(--fs-5xl);
    }

    .hero__subtitle {
        font-size: var(--fs-xl);
    }

    .hero__content {
        padding: 0 3rem;
        max-width: 780px;
    }
}

@media (max-width: 767px) {
    .hero {
        background-image: url("../img/hirom.bfff595aca35.webp");
        background-attachment: scroll;
    }
}
