.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .bg-abstract {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.hero-half-circle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: linear-gradient(to bottom, #f38128 0%, #ffffff 120%);
    border-radius: 300px 300px 0 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
}

.hero-logo {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.hero-logo img {
    height: 180px;
    width: auto;
}

.brand-product {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.brand-product img {
    height: 350px;
    width: auto;
}

@media (max-width: 1024px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 40px;
    }

    .hero .bg-abstract {
        object-position: center center;
    }

    .hero-content {
        justify-content: center;
        margin-top: 50px;
    }

    .hero-half-circle {
        width: 500px;
        height: 250px;
        border-radius: 250px 250px 0 0;
    }

    .hero-logo img {
        height: 170px;
    }

    .brand-product img {
        height: 290px;
    }

    .hero-logo {
        margin-bottom: 0.4rem;
    }

    .brand-product {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .hero .bg-abstract {
        object-position: center center;
    }

    .hero-content {
        justify-content: center;
        margin-top: 40px;
    }

    .hero-half-circle {
        width: 400px;
        height: 200px;
        border-radius: 200px 200px 0 0;
    }

    .hero-logo img {
        height: 140px;
    }

    .brand-product img {
        height: 240px;
    }

    .hero-logo {
        margin-bottom: 0.3rem;
    }

    .brand-product {
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .hero .bg-abstract {
        object-position: center bottom;
    }

    .hero-content {
        justify-content: center;
        margin-top: 30px;
    }

    .hero-half-circle {
        width: 350px;
        height: 175px;
        border-radius: 175px 175px 0 0;
    }

    .hero-logo img {
        height: 120px;
    }

    .brand-product img {
        height: 210px;
    }

    .hero-logo {
        margin-bottom: 0.25rem;
    }

    .brand-product {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .hero .bg-abstract {
        object-position: center bottom;
    }

    .hero-content {
        justify-content: center;
        margin-top: 25px;
    }

    .hero-half-circle {
        width: 300px;
        height: 150px;
        border-radius: 150px 150px 0 0;
    }

    .hero-logo img {
        padding-top: 23px;
        height: 100px;
    }

    .brand-product img {
        height: 180px;
    }

    .hero-logo {
        margin-bottom: 0.2rem;
    }

    .brand-product {
        margin-bottom: 0.4rem;
    }
}

@media (max-width: 375px) {
    .hero {
        height: auto;
        min-height: auto;
        padding-top: 35px;
        padding-bottom: 25px;
    }

    .hero .bg-abstract {
        object-position: center bottom;
    }

    .hero-content {
        justify-content: center;
        margin-top: 20px;
    }

    .hero-half-circle {
        width: 250px;
        height: 125px;
        border-radius: 125px 125px 0 0;
    }

    .hero-logo img {
        padding-top: 35px;
        height: 105px;
    }

    .brand-product img {
        height: 150px;
    }

    .hero-logo {
        margin-bottom: 0.15rem;
    }

    .brand-product {
        margin-bottom: 0.3rem;
    }
}
