/* =========================================================
   HERO HOME
========================================================= */

.hero-home {

    position: relative;

    min-height: 680px;

    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 60px 40px;

    background: #07194b;

    margin-top: 0;

}

/* =========================================================
   OVERLAY
========================================================= */

.hero-home::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    background: linear-gradient(
        90deg,
        rgba(7,25,75,0.94) 0%,
        rgba(7,25,75,0.84) 34%,
        rgba(7,25,75,0.52) 64%,
        rgba(7,25,75,0.12) 100%
    );

}

/* =========================================================
   BACKGROUND
========================================================= */

.hero-home__background {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

}

.hero-home__background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    display: block;

}

/* =========================================================
   CONTENT
========================================================= */

.hero-home__content {

    position: relative;

    z-index: 10;

    max-width: 520px;

    color: #ffffff;

}

/* =========================================================
   YEAR
========================================================= */

.hero-home__year {

    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 18px;

}

.hero-home__year::before {

    content: "";

    width: 3px;
    height: 20px;

    background: var(--color-secondary);

    border-radius: 50px;

}

/* =========================================================
   TITLE
========================================================= */

.hero-home__title {

    font-size: 64px;

    font-weight: 800;

    line-height: 0.98;

    color: #ffffff;

    margin-bottom: 22px;

    letter-spacing: -2px;

    text-shadow:
        0 4px 18px rgba(0,0,0,0.45);

}

/* =========================================================
   TEXT
========================================================= */

.hero-home__text {

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255,255,255,0.92);

    margin-bottom: 28px;

    text-shadow:
        0 2px 10px rgba(0,0,0,0.35);

}

/* =========================================================
   FEATURE
========================================================= */

.hero-home__feature {

    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 32px;

}

.hero-home__check {

    width: 22px;
    height: 22px;

    min-width: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--color-secondary);

    border-radius: 50%;

    margin-top: 2px;

}

.hero-home__check svg {

    width: 12px;
    height: 12px;

    stroke: #ffffff;
    stroke-width: 3;

}

.hero-home__feature p {

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255,255,255,0.94);

}

/* =========================================================
   ACTIONS
========================================================= */

.hero-home__actions {

    display: flex;
    align-items: center;

    gap: 12px;

    flex-wrap: wrap;

}

/* =========================================================
   BUTTON BASE
========================================================= */

.btn {

    height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border-radius: var(--radius-md);

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition-fast);

}

/* =========================================================
   PRIMARY BUTTON
========================================================= */

.btn-primary {

    background: var(--color-secondary);

    color: #ffffff;

}

.btn-primary:hover {

    background: var(--color-secondary-hover);

    transform: translateY(-2px);

}

/* =========================================================
   OUTLINE BUTTON
========================================================= */

.btn-outline {

    border: 1px solid rgba(255,255,255,0.35);

    color: #ffffff;

    background: rgba(255,255,255,0.03);

}

.btn-outline:hover {

    background: rgba(255,255,255,0.08);

    border-color: #ffffff;

}

/* =========================================================
   BUTTON ICONS
========================================================= */

.btn svg {

    width: 15px;
    height: 15px;

    stroke-width: 2.5;

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .hero-home {

        padding: 60px 35px;

    }

    .hero-home__title {

        font-size: 52px;

    }

}

@media (max-width: 768px) {

    .hero-home {

        min-height: auto;

        padding: 120px 25px 70px;

        align-items: flex-start;

    }

    .hero-home__content {

        max-width: 100%;

    }

    .hero-home__title {

        font-size: 42px;

        line-height: 1.04;

    }

    .hero-home__text {

        font-size: 15px;

    }

    .hero-home__feature p {

        font-size: 14px;

    }

    .hero-home__actions {

        flex-direction: column;
        align-items: stretch;

    }

    .btn {

        width: 100%;

    }

}

@media (max-width: 480px) {

    .hero-home__title {

        font-size: 36px;

    }

}