@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 100 900; /* диапазон variable font */
    src: url('fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-display: swap;
}

:root {
    --primary-color: #5071D5;
    --light-color: #F6FBFF;
    --dark-color: #2F323B;
    --text-color: #010101;
    --button-bg: #D1D9F3;
    --primaryBlue: #3F3E6C;
    --purple: #9095EC;
    --title2: #1F2737;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    background-color: #ffffff;
    overflow-x: hidden;
    cursor: context-menu;
}

.no-scroll {
    overflow: hidden;
}

.Container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    margin-bottom: 100px;
    scroll-margin-top: 80px;
    position: relative;
}

section:target {
    padding-top: 80px;
    margin-top: -80px;
}

.SectionTitle {
    font-weight: 600;
    font-size: 48px;
    color: #1D1959;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.3;
}

.SectionSubtitle {
    font-size: 20px;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 90px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header Styles */
.GradientContainer {
    position: relative;
    overflow: hidden; 
    padding-top: 80px;
}

.GradientContainer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left bottom, #5071D5 0%, #D1D9F3 75%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
    z-index: -1;
}

.Header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent; 
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.Header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background-color: var(--primary-color);
}

.HeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.Logo {
    display: flex;
    align-items: center;
    margin-left: -4px;
}

.Logo svg:first-child {
    width: 60px;
    height: 60px;
}

.Logo svg:last-child {
    width: 190px;
    height: 60px;
    margin-left: 5px;
}


/* Navigation */
.Nav {
    display: block;
}

.NavList {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.NavItem {
    margin-left: 25px;
}

.NavLink {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

.NavLink:hover {
    color: var(--light-color);
}

.LanguageSwitcher {
    position: relative;
    display: inline-block;
    align-items: center;
    z-index: 100;
}

.LanguageSwitcherBtn {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.LanguageSwitcherBtn:hover {
    background-color: var(--button-bg);
}


/* Burger*/
.burger-btn {
    display: none;
    background: var(--light-color);
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    cursor: pointer;
    z-index: 1000;
}

.burger-btn:active {
    transform: scale(0.9);
}

.burger-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--primary-color);
    padding: 80px 20px;
    transition: all 0.5s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    display: none; 
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

.mobile-menu-icon {
    position: relative;
    width: 24px;
    height: 24px;
    transition: all 0.5s ease;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--light-color);
    transition: all 0.5s ease;
}

.mobile-menu-icon::before {
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-icon::after {
    transform: translateY(-50%) rotate(-45deg);
}


/* Hero Section */
.HeroSection {
    position: relative;
    padding: 60px 0;
    z-index: 5;
}

.HeroContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.HeroText {
    width: 100%;
    text-align: left;
}

.HeroImage {
    width: 100%;
    display: flex;
    justify-content: center;
}

.HeroImage img {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 30px;
}

.HeroTitle {
    font-weight: 700;
    font-size: 56px;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.HeroSubtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 25px;
}

.HeroDescription {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 70px;
    max-width: 600px;
}

.HeroButtons {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.Btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.BtnPrimary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.BtnPrimary:hover {
    background-color: #4248AA;
}

.BtnSecondary {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.BtnSecondary:hover {
    background-color: #ABB7DC;
    border-color: var(--light-color);
}


/* Security */
.SecuritySection {
    margin: 100px 0;
}

/* Cards*/
.CardsContainer {
    display: flex;
}

.CardsContainer.security {
    position: relative;
}

.CardsContainer.advant {
    flex-wrap: wrap;
    justify-content: space-between; 
}

.CardsContainer.security::before {
    content: "";
    position: absolute;
    top: -116%;
    left: -14%;
    right: 0;
    bottom: 0;
    background-image: url("../images/logo_bg.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: inherit;
    z-index: -1;
}

.Card {
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 25px;
    box-sizing: border-box;
}

.Card.advant {
    flex: 1 1 calc(33.333% - 30px);
    max-width: 400px;
}

.IconCircle {
    width: 100px;
    height: 100px;
    border: 2px solid var( --primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.Icon {
    width: 48px;
    height: 48px;
}

.CardTitle {
    font-weight: 600;
    font-size: 20px;
    color: var(--title2);
    margin-bottom: 15px;
    line-height: 1.4;
}

.CardDescription {
    font-size: 18px;
    color: var(--dark-color);
    line-height: 1.5;
    margin: 0;
}

.CardDescription.work {
    font-size: 13px;
}


/* Info Block Section */
.InfoBlock {
    height: auto;
    background-color: var( --primary-color);
    display: flex;
    align-items: center;
    border-radius: 25px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 100px;
    padding: 30px 0;
    position: relative;
}

.InfoBlock::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../images/sheme.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: inherit;
    z-index: 1;
    opacity: 0.15;
}

.InfoContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    text-align: center;
}

.InfoContent.stage {
    gap: 10px;
}

.InfoPercentage {
    font-weight: 700;
    font-size: 120px;
    color: var(--light-color);
    line-height: 1;
}

.InfoTextGroup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.InfoDescription {
    font-size: 24px;
    color: var(--light-color);
    line-height: 1.3;
    margin: 0;
}

.InfoAction {
    font-weight: 700;
    font-size: 24px;
    color: var(--light-color);
    margin: 0;
}


/* aboutProduct */
.AboutGrid {
    display: flex;
    gap: 80px;
}

.AboutInfo {
    flex: 1;
    background-color: rgba(209, 217, 243, 0.3);
    border-radius: 25px;
    padding: 40px;
}

.AboutTitle {
    font-size: 38px;
    color: var(--title2);
    margin-bottom: 48px;
    text-align: left;
}

.AboutTitleLight {
    font-weight: 500;
}

.AboutTitleBold {
    font-weight: 600;
}

.AboutDescription {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 48px;
    text-align: left;
}

.FeaturesList {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.AboutScheme {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding-left: 20px;
    position: relative;
}

.AboutScheme::before {
    content: "";
    position: absolute;
    top: -6%;
    left: 0;
    right: -14%;
    bottom: 0;
    background-image: url("../images/logo_bg.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: inherit;
    z-index: -1;
}

.ArchitectureItem {
    display: flex;
    align-items: center;
    gap: 20px;
}

.Wrapper {
    background-color: var(--primary-color);
    width: 73px;
    height: 73px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ArchitectureNumber {
    width: 65px;
    height: 65px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    flex-shrink: 0;
}

.ArchitectureNumberLast {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 32px;
    box-sizing: border-box;
    border: 3px solid var(--light-color);
}

.ArchitectureLabel {
    font-size: 29px;
    font-weight: 700;
    color: var(--title2);
}


/* architectureSection */
.ModulesLayout {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    width: 100%;
}

.MainModule {
    max-width: 570px;
}

.SecondaryModules {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ModuleRow {
    display: flex;
    gap: 40px;
    height: calc(50% - 10px);
}

.ModuleCard {
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.ModuleCard:not(.smallCard) .ModuleName {
    font-size: 34px;
    color: #161338;
    line-height: 1.2;
    font-weight: 600;
    padding-left: 20px;
}

.ModuleCard:not(.smallCard) .ModuleDescription {
    font-size: 24px;
    font-weight: 500;
    color: var(--title2);
    margin-bottom: 40px;
    line-height: 1.8;
}

.ModuleHeader {
    display: flex;
    align-items: center;  
    margin-bottom: 16px;
}

.ModuleHeader svg{
    height: 61px;
}

.SmallCard {
    padding: 20px;
    max-width: 100%;
    font-size: 24px;
} 

.SmallCard .ModuleHeader{
    margin-bottom: 10px;
}

.ModuleName {
    padding-left: 10px;
    font-weight: 600;
    font-size: 26px;
}

.ModuleHeader svg.HeaderSu {
    width: 130px;
    height: auto;
}

.ModuleHeader svg {
    filter: drop-shadow(4px 4px 3px rgba(0, 0, 0, 0.1));
}

.SmallCard .ModuleDescription {
    font-size: 15px;
    margin-bottom: 15px;
}

.SmallCard .FeatureItem::before {
    width: 16px;
    height: 16px;
}

.ModuleFeatures {
    list-style: none;
    padding: 0;
    margin: 0;
}

.FeatureItem {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 40px;
    line-height: 1.4;
}

.SmallCard .FeatureItem {
    font-size: 14px;
    padding-left: 32px;
    margin-bottom: 8px;
}

.FeatureItem::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--button-bg);
    border-radius: 50%;
    background-color: var(--light-color);
}

.FeatureItem.checked::before {
    content: "✓";
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: bold;
    border-color: var(--primary-color);
    background-color: var(--light-color);
}


/* how it works*/
.Container.SectionWork {
    padding-right: 0;
}

.CardWorkGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 20px;
    justify-content: center;
}

.CardWork {
    flex: 1 1 calc(25% - 20px);
    max-width: 330px;
    min-height: 120px;
    min-width: 300px;
}

.CardWorkContent {
    display: flex;
    height: 100%;
    position: relative;
    padding-left: 66px;
}

.CardWorkContent::before {
    content: "";
    position: absolute;
    top: 4px;
    left: -18px;
    right: 0;
    bottom: -14px;
    background-image: var(--card-icon);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    z-index: -1;
}

.CardWork:nth-child(4) .CardWorkContent::before,
.CardWork:nth-child(6) .CardWorkContent::before,
.CardWork:nth-child(8) .CardWorkContent::before {
    left: -26px;
}

.CardTitle.work {
    margin-bottom: 7px;
    font-size: 16px;
}

.CardWorkText {
    flex: 1;
    text-align: left;
}

.ContactFormSection {
    padding: 70px 0;
    background: linear-gradient(to left bottom, #5071D5 0%, rgba(209, 217, 243, 0.75) 100%);
    border-radius: 15px;
    max-width: 1400px;
    margin: 60px auto;
    width: calc(100% - 40px);
}

.ContactFormWrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.SectionFormTitle {
    color: var(--light-color);
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
}

.SectionFormSubtitle {
    color: var(--light-color);
    font-size: 16px;
    padding-bottom: 40px;
}

.ContactForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.NameField {
    flex: 1;
    min-width: 0;
}

.FormGroup {
    position: relative;
    text-align: left;
}

.wpcf7-form-control-wrap {
    position: relative;
    text-align: left;
    width: 100%;
}

.FormGroup label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primaryBlue);
}

.FormGroup input,
.FormGroup textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    background-color: var(--light-color);
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.wpcf7-form-control {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    background-color: var(--light-color);
    outline: none;
    font-family: 'Montserrat', sans-serif;
}

.FormGroup input:focus + label,
.FormGroup input:not(:placeholder-shown) + label,
.FormGroup textarea:focus + label,
.FormGroup textarea:not(:placeholder-shown) + label {
    top: 8px;
    font-size: 12px;
}

.formGroup textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 25px;
}

.wpcf7-textarea {
    resize: vertical;
    min-height: 120px;
}

.SubmitBtn {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primaryBlue);
    color: var(--light-color);
    border: none;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    width: 100%;
}

.FormStatus {
    margin-top: 10px;
    font-size: 14px;
    color: var(--light-color); /* можно задать светлый, чтобы смотрелось на фоне */
}

.wpcf7-submit {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primaryBlue);
    color: var(--light-color);
    border: none;
    padding: 15px 25px;
    border-radius: 15px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    width: 100%;
}

.formGroup.error input,
.formGroup.error textarea {
    border: 2px solid #ff4444 !important;
    background-color: #fff6f6 !important;
}

.wpcf7-not-valid {
    border: 2px solid #ff4444 !important;
    background-color: #fff6f6 !important;
}

.SubmitBtn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* Footer */
.Footer {
    background-color: var(--primaryBlue);
    color: var(--light-color);
    width: 100%;
}

.FooterContent {
    display: flex;
    flex-direction: column;
}

.FooterColumns {
    display: flex;
    justify-content: space-between;
    align-items: end;
    max-width: 1110px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

.FooterColumnLeft {
    max-width: 480px;
}

.LogoWrapper {
    margin-bottom: 20px;
    margin-left: -5px;
}

.LogoFooter {
    width: 65px;
    height: 82px;
    fill: var(--light-color);
}

.LogoFooterText {
    width: 160px;
    height: 80px;
    fill: var(--light-color);
}

.FooterDescription {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--light-color);
    margin: 0;
    max-width: 500px;
}


/* contactsSection */
.ContactsSection {
    display: inline-block;
    max-width: 330px;
}

.ContactsTitle {
    font-size: 22px;
    font-weight: bold;
    color: var(--purple);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ContactsList {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.ContactItem {
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--light-color);
    line-height: 1.5;
}

.ContactsList .contactItem:nth-child(2) {
    align-items: center;
}

.ContactItem:last-child {
    margin-bottom: 0;
    text-align: justify;
}

.ContactItem svg {
    display: inline-block;
    flex-shrink: 0;
}

.ContactIcon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.FooterDivider {
    height: 1px;
    width: 100%;
    max-width: 1110px;
    background-color: var(--light-color);
    margin: 0 auto;
}

.FooterCopyright {
    font-weight: 500;
    text-align: center;
    padding: 30px 0;
    margin: 0;
    color: var(--light-color);
}

.FooterCopyText {
    color: var(--purple);
}

.ContactsList a {
    color: var(  --light-color);
    text-decoration: none; 
}

.ContactsList a:hover {
    text-decoration: underline; 
}


/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.bounce-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bounce-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }


@media (max-width: 1300px) {

    .NavItem {
        margin-left: 15px;
    }

    .NavLink {
        font-size: 16px;
    } 

    .ModuleHeader svg{
        height: 50px;
    }

    .ModuleName {
        font-size: 16px;
    }

    .ModuleCard:not(.smallCard) .ModuleName {
        font-size: 27px;
    }
}


@media (max-width: 1200px) {
    .Logo svg:first-child{
        height: 40px;
        width: 40px;
    }

    .Logo svg:last-child{
        height: 20px;
        width: auto;
        margin-left: 3px;
    }

    .NavItem {
        margin-left: 10px;
    }

    .NavLink {
        font-size: 13px;
        padding: 0 5px; 
    } 

    .SectionTitle {
        font-size: 42px;
    }

    .SectionSubtitle {
        margin-bottom: 60px;
    }

    .CardsContainer {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 20px;
    }

    .CardsContainer.advant {
        display: flex;
    }
    
    .Card {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
        box-sizing: border-box;
    }
    
    .CardDescription {
        flex-grow: 1;
    }

    .Card.advant {
        max-width: fit-content;
    }

    .InfoPercentage {
        font-size: 80px;
    }
    
    .InfoDescription {
        font-size: 18px;
    }
    
    .InfoAction {
        font-size: 22px;
    }

    .AboutGrid {
        gap: 40px;
    }

    .AboutInfo {
        padding: 30px;
    }

    .AboutTitle {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .AboutScheme {
        gap: 30px;
    }

    .ArchitectureNumber {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .ArchitectureLabel {
        font-size: 20px;
    }

    .Wrapper {
        background-color: var(--primary-color);
        width: 54px;
        height: 54px;
    }

    .ModulesLayout,
    .SecondaryModules,
    .ModuleRow {
        gap: 30px;
    }

    .ModuleCard {
        padding: 20px;
    }

    .ModuleHeader {
        margin-bottom: 15px;
    }

    .ModuleHeader svg{
        width: 54px;
    }

    .ModuleHeader svg.HeaderSu {
        width: 100px;
    }

    .ModuleCard:not(.SmallCard) .ModuleName {
        font-size: 36px;
        padding-left: 15px;
    }

    .ModuleCard:not(.SmallCard) .ModuleDescription {
        font-size: 23px;
    }

    .FeatureItem {
        margin-bottom: 20px;
    }

    .FeatureItem::before {
        width: 20px;
        height: 20px;
    }

    .SmallCard .ModuleDescription {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .SmallCard .FeatureItem {
        font-size: 12px;
        padding-left: 25px;
    }

    .SmallCard .FeatureItem::before {
        width: 13px;
        height: 13px;
    }

    .SmallCard .FeatureItem.checked::before {
        font-size: 10px;
    }

    .CardsContainer.security::before {
        top: -20%;
        background-size: contain;
        height: 300px;
    }
}


@media (max-width: 992px) {
    .Container.SectionWork {
        padding: 0 20px;
    }

    section {
        margin-top: 50px;
        scroll-margin-top: 60px;
    }

    .Logo svg:first-child {
        height: 50px;
    }

    .Logo svg:last-child {
        width: 150px;
        height: 50px;
    }

    .LanguageSwitcher {
        display: flex;
        align-items: center;
    }
    
    .burger-btn {
        display: flex;
        margin-left: 10px;
    }

    .mobile-menu-close {
        display: flex;
    }

    .Nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--primary-color);
        padding: 80px 20px;
        transition: all 0.5s ease;
        z-index: 999;
    }

    .Nav.active {
        right: 0;
    }
    
    .NavList {
        flex-direction: column;
        gap: 20px;
        width: 100%;
    } 

    .NavItem {
        margin-left: 0;
        width: 100%;
    }
    
    .NavLink {
        color: var(--light-color);
        font-size: 18px;
        padding: 8px 12px;
        border-radius: 4px;
        display: block;
        width: 100%;
        margin: 0;
        transition: all 0.3s ease;
        position: relative;
    }

    .NavLink:hover {
        background-color: rgba(255,255,255,0.2);
    }

    .HeroSection {
        padding: 0;
    }

    .HeroContent {
        flex-direction: row;
        gap: 30px;
    }

    .HeroTitle {
        font-size: 32px;
    }

    .HeroSubtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .HeroDescription {
        font-size: 15px;
        margin-bottom: 60px;
    }

    .SectionTitle {
        font-size: 37px;
        margin-bottom: 30px;
    }

    .SectionSubtitle {
        font-size: 18px;
    }

    .CardsContainer.advant {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        gap: 20px;
    }

    .AboutGrid {
        flex-direction: column;
    }

    .AboutScheme {
        padding-left: 0;
        align-items: center;
        flex-flow: row;
        gap: 20px;
    }

    .Wrapper {
        width: 37px;
        height: 37px;
    }

    .ArchitectureNumber {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .ArchitectureLabel {
        font-size: 14px;
    }

    .ArchitectureItem {
        gap: 8px;
    }

    .ModulesLayout {
        flex-direction: column;
    }

    .ModuleHeader svg {
        width: auto;
    }

    .ModuleHeader svg.HeaderSu {
        width: auto;
        padding-bottom: 5px;
    }

    .MainModule,
    .ModuleCard.SmallCard  {
        max-width: 700px;
        margin: 0 auto;
    }
    .ModuleName {
        font-size: 36px;
        padding-left: 15px;
    }

    .ModuleRow {
        flex-direction: column;
    }

    .SmallCard .ModuleDescription {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .SmallCard .FeatureItem {
        font-size: 24px;
        padding-left: 40px;
        margin-bottom: 20px;
    }

    .SmallCard .FeatureItem::before {
        width: 20px;
        height: 20px;
    }

    .SmallCard .FeatureItem.checked::before {
        font-size: 14px;
    }

    .AboutScheme::before {
        background-size: contain;
        height: 300px;
    }

    .CardWorkGrid {
        gap: 50px 70px;
        margin-left: 45px;
    }

    .FooterColumnLeft {
        max-width: 360px;
    }
}


@media (min-width: 992px) {

    .HeroContent {
        flex-direction: row;
        text-align: left;
        align-items: center;
    }

}


@media (max-width: 800px) {

    section {
        margin-bottom: 60px;
    }

    .HeroTitle {
        font-size: 25px;
        margin-bottom: 13px;
    }

    .HeroSubtitle {
        font-size: 16px;
        margin-bottom: 13px;
    }

    .HeroDescription {
        font-size: 13px;
        margin-bottom: 35px;
    }

    .SecuritySection {
        margin: 40px 0;
    }

    .InfoBlock {
        padding: 20px 0;
        margin-bottom: 60px;
    }

    .InfoPercentage {
        font-size: 60px;
    }
    
    .InfoDescription {
        font-size: 14px;
    }
    
    .InfoAction {
        font-size: 17px;
    }

    .AboutTitle {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .AboutDescription {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .FeatureItem {
        font-size: 14px;
    }

    .ArchitectureLabel {
        font-size: 11px;
    }

    .AboutScheme::before,
    .CardsContainer.security::before {
        display: none;
    }

    .LogoFooter {
        height: 57px;
        width: 54px;
    }
    
    .LogoFooterText {
        width: 139px;
        height: 57px;
    }
    
    .FooterDescription {
        font-size: 14px;
        max-width: 270px;
    } 
    
    .ContactsTitle {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .ContactItem {
        margin-bottom: 8px;
        gap: 6px;
    }

    .FooterDivider {
        max-width: 700px;
    }
    
    .FooterCopyright {
        padding: 20px 0;
        font-size: 12px;
    }
}


@media (max-width: 767px) {

    .HeroDescription {
        margin-bottom: 14px;
    }

    .Btn {
        padding: 12px 20px;
    }

    .HeroImage img {
        width: 80%;
    }
}


@media (max-width: 640px) {

    section {
        margin-bottom: 40px;
    }

    .GradientContainer::before {
        clip-path: polygon(0 0, 100% 0, 100% 70%, 0 95%);
    }

    .HeroSection {
        padding-top: 30px;
        margin-bottom: 130px;
    } 

    .HeroTitle {
        font-size: 34px;
    }

    .HeroSubtitle {
        font-size: 18px;
    }

    .HeroDescription {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .HeroImage {
        display: none;
    }

    .CardsContainer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .InfoBlock {
        padding: 15px 0;
        margin-bottom: 40px;
        border-radius: 10px;
    }

    .InfoPercentage {
        font-size: 40px;
    }

    .InfoTextGroup {
        gap: 5px;
    }
    
    .InfoDescription {
        font-size: 10px;
    }
    
    .InfoAction {
        font-size: 11px;
    }

    .AboutScheme {
        gap: 10px;
    }

    .Wrapper {
        width: 30px;
        height: 30px;
    }

    .ArchitectureItem {
        gap: 5px;
    }

    .AboutTitle {
        font-size: 23px;
        margin-bottom: 13px;
    }

    .AboutDescription {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .FeatureItem {
        font-size: 13px;
    }

    .ArchitectureNumber {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .ArchitectureLabel {
        font-size: 7px;
    }
    
    .ModuleName {
        font-size: 32px;
        padding-left: 10px;
    }

    .ModuleHeader {
        margin-bottom: 10px;
    }

    .ModuleCard:not(.smallCard) .ModuleName {
        font-size: 32px;
        padding-left: 10px;
    }

    .ModuleCard:not(.smallCard) .ModuleDescription,
    .SmallCard .ModuleDescription {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .SmallCard .FeatureItem {
        font-size: 24px;
        padding-left: 40px;
        margin-bottom: 20px;
    }

    .FeatureItem.checked {
        font-size: 17px;
        padding-left: 30px;
    }

    .FeatureItem::before,
    .SmallCard .FeatureItem::before {
        width: 18px;
        height: 18px;
    }

    .CardWorkGrid {
        gap: 60px;
    }

    .ContactFormSection {
        border-radius: 10px; /* Закругляем все углы */
        margin: 40px auto;
        width: calc(100% - 20px);
    }

    .ContactForm {
        margin-bottom: 30px;
    }

    .SectionFormTitle {
        font-size: 22px;
    }

    .SectionFormSubtitle {
        font-size: 12px;
        padding-bottom: 30px;
    }

    .SubmitBtn {
        margin-top: 0;
    }

    .FooterColumns {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .FooterColumnLeft {
        text-align: center;
    }
    
    .FooterDescription {
        text-align: center;
        padding-bottom: 30px;
        font-size: 18px;
        max-width: 390px;
    }
       
    .ContactsTitle {
        text-align: center;
    }
    
    .ContactsList {
        flex-direction: column;
        align-items: center;
        display: flex;
    }  

    .ContactItem:last-child {
        text-align: center;
    }

    .FooterDivider {
        max-width: 440px;
    }
}


@media (max-width: 480px) {

    .ModuleCard:not(.smallCard) .ModuleDescription, .SmallCard .ModuleDescription {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .FeatureItem.checked {
        font-size: 15px;
    }
}