* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:focus {
    outline: 2px solid transparent;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #242257 0%, #0D1E26 100%);
}
@media (prefers-reduced-motion) {
    * {
        transition: none !important;
        animation: none !important;
    }
}
.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}


.invisible-anchor {
    display: block;
    position: absolute;
    width: 0;
    height: 0;
    margin-top: calc(-1 * (1.05rem * 1.6 + 32px + 64px + 80px));
    align-self: flex-start;
}
@media (max-height: 600px) {
    .invisible-anchor {
        margin-top: -80px;
    }
}


.cta {
    display: block;
    padding: 16px 20px;
    background: #ffffff;
    color: #0098DF;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 1.15rem;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    max-width: max-content;
    text-align: center;
    transition: color .1s ease-in-out;
}
.cta:hover {
    color: #0075ac;
}
.cta:active {
    color: #005c86;
}
.cta_floating {
    animation: floating-cta 1s cubic-bezier(.45,.05,.55,.95) infinite alternate running;
}
@keyframes floating-cta {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(8px);
    }
}


.site-header {
    background: linear-gradient(135deg, #524CD5 0%, #0098DF 100%);
    padding: 32px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 0.2);
    z-index: 100;
    gap: 32px 40px;
}
@media (max-height: 600px) {
    .site-header {
        position: static;
    }
}
@media (max-width: 1570px) {
    .site-header {
        padding: 32px 40px;
    }
}
@media (max-width: 500px) {
    .site-header {
        flex-wrap: wrap;
        justify-content: center;
        padding: 32px 16px;
    }
}
.site-header__heading {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #ffffff;
}
.site-header__logo {
    display: block;
    width: 48px;
    height: 48px;
}
@media (max-width: 400px) {
    .site-header__logo {
        width: 32px;
        height: 32px;
    }
}
.site-header__heading-text {
    font-size: 2rem;
    font-weight: 800;
}
@media (max-width: 400px) {
    .site-header__heading-text {
        font-size: 1.5rem;
    }
}
.site-header__menu {
    display: flex;
    align-items: center;
    gap: 48px;
}
@media (max-width: 1400px) {
    .site-header__menu {
        left: -400px;
        box-shadow: none;
        transition: left .3s cubic-bezier(.77,0,.18,1);
        position: fixed;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #524CD5 0%, #0098DF 100%);
        top: 0;
        padding: 40px;
        overflow-y: auto;
        z-index: 4000;
        max-width: 400px;
        display: block;
    }
    .site-header__menu_mobile-visible {
        top: 0;
        left: 0;
        box-shadow: 0 50px 100px 0 rgba(0, 0, 0, 0.65);
    }
}
.site-header__link {
    display: block;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    padding: 16px 20px;
    margin: -16px -20px;
    transition: background-color .1s ease-in-out;
}
@media (max-width: 1400px) {
    .site-header__link {
        background-color: #ffffff18;
    }
}
.site-header__link:hover {
    background-color: #ffffff30;
}
.site-header__link:active {
    background-color: #ffffff40;
}
@media (max-width: 1400px) {
    .site-header__link {
        margin: 0 0 16px 0;
    }
}
.site-header__cta {
    font-size: 1.05rem;
}
.site-header__menu-button {
    display: none;
    appearance: none;
    font: inherit;
    border: none;
    cursor: pointer;
    padding: 16px 20px;
    background: #ffffff;
    color: #0098DF;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    font-size: 1.05rem;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1400px) {
    .site-header__menu-button {
        display: flex;
        align-items: center;
        gap: 12px;
    }
}
@media (max-width: 400px) {
    .site-header__menu-button {
        padding: 12px 16px;
    }
}
.site-header__menu-button-line {
    width: 24px;
    height: 3px;
    border-radius: 2px;
    background-color: currentColor;
    display: block;
    transition: all .3s ease-in-out;
}
.site-header__menu-button-line:not(:last-child) {
    margin-bottom: 5px;
}
.site-header__menu-button-line:nth-child(3) {
    margin-top: -8px;
}
.site-header__menu-button_menu-visible .site-header__menu-button-line:nth-child(1),
.site-header__menu-button_menu-visible .site-header__menu-button-line:nth-child(4) {
    opacity: 0;
}
.site-header__menu-button_menu-visible .site-header__menu-button-line:nth-child(2) {
    transform: rotate(45deg);
}
.site-header__menu-button_menu-visible .site-header__menu-button-line:nth-child(3) {
    transform: rotate(-45deg);
}


.section {
    padding: 80px;
}
@media (max-width: 600px) {
    .section {
        padding: 80px 40px;
    }
}
@media (max-width: 400px) {
    .section {
        padding: 80px 32px;
    }
}
.section_light {
    background-color: #F6F9FB;
    color: #2C3235;
}
.section_no-top-padding {
    padding-top: 0;
}
.section__header {
    margin-bottom: 80px;
    line-height: 1;
    font-weight: 700;
    font-size: 4rem;
    text-transform: uppercase;
    color: #0098DF;
}
@media (max-width: 500px) {
    .section__header {
        font-size: 2rem;
        font-weight: 900;
    }
}


.welcome-section {
    display: flex;
    align-items: center;
    gap: 80px;
    min-height: calc(100vh - 1.05rem * 1.6 - 32px - 64px);
    justify-content: space-evenly;
}
.welcome-section__text {
    flex-basis: min-content;
    max-width: max-content;
    flex-grow: 1;
    min-width: 40ch;
}
@media (max-width: 1100px) {
    .welcome-section__text {
        min-width: unset;
    }
}
.welcome-section__text-heading {
    display: block;
    background-color: #a300cc;
    color: #fffffff8;
    font-size: 2.4rem;
    padding: 24px 30px;
    border-radius: 16px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.3;
}
.welcome-section__text-description {
    color: #ffffffe0;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 60px;
    max-width: 50ch;
}
.welcome-section__text-description_bigger {
    font-size: 1.7rem;
    font-weight: 500;
}
.welcome-section__featured-image {
    display: block;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
    max-width: 1200px;
    max-height: calc(100vh - 1.05rem * 1.6 - 32px - 64px - 160px);
}
.welcome-section__featured-image_screenshot {
    border-radius: 12px;
    min-width: 0;
}
@media (max-width: 1570px) and (min-width: 1100px) {
    .welcome-section {
        padding: 40px;
    }
}
@media (max-width: 1570px) {
    .welcome-section__featured-image {
        flex-grow: 0;
    }
}
@media (max-width: 1150px) {
    .welcome-section__text-heading {
        font-size: 2rem;
    }
}
@media (max-width: 1100px) and (min-width: 600px) {
    .welcome-section {
        padding: 80px 40px;
    }
}
@media (max-width: 1100px) {
    .welcome-section {
        flex-direction: column;
    }
    .welcome-section__text {
        align-items: center;
        flex-direction: column;
        display: flex;
        text-align: center;
    }
    .welcome-section__featured-image {
        max-width: 100%;
        max-height: 60vh;
    }
}
@media (max-width: 500px) {
    .welcome-section__text-heading {
        font-size: 1.5rem;
    }
}


.features__list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
@media (max-width: 1200px) {
    .features__list {
        grid-template-columns: 1fr;
    }
}
.features__image {
    display: block;
    width: 250px;
    margin: 0 auto 40px auto;
    max-width: 100%;
}
.features__header {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 32px;
    color: #0098DF;
    text-align: center;
}
@media (max-width: 400px) {
    .features__header {
        font-size: 1.4rem;
    }
}
.features__description {
    font-size: 1.1rem;
}
@media (max-width: 400px) {
    .features__description {
        font-size: 1rem;
    }
}


.modules__list {
    list-style-type: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}
@media (max-width: 1200px) {
    .modules__list {
        grid-template-columns: 1fr;
    }
}
.modules__module {
    display: flex;
    gap: 32px;
}
.modules__icon {
    --icon-fill: #0098DF;
    display: block;
    width: 2.56rem;
    height: 2.56rem;
    flex-basis: 2.56rem;
    flex-shrink: 0;
}
.modules__header {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: #0098DF;
}
.modules__pricing-info {
    text-transform: uppercase;
    font-size: .9rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pricing__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    flex-wrap: wrap;
    gap: 60px 80px;
}
.pricing__section-header-text {
    margin-bottom: 0;
}
.pricing__tax-switch {
    display: flex;
    gap: .5em;
    text-transform: uppercase;
    font-weight: 600;
    align-items: center;
    cursor: pointer;
}
.pricing__tax-switch-text {
    display: block;
}
.pricing__tax-switch-input {
    display: block;
    appearance: none;
    background: linear-gradient(135deg, #524CD5 0%, #0098DF 100%);
    border-radius: 0.85em;
    height: 1.7em;
    width: calc(1.7em + 1.7em - 5px);
    padding: 5px;
    cursor: inherit;
}
.pricing__tax-switch-input::before {
    content: "";
    display: block;
    width: calc(1.7em - 10px);
    height: calc(1.7em - 10px);
    background: #fffffff7;
    border-radius: 50%;
    transition: margin-left .2s cubic-bezier(.79,.14,.15,.86);
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.3);
}
.pricing__tax-switch-input:checked::before {
    margin-left: calc(1.7em - 5px);
}
.pricing__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    justify-items: center;
    align-items: start;
}
@media (max-width: 1600px) {
    .pricing__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 1000px) {
    .pricing__list {
        grid-template-columns: 1fr;
    }
}
.pricing__price {
    padding: 40px;
    border-radius: 16px;
    border: 2px solid #00000010;
    max-width: 500px;
    width: 100%;
}
.pricing__price_highlighted {
    padding: 42px;
    background: linear-gradient(135deg, #524CD5 0%, #0098DF 100%);
    border: none;
    color: #ffffff;
}
.pricing__image {
    display: block;
    margin: 0 auto 40px;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
}
.pricing__image_no-shadow {
    box-shadow: none;
}
.pricing__header {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 32px;
    text-align: center;
}
.pricing__header:not(.pricing__price_highlighted .pricing__header) {
    color: #0098DF;
}
.pricing__description {
    font-size: 1.05rem;
    line-height: 1.65;
}
.pricing__cta {
    margin: 40px auto 0;
    font-size: 1.12rem;
}


.demo {
    display: flex;
    gap: 40px 80px;
}
@media (max-width: 700px) {
    .demo {
        flex-direction: column;
    }
}
.demo__header {
    color: #0098DF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 32px;
}
@media (max-width: 500px) {
    .demo__header {
        font-size: 2rem;
        font-weight: 900;
    }
}
.demo__text {
    font-size: 1.4rem;
}
.demo__image {
    display: block;
}
@media not (max-width: 700px) {
    .demo__image {
        margin-left: auto;
        max-height: 200px;
    }
}
@media (max-width: 700px) {
    .demo__image {
        margin: 0 auto;
        max-width: 300px;
        width: 100%;
    }
}


.contact {
    display: flex;
    gap: 40px 80px;
}
@media (max-width: 1300px) {
    .contact {
        display: block;
    }
}
.contact__content-wrapper {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 60ch;
}
@media (max-width: 1300px) {
    .contact__content-wrapper {
        max-width: unset;
        margin-bottom: 40px;
        display: flex;
        gap: 40px 80px;
    }
}
@media (max-width: 800px) {
    .contact__content-wrapper {
        flex-direction: column;
    }
}
.contact__header {
    color: #0098DF;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 32px;
}
@media (max-width: 500px) {
    .contact__header {
        font-size: 2rem;
        font-weight: 900;
    }
}
.contact__text {
    font-size: 1.4rem;
}
.contact__image {
    width: 100%;
    margin-top: 48px;
    display: block;
}
@media (max-width: 1300px) {
    .contact__image {
        width: auto;
        margin-top: 0;
        margin-left: auto;
        max-height: 220px;
        max-width: 40%;
        height: max-content;
    }
}
@media (max-width: 800px) {
    .contact__image {
        margin-right: auto;
        max-width: 400px;
        width: 100%;
        max-height: unset;
    }
}
.contact__form {
    width: 70%;
    flex-basis: 70%;
    margin-left: auto;
}
@media (max-width: 1300px) {
    .contact__form {
        width: 100%;
    }
}
.contact__form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    align-items: end;
}
@media (max-width: 900px) {
    .contact__form-row {
        grid-template-columns: 1fr;
    }
}
.contact__form-label, .contact__form-input {
    display: block;
}
.contact__form-label {
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: .9rem;
}
.contact__form-input {
    appearance: none;
    font: inherit;
    background: none;
    border: 1px solid #2C3235;
    padding: 8px 12px;
    border-radius: 8px;
    color: inherit;
    width: 100%;
}
.contact__form-input:focus {
    border: 1px solid #524CD5;
    box-shadow: 0 0 0 1px #524CD5;
}
.contact__form-input_textarea {
    resize: vertical;
    height: 20em;
    min-height: 20em;
    max-height: 40em;
}
.contact__actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px 40px;
    flex-wrap: wrap;
}
.contact__submit-button {
    appearance: none;
    font: inherit;
    background: linear-gradient(135deg, #524CD5 0%, #0098DF 100%);
    border: none;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.2);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}
.contact__submit-button:hover {
    color: #d8e7ee;
}
.contact__alternative-action {
    display: flex;
    align-items: center;
    gap: .2em .8em;
    flex-wrap: wrap;
}
.contact__alternative-action-link {
    display: block;
    color: #524CD5;
    background: linear-gradient(135deg, #524CD5 0%, #0098DF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    text-decoration: none;
}
.contact__alternative-action-link:hover {
    background: linear-gradient(135deg, #302b91 0%, #0675a8 100%);
    background-clip: text;
    -webkit-background-clip: text;
}
.contact__errors {
    margin-top: 40px;
    font-weight: 700;
    color: #a00;
}
.contact__success {
    margin-top: 40px;
    font-weight: 700;
    color: rgb(0, 150, 67);
}


.site-footer {
    padding: 32px 80px;
    color: #ffffffe8;
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}
@media (max-width: 1570px) {
    .site-footer {
        padding: 32px 40px;
    }
}
@media (max-width: 600px) {
    .site-footer {
        flex-wrap: wrap;
        justify-content: center;
        padding: 32px 16px;
        text-align: center;
    }
}
.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
.site-footer__logo-image {
    display: block;
    width: 48px;
    height: 48px;
}
@media (max-width: 400px) {
    .site-footer__logo-image {
        width: 32px;
        height: 32px;
    }
}
.site-footer__logo-name {
    font-size: 2rem;
    font-weight: 800;
}
@media (max-width: 400px) {
    .site-footer__logo-name {
        font-size: 1.5rem;
    }
}