/* ================================================
   SECTION: HOME HERO
   ================================================ */
.section-home-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
}

.section-home-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.section-home-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.section-home-hero__title {
    font-family: var(--aniro-font-heading);
    font-size: 40px;
    font-weight: 900;
    color: var(--aniro-color-white);
    text-transform: uppercase;
    margin: 0 0 40px;
    line-height: 1.2;
}

.section-home-hero__tiles {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.section-home-hero__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 155px;
    padding: 16px;
    box-sizing: border-box;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.20) 17.62%, rgba(153, 153, 153, 0.20) 51.89%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.section-home-hero__tile:hover {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.25) 17.62%, rgba(153, 153, 153, 0.25) 51.89%);
    transform: translateY(-2px);
}

.section-home-hero__tile-bg {
    width: 68px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.section-home-hero__tile-label {
    color: #FFF;
    text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .section-home-hero {
        min-height: auto;
    }

    .section-home-hero__content {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .section-home-hero__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-home-hero__tiles {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-home-hero__tile {
        height: 100px;
    }

    .section-home-hero__tile-label {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .section-home-hero__tiles {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .section-home-hero__tile {
        height: 90px;
        gap: 10px;
        padding: 12px;
    }

    .section-home-hero__tile-bg {
        width: 50px;
        height: 36px;
    }

    .section-home-hero__tile-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .section-home-hero__content {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .section-home-hero__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .section-home-hero__tiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .section-home-hero__tile {
        height: 85px;
        gap: 8px;
        padding: 10px;
    }
}

