/* ===============================
   HERO PERSONAL — TYPOGRAPHY VERSION
=============================== */

.hero-personal {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    background: #000;
}

/* LOGO */
.hero-logo {
    position: absolute;
    top: 32px;
    left: 40px;
    z-index: 3;
}

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

/* BACKGROUND */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.5),
            rgba(0, 0, 0, 0.8)
    );
}

/* CONTAINER */
.hero-container {
    position: relative;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1600px;
    z-index: 2;
    height: 100%;
}

/* ===============================
   BOTTOM GRID
=============================== */

.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 60px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    padding: 0 20px;
}

/* LEFT */
.hero-left {
    max-width: 720px;
}

.hero-left h1 {
    font-size: 140px;
    font-weight: 600;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    /*max-width: 520px;*/
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
}

/* CTA */
.order-call-text {
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

/* RIGHT */
.hero-top ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-top li {
    font-size: 22px;
    line-height: 1.25;
    opacity: 0.95;
}

.hero-right {
    position: absolute;
    right: 20px;
    width: 200px;
    max-width: 360px;

    bottom: -25px;
}

.hero-right-video {
    border-radius: 15px;
    border: 2px solid #9f9f9f;
    aspect-ratio: 9 / 16;
    width: 100%;
}

.hero-right .btn-play {
    color: white;
    width: 90%;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    top: unset;
    bottom: 10%;
}

.hero-right .btn-play .bi-play-fill {
    font-size: 20px;


}

.ratio-9x16 {
    aspect-ratio: 9 / 16;
}


/* ===============================
   MOBILE
=============================== */



@media (max-width: 1440px) {
    .hero-container {
        padding: 0 20px;
        max-width: 1400px;
    }

    .hero-right {
        right: 20px;
    }

}

@media (max-width: 992px) {
    .hero-left h1 {
        font-size: 64px;
    }

    .hero-top li {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        bottom: 40px;
    }

    .hero-left h1 {
        font-size: 48px;
    }

    .hero-top li {
        font-size: 20px;
    }
}

/* ===============================
   VERTICAL DIVIDER (hero-top)
=============================== */

.hero-top {
    position: absolute;
    padding-left: 32px;
    right: 0;
    top: 25%;
}

.hero-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: #fff;
    opacity: 0.9;
}

/*@media (max-width: 768px) {*/
/*    .hero-top::before {*/
/*        display: none;*/
/*    }*/
/*}*/

.hero-top li {
    margin-bottom: 1.25rem;
}

.hero-top li:last-child {
    margin-bottom: 0;
}

.menu-burger-btn {
    /*background: none!important;*/
    border: 1px solid rgba(0, 0, 0, .12) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25) !important;
}

.menu-burger-icon span {
    display: block;
    height: 4px;
    margin: 6px 0;
    background: #fff;
    border-radius: 3px;
}

.menu-burger-icon {
    width: 26px;
}

.menu-burger-btn {
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.menu-burger-btn.is-open {
    background: rgba(140, 140, 140, .75);
    border-color: rgba(255, 255, 255, .28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}

.menu-burger-btn {
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease,
    opacity .2s ease, transform .2s ease;
}

/* Burger disappears when offcanvas is open */
.menu-burger-btn.is-open {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(.92);

    /* серый фон при открытии (хотя он уже не виден — можно убрать, если хочешь) */
    background: rgba(140, 140, 140, .75);
    border-color: rgba(255, 255, 255, .28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
}
