: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;
}

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

header li {
    list-style: none;
}

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

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

header 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;
}

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

@media only screen and (min-width: 992px) {
    header nav ul:first-child > li:not(:last-child) {
        border-bottom: none;
    }
}

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

header nav a, header nav .nav-node {
    font-weight: 500;
}

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

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

#how-it-works {
    margin: 100px 0;
}

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

header .nav-item-has-dropdown {
    position: relative;
}

header .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid var(--color-link-hover);
    background-color: var(--color-white);
    min-width: 200px;
    visibility: hidden;
    opacity: 0;
    transition: all 250ms ease-in-out;
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .nav-item-has-dropdown:hover .nav-dropdown {
    visibility: visible;
    opacity: 1;
}

header .nav-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--color-link-navigation);
    white-space: nowrap;
}

header .nav-dropdown a:hover {
    color: var(--color-link-hover);
}

header .dropdown-arrow {
    font-size: 10px;
    transition: transform 250ms ease;
}

header .nav-item-has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

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

@media only screen and (min-width: 992px) {
    header .nav-user-action--mobile {
        display: none;
    }
}

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

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

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

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

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

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

@media only screen and (max-width: 991px) {
    header .nav-item-has-dropdown {
        position: static;
    }

    header .nav-dropdown {
        position: static;
        background-color: transparent;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 250ms ease-in-out;
        box-shadow: none;
    }

    header .nav-dropdown a {
        color: var(--color-link-navigation);
        padding-left: 50px;
    }

    header .nav-item-has-dropdown.active .nav-dropdown {
        visibility: visible;
        opacity: 1;
        max-height: 200px;
    }
}

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

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

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

    header nav li {
        margin: 0;
        position: relative;
    }

    header nav li a {
        padding: 40px 10px;
    }

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

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

    header .nav-dropdown {
        top: 75%;
        left: 0;
        min-width: 200px;
    }
}

.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #fff;
    border-radius: 24px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-header {
    padding: 24px 24px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-subtitle-wrapper {
    padding: 8px 24px 16px 24px;
    border-bottom: 1px solid #eef2f6;
}

.modal-subtitle {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.modal-body {
    padding: 24px;
}

.bottom-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fa 100%);
    border-radius: 32px;
    padding: 80px 40px;
    margin: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.bottom-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(19, 175, 240, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.bottom-cta-section h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: #111;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.bottom-cta-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: linear-gradient(135deg, #13aff0, #0e8bc0);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(19, 175, 240, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 175, 240, 0.4);
}

.modal-body .partner-form {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.modal-body .partner-form label {
    display: block;
    margin: 0 0 8px;
    font-weight: 500;
    color: #333;
}

.modal-body .partner-form input,
.modal-body .partner-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.modal-body .partner-form input:focus,
.modal-body .partner-form textarea:focus {
    outline: none;
    border-color: #13aff0;
    box-shadow: 0 0 0 3px rgba(19, 175, 240, 0.1);
}

.modal-body .partner-form button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    margin-top: 10px;
}

.thank-you-modal {
    text-align: center;
    padding: 40px;
}

.thank-you-modal h3 {
    color: #2e7d32;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.thank-you-modal p {
    color: #555;
    margin-bottom: 24px;
}

.thank-you-modal button {
    padding: 12px 24px;
    background: #13aff0;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 60px 30px;
        margin: 40px 0 60px;
    }

    .bottom-cta-section h2 {
        font-size: 1.8rem;
    }

    .modal-container {
        width: 95%;
    }
}

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;
}

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

footer li {
    list-style: none;
}

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

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

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

footer li {
    padding: 5px 0;
}

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

footer .footer-link .icon {
    color: #1C8BC1;
}

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

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

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

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

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

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

.price-tag .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;
}

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

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

#pricing-plan[selected-pricing-period="year"] .plan-price--month,
#pricing-plan[selected-pricing-period="year"] .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;
}

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

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

.plan-card 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;
}

.pricing-plan-switcher label {
    margin: 0;
}

.pricing-plan-switcher 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;
}

.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;
    transition: .4s;
}

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

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

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

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

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