.landing {
    position: relative;
    height: 100dvh;
    background-image: url("/assets/img/landing.jpg");
    background-size: cover;
    background-position:center;
    overflow: hidden;
}


.landing__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-start;
    padding: clamp(48px, 10vh, 120px) 0 40px 7vw;
}



.landing__title {
    margin: 0 0 14px;
    font-size: 5rem;
    line-height: 1.04;
    font-family: 'Oswald', sans-serif;
    letter-spacing: -0.02em;
}

.landing__subtitle {
    margin: 0 0 22px;
    font-size: 3rem;
    line-height: 1.2;
}
.landing__content {
    color: var(--brand-color);
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.landing__logo {
    position: relative;
    height: auto;
    width: 800px;
    margin-bottom: 18px;
}
.landing__list {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    color: var(--text-body);
    font-size: clamp(16px, 1.3vw, 30px);
    line-height: 1.4;
}

.landing__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}

.landing__list li::before {
    content: "";
    background-image: url("/assets/img/check.svg");
    position: absolute;
    width: 27px;
    height: 27px;
    background-size: contain;
    background-repeat: no-repeat;
    left: -5px;
    top: 2px;
    display: block;
    color: var(--text-body);
}

.landing__cta {
    display: inline-block;
    text-decoration: none;
    background: var(--button-bg);
    color: var(--button-text);
    font-size: clamp(24px, 2vw, 42px);
    line-height: 1;
    border-radius: 4px;
    padding: 18px 64px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.landing__cta:hover {
    transform: translateY(-1px);
    filter: brightness(0.97);
}

@media (max-width: 980px) {
    .landing {
        min-height: 100vh;
        height: auto;
        background-position: center;
    }

    .landing__overlay {
        background: linear-gradient(180deg, var(--landing-overlay-mobile-start) 0%, var(--landing-overlay-mobile-end) 100%);
    }

    .landing__inner {
        min-height: 100vh;
        padding: 32px 20px 40px;
        align-items: flex-start;
        margin-top: 80px;
    }
    
    .landing__content {
        max-width: 100%;
        flex-direction: column;
    }

    .landing__logo {
        margin-bottom: 14px;
        max-height: 40dvh;
        width: auto;
        right: 0px;
        max-width: 70dvw;
        height: auto;
    }

    .landing__title {
        font-size: 3rem;
        line-height: 1.08;
        br{
            display: none;
        }
    }

    .landing__subtitle {
        font-size: 2rem;
    }

    .landing__list {
        font-size: 1.5rem;
    }

    .landing__cta {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
        font-size: clamp(24px, 7.4vw, 40px);
    }
}
@media (width<600px){
    .landing__title{
        font-size: 2rem;
    }
    .landing__subtitle{
        font-size: 1.5rem;
    }
    .landing__list{
        font-size: 1rem;
        li::before {
            width: 20px;
            height: 20px;
        }
    }
}