.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--transition-base);
}

.navbar.is-scrolled {
    background: var(--color-navy);
}

.navbar__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.navbar__logo img {
    width: 166px;
    height: 50px;
}

.navbar__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    position: fixed;
    top: 0;
    right: 0;
    height: auto;
    width: min(320px, 80vw);
    background: var(--color-navy);
    padding: 71px 32px 32px;
    z-index: 150;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.navbar__menu.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.navbar__menu a {
    color: var(--color-white);
    font-size: 17px;
    font-weight: 700;
    transition: color var(--transition-fast);
    padding-block: 4px;
    width: 100%;
    text-align: center;
}

.navbar__menu > li:not(.navbar__menu-phone):not(.navbar__menu-cta):not(.navbar__menu-lang) > a {
    text-transform: uppercase;
}

.navbar__menu a:hover {
    color: var(--color-orange);
}

.navbar__menu-close {
    display: block;
    position: absolute;
    top: 28px;
    right: 28px;
    padding: 0;
    background: none;
    border: none;
}

.navbar__menu-close img {
    width: 20px;
}

.navbar__menu-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-white);
    font-weight: 600;
    margin-top: 46px;
}

.navbar__menu-cta {
    margin-top: 1px;
}

.navbar__menu-cta .btn {
    height: 40px;
    padding-inline: 27px;
    padding-block: 0;
    font-size: 17px;
}

.navbar__menu-lang {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.navbar__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.navbar__overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-inline-start: auto;
}

.navbar__phone {
    display: none;
}

.navbar__phone img {
    width: 16px;
    height: 16px;
}

.navbar__flag {
    width: 26px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
}

.navbar__cta {
    display: none;
}

.navbar__actions .lang-switch {
    display: none;
}

.navbar__burger {
    display: block;
    order: 3;
    background: none;
    border: none;
    padding: 8px;
    margin-inline-start: auto;
}

.navbar__burger img {
    width: 26px;
    height: auto;
}

.lang-switch {
    position: relative;
}

.lang-switch__toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
}

.lang-switch__arrow {
    width: 9px;
    transition: transform var(--transition-fast);
}

.lang-switch.is-open .lang-switch__arrow {
    transform: rotate(180deg);
}

.lang-switch__list {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 96px;
    background: var(--color-navy);
    border-radius: var(--radius-sm);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    padding: 6px;
    opacity: 0;
    transform: translate(-50%, -6px);
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
    z-index: 200;
}

.lang-switch.is-open .lang-switch__list {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.lang-switch__list button,
.lang-switch__list a {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.lang-switch__list button img,
.lang-switch__list a img {
    width: 20px;
    border-radius: 2px;
}

.lang-switch__list button:hover,
.lang-switch__list button.is-active,
.lang-switch__list a:hover,
.lang-switch__list a.is-active {
    background: rgba(255, 255, 255, 0.1);
}

.hero {
    position: relative;
    height: 650px;
    overflow: hidden;
    background: var(--color-navy);
}

.hero__slider {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__top-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    padding-inline: 0;
}

.hero__badge {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px 32px 24px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero__badge.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero__badge-shape {
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: none;
    width: auto;
    height: 320px;
    z-index: 1;
    opacity: 0;
    transform: translateX(-150px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero__badge-shape.is-visible {
    opacity: 1;
    transform: translateX(-125px);
}

.hero__badge-text {
    opacity: 0;
    transition: opacity 0.6s ease 0.5s;
}

.hero__badge.is-visible .hero__badge-text {
    opacity: 1;
}

.hero__badge-text h1 {
    color: var(--color-white);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    max-width: 310px;
}

.hero__badge-text p {
    color: var(--color-navy);
    font-size: 21px;
    font-weight: 500;
}

@media (min-width: 640px) {
}

@media (min-width: 768px) {
}

@media (min-width: 1024px) {
    .navbar__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: clamp(32px, calc(32px + (100vw - 1024px) * 0.1875), 110px);
    }

    .navbar__logo {
        justify-self: start;
    }


    .navbar__menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 45px;
        position: static;
        justify-self: end;
        width: auto;
        height: auto;
        background: none;
        padding: 0;
        transform: none;
        transition: none;
        pointer-events: auto;
    }

    .navbar__menu a {
        width: auto;
        padding-block: 0;
        text-align: left;
    }

    .navbar__menu-close,
    .navbar__menu-phone,
    .navbar__menu-cta,
    .navbar__menu-lang,
    .navbar__overlay {
        display: none;
    }

    .navbar__actions {
        gap: clamp(24px, calc(24px + (100vw - 1024px) * 0.0625), 50px);
        justify-self: end;
        margin-inline-start: 0;
    }

    .navbar__phone {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--color-white);
        font-weight: 600;
        font-size: 15px;
        white-space: nowrap;
        transition: color var(--transition-fast);
    }

    .navbar__phone:hover {
        color: var(--color-orange);
    }

    .navbar__cta {
        display: inline-flex;
        height: 40px;
        padding-block: 0;
        font-size: 17px;
    }

    .navbar__actions .lang-switch {
        display: block;
    }

    .navbar__burger {
        display: none;
    }

    .hero {
        height: 850px;
    }

    .hero__content {
        padding-bottom: 100px;
        padding-inline: var(--container-padding);
    }

    .hero__badge {
        padding: 56px 64px 56px 0;
    }

    .hero__badge-shape {
        height: 551px;
    }

    .hero__badge-shape.is-visible {
        transform: translateX(0);
    }

    .hero__badge-text {
        padding: 24px 40px 24px clamp(0px, 220px - max(0px, (100vw - 1440px) / 2), 220px);
        transform: translateY(30px);
    }

    .hero__badge-text h1 {
        max-width: 550px;
        font-size: 58px;
    }

    .hero__badge-text p {
        font-size: 38px;
    }
}

@media (min-width: 1280px) {
}

@media (min-width: 1536px) {
}
