@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --font-family: "Montserrat", sans-serif;
    --header-height: 92px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: min(1920px, 98%);
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 100px);
}

/* ===== HEADER ===== */
.header {
    padding: clamp(14px, 1.68vw, 28px) 0;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #ebeaf1;
}

.header {
    transition:
        padding .45s ease,
        background .45s ease;
}

.header.header_compact {
    padding: clamp(10px, 1vw, 18px) 0;
}

.header.header_scrolled {
    background: rgba(255,255,255,1);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar__list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar__list--link {
    font-weight: 500;
    font-size: clamp(13px, 1.17vw, 22px);
    color: #1f1547;
    transition: color 0.25s ease-in;
}

.navbar__list--link:hover {
    color: #85c341;
}

.navbar__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-track {
    position: relative;
    display: inline-flex;
    background: #fff;
    border: 1px solid #e0e0e8;
    border-radius: 50px;
    padding: 3px;
}

.lang-pill {
    position: absolute;
    top: 3px;
    left: 3px;
    height: calc(100% - 6px);
    background: #1a1a2e;
    border-radius: 50px;
    transition: transform 0.25s cubic-bezier(.4, 0, .2, 1);
    pointer-events: none;
}

.lang-btn {
    position: relative;
    z-index: 1;
    padding: clamp(7px, 0.77vw, 12px) clamp(10px, 1.1vw, 18px);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: clamp(13px, 1.17vw, 22px);
    text-align: center;
    line-height: 1;
    color: #1f1547;
    transition: color 0.2s;
}

.lang-btn.active {
    color: #fff;
}

.navbar__buy--btn {
    background: #85c341;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: clamp(8px, 0.88vw, 12px) clamp(24px, 3.66vw, 45px);
    font-weight: 500;
    font-size: clamp(13px, 1.17vw, 22px);
    text-align: center;
    color: #fff;
    transition: all 0.25s ease-in;
}

.navbar__buy--btn:hover {
    border: 1px solid #85c341;
    background: #fff;
    color: #85c341;
}

.hero {
    padding-top: var(--header-height);
    padding-bottom: clamp(38px, 5.49vw, 110px);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.02vw, 20px);
    padding: clamp(18px, 2.56vw, 48px) 0 clamp(28px, 3.03vw, 80px);
}

.breadcrumb__link {
    font-weight: 300;
    font-size: clamp(10px, 0.95vw, 18px);
    color: #777;
    transition: color 0.25s ease-in;
}

.breadcrumb__link:hover {
    color: #85c341;
}

.breadcrumb__sep {
    font-weight: 300;
    font-size: clamp(10px, 0.95vw, 18px);
    color: #777;
}

.breadcrumb__current {
    font-weight: 300;
    font-size: clamp(10px, 0.95vw, 18px);
    color: #777;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: clamp(26px, 3.66vw, 70px);
}

.hero__title {
    font-weight: 500;
    font-size: clamp(22px, 2.78vw, 54px);
    line-height: 121%;
    color: #1f1547;
}

.hero__info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
    gap: clamp(12px, 1.46vw, 30px);
}

.hero__left,
.hero__middle,
.hero__right {
    height: clamp(320px, 42vw, 780px);
}

.hero__left {
    display: flex;
    flex-direction: column;
    gap: clamp(14px, 1.83vw, 36px);
    height: 100%;
}

.hero__left--card {
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.hero__left--img {
    width: clamp(160px, 21.96vw, 400px);
    height: clamp(125px, 17.64vw, 320px);
}

.hero__left--photo {
    width: 100%;
    height: 100%;
}

.hero__left--btn {
    border-radius: 50px;
    background: #85c341;
    border: 1px solid #85c341;
    display: flex;
    justify-content: center;
    padding: clamp(6px, 0.73vw, 16px) 0;
}

.hero__left--btn span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    color: #fff;
}


.instr-nav {
    height: 100%;
    overflow-y: scroll;
    padding-right: 24px;

    scrollbar-width: thin;
    scrollbar-color: #85c341 #eef2fb;
}

.instr-nav::-webkit-scrollbar {
    width: 6px;
}

.instr-nav::-webkit-scrollbar-track {
    background: #eef2fb;
    border-radius: 999px;
}

.instr-nav::-webkit-scrollbar-thumb {
    background: #85c341;
    border-radius: 999px;
}

.instr-nav__list {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 0.73vw, 16px);
}

.instr-nav__btn {
    width: 100%;
    padding: clamp(10px, 1.2vw, 26px) clamp(10px, 1.32vw, 26px);
    text-align: left;
    font-weight: 400;
    font-size: clamp(11px, 1.1vw, 22px);
    line-height: 113%;
    letter-spacing: -0.01em;
    color: #1f1547;
    background: #eff3fd;
    border-radius: 7px;
    transition: background 0.25s ease-in;
}

.instr-nav__btn:hover {
    background: #ccd3e4;
}

.instr-nav__btn.active {
    background: #d4d4e4;
    font-weight: 500;
}

.instr-content {
    height: 100%;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.2);
    padding: clamp(16px, 1.4vw, 42px) clamp(12px, 1.46vw, 30px);
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.46vw, 16px);
    overflow: hidden;
}

.instr-content__title {
    font-weight: 500;
    font-size: clamp(11px, 1.17vw, 24px);
    color: #1f1547;
    flex-shrink: 0;
}

.instr-content__body {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #85c341 #eef2fb;
    padding-right: 24px;
}

.instr-content__body::-webkit-scrollbar { width: 6px; }
.instr-content__body::-webkit-scrollbar-track { background: #eef2fb; border-radius: 999px; }
.instr-content__body::-webkit-scrollbar-thumb { background: #85c341; border-radius: 999px; }

.instr-section {
    display: none;
}

.instr-section.active {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.2vh, 18px);
}

.instr-section p,
.instr-section li {
    font-weight: 400;
    font-size: clamp(10px, 1.02vw, 20px);
    line-height: 107%;
    letter-spacing: -0.01em;
    color: #1f1547;
}

.instr-list {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vh, 14px);
    padding-left: clamp(16px, 2vw, 28px);
    list-style: disc;
}

.footer {
    background: #e6eaf3;
    padding: clamp(20px, 2.64vw, 50px) 0 0;
}

.footer__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: clamp(18px, 1.72vw, 48px);
}

.footer__logo {
    width: clamp(100px, 13.18vw, 240px);
    height: clamp(24px, 2.93vw, 54px);
}

.footer__logo--icon {
    width: 100%;
    height: 100%;
    mix-blend-mode: darken;
}

.footer__nav--list {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.12vw, 42px);
}

.footer__nav--link {
    font-weight: 500;
    font-size: clamp(11px, 1.17vw, 24px);
    color: #1f1547;
}

.footer__nav--btn {
    background: #85c341;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: clamp(8px, 0.88vw, 12px) clamp(24px, 3.66vw, 45px);
    transition: all 0.25s ease-in;
}

.footer__nav--btn span {
    font-weight: 500;
    font-size: clamp(11px, 1.17vw, 24px);
    text-align: center;
    color: #fff;
    transition: color 0.25s ease-in;
}

.footer__nav--btn:hover {
    border: 1px solid #85c341;
    background: #fff;
}

.footer__nav--btn:hover span {
    color: #85c341;
}

.footer__line {
    width: 100%;
    height: 1px;
    background: rgba(31, 21, 71, 0.1);
}

.footer__middle {
    max-width: clamp(600px, 65.06vw, 1220px);
    width: 100%;
    padding: clamp(22px, 2.22vw, 60px) 0;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.26vw, 24px);
}

.footer__refs {
    max-width: clamp(440px, 64.06vw, 1150px);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__ref {
    font-weight: 300;
    font-size: clamp(10px, 1.02vw, 20px);
    color: #1f1547;
}

.footer__middle p {
    font-weight: 300;
    font-size: clamp(10px, 1.02vw, 20px);
    color: #1f1547;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer__link--item {
    font-weight: 300;
    font-size: clamp(10px, 1.02vw, 20px);
    color: #1f1547;
}

.footer__middle p a, .footer__policy {
    font-weight: 300;
    font-size: clamp(10px, 1.02vw, 20px);
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #507a21;
}

.footer__bottom {
    background: #fff;
    padding: clamp(8px, 0.95vw, 18px) 0;
}

.footer__disclaimer {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: clamp(12px, 1.32vw, 26px);
    color: #1f1547;
    text-transform: uppercase;
}

/* Бургер — скрыт на десктопе */
.navbar__burger {
    display: none;
}

.navbar__overlay {
    display: none;
}

/* ===== MOBILE MENU ===== */
.navbar__burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 7.5vw;
    height: 5vw;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    flex-shrink: 0;
}

.navbar__burger span {
    display: block;
    width: 100%;
    height: 0.625vw;
    min-height: 2px;
    background: #1f1547;
    border-radius: 1vw;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar__burger.active span:nth-child(1) {
    transform: translateY(2.1875vw) rotate(45deg);
}

.navbar__burger.active span:nth-child(2) {
    opacity: 0;
}

.navbar__burger.active span:nth-child(3) {
    transform: translateY(-2.1875vw) rotate(-45deg);
}

.navbar__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.navbar__mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 75vw;
    height: 100dvh;
    background: #fff;
    z-index: 100;
    padding: 22vw 8vw 10vw;
    box-sizing: border-box;
    display: none;
    flex-direction: column;
    gap: 8vw;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
}

.navbar__mobile-menu.active {
    transform: translateX(0);
}

.navbar__mobile-menu .navbar__list {
    display: flex;
    flex-direction: column;
    gap: 6.25vw;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar__mobile-menu .navbar__list--link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 5vw;
    color: #1f1547;
    text-decoration: none;
    transition: color 0.2s;
}

.navbar__mobile-menu .navbar__list--link:hover {
    color: #85c341;
}

.navbar__mobile-menu .navbar__buy--btn {
    display: block;
    text-align: center;
    background: #85c341;
    color: #fff;
    border-radius: 50px;
    padding: 3.125vw 7.5vw;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 4.375vw;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s ease-in;
}

.navbar__mobile-menu .navbar__buy--btn:hover {
    background: #fff;
    border-color: #85c341;
    color: #85c341;
}

.mobile-menu__footer {
    margin-top: auto;
    padding-top: 6.25vw;
    border-top: 1px solid #ebeaf1;
}

.mobile-menu__lang {
    display: flex;
    align-items: center;
    gap: 2.5vw;
}

.mobile-menu__lang-btn {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 4.375vw;
    color: #9d99ac;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.mobile-menu__lang-btn.active {
    color: #1f1547;
}

.mobile-menu__lang-divider {
    font-size: 4.375vw;
    color: #9d99ac;
}

@media (max-width: 1079px) {

    .container {
        width: 100%;
    }

    .header {
        padding: 4.688vw 0;
    }

    .navbar__logo--img {
        width: 37.5vw;
        height: auto;
    }

    .navbar__list,
    .navbar__actions {
        display: none;
    }

    .navbar__burger {
        display: flex;
    }

    .navbar__overlay {
        display: block;
    }

    .navbar__mobile-menu {
        display: flex;
    }

    .header.header_compact {
        padding: 3.5vw 0;
    }

    .navbar__list,
    .navbar__actions {
        display: none;
    }

    .hero {
        padding-top: 24vw;
        padding-bottom: 10vw;
    }

    .breadcrumb {
        display: none;
    }

    .hero__content {
        gap: 6vw;
    }

    .hero__title {
        font-size: 8vw;
        line-height: 1.15;
    }

    .hero__info {
        display: flex;
        flex-direction: column;
        gap: 6vw;
    }

    .hero__left,
    .hero__middle,
    .hero__right {
        width: 100%;
        height: auto;
    }

    .hero__left {
        gap: 4vw;
    }

    .hero__left--card {
        border-radius: 6vw;
        padding: 8vw 5vw;
    }

    .hero__left--img {
        width: 60vw;
        height: auto;
    }

    .hero__left--btn {
        width: 100%;
        padding: 4vw 0;
    }

    .hero__left--btn span {
        font-size: 5vw;
    }

    .instr-nav {
        overflow: visible;
        padding-right: 0;
    }

    .instr-nav__list {
        gap: 3vw;
    }

    .instr-nav__btn {
        padding: 4vw;
        font-size: 4vw;
        border-radius: 3vw;
    }

    .instr-content {
        border-radius: 6vw;
        padding: 5vw 4vw;
        gap: 4vw;
    }

    .instr-content__title {
        font-size: 5vw;
        line-height: 1.3;
    }

    .instr-content__body {
        padding-right: 0;
    }

    .instr-section p,
    .instr-section li {
        font-size: 3.7vw;
        line-height: 1.45;
    }

    .instr-list {
        gap: 3vw;
        padding-left: 5vw;
    }

    .hero__right {
        display: none;
    }

    .instr-mobile-box {
        display: none;
        margin-top: 4vw;
        padding: 5vw 4vw;
        border-radius: 4vw;
        background: #fff;
        border: 1px solid #e5e5e5;
    }

    .instr-mobile-box.active {
        display: block;
    }

    .instr-mobile-box p,
    .instr-mobile-box li {
        font-size: 3.7vw;
        line-height: 1.45;
        color: #1f1547;
    }

    .footer {
        padding-top: 10vw;
    }

    .footer__nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6vw;
    }

    .footer__logo {
        display: flex;
        width: 42vw;
        height: 12vw;
    }

    .footer__logo--icon {
        width: 100%;
        height: auto;
    }

    .footer__nav--list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4vw;
    }

    .footer__nav--link {
        font-size: 5.625vw;
        text-align: center;
    }

    .footer__nav--btn {
        width: 100%;
        height: 14vw;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50vw;
    }

    .footer__nav--btn span {
        font-size: 4.5vw;
    }

    .footer__ref,
    .footer__middle p,
    .footer__link--item,
    .footer__middle p a,
    .footer__policy {
        font-size: 3.8vw;
        line-height: 1.45;
    }

    .footer__disclaimer {
        font-size: 4vw;
        line-height: 1.4;
    }
}