@font-face {
    font-family: 'Abys';
    src: url('./fonts/Abys/abys_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Jura Book';
    src: url('./fonts/jura/JuraBook.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Benzin Medium';
    src: url('./fonts/Benzin-Medium.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Abys', sans-serif;
    background: #060B07;
}

section {
    padding: 0 48px;
}

header {
    padding: 0 48px;
    background: rgba(6, 11, 7, 0.60);
    backdrop-filter: blur(12px);
    position: relative;
    z-index: 10000;
}

.header-content {
    max-width: 1350px;
    margin: 0 auto;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lang-switcher {
    color: #fff;
    position: relative;
}

.lang-current {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff !important;
    font-size: 28px;
    line-height: 1;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    padding: 5px 0;
    display: none;
    flex-direction: column;
    min-width: 60px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.lang-dropdown button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    padding: 5px 0;
    text-align: left;
    width: 100%;
    color: #fff !important;
}

.lang-dropdown button:hover {
    color: #63C927 !important;
}

.hero {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, #060B07 100%), url('images/hero.png');
}

.content {
    max-width: 1350px;
    margin: 0 auto;
}

h1 {
    color: #F9FFF3;
    margin-bottom: 20px;
    margin-top: 0;
    font-weight: 100;
}

h1 .line1 {
    font-size: 120.59px;
    line-height: 99.89px;
    letter-spacing: 0%;
}

h1 .line2 {
    font-size: 110.85px;
    line-height: 110.85px;
    letter-spacing: 0%;
}

h1 .line3 {
    font-size: 79.18px;
    line-height: 70.65px;
    letter-spacing: 0%;
}

h1 .line4 {
    font-size: 120.59px;
    line-height: 99.89px;
    letter-spacing: 0%;
}

.hero-text p {
    font-family: 'Jura Book', sans-serif;
    color: #D7D6C0;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.hero-content {
    display: flex;
    gap: 20px;
    padding: 48px 0 96px 0;
}

a {
    text-decoration: none;
}

.hero-btns {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    /* pointer-events: none; */
}

.desktop-links {
    display: flex;
    gap: 20px;
}

.hero-btns div a {
    flex: 1;
    padding: 14px 0;
}

.hero-btns div :nth-child(1) {
    color: #fff;
    background: url(images/bg-black.svg);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 28px;
    line-height: 1;
}

.hero-btns div :nth-child(1):hover {
    background: url(images/bg-green.svg);
    color: #fff;
}

.hero-btns div :nth-child(1):active {
    background: url(images/bg-green.svg);
    color: #fff;
}

.hero-btns div :nth-child(2) {
    color: #fff;
    background: url(images/bg-black.svg);
    text-align: center;
    position: relative;
    overflow: hidden;
    font-size: 28px;
    line-height: 1;
}

.hero-btns div :nth-child(2):hover {
    background: url(images/bg-green.svg);
    color: #fff;
}

.hero-btns div :nth-child(2):active {
    background: url(images/bg-green.svg);
    color: #fff;
}

.hero-btns div :nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: url('images/border-frame.svg') no-repeat center right;
    background-size: contain;
    pointer-events: none;
}

.hero-btns div :nth-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: url('images/border-frame.svg') no-repeat center right;
    background-size: contain;
    pointer-events: none;
}

.big-btn {
    color: #F9FFF3;
    background: url(images/bg-black-big.svg);
    text-align: center;
    padding: 14px 0;
    position: relative;
    overflow: hidden;
    font-size: 28px;
    line-height: 1;
}

.big-btn:hover {
    /* background: url(images/bg-green-big.svg); */
    color: #fff;
    background: #63C927;
}

.big-btn:active {
    /* background: url(images/bg-green-big.svg); */
    color: #fff;
    background: #63C927;
}

.big-btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: url('images/border-frame.svg') no-repeat center right;
    background-size: contain;
    pointer-events: none;
}

.benefits {
    position: relative;
    overflow: hidden;
    padding: 48px 0;
}

.benefits h3 {
    color: #63C927;
    text-align: center;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.5%;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 24px;
}

.benefits-content {
    display: flex;
    justify-content: space-between;
}

.benefit-header {
    display: flex;
    gap: 17px;
    align-items: end;
    font-family: 'Benzin Medium', sans-serif;
    color: #F9FFF3;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    height: 48px;
}

.benefit {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    position: relative;
}

.benefit-header img {
    margin-bottom: 3px;
    width: 18px;
    height: 18px;
}

.benefit-content {
    color: #D7D6C0;
    font-family: 'Jura Book', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.benefit-content li:first-child {
    margin-bottom: 10px;
}

.money-img {
    position: absolute;
    bottom: -10px;
    right: 0;
}

.dollar-img {
    position: absolute;
    top: -140px;
    right: 0;
}

.star-img {
    position: absolute;
    bottom: -100px;
    right: 0;
}

.top-spacer {
    position: absolute;
    height: 1px;
    opacity: 0.4;
    background: #F9FFF3;
    max-width: 660px;
    width: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bottom {
    background: linear-gradient(180deg, #080D09 0%, rgba(8, 13, 9, 0.00) 243.79%), linear-gradient(0deg, #63C927 0%, #63C927 100%), url('images/bg-bottom.png') lightgray 0px -357.5px / 100% 310.56% no-repeat;
    background-blend-mode: normal, color, normal;
    min-height: 415px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bottom-spacer {
    position: absolute;
    height: 1px;
    opacity: 0.4;
    background: #F9FFF3;
    max-width: 660px;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.advantages {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 0%, #060B07 100%), url('images/planet.png');
    background-position: -100px center;
    background-repeat: no-repeat;
    background-position-y: bottom;
    overflow: hidden;
}

.advantages-content {
    display: flex;
    gap: 50px;
    padding: 48px 0;
}

.advantage {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.advantage p {
    font-family: 'Benzin Medium', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 1.5%;
    text-transform: uppercase;
    color: #F9FFF3;
    margin: 0;
    z-index: 100;
}

.advantages-content h3 {
    color: #63C927;
    text-align: center;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.5%;
    text-transform: uppercase;
    margin: 0;
}

.geo-list {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    justify-content: space-between;
    width: 100%;
    margin: 0;
}

.geo-list li {
    color: #F9FFF3;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    z-index: 2;
}

.advantages-list {
    display: flex;
    flex-direction: column;
}

.advantages-list ul {
    margin-bottom: 25px;
    z-index: 100;
}

.advantages-list li {
    font-family: 'Jura Book', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #D7D6C0;
}

.advantage .grey-p {
    color: #D7D6C0;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #D7D6C0;
    text-transform: unset;
}

.rocket-img {
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateX(0);
    will-change: transform;
    transition: transform 0.1s linear;
}

.mobile-geo,
.mobile-advantages {
    display: none;
}

.team-content {
    display: flex;
    gap: 230px;
}

.team-photo img {
    padding: 0 28px;
}

.team {
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
}

.team h3 {
    color: #63C927;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin: 0;
}

.team h4 {
    color: #F9FFF3;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin: 0;
}

.team-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.team-info {
    display: flex;
    gap: 60px;
    justify-content: space-between;
}

.team-qr {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.team-qr a {
    color: #FFF;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    text-transform: uppercase;
}

.team-qr a:hover {
    color: #63C927;
}

.team-photo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    width: 100%;
}

.team-photo h3 {
    margin: 0;
    color: #FFF;
    text-align: center;
    font-family: 'Benzin Medium', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    line-height: 1;
    z-index: 2;
}

.team-photo h4 {
    margin: 0;
    color: #DEE2E6;
    text-align: center;
    font-family: 'Jura Book', sans-serif;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 16px;
}

.team-btn {
    background: url(images/bg-white.svg);
    text-align: center;
    font-size: 28px;
    line-height: 1;
    padding: 14px 0;
    color: #63C927;
}

.team-btn:hover {
    color: #000;
}

.team-mobile-spacer {
    display: none;
}

.bottom-content {
    display: flex;
    gap: 35px;
    align-items: center;
    justify-content: center;
}

.bottom-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bottom-text h3 {
    margin: 0;
    color: #63C927;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
    text-transform: uppercase;
}

.bottom-text div {
    max-width: 525px;
}

.bottom-text p {
    margin: 0;
    color: #FFF;
    font-family: 'Jura Book', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.36px;
}

footer {
    padding: 15px;
    background: #080D09;
    color: #FFF;
    text-align: center;
    font-family: 'Jura Book', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.27px;
}

.mobile-links {
    display: none;
}

.desktop-hidden {
    display: none;
}

.hero-img {
    max-width: 660px;
}

@media (max-width: 767px) {
    section {
        padding: 0 15px;
    }

    .desktop-hidden {
        display: block;
    }

    .desktop-links {
        display: none;
    }

    .mobile-links {
        display: flex;
        gap: 20px;
    }

    .desktop-spacer {
        display: none;
    }

    h1 .line1 {
        font-size: 100px;
        line-height: 100px;
    }

    h1 .line2 {
        font-size: 100px;
        line-height: 100px;
    }

    h1 .line3 {
        font-size: 65px;
        line-height: 65px;
    }

    h1 .line4 {
        font-size: 105px;
        line-height: 105px;
    }

    h1 {
        text-align: center;
    }

    .hero-text p {
        font-size: 18px;
        line-height: normal;
    }

    .hero-btns div :nth-child(1) {
        position: relative;
        background: url('images/bg-black.svg');
        overflow: hidden;
    }

    .hero-btns div :nth-child(2) {
        position: relative;
        background: url('images/bg-black.svg');
        overflow: hidden;
    }

    .hero-btns div :nth-child(1)::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 10px;
        height: 100%;
        background: url('images/border-frame.svg') no-repeat center right;
        background-size: contain;
        pointer-events: none;
    }

    .hero-btns div :nth-child(2)::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 10px;
        height: 100%;
        background: url('images/border-frame.svg') no-repeat center right;
        background-size: contain;
        pointer-events: none;
    }

    .hero-content {
        flex-direction: column;
        padding: 0;
    }

    .hero-img {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100vw;
        opacity: 0.65;
        pointer-events: none;
    }

    .hero-text {
        z-index: 2;
        padding-top: 200px;
        padding-bottom: 24px;
    }

    header {
        padding: 0 25px;
    }

    .benefits-content {
        padding: 24px 15px;
        flex-direction: column;
        gap: 48px;
        /* justify-content: space-between; */
    }

    .benefit-header {
        height: auto;
        align-items: start;
    }

    .money-img {
        bottom: 150px;
        left: -70px;
    }

    .dollar-img {
        top: 0;
        right: -75px;
    }

    .star-img {
        bottom: 0;
        left: -70px;
    }

    .top-spacer,
    .bottom-spacer {
        max-width: 340px;
    }

    .advantages {
        display: none;
    }

    .mobile-geo {
        position: relative;
        display: flex;
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .mobile-advantages {
        display: block;
        position: relative;
        padding-top: 36px;
    }

    .mobile-advantages-content {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .mobile-advantages-content h3 {
        margin: 0;
        color: #63C927;
        text-align: center;
        font-family: 'Benzin Medium', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }

    .mobile-advantages-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-advantages-list span {
        color: #F9FFF3;
        text-align: center;
        font-family: 'Benzin Medium', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
    }

    .mobile-geo-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
    }

    .mobile-geo-content ul {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: repeat(5, auto);
        color: #D7D6C0;
        font-family: 'Benzin Medium', sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        margin: 0;
        z-index: 100;
    }

    .planet-mob-img {
        position: absolute;
        right: 0;
        bottom: 0;
        opacity: 0.5;
    }

    .team-content {
        flex-direction: column;
        gap: 36px;
    }

    .team-info {
        gap: 20px;
    }

    .team-mobile-spacer {
        display: block;
        height: 1px;
        width: 100%;
        background: #F9FFF3;
        opacity: 0.4;
        max-width: 340px;
        margin: 0 auto;
    }

    .mobile-rocket-img {
        position: absolute;
        bottom: 0;
        right: 0;
        /* transform: translateX(0);
        will-change: transform; */
        /* transition: transform 0.1s linear; */
        opacity: 0.4;
        /* backface-visibility: hidden; */
    }

    .bottom {
        background: linear-gradient(180deg, #080D09 0%, rgba(8, 13, 9, 0.00) 169.5%), linear-gradient(0deg, #63C927 0%, #63C927 100%), url('images/bg-bottom.png') lightgray 50% / cover no-repeat;
        background-blend-mode: normal, color, normal;
    }

    .bottom-content {
        flex-direction: column;
        position: relative;
    }

    .bottom-content img {
        position: absolute;
        right: -75px;
        bottom: -30px;
    }

    .bottom-text p {
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: -0.27px;
    }

    .bottom-text h3 {
        color: #63C927;
        text-align: center;
        font-family: Abys;
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.54px;
        text-transform: uppercase;
    }

    .bottom-text div {
        max-width: 75%;
    }

    .mobile-hidden {
        display: none;
    }

    .benefits h3 {
        text-align: start;
        margin-bottom: 0;
        margin-left: 30px;
    }

    .mob-white-p {
        color: #F9FFF3;
        font-family: 'Benzin Medium', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.36px;
        text-transform: uppercase;
        margin: 0;
    }

    .mob-grey-p {
        color: #D7D6C0;
        font-family: 'Benzin Medium', sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        color: #D7D6C0;
        margin: 0;
    }

    .mobile-geo h3 {
        text-align: start;
        margin-bottom: 0;
        margin-left: 40px;
        color: #63C927;
        font-family: 'Benzin Medium', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        letter-spacing: 1.5%;
        text-transform: uppercase;
        margin: 0;
        padding-left: 15px;
    }

    .mobile-advantages-list p {
        color: #F9FFF3;
        font-family: 'Benzin Medium', sans-serif;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        text-transform: uppercase;
        margin: 0;
        z-index: 100;
    }

    .mobile-advantages-list ul {
        margin: 0;
        margin-bottom: 36px;
    }

    .mobile-advantages-list li {
        color: #D7D6C0;
        font-family: 'Jura Book', sans-serif;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        z-index: 100;
    }

    .team {
        padding: 36px 15px;
        align-items: start;
    }

    .team h3 {
        padding-left: 15px;
    }

    .bottom {
        min-height: 300px;
    }
}