:root {
    --color-white: #FFFFFF;
    --color-primary: ;
    --color-secondary: ;
    --color-text-primary: #000000;
    --color-text-secondary: #333333;
    --color-link: #1F2C3D;
    --color-link-active: ;
    --color-link-hover: #13AFF0;
    --color-link-navigation: #1F2C3D;
    --color-link-footer: #999999;
    --color-link-footer-hover: #13AFF0;
    --color-border: #2A2A2A2A;
    --color-background: ;
    --color-header-background: #FFFFFF;
    --color-navigation-background: #1F2C3D;
    --color-blog-post-tag-background: #1F2C3D;

    --color-logo-dark-blue: #162351;
    --color-logo-dark-orange: #F46309;
    --color-logo-anhrazit: #4D4D4D;

    --max-width: 1400px;

    --z-index-header: 100;
    --z-index-overlay: 99;

    --swiper-theme-color: #2a2a2a;
}

* {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    -webkit-tap-highlight-color: transparent;
}

.no-scroll {
    overflow: hidden;
}

strong {
    font-weight: 600;
}

.icon {
    width: 24px;
    height: 24px;
    margin: 0;
    color: inherit;
}

.icon--biggest {
    width: 50px;
    height: 50px;
}

.icon--highlighted {
    color: var(--color-link-hover);
}


a {
    text-decoration: none;
    transition: all 250ms linear;
}

a:hover {
    color: var(--color-link-hover);
}

a.highlight, button.highlight {
    color: #13AFF0;
    border: 2px solid #13AFF0;;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 500;
}

a.highlight-hollow, button.highlight-hollow {
    background-color: #13AFF0;
    color: white;
    border: 2px solid #13AFF0;;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: 500;
}

a.highlight:hover, button.highlight:hover {
    background-color: var(--color-link-hover);
    color: var(--color-white);
    border-color: var(--color-link-hover);
}
a.highlight-hollow:hover, button.highlight-hollow:hover {
    border-color: var(--color-link-navigation);
    background-color: var(--color-link-navigation);
    color: var(--color-white);
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    overflow-x: hidden;
    min-height: 80vh;
    margin: 0;
}

main {
    padding: 120px 20px 0 20px;
    width: 100%;
    max-width: var(--max-width);
}

#overlay {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    z-index: var(--z-index-overlay);
    height: 100vh;
    width: 100vw;
    background-color: #FFFFFFBB;
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    transition: all 150ms linear;
}

#overlay[active] {
    opacity: 1;
    visibility: visible;
}

header {
    position: fixed;
    z-index: var(--z-index-header);
    background-color: var(--color-header-background);
    display: flex;
    width: 100%;
    max-width: var(--max-width);
    height: 105px;
    justify-content: space-between;
    align-items: center;

    ul, li {
        padding: 0;
        margin: 0;
    }

    li {
        list-style: none;
    }

    .logo {
        box-sizing: content-box;
        width: 80px;
        padding: 20px;
    }

    #mobile-menu-trigger {
        padding: 20px;
        box-sizing: content-box;
    }

    nav {
        visibility: hidden;
        opacity: 0;
        position: fixed;
        display: flex;
        gap: 20px;
        background-color: var(--color-white);
        width: 100%;
        height: calc(100dvh - 80px);
        z-index: 9;
        top: 100px;
        padding: 20px;
        transition: all 150ms linear;

        ul:first-child > li:not(:last-child) {
            border-bottom: 1px solid var(--color-border);

            @media only screen and (min-width: 992px) {
                border-bottom: none;
            }
        }

        li {
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            font-size: 12px;
        }

        a, #nav-dropdown-trigger {
            font-weight: 500;
        }
    }

    nav[open] {
        visibility: visible;
        opacity: 1;
        overflow: scroll;
    }

    .nav-node {
        display: flex;
        align-items: center;
        font-weight: 500;
        gap: 10px;
        padding: 20px;

        @media only screen and (min-width: 992px) {
            padding: 40px 10px;
        }
    }

    .nav-dropdown {
        visibility: hidden;
        opacity: 0;
        transition: all 150ms linear;
        height: 0;

        a {
            color: var(--color-link-navigation);
        }
    }

    .nav-dropdown[active] {
        visibility: visible;
        padding-left: 50px;
        opacity: 1;
        height: 222px;

        @media only screen and (min-width: 992px) {
            padding-top: 0;
            height: 100px;
            padding-left: 0;
        }
    }

    .nav-user-action--mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;

        @media only screen and (min-width: 992px) {
            display: none;
        }
    }

    .nav-user-action--desktop {
        display: none;

        @media only screen and (min-width: 992px) {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10px;
            padding-right: 20px;
        }
    }

    #nav-dropdown-trigger .toggler-icon {
        transition: all 150ms linear;
    }

    #nav-dropdown-trigger[active] .toggler-icon {
        transform: rotate(180deg);
    }

    ul:first-of-type {
        width: 100%;
    }

    li {
        font-size: 1rem;
        color: var(--color-link-navigation);
    }

    li:hover {
        color: var(--color-link-hover);
    }

    a {
        color: var(--color-link-navigation);
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 20px;
    }
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    padding: 50px 20px;
    text-align: center;

    ul, li {
        padding: 0;
        margin: 0;
    }

    li {
        list-style: none;
    }

    div {
        min-width: 200px;
        max-width: 30%;
        word-break: break-word;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .title {
        font-weight: bold;
        font-size: 1rem;
    }

    a, span {
        font-size: 1rem;
        color: var(--color-link-navigation);
    }

    li {
        padding: 5px 0;
    }

    .footer-link {
        color: var(--color-link-footer);
        font-weight: 500;
        display: flex;
        justify-content: center;
        gap: 5px;
        align-items: center;

        .icon {
            color: #1C8BC1;
        }
    }

    .footer-link:hover {
        color: var(--color-link-footer-hover);
    }
}

@media only screen and (min-width: 992px) {
    header {
        #mobile-menu-trigger {
            display: none;
        }

        nav {
            visibility: visible;
            opacity: 1;
            position: static;
            width: auto;
            height: auto;
            z-index: 9;
            flex-direction: row;
            padding: 0;

            ul {
                display: flex;
                gap: 20px;
                align-items: center;
                padding: 0;
                margin: 0;
            }

            li {
                margin: 0;
            }

            li a {
                padding: 40px 10px;
            }

            #nav-dropdown-trigger {
                display: flex;
                align-items: center;
            }

            li:hover {
                color: var(--color-link-hover);
            }

            li:hover > a {
                color: var(--color-link-hover);
            }

            li > ul {
                background-color: var(--color-navigation-background);
                position: fixed;
                width: 100%;
                left: 0;
                top: 100px;
                height: 100px;
                display: flex;
                align-items: center;
                justify-content: flex-end;
            }
        }

        .nav-dropdown {
            height: 100px;
            max-width: var(--max-width);
            display: flex;
            flex-direction: row;
            justify-content: center;
            left: 0;
            right: 0;
            margin: auto;

            a {
                color: var(--color-white)
            }

            a:hover {
                color: var(--color-link-hover);
            }
        }
    }
}

@media only screen and (min-width: 992px) {
    footer {
        text-align: left;
        align-items: flex-start;
        max-width: var(--max-width);
        flex-direction: row;

        .title {
            text-transform: uppercase;
            font-size: 13px;
            font-weight: 500;
            line-height: 24px;
        }

        .footer-link {
            justify-content: flex-start;
        }
    }
}

/* ------------------------- PRICE SECTION -------------------------*/

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

.price-tag {
    display: flex;
    column-gap: 5px;
    row-gap: 10px;
    font-size: 1rem;

    .money {
        display: flex;
        min-width: 76px;
        justify-content: flex-end;
        font-weight: 600;
    }
}


#pricing-plan {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 50px;
    min-height: 90dvh;
    justify-content: center;

    h2 {
        font-size: 42px;
        font-weight: 500;
    }
}

#pricing-plan[selected-pricing-period="month"] {
    .plan-price--year,
    .plan-card-button[data-price-period="year"]{
        display: none;
    }
}

#pricing-plan[selected-pricing-period="year"] {
    .plan-price--month,
    .plan-card-button[data-price-period="month"]{
        display: none;
    }
}

.plan-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid var(--color-border);
    gap: 10px;
    justify-content: space-between;
    background-color: #F3FBFE;

    ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    ul li {
        list-style: none;
        position: relative;
        padding-left: 32px;
        display: flex;
        align-items: center;
        color: black;
    }

    ul li::before {
        content: "";
        display: flex;
        width: 24px;
        height: 24px;
        position: absolute;
        left: 0;
        background-repeat: no-repeat;
        background-size: contain;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23000000'><path d='m424-296 282-282-56-56-226 226-114-114-56 56 170 170Zm56 216q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/></svg>");
    }
}

.plan-card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plan-card-features {
    min-height: 205px;
}

.plan-price {
    display: flex;

    height: 100px;
    align-items: center;
}

.plan-price .money {
    font-size: 36px;
    font-weight: 600;
}

.plan-price--month .money:after {
    content:' /month';
    font-size: 1rem;
    font-weight: 400;
}

.plan-price--year .money:after {
    content:' /year';
    font-size: 1rem;
    font-weight: 400;
}

.plan-price--free .money:after {
    content: '';
    font-size: 1rem;
    font-weight: 400;
}

.plan-card-button {
    display: flex;
    border-radius: 12px;
    padding: 10px 20px;
    width: 160px;
    border: 2px solid #2a2a2a;
    font-size: 0.9rem;
    background-color: #2a2a2a;
    color: white;
    font-weight: 600;
    justify-content: center;
}

.plan-card-button:hover {
    background-color: white;
    color: #2a2a2a;
}

.plan-card-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.plan-name {
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
}

.plan-badge {
    font-size: 0.8rem;
    padding: 5px 10px;
    background-color: #13AFF0;
    border-radius: 12px;
    color: white;
}

.pricing-plan-switcher {
    display: flex;
    align-items: center;
    gap: 10px;

    label {
        margin: 0;
    }

    span {
        font-weight: 500;
    }
}

.partner-form {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: none;
    text-align: left;
}

.partner-form label {
    display: block;
    margin: 1rem 0;
    font-weight: 500;
    color: black;
}

.partner-form input,
.partner-form textarea {
    width: 100%;
    padding: 0.7rem;
    margin-top: 0.3rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
}

.partner-form textarea {
    min-height: 100px;
}

.thank-you {
    margin-top: 2rem;
    padding: 2rem;
    background: #e8f5e8;
    border: 1px solid #27ae60;
    border-radius: 8px;
    color: black;
    display: none;
}

/* ------------------------- SWIPER -------------------------*/
.swiper {
    box-sizing: content-box;
    max-width: 100%;
}

.swiper-pagination {
    position: static;
}

.swiper-navigation {
    position: relative;
    display: flex;
    height: 60px;
    width: 100%;
    justify-content: flex-end;
    gap: 20px;
}

.swiper-button-next,
.swiper-button-prev {
    position: static;
    height: auto;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    position: static;
    font-size: 20px;
}

/* ------------------------- SWITCHER -------------------------*/
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #13AFF0;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}