﻿@font-face {
    font-family: 'Block Berthold';
    src: url('/landing/assets/fonts/Block Berthold Regular.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'League Spartan';
    src: url('/landing/assets/fonts/LeagueSpartan-wght.ttf') format('truetype');
    font-display: swap;
}

:root {
    --bg: #d1eca9;
    --green: #3f962f;
    --badge: #ff3b30;
    --white: #ffffff;
    --header-h: 88px;
}

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

body {
    min-height: 100vh;
    background: var(--bg);
    font-family: 'League Spartan', Arial, sans-serif;
    color: var(--green);
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

body::before {
    content: '';
    position: absolute;
    left: -210px;
    top: calc(100vh - 320px);
    width: 410px;
    aspect-ratio: 1;
    background: url('/landing/assets/images/orange.png') center/contain no-repeat;
    opacity: 0.56;
    z-index: 1;
    pointer-events: none;
}

.site-header {
    position: relative;
    height: var(--header-h);
    padding: calc(var(--header-h) * 0.1) 56px 0;
    display: flex;
    align-items: center;
    z-index: 20;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateY(0);
    opacity: 1;
    will-change: transform, opacity, background-color;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease,
    -webkit-backdrop-filter 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.site-header.is-fixed {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1200;
    background-color: rgba(255, 255, 255, 0.74);
    box-shadow: 0 6px 20px rgb(0 0 0 / 9%);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-bottom: 1px solid rgb(255 255 255 / 46%);
    animation: headerFixIn 0.26s ease both;
}

@keyframes headerFixIn {
    from {
        transform: translateY(-10px);
        opacity: 0.88;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.topbar {
    position: relative;
    z-index: 2;
    width: min(1320px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}

.logo {
    width: clamp(150px, 13vw, 220px);
    height: auto;
    display: block;
    transition: width 0.3s ease;
}

.site-header.is-fixed .logo {
    width: clamp(120px, 10vw, 170px);
}

.nav {
    display: flex;
    align-items: center;
    margin-left: clamp(34px, 4vw, 90px);
    gap: clamp(20px, 2.8vw, 46px);
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: clamp(14px, 0.92vw, 18px);
    font-weight: 900;
}

.nav a {
    color: var(--green);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.25s ease;
    font-size: 16px;
    font-weight: 500;
}

.nav .login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.nav .login-link svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    isolation: isolate;
}

.hero::after {
    content: '';
    position: absolute;
    right: -193px;
    top: 60%;
    transform: translateY(-50%);
    width: 350px;
    aspect-ratio: 1;
    background: url('/landing/assets/images/lemon.png') center/contain no-repeat;
    opacity: 0.46;
    z-index: -1;
    pointer-events: none;
}

.content {
    width: min(920px, 100%);
    position: relative;
    padding-top: 0;
    margin-top: 24px;
}

h1 {
    font-family: 'League Spartan', Arial, sans-serif;
    color: #4d9229;
    text-transform: uppercase;
    font-size: 81.5px;
    font-weight: 660;
    line-height: 81%;
    letter-spacing: -4px;
    text-shadow: 0 3px 0 rgba(39, 121, 37, 0.12);
    margin: 0 auto;
    max-width: 980px;
}

.subtitle {
    margin-top: 18px;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 27px;
    font-weight: 726;
    color: #4d9229;
    line-height: 90%;
    text-transform: uppercase;
    letter-spacing: 0;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.basket {
    display: block;
    width: min(250px, 40vw);
    margin: 6px auto 0;
    filter: drop-shadow(0 14px 12px rgba(0, 0, 0, 0.18));
}

.cta {
    margin-top: 20px;
    display: inline-block;
    background: var(--badge);
    color: var(--white);
    text-decoration: none;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 1.45vw, 26px);
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 30px 9px;
    border-radius: 8px;
    box-shadow: 0 3px 0 rgba(194, 33, 25, 0.9);
}

.badge {
    position: absolute;
    right: max(18px, 6vw);
    top: -10px;
    width: clamp(132px, 12vw, 190px);
    aspect-ratio: 1;
    background: #ff3131;
    clip-path: polygon(
        50% 0%, 58% 4%, 66% 2%, 73% 7%, 81% 6%, 87% 13%, 95% 15%,
        98% 23%, 100% 31%, 97% 39%, 100% 47%, 96% 55%, 99% 63%, 93% 70%,
        94% 79%, 87% 85%, 86% 93%, 77% 96%, 72% 100%, 64% 98%, 56% 100%,
        48% 96%, 40% 99%, 33% 94%, 24% 96%, 18% 89%, 10% 88%, 6% 80%,
        1% 73%, 3% 65%, 0% 57%, 4% 49%, 1% 41%, 6% 34%, 3% 26%,
        9% 19%, 8% 11%, 16% 7%, 21% 1%, 30% 2%, 38% 0%, 45% 3%
    );
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    padding: 14px;
}

.badge::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 4px solid #fff;
    border-radius: 50%;
    opacity: 0.95;
}

.badge-text {
    position: relative;
    z-index: 1;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 660;
    text-transform: uppercase;
    line-height: 0.86;
    display: grid;
    gap: 2px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.badge-text .small {
    font-size: clamp(14px, 1.2vw, 22px);
}

.badge-text .big {
    font-size: clamp(42px, 3.5vw, 62px);
}

.section-two {
    position: relative;
    min-height: auto;
    background: var(--bg);
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 32px;
    align-items: flex-start;
    overflow: hidden;
    isolation: isolate;
}

.section-two-orange {
    position: absolute;
    bottom: -55px;
    right: 300px;
    width: min(27vw, 230px);
    opacity: 0.52;
    z-index: 0;
    pointer-events: none;
}

.section-two-visual {
    position: relative;
    z-index: 2;
    flex: 0 0 820px;
    max-width: 820px;
    align-self: flex-start;
    display: flex;
    justify-content: flex-start;
    padding-top: 50px;
}

.section-two-girl {
    width: 100%;
    max-width: 820px;
    transform: translateX(-40px);
    display: block;
}

.section-two-copy {
    position: relative;
    z-index: 3;
    align-self: flex-start;
    width: 420px;
    max-width: 420px;
    margin-top: 0;
    text-transform: uppercase;
    padding-top: 65px;
}

.section-two-title {
    color: #3f962f;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 38px;
    font-weight: 760;
    line-height: 0.95;
    letter-spacing: -0.01em;
    margin: 0;
}

.section-two-impact {
    margin-top: 22px;
    color: #3f4b62;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 27px;
    font-weight: 760;
    line-height: 0.95;
    letter-spacing: -0.01em;
}

.section-two-desc {
    margin-top: 20px;
    color: #3f4b62;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.04;
    text-transform: none;
}

.section-two-btn {
    margin-top: 24px;
    display: block;
    width: fit-content;
    margin-left: auto;
    background: #4d9229;
    color: var(--white);
    text-decoration: none;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    font-size: clamp(18px, 1.45vw, 26px);
    line-height: 1;
    text-transform: uppercase;
    padding: 10px 24px 5px;
    border-radius: 8px;
    box-shadow: 0 3px 0 #4d9229;
}

.section-two-badge {
    position: absolute;
    left: -66px;
    bottom: 66px;
    width: clamp(106px, 8.5vw, 166px);
    aspect-ratio: 1;
    background: #f8a500;
    clip-path: polygon(
        50% 0%, 58% 4%, 66% 2%, 73% 7%, 81% 6%, 87% 13%, 95% 15%,
        98% 23%, 100% 31%, 97% 39%, 100% 47%, 96% 55%, 99% 63%, 93% 70%,
        94% 79%, 87% 85%, 86% 93%, 77% 96%, 72% 100%, 64% 98%, 56% 100%,
        48% 96%, 40% 99%, 33% 94%, 24% 96%, 18% 89%, 10% 88%, 6% 80%,
        1% 73%, 3% 65%, 0% 57%, 4% 49%, 1% 41%, 6% 34%, 3% 26%,
        9% 19%, 8% 11%, 16% 7%, 21% 1%, 30% 2%, 38% 0%, 45% 3%
    );
    display: grid;
    place-items: center;
    color: #ffffff;
    z-index: 4;
    text-align: center;
    padding: 12px;
}

.section-two-badge::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    opacity: 0.95;
}

.section-two-badge-text {
    position: relative;
    z-index: 1;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 760;
    text-transform: uppercase;
    line-height: 0.9;
    display: grid;
    gap: 1px;
}

.section-two-badge-text .small {
    font-size: clamp(18px, 1.2vw, 24px);
}

.section-two-badge-text .big {
    font-size: clamp(44px, 3vw, 62px);
}


.badge {
    padding: 0;
    background: transparent;
    clip-path: none;
    aspect-ratio: auto;
    display: block;
    z-index: 4;
}

.badge::after {
    content: none;
}

.badge-text {
    display: none;
}

.badge img {
    display: block;
    width: 100%;
    height: auto;
}

.section-two-badge {
    padding: 0;
    background: transparent;
    clip-path: none;
    aspect-ratio: auto;
    display: block;
    z-index: 4;
}

.section-two-badge::after {
    content: none;
}

.section-two-badge-text {
    display: none;
}

.section-two-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.section-news {
    background: #ffffff;
    overflow: visible;
    padding: 18px 0;
    border-top: 0;
    border-bottom: 0;
}

.section-news.scroll-reveal.is-visible {
    background: #ffffff;
}

.section-news__marquee {
    overflow: hidden;
    width: 100%;
}

.section-news__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: section-news-scroll 54s linear infinite;
    will-change: transform;
}

.section-news__group {
    display: flex;
    align-items: center;
    gap: 62px;
    flex: 0 0 auto;
    padding-right: 62px;
}

.section-news__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 132px;
    height: auto;
    padding: 8px 0;
}

.section-news__item img {
    display: block;
    height: auto;
    width: auto;
    max-width: 220px;
    max-height: 46px;
    object-fit: contain;
}

.section-news__item--city img {
    max-height: 40px;
}

.section-news__item--daily img {
    max-height: 38px;
}

@keyframes section-news-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section-three {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.section-three__hero {
    position: relative;
    min-height: 360px;
    height: 52vh;
    max-height: 430px;
    overflow: hidden;
    isolation: isolate;
    background: #1f3a2b;
}

.section-three__video {
    position: absolute;
    inset: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    object-fit: cover;
    z-index: 0;
    display: block;
    background: #1f3a2b;
}

.section-three__tint {
    position: absolute;
    inset: 0;
    background: rgb(19 58 35 / 24%);
    z-index: 1;
}

.section-three__actions {
    position: absolute;
    right: 24px;
    bottom: 16px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.section-three__btn {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: clamp(16px, 1.08vw, 23px);
    font-weight: 600;
    line-height: 1;
    padding: 11px 18px 9px;
}

.section-three__btn--danger {
    background: #ff3b35;
    color: #ffffff;
}

.section-three__btn--light {
    background: #ffffff;
    color: #4d9229;
}

.section-three__content {
    position: relative;
    width: min(1320px, calc(100% - 112px));
    margin: 0 auto;
    padding: 52px 0 58px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.95fr);
    gap: 150px;
    align-items: start;
}
.section-three__right {
    width: 100%;
    justify-self: start;
}


.section-three__stat {
    margin: 0;
    color: #3f962f;
    text-transform: uppercase;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 32px;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-weight: 760;
}

.section-three__cards {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.section-three__card {
    background: #d1eca9;
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    text-align: center;
}

.section-three__card p {
    color: #4d9229;
    text-transform: none;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: clamp(18px, 1.6vw, 32px);
    line-height: 0.92;
    font-weight: 700;
    margin: 0;
}

.section-three__problem {
    margin: 0;
    color: #3f962f;
    text-transform: uppercase;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 32px;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-weight: 760;
}

.section-three__desc {
    margin-top: 20px;
    color: #3f4b62;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.04;
    font-weight: 700;
    text-transform: none;
    width: 70%;
}

.section-four {
    position: relative;
    background: #fff;
    overflow: hidden;
    padding: 56px 56px 44px;
}

.section-four__grid {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 395px;
    align-items: start;
}

.section-four__title {
    margin: 0;
    color: #4d9229;
    text-transform: uppercase;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 32px;
    line-height: 0.95;
    letter-spacing: -0.01em;
    font-weight: 760;
    max-width: 640px;
}

.section-four__metric {
    margin: 28px 0 0;
    color: #3f4b62;
    text-transform: uppercase;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.04;
    font-weight: 700;
    max-width: 660px;
}

.section-four__support {
    margin-top: 34px;
    border: 0;
    border-radius: 8px;
    background: #ff3b35;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: clamp(18px, 1.2vw, 24px);
    line-height: 1;
    font-weight: 760;
    padding: 12px 22px 11px;
}

.section-four__cloud {
    display: block;
    width: min(76%, 360px);
    margin: 8px auto 0;
}

.section-four__actions {
    margin-top: 24px;
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: nowrap;
}

.section-four__btn {
    border: 0;
    border-radius: 8px;
    background: #4d9229;
    color: #ffffff;
    text-transform: uppercase;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: clamp(18px, 1.2vw, 24px);
    line-height: 1;
    font-weight: 760;
    padding: 12px 22px 11px;
    white-space: nowrap;
}

.section-four__desc {
    margin: 32px 0 0 0;
    max-width: 500px;
    color: #3f4b62;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.04;
    font-weight: 700;
}

.section-four__right {
    width: 90%;
    justify-self: start;
}

.section-four__city {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -18px;
    width: min(44vw, 430px);
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

@media (max-width: 1180px) {
    .section-two {
        padding: 18px 20px 22px;
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: center;
        gap: 20px;
    }

    .section-two-visual {
        flex: 0 0 620px;
        max-width: 620px;
    }

    .section-two-girl {
        width: 100%;
        max-width: 620px;
        transform: translateX(-24px);
    }

    .section-two-copy {
        width: 320px;
        max-width: 320px;
        margin-top: 0;
        padding-top: 24px;
    }

    .section-two-orange {
        right: 110px;
    }
}

@media (max-width: 980px) {
    .site-header {
        height: var(--header-h);
        padding: calc(var(--header-h) * 0.1) 20px 0;
    }

    .topbar {
        justify-content: flex-start;
    }

    .nav {
        display: none;
    }

    .hero {
        min-height: calc(100svh - var(--header-h));
        padding: 20px 16px 20px;
    }

    body::before {
        left: 10px;
        top: calc(100vh - 390px);
        width: 290px;
    }

    .hero::after {
        right: -120px;
        top: 58%;
        width: 280px;
    }

    h1 {
        font-size: clamp(52px, 12vw, 81.5px);
        line-height: 81%;
    }

    .subtitle {
        margin-top: 16px;
        font-size: clamp(21px, 5.1vw, 27px);
    }

    .basket {
        width: min(210px, 58vw);
        margin-top: 14px;
    }

    .cta {
        margin-top: 10px;
        font-size: clamp(16px, 4.7vw, 22px);
        padding: 9px 24px 8px;
    }

    .badge {
        right: 10px;
        top: -10px;
    }

    .section-two {
        min-height: auto;
        display: block;
        padding: 24px 14px 30px;
    }

    .section-two-visual {
        padding-top: 0;
        justify-content: center;
        max-width: 100%;
    }

    .section-two-girl {
        width: min(126vw, 760px);
        max-width: none;
        transform: translateX(-20px);
    }

    .section-two-copy {
        width: 100%;
        max-width: 100%;
        margin-top: -8px;
        padding-top: 0;
    }

    .section-two-btn {
        margin-top: 10px;
        margin-left: auto;
        font-size: clamp(16px, 4.7vw, 22px);
        padding: 9px 24px 8px;
    }

    .section-two-orange {
        width: 210px;
        right: 18px;
        bottom: -70px;
    }

    .section-two-badge {
        left: 10px;
        bottom: 8px;
        width: 120px;
    }

    .section-news {
        padding: 12px 0;
    }

    .section-news__track {
        animation-duration: 42s;
    }

    .section-news__group {
        gap: 34px;
        padding-right: 34px;
    }

    .section-news__item {
        min-width: 92px;
        height: auto;
        padding: 6px 0;
    }

    .section-news__item img {
        height: auto;
        max-width: 150px;
        max-height: 32px;
    }

    .section-news__item--city img {
        max-height: 28px;
    }

    .section-news__item--daily img {
        max-height: 26px;
    }

    .section-three__hero {
        min-height: 250px;
        height: 40vh;
    }

    .section-three__actions {
        right: 14px;
        bottom: 10px;
        gap: 8px;
    }

    .section-three__btn {
        font-size: clamp(11px, 3.1vw, 15px);
        padding: 10px 12px 9px;
    }

    .section-three__content {
        width: min(1320px, calc(100% - 28px));
        padding: 30px 0 36px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-three__right {
        width: 100%;
    }

    .section-three__left {
        width: 100%;
    }

    .section-three__stat {
        font-size: 38px;
        line-height: 0.95;
    }

    .section-three__cards {
        gap: 10px;
    }

    .section-three__card {
        min-height: 96px;
        padding: 10px;
    }

    .section-three__card p {
        font-size: clamp(16px, 4vw, 26px);
    }

    .section-three__problem {
        font-size: 38px;
        line-height: 0.95;
    }

    .section-three__desc {
        font-size: 20px;
        line-height: 1.04;
    }

    .section-four {
        padding: 28px 14px 30px;
    }

    .section-four__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-four__title {
        font-size: 32px;
    }

    .section-four__metric {
        font-size: 20px;
    }

    .section-four__support {
        margin-top: 22px;
        width: 100%;
    }

    .section-four__cloud {
        width: min(78%, 300px);
        margin: 0 auto;
    }

    .section-four__actions {
        justify-content: center;
        gap: 10px;
    }

    .section-four__btn {
        font-size: 18px;
        padding: 10px 14px 9px;
    }

    .section-four__desc {
        margin-top: 20px;
        max-width: none;
        font-size: 20px;
    }

    .section-four__right {
        width: 100%;
    }

    .section-four__city {
        position: relative;
        left: auto;
        transform: none;
        bottom: auto;
        width: min(75vw, 330px);
        display: block;
        margin: 14px auto 0;
    }
}
