.hero {
    width: 100%;
    max-width: 1440px;
    min-height: 680px;
    margin: 0 auto 30px;
    background-image: url('/media/ARMAT_HomePage_Robot.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(to right, #0C111C 0%, rgba(12, 17, 28, 0) 18%),
        linear-gradient(to left, #0C111C 0%, rgba(12, 17, 28, 0) 18%),
        linear-gradient(to bottom, #0C111C 0%, rgba(12, 17, 28, 0) 14%),
        linear-gradient(to top, #0C111C 0%, rgba(12, 17, 28, 0) 14%);
}

.hero_content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
}

.hero_text {
    max-width: 760px;
}

.headline {
    margin-bottom: 24px;
    font-family: "Unbounded", sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
}

.hero_desc {
    max-width: 620px;
    margin-bottom: 32px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #CDCDCD;
}

.hero_buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero_button {
    min-width: 160px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    transition: all 0.2s ease;
}

.join {
    background-color: rgb(13, 153, 255);
    border: none;
    color: #fff;
}

.join:hover {
    background-color: #CA2C66;
    color: #fff;
}

.more {
    background-color: transparent;
    border: 1px solid rgb(13, 153, 255);
    color: #fff;
}

.more:hover {
    border-color: rgb(202, 44, 102);
    color: #fff;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        min-height: 520px;
        background-position: 68% center;
    }

    .hero_content {
        padding-left: 32px;
        padding-right: 32px;
    }

    .hero_text {
        max-width: 470px;
    }

    .headline {
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero_desc {
        max-width: 430px;
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 24px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero {
        min-height: 460px;
        align-items: flex-start;
        background-position: 72% center;
    }

    .hero::before {
        background: linear-gradient(180deg,
                rgba(5, 7, 15, 0.72) 0%,
                rgba(5, 7, 15, 0.60) 40%,
                rgba(5, 7, 15, 0.45) 100%);
    }

    .hero_content {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .hero_text {
        max-width: 100%;
    }

    .headline {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .hero_desc {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .hero_buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero_button {
        width: 100%;
        max-width: 191px;
    }
}