:root {
    --inter: "Inter", sans-serif;
    
    --extralight: 200;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --semibold: 600;
    --bold: 700;
    --extrabold: 800;
    --black: 900; 
    
    --accent: #4466B2;
    --accent2: #F0FF97;
    --dark: #272727;
    --light: #FFFFFF;
    --background: #F8F8F8;
    --grey: #B6B6B6;
    --grey-light: #ECECEC;

    --tr: .4s;

}

body {
    font-family: var(--inter);
    font-weight: var(--extralight);
    background-color: var(--background);
}

a {
    text-decoration: none;
}

h1 {
    margin: 0;
    padding: 0;
}

h3 {
    margin: 0;
    padding: 0;
}

h5 {
    margin: 0;
    padding: 0;
}



.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 60px;
    padding-right: 60px;
    box-sizing: border-box; 
}

    .header {
        position: relative;
        display: flex;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
        justify-content: space-between;
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
    }

    
    .header-fixed {
        position: fixed !important;
        background-color: var(--grey-light);
        top: 0;
        left: 0;
        border-bottom: 1px solid var(--dark);
        width: 100%;
        z-index: 1000;
        
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }

    
    body.header-fixed-padding {
        padding-top: 60px; 
    }


        .logo {
            display: inline-block;
            
            margin: 0;
            width: 124px;
            height: 24px;
            background-image: url(../images/logo.svg);
            background-repeat: no-repeat;
            background-size: contain;
            
        }

        .central-btn {
            position: absolute;
            left: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0;
            border: none;
            width: 50px;
            height: 50px;
            padding-top: 16px;
            padding-bottom: 16px;
            background-color: transparent;
            margin: 0 auto;
            justify-content: space-between;
            cursor: pointer; 
            transform: translateX(-50%);
        }

            .nav-line01 {
            background-color: var(--dark);
            width: 50px;
            height: 2px;
            border: none;
            transition: transform 0.3s ease, opacity 0.3s ease; 
            transform-origin: center center;
            }

            .nav-line02 {
            background-color: var(--dark);
            width: 50px;
            height: 2px;
            border: none;
     
            }

            .nav-line03 {
            background-color: var(--dark);
            width: 50px;
            height: 2px;
            border: none;
            transition: transform 0.3s ease, opacity 0.3s ease; 
            transform-origin: center center;
            }

            @media (hover: hover) {
                .central-btn:hover #nav-line01 {
                    transform: translateY(8px);  
                }
            }

            @media (hover: hover) {
                .central-btn:hover #nav-line03 {
                    transform: translateY(-8px); 
                }
            }

.buttons {
    display: flex;
}

        .presentation-btn {
            display: flex;
            font-size: 16px;
            background-color: var(--dark);
            color: white;
            height: 40px;
            width: 169px;
            align-items: center;
            border: none;
            border-radius: 40px;
            padding-left: 20px;
            padding-right: 20px;
            gap: 11px;
            transition: var(--tr);
            cursor: pointer;
            justify-content: center;
        }

        .presentation-btn::before {
            content: '';
            display: block;
            width: 12px;
            height: 15px;
            background-image: url(../images/icon-download.svg);
            background-repeat: no-repeat;
            background-size: contain;
        }

        
        @media(hover: hover) {
            .presentation-btn:hover {
                background-color: var(--accent);
            }
        }


        .connect-btn {
            height: 40px;
            width: 169px;
            align-items: center;
            background-color: white;
            color: var(--dark);
            border-radius: 40px;
            margin-left: 20px;
            border: 1px solid var(--dark); 
            transition: var(--tr);
            display: flex;          
            justify-content: center; 

        }

        @media (hover: hover) {
            .connect-btn:hover {
                background-color: var(--accent);
                color: white;
                border: 1px solid var(--accent);
            }
        }



.hero {
    position: relative;
    max-width: 1920px;
    height: 100vh; 
    max-height: 720px;
    margin: 0 auto;
    background-image: url(../images/hero_image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: left;
    border-radius: 4px;
    padding-left: 60px;
}    

    .bracket-up {
        position: absolute;  
        max-width: 1440px;
        margin: 0 auto;
        left: 40px;
        top: 100px;
        background-image: url(../images/bracket-up.svg); 
        background-repeat: no-repeat;
        background-size: contain;
        width: 80px;  
        height: 80px;      
        filter: blur(4px);
        
        
        transform: translate(0, 0);
        transition: transform 2s;
    }

    .bracket-up.animate {
        transform: translate(30px, 30px);
    }

    .bracket-down {
        position: absolute;  
        max-width: 1440px;
        margin: 0 auto;
        left: 560px;
        bottom: 300px;
        background-image: url(../images/bracket-down.svg); 
        background-repeat: no-repeat;
        background-size: contain;
        width: 80px;  
        height: 80px;      
        filter: blur(4px);
        
        
        transform: translate(30px, 30px);
        transition: transform 2s;
    }

    .bracket-down.animate {
        transform: translate(0, 0);
    }


    .hero-text {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: flex-start;
        max-width: 1440px;
        margin: 0 auto;
        padding-top: 150px;
        padding-bottom: 200px;
        padding-left: 40px;
        
       
    }

        .hero-title {
            max-width: 1440px;
            font-family: var(--inter);
            font-weight: var(--light);
            text-align: left;
            font-size: 20px; 
            letter-spacing: -0.04em;
            text-transform: uppercase;
            color: var(--light);
            
            
            
            opacity: 0; 
            filter: blur(20px); 
            transform: scale(0.5); 
            transition: opacity 2s, filter 2s, transform 2s, font-size 2s; 
            }

        .hero-title.loaded {
            opacity: 1; 
            filter: blur(0); 
            transform: scale(1); 
            font-size: 100px; 
        }

        .hero-description {
            max-width: 540px;
            font-family: var(--inter);
            font-weight: var(--regular);
            font-size: 18px;
            line-height: 170%;
            letter-spacing: 0.01em;
            text-transform: uppercase;
            color: var(--light);
            
            
            opacity: 0; 
            transition: opacity 1s; 
        }

        .hero-description.loaded {
            opacity: 1; 
        }

        .highlight {
            position: relative; 
            z-index: 1; 
            color: var(--light);
            transition: color 1s; 
        }

        .highlight::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0; 
            height: 100%;
            background-color: #F0FF97;
            transition: width 1s; 
            z-index: -1; 
        }

        .highlight.loaded::before {
            width: 100%; 
        }

        .highlight.loaded {
            color: var(--dark); 
        }

        .products-btn {
            max-width: 170px;
            font-size: 16px;
            font-family: var(--inter);
            font-weight: var(--regular);
            background-color: white;
            color: #272727;
            padding: 12px 16px;
            text-align: center;
            border-radius: 40px;
            margin-top: 20px;
    
            
            transition: background-color 0.5s, color 0.5s, opacity 1s;
        
            
            opacity: 0; 
        }

        .products-btn.loaded {
        opacity: 1; 
        }


        
        @media(hover: hover) {
            .products-btn:hover {
                background-color: var(--accent);
                color: white;
            }
        }


.line {
    background-image: url(../images/line.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 2px;
    height: 120px;
    position: absolute;
    background-position: center center;
    left: 50%;
    bottom: -120px;                     
    
    
    transform: translate(-50%, -100%);  
    opacity: 0;
    
    
    transition: transform 1.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), opacity 1.4s ease;
}


.line.line--visible {
    transform: translate(-50%, -50%);   
    opacity: 1;
}





.transition-text {
    width: 100%;
    display: block;
    max-width: 560px;
    margin: 72px auto;
    font-weight: var(--regular);
    font-size: 18px;
    line-height: 167%;
    text-transform: uppercase;
    color: var(--dark);

    
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.transition-text.transition-text--visible {
    opacity: 1;
    transform: translateY(0);
}



.trust {
    width: 100%;
    margin: 0 auto;
} 

    .trust-title {  
        margin: 0;  
        padding: 0;
        padding-left: 50vw;
        font-family: var(--inter);
        font-weight: var(--light);
        font-size: 80px;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        color: var(--dark);
        max-width: 560px;
    }

    .trust-title::after {
        content: '';
        display: block;
        width: 80px;
        height: 80px;
        background-image: url(../images/arrow-down.svg);
        transform: rotate(90deg);
        background-repeat: no-repeat;
        background-size: contain;
        margin-top: 20px;
        }

  
.trust-container {
    display: grid;
    grid-template-columns: 50% 25% 25%;  
    grid-template-rows: auto;
    row-gap: 60px;
    max-width: 1440px;
    width: 100%; 
    margin: 0px auto;
    margin-top: 60px; 
    box-sizing: border-box;
}


    .trust-textblock {
        grid-column: 2;
        display: flex;     
        margin: 0;      
        flex-direction: column;
        align-items: flex-start;
        border-left: 2px solid var(--dark);
        padding-left: 12px;
        max-width: 360px;
        box-sizing: border-box;
    }

        .number-text {
            margin: 0;
            font-family: var(--inter);
            font-weight: var(--extralight);
            font-size: 30px;
            text-transform: uppercase;
            color: var(--grey);
        }

        .big-number {
            margin: 0;
            margin-top: 40px;
            font-family: var(--inter);
            font-weight: var(--extrabold);
            font-size: 80px;
            text-transform: uppercase;
            color: var(--dark);
        }

        .number-description {
            margin: 0;
            margin-right: 15px;
            font-family: var(--inter);
            font-weight: var(--light);
            font-size: 16px;
            color: var(--dark);
            max-width: 270px;
        }

    .trust-textblock2 {
        grid-column: 3;
        display: flex;           
        flex-direction: column;
        align-items: flex-start;
        border-left: 2px solid var(--dark);
        padding-left: 12px;
        margin-right: 0;
        max-width: 270px;
        box-sizing: border-box;
    }

    .trust-textblock3 {
        grid-column: 1; 
        border-left: 2px solid var(--dark);
        margin-right: 30px;
        margin-left: 20vw;
        padding-left: 12px;
        max-width: 360px;
        box-sizing: border-box; 
    }

    .trust-textblock4 {
        grid-column: 2; 
        border-left: 2px solid var(--dark);
        padding-left: 12px;
        max-width: 270px;
        box-sizing: border-box;
    }

    
    .trust-textblock,
    .trust-textblock2,
    .trust-textblock3,
    .trust-textblock4 {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    
    .trust-textblock.trust-visible,
    .trust-textblock2.trust-visible,
    .trust-textblock3.trust-visible,
    .trust-textblock4.trust-visible {
        opacity: 1;
        transform: translateY(0);
    }







.products {
    margin-bottom: 80px;
}
.products-header {
    display: flex;
    margin: 0;
    margin-top: 100px;
    margin-bottom: 60px;
    width: 100%;
    
}

    .products-title {
        margin: 0;
        padding: 0;
        font-family: var(--inter);
        font-weight: var(--light);
        font-size: 80px;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        color: var(--dark);
        max-width: 560px;
    }


.products-box {
    display: grid;
    max-width: 1440px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 30px 30px;
}

.products-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 400px;
    max-width: 400px;
    background-color: white;
    border: 1px solid var(--grey);
    padding: 30px 30px;
    z-index: 1;

    
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.products-item.products-visible {
    opacity: 1;
    transform: translateY(0);
}


    .corner3 {
        position: absolute;
        width: 10px;
        height: 10px;
        pointer-events: none; 
        z-index: 1;
        
    }

    
    .corner3-tl {
        top: -1px;
        left: -1px;
        border-top: 3px solid var(--dark);
        border-left: 3px solid var(--dark);
        transition: transform 0.3s ease;
    }

    
    .corner3-tr {
        top: -1px;
        right: -1px;
        border-top: 3px solid var(--dark);
        border-right: 3px solid var(--dark);
        transition: transform 0.3s ease;
    }

    
    .corner3-bl {
        bottom: -1px;
        left: -1px;
        border-bottom: 3px solid var(--dark);
        border-left: 3px solid var(--dark);
        transition: transform 0.3s ease;
    }

    
    .corner3-br {
        bottom: -1px;
        right: -1px;
        border-bottom: 3px solid var(--dark);
        border-right: 3px solid var(--dark);
        transition: transform 0.3s ease;
    }


    @media (hover: hover) {
        .products-item:hover {
            background-color: white;
            border: 1px solid var(--dark);
        }
    }

        
    @media (hover: hover) {
        .products-item:hover .corner3-tl {
            transform: translate(-10px, -10px);
        }
    }

    @media (hover: hover) {
        .products-item:hover .corner3-tr {
            transform: translate(10px, -10px);
        }
    }

    @media (hover: hover) {
        .products-item:hover .corner3-bl {
            transform: translate(-10px, 10px);
        }
    }

    @media (hover: hover) {
        .products-item:hover .corner3-br {
            transform: translate(10px, 10px);
        }
    }


.products-soon {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #F0FF97;
    color: var(--dark);
    font-family: var(--inter);
    font-weight: var(--bold);
    font-size: 14px;
    text-transform: uppercase;
    padding: 6px 12px;
    z-index: 2;
}





.products-item2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 400px;
    max-width: 400px;
    margin:0;
}

.products-item3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-height: 400px;
    max-width: 400px;
    margin:0;
}

    .products-name {
    
        margin: 0;
        padding-bottom: 15px;
        font-family: var(--inter);
        font-weight: var(--bold);
        font-size: 40px;
        text-transform: uppercase;
        color: var(--dark);    
    }

    .products-features {
        list-style: none;
        color: var(--dark);
        max-width: 340px;
        line-height: 125%;
        margin: 0;
        margin-left: 15px;
        padding: 0;
    }

        .products-features li {
            position: relative;
            font-family: var(--inter);
            font-weight: var(--light);
            font-size: 16px;
            margin: 0;
            padding-left: 20px;
            margin-bottom: 15px;
            max-width: 340px;
    }

        .products-features li::before {
            content: "";
            position: absolute;
            left: -12px; 
            top: 6px;
            width: 16px;
            height: 16px;
            background-color: var(--dark); 
            
            display: inline-block;
            margin: 0;
            padding: 0;
        }


    .products-justtext {
        margin: 0;
        max-width: 350px;
        font-family: var(--inter);
        font-weight: var(--light);
        font-size: 16px;
        color: var(--dark);  
    }

    .products-justtext::before {
        content: '';
        display: block;
        width: 40px;
        height: 40px;
        background-image: url(../images/arrow-blue.png);
        transform: rotate(180deg);
        background-repeat: no-repeat;
        background-size: contain;
        margin-bottom: 10px;
        }


/*
    .products-buttons {
    display: flex;
    justify-content: space-between;
    }

        .demo-btn {
            display: flex;
            font-size: 16px;
            background-color: var(--dark);
            color: white;
            height: 40px;
            width: 180px;
            align-items: center;
            border: none;
            border-radius: 4px;
            padding-left: 10px;
            padding-right: 10px;
            gap: 10px;
            transition: var(--tr);
            justify-content: center;
        }

        .demo-btn::before {
            content: '';
            display: block;
            width: 12px;
            height: 15px;
            background-image: url(../images/icon-download.svg);
            background-repeat: no-repeat;
            background-size: contain;
        }

        .demo-btn:hover {
            background-color: var(--accent);
        }

        */

        .fa-btn {
            display: flex;          
            justify-content: center; 
            min-height: 40px;
            width: 120px;
            box-sizing: border-box;
            align-items: center;
            background-color: var(--dark);
            font-weight: var(--regular);
            color: var(--grey-light);
            margin: 0;
            margin-left: 35px;
            border: 1px solid var(--dark); 
            border-radius: 40px;
            transition: background-color 0.4s ease, color 0.4s ease;

            margin-top: auto; 
            margin-bottom: 0; 
        }

        @media (hover: hover) {
            .fa-btn:hover {
                background-color: var(--accent);
                color: white;
                border: 1px solid var(--accent);
                border: var(--accent);
            }
        }








.faq {
    width: 100%; 
    max-width: 1920px;
    margin: 80px auto; 
    margin-bottom: 0;
    background-color: var(--dark);
}

.faq-container {
    display: grid;
    grid-template-columns: 50% 50%; 
    width: 100%; 
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 60px;
    box-sizing: border-box; 
}

    .faq-title {
        grid-column: 1;
        font-family: var(--inter);
        font-weight: var(--light);
        font-size: 80px;
        letter-spacing: -0.04em;
        text-transform: uppercase;
        color: var(--light);
    }

    .accordion-list {
        grid-column: 2; 
        display: flex;
        flex-direction: column;
        margin: 0;
        gap: 10px; 
        align-self: start; 
        margin-bottom: 20px;
        margin-top: 20px;
    }

    .accordion { 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        
    }

    .accordion-header {
        display: flex;
        align-items: center;
        padding: 0;
        justify-content: space-between;
        width: 100%;
        margin: 0 auto;
        margin-bottom: 8px;
        cursor: pointer;
    }

        .question {
            flex-grow: 1;
            padding: 0;
            margin: 0;
            margin-right: 15px;
            width: 100%;
            font-family: var(--inter);
            font-weight: var(--regular);
            font-size: 18px;
            line-height: 167%;
            text-transform: uppercase;
            color: var(--grey);   
             
        }

        @media (hover: hover) {
            .question:hover {
                color: var(--light);
            }
        }

            .question.active {
                color: var(--light);
            }

        .accordion-btn {
            color: var(--grey-light);
            transform: rotate(45deg);
            font-size: 20px;
            text-transform: uppercase;
            width: 40px;
            height: 40px;
            border: none;
            background-color: transparent;
            border-radius: 50%;
            padding: 4px 4px;
            cursor: pointer;
            flex-shrink: 0; 
            display: flex; 
            align-items: center; 
            justify-content: center;
            transition: var(--tr);
        }

        .accordion-btn:hover {
            color: var(--dark);
            background-color: var(--grey-light)
        }



        
        .accordion-btn.active {
            transform: rotate(180deg);

        }


        .answer {
            display: block; 
            margin: 0;
            padding: 0;
            font-weight: var(--light);
            font-size: 16px;
            color: white;
            border-bottom: none;
            line-height: 130%;
            padding-right: 20px;
            

            
            height: 0;
            overflow: hidden;
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            
            
            
        }

        
        .answer.active {
            padding-bottom: 12px;
            border-bottom: 2px solid white;
        }

        .answer-items {
            display: flex;
            align-items: stretch;
            gap: 10px;
            margin-top: 10px;
            margin-bottom: 10px;

        }

        .number-item {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            color: var(--dark);
            background-color:var(--light);
            padding: 0 8px;
            min-width: 20px;
        }

        .answer-item {
            margin: 0;
            padding: 0;
            font-family: var(--inter);
            font-weight: var(--light);
            font-size: 14px;
            color: var(--grey-light);
        }




.footer {
    background-color: var(--background);
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 50% 25% 25%; 
    max-width: 1440px; 
    width: 100%; 
    margin: 20px auto; 
    
}
    .logo-footer {
        grid-column: 1;
        display: flex;
        
        text-align: center;
        width: 247px;
        height: 49px;
        background-image: url(../images/logo-footer-dark.png);
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 1;
        margin-top: auto;
        margin-bottom: auto;
        
    }

    .site {
        grid-column: 1;
        display: block;
        font-weight: var(--light);
        color: var(--grey-light);
    }

    .footer-items {
        grid-column: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        margin: 0;
        
    }

    .footer-politics {
        grid-column: 2;
        font-weight: var(--light);
        font-size: 16px;
        letter-spacing: -0.04em;
        color: var(--dark);
        max-width: 220px;
        margin: 0;
        transition: var(--tr);
    }

    .footer-politics:hover {
        color: var(--accent);

    }


    .footer-contacts {
        grid-column: 2;
        
        font-weight: var(--dark);
        font-size: 16px;
        letter-spacing: -0.04em;
        color: var(--dark);
        margin: 0;
        

    }

    .footer-contacts-pull {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: nowrap;   
        gap: 30px;
        margin-top: 20px;
    }

    .contacts-zone {
         display: flex;
         flex-direction: column;
         justify-content: space-between;
    }


    .footer-mail {
        font-weight: var(--medium);
        font-size: 18px;
        text-transform: uppercase;
        text-decoration: none;
        transition: color 0.2s;
        color: var(--dark);
        margin: 0;
    }


    .footer-year {
        grid-column: 3;
        text-transform: uppercase;
        font-weight: var(--light);
        font-size: 14px;
        letter-spacing: -0.04em;
        color: var(--grey-dark);
        text-align: right;  
        margin-top: auto;  
        
            
    }


       
    
    .modal-overlay2 {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8); 
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .modal-overlay2.active {
        opacity: 1;
        visibility: visible;
    }

    
    .modal-container2 {
        position: relative;
        width: 90%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .modal-content {
        display: grid;
        grid-template-columns: 1fr 1fr; 
        gap: 40px;
        background-color: var(--background); 
        border-radius: 0px;
        padding: 48px 60px;
        position: relative;
        color: var(--dark);
        box-sizing: border-box;
    }

    
    .modal-left {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 60px;
    }

    .modal-logo {
        width: 180px;
        height: 40px;
        background-image: url('../images/logo-footer-dark.png'); 
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left center;
    }

    .modal-contacts {
        display: flex;
        justify-content: flex-start;
        align-items: flex-end;
        flex-wrap: wrap;
        gap: 30px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .contact-header {
        font-size: 16px;
        
        color: var(--grey-dark);
        margin: 0;
    }

   .contact-email {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-email:hover {
    color: var(--accent3);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    display: block;
    width: 28px;
    height: 28px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--tr);
}


.mail-icon {
    background-image: url(../images/finaction/mail-icon.svg); 
    width: 40px;        
    height: 40px;        
    background-repeat: no-repeat;
    background-size: contain; 
    transition: var(--tr);
}

.mail-icon:hover {
    background-image: url(../images/finaction/mail-accent.svg);

}

.tg-icon {
    background-image: url(../images/finaction/tg-icon.svg); 
    width: 40px;        
    height: 40px;        
    background-repeat: no-repeat;
    background-size: contain; 
    transition: var(--tr);
}

.tg-icon:hover {
    background-image: url(../images/finaction/tg-accent.svg);

}


    
    .modal-right {
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .close-button {
        position: absolute;
        top: -16px;
        right: -20px;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        font-size: 24px;
        color: var(--dark);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--tr);
    }

    .close-button:hover {
        color: var(--grey-light);
        background-color: var(--dark)
    }

    .modal-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav-link {
        font-size: 32px;
        text-transform: uppercase;
        font-weight: var(--regular);
        color: var(--dark);
        text-decoration: none;
        transition: color 0.2s;    
        padding: 0;
        margin: 0;
    }

    .nav-link:hover {
        color: #5F7DC1;
    }

    .our-products {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .nav-section {
        font-size: 16px; 
        color: var(--grey-dark);
        margin: 0;
        margin-top: 20px;
        padding: 0;
        font-weight: var(--light);
    }

    .soon-link {
        font-size: 32px;
        text-transform: uppercase;
        font-weight: var(--regular);
        color: var(--grey);  
        padding: 0;
        margin: 0;
    }


    
    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .modal-container {
        position: relative;
        background: white;
        width: 90%;
        max-width: 560px;
        max-height: 90vh;
        overflow-y: auto;
        padding: 45px 40px 50px;
        box-sizing: border-box;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
    }

    
    .corner {
        position: absolute;
        width: 10px;
        height: 10px;
        pointer-events: none; 
        z-index: 1;
    }

    
    .corner-tl {
        top: 16px;
        left: 16px;
        border-top: 2px solid #1e1e2a;
        border-left: 2px solid #1e1e2a;
    }

    
    .corner-tr {
        top: 16px;
        right: 16px;
        border-top: 2px solid #1e1e2a;
        border-right: 2px solid #1e1e2a;
    }

    
    .corner-bl {
        bottom: 16px;
        left: 16px;
        border-bottom: 2px solid #1e1e2a;
        border-left: 2px solid #1e1e2a;
    }

    
    .corner-br {
        bottom: 16px;
        right: 16px;
        border-bottom: 2px solid #1e1e2a;
        border-right: 2px solid #1e1e2a;
    }

    
    .modal-close {
        position: absolute;
        top: 8px;          
        left: 50%;
        transform: translateX(-50%);
        background: none;
        gap: 8px;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #1e1e2a;
        transition: all 0.2s;
        line-height: 1;
        
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        z-index: 10;       
        
    }


    .modal-close:hover {
        color: #fff;
        background-color: #1e1e2a;
    }

    
    .modal-form .form-group {
        margin-bottom: 28px;
    }

    .modal-form input,
    .modal-form textarea {
        width: 100%;
        padding: 10px 0 8px 0;
        border: none;
        border-bottom: 1px solid #ccc;
        font-size: 16px;
        background: transparent;
        outline: none;
        transition: border-color 0.2s;
        font-family: inherit;
        box-sizing: border-box;
    }

    .modal-form input:focus,
    .modal-form textarea:focus {
        border-bottom-color: #1e1e2a;
    }

    .modal-form textarea {
        resize: vertical;
        min-height: 60px;
    }

    .modal-form input::placeholder,
    .modal-form textarea::placeholder {
        color: var(--dark);
        font-weight: normal;
        letter-spacing: -0.06em;
    }

    .politics-item {
        color: var(--accent);
    }

    
    
    .modal-form .checkbox-group {
        margin: 0 0 8px 0;   
    }
    .modal-form .checkbox-group:last-child {
        margin-bottom: 0;    
    }


    .checkbox-label {
        display: flex !important;
        align-items: flex-start;
        gap: 8px;
        cursor: pointer;
        font-weight: normal !important;
        font-size: 14px;
        line-height: 1.6;
        color: var(--grey-dark);
        letter-spacing: -0.06em;
    }

    .checkbox-label input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        flex-shrink: 0;
        accent-color: #1e1e2a;
    }

    
    .submit-btn {
        display: block;
        width: 100%;
        background-color: var(--dark);
        color: white;
        border: none;
        padding: 8px 20px;
        font-size: 16px;
        font-weight: var(--regular);
        cursor: pointer;
        transition: background-color 0.3s;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 20px;
    }

    .submit-btn:hover {
        background-color: #5F7DC1;
    }

    body.modal-open {
        overflow: hidden;
    }

    
    .alert-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10001; 
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .alert-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .alert-container {
        position: relative;
        background: white;
        width: 90%;
        max-width: 380px;
        padding: 45px 32px 36px;
        box-sizing: border-box;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
        text-align: center;
    }

    .alert-icon {
        width: 48px;
        height: 48px;
        margin: 0 auto 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: white;
    }

    .alert-icon.success {
        background-color: #1e1e2a;
    }

    .alert-icon.error {
        background-color: #b3475f;
    }

    .alert-message {
        font-size: 15px;
        line-height: 1.6;
        color: var(--grey-dark);
        letter-spacing: -0.02em;
        margin-bottom: 24px;
    }

    .alert-container .submit-btn {
        margin-top: 0;
    }


    
    .cookie-banner {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999; 
        display: flex;
        justify-content: center;
        padding: 20px;
        box-sizing: border-box;
        transform: translateY(120%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .cookie-banner.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .cookie-banner-inner {
        position: relative;
        background: white;
        width: 100%;
        max-width: 720px;
        padding: 28px 32px;
        box-sizing: border-box;
        box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .cookie-banner-text {
        flex: 1 1 320px;
        font-size: 14px;
        line-height: 1.6;
        color: var(--grey-dark);
        letter-spacing: -0.02em;
        margin: 0;
    }

    .cookie-banner-actions {
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }

    .cookie-btn {
        padding: 8px 20px;
        font-size: 14px;
        font-weight: var(--regular);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        cursor: pointer;
        border: 1px solid #1e1e2a;
        background: transparent;
        color: #1e1e2a;
        transition: background-color 0.3s, color 0.3s;
    }

    .cookie-btn-accept {
        background-color: var(--dark);
        color: white;
        border-color: var(--dark);
    }

    .cookie-btn-accept:hover {
        background-color: #5F7DC1;
        border-color: #5F7DC1;
    }

    .cookie-btn-decline:hover {
        background-color: #1e1e2a;
        color: white;
    }




@media (max-width: 1220px) {
        
    .bracket-down {
        bottom: 210px;
    }

}




@media (max-width: 1080px) {

    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero {
        padding-left: 30px;
    }

    .bracket-up {
        left: 10px;
    }

    .bracket-down {
        left: 530px;
        bottom: 210px;
    }

    .connect-btn {
        width: 110px;
    }

    .trust-title {
        font-size: 60px;
        max-width: 460px;
    }

    .trust-title::after {
        width: 60px;
        height: 60px;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }    

    .trust-textblock {
        grid-column: 1;
    }

    .trust-textblock2 {
        grid-column: 2;
    }

    .trust-textblock3 {
        margin-left: 0;
    }


    .products-header {
    display: block;
    margin-top: 80px;
    margin-bottom: 40px;    
    }

    .products-item2 {
        display: block;
        max-width: 100%;
        margin-top: 20px;
    }

    .products-title {
        display: block;
        max-width: 460px;
        font-size: 60px;
    }

    .products-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 30px 30px;
        margin: 0;

    }

    .products-item3 {
        display: none;
    }

    .products-justtext::before {
        display: none;
    }

    .full-year {
        font-size: 0;
    }

    .faq-container {
        padding: 20px 30px;
    }

    .question {
        font-size: 14px;
    }


}



@media (max-width: 800px) {

    .footer-year {
        grid-column: 1;
        text-align: left;
    }

        .full-year {
            font-size: 14px;
        }

}





@media (max-width: 768px) {

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }


    .connect-btn {
        display: none;
    }


    .hero {
    padding-left: 24px;
    }

    .products-header {
        margin-top: 60px;  
}

    .question {
        font-size: 10px;
    }

    .answer {
        font-size: 14px;
    }

    .answer-item {
        font-size: 14px;
    }

    .faq-container {
        padding: 20px 24px;
    }


}


@media (max-width: 730px) {

    .hero {
        height: 70vw;
    }

    .bracket-up {
        left: 10px;
        top: 50px;
        width: 50px; 
        height: 50px; 
    }

    .bracket-down {
        left: 420px;
        bottom: 0;
        top: 230px;
        width: 50px; 
        height: 50px;
    }


    .hero-text {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 10px; 
    }

    .hero-title.loaded {
        font-size: 60px; 
    }


    .hero-description {
        max-width: 380px;
        font-size: 14px;
    }


    .line {
    transform: translate(-50%, -50%);   
        opacity: 1;
    }


    .transition-text {
        font-size: 14px;
        max-width: 460px;
        opacity: 1;
        transform: translateY(0);
    }


    .trust-title {
        padding-left: 24px;
    }

    .products-box {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px 15px;
    }

    .products-item {
        padding: 15px 15px;
    }

    .products-item3 {
        display: none;
    }

    .products-name {
        font-size: 30px;
    }

    .products-features li {
        font-size: 14px;
    }

    .products-features li::before {
        width: 12px;
        height: 12px;
    }

    .footer-politics {
        font-size: 14px;
         max-width: 180px;
    }

    .footer-contacts {
        font-size: 14px;
    }

    .footer-mail {
        font-size: 12px;
    }

    .footer-year {
        font-size: 0;
    }

    .full-year {
        font-size: 0;
    }

    .mail-icon {  
        width: 30px;        
        height: 30px;        
    }

    .tg-icon {  
        width: 30px;        
        height: 30px;        
    }

    .footer-contacts-pull {
        gap: 20px;
    }



    
    .modal-content {
        grid-template-columns: 1fr;
        margin: 0 auto;
        align-items: center;
        padding-top: 60px;
        padding-bottom: 60px;
       
    }

    
    .modal-right {
        order: 1;
    }

    
    .modal-left {
        order: 2;
        gap: 40px;
    }

    .close-button {
        top: -40px;
        left: 50%; 
        transform: translateX(-50%);
    }

    .nav-link {
        font-size: 24px;
    }

    .modal-logo {
        display: none;
    }

    .soon-link {
        font-size: 24px;
    }



}



@media (max-width: 600px) {

    .header {
        padding-top: 16px;
        padding-bottom: 16px;

    }

    .presentation-btn {
        height: 30px;
        width: 140px;
        font-size: 12px;
    }

    .products-btn {
        max-width: 140px;
        font-size: 12px;
        padding: 8px 8px;
        margin-top: 0;
    }

    .transition-text {
        font-size: 12px;
        max-width: 360px;
    }



    .big-number {
        font-size: 60px;
    }

    .products-name {
        font-size: 20px;
    }

    .products-features {
        line-height: 100%;
    }

    .products-features li {
        font-size: 12px;
        padding-left: 10px;
    }

    .products-features li::before {
        width: 10px;
        height: 10px;
    }

    .fa-btn {
        margin-left: 20px;
        min-height: 30px;
        width: 100px;
        font-size: 12px;
    }
    
    .footer-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr)
    }

    .footer-year {
        grid-column: 1;
        display: flex;
        margin: 0;
    }

    
    .checkbox-label {
        font-size: 12px;
    }

    .faq-container {
        grid-template-columns: 1fr; 
        padding: 20px 20px;         
    }

    .faq-title {
        grid-column: auto;           
        font-size: 48px;             
        padding-bottom: 20px;
    }

    .accordion-list {
        grid-column: auto;           
        margin-top: 20px;            
    }

    .accordion-btn {
        font-size: 16px;
        width: 20px;
        height: 20px;
    }

    .accordion-list {
        margin-bottom: 0px;
        margin-top: 0px;
    }



}


@media (max-width: 500px) {

    .header {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .central-btn {
        width: 25px;           
        height: 25px;          
        padding-top: 6px;      
        padding-bottom: 6px;   
    }

    .nav-line01,
    .nav-line02,
    .nav-line03 {
        width: 25px;           
    }

    
    .central-btn:hover #nav-line01 {
        transform: translateY(4px);  
    }

    .central-btn:hover #nav-line03 {
        transform: translateY(-4px); 
    }



    .logo {
        width: 62px;
        height: 12px;
    }

    .presentation-btn {
        width: fit-content;
        font-size: 12px;
        background-color: var(--background);
        color: var(--dark);
        padding: 0;
        border-radius: 0;
        gap: 0;
    }

    .presentation-btn::before {
        content: '';
        display: block;
        width: 12px;
        height: 15px;
        background-image: url(../images/icon-download-black.svg);
        background-repeat: no-repeat;
        background-size: contain;
        padding-right: 8px;
    }


    .bracket-up {
        left: 0;
        top: 40px;
        width: 30px; 
        height: 30px; 
    }

    .bracket-down {
        left: 300px;
        bottom: 0;
        top: 190px;
        width: 30px; 
        height: 30px;
    }

    .hero-text {
        padding-top: 80px;
        padding-bottom: 60px;
        padding-left: 20px;
    }

    .hero-title {
        font-size: 10px; 
    }

    .hero-title.loaded {
        font-size: 40px; 
    }

    .hero-description {
        max-width: 310px;
        font-size: 12px;
    }


   
    .line {
        width: 1px;
        height: 60px;
        bottom: -60px;
    }

    .transition-text {
        font-size: 10px;
        max-width: 280px;
        margin: 40px auto;
    }

    .trust-title {    
        font-size: 48px;
        max-width: 300px;
        padding-left: 24px;
    }

    .trust-title::after {
        width: 40px;
        height: 40px;
    }

    .trust-container {
        margin-top: 0px;
        row-gap: 20px;
    }

    .trust-container2 {
        margin-top: 30px;
    }

    .trust-textblock {
        margin-top: 30px;
    }

    .trust-textblock2 {
        margin-top: 30px;
    }

    .number-text {
            font-size: 14px;
    }

    .big-number {
        font-size: 48px;
    }

    .number-description {
        font-size: 12px;
    }

    .products-header {
        margin-top: 40px;  
    }

    .products-justtext {
        font-size: 12px;
    }

    .products-title {
        font-size: 48px;
        max-width: 360px;
    }

    .products-box {
        grid-template-columns: 1fr;
    }

.products-item {
    max-height: 500px;
    max-width: 500px;
    padding: 30px 30px;
}


    .products-features li {
        width: 100%;
    }

    
    .form-text {
        font-size: 12px;
    }


    .logo-footer {
        width: 165px;
        height: 33px;
    }

    .footer-politics {
        font-size: 12px;
    }

    .footer-contacts {
        font-size: 12px;
    }

    .footer-mail{
        font-size: 12px;
    }

    .mail-icon {  
        width: 20px;        
        height: 20px;        
    }

    .tg-icon {  
        width: 20px;        
        height: 20px;        
    }

    .footer-contacts-pull {
        gap: 10px;
    }

    .social-icons {
        gap: 10px;
    }



}


@media (max-width: 430px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero {
        padding-left: 15px;
    }

    .bracket-up {
        left: -10px;
        top: 20px;
        width: 30px; 
        height: 30px; 
    }

    .bracket-down {
        left: 260px;
        bottom: 0;
        top: 160px;
        width: 30px; 
        height: 30px;
    }


    .hero-text {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 10px; 
         font-weight: var(--light);
    }

    .hero-title.loaded {
        font-size: 40px; 
    }

    .hero-description {
        max-width: 260px;
        font-size: 10px;
    }
 
    .transition-text {
        max-width: 250px;
    }


    .products-btn {
    max-width: 140px;
    font-size: 10px;
    padding: 8px 8px;
    margin-top: 0;
    }

    .trust-title {
        font-size: 40px;
    }


    .trust-textblock3 {
        margin-right: 0;
    }


    .number-text {
            font-size: 12px;
    }

    .big-number {
        font-size: 40px;
    }

    .number-description {
        font-size: 10px;
    }

    .products-title {
        font-size: 40px;
        max-width: 300px;
    }

    .products-header {
        margin-top: 30px; 
        margin-bottom: 20px;   
    }

    .products-item2 {
        margin-top: 10px; 
    }


    .faq-container {
        padding: 20px 15px;
    }


    
    .modal-content {
        padding: 48px 30px;
    }

    .modal-contacts {
        gap: 10px;
    }


    
    .accordion:has(.answer.active) .accordion-header {
        background-color: var(--grey-light);
        color: var(--dark);
    }

    .accordion:has(.question.active) .question {
        color: var(--dark);
        padding-left: 4px;
    }

        .accordion:has(.question.active) .accordion-btn {
        color: var(--dark);
    }


    .cookie-banner-text {
        font-size: 12px; 
    }

    .cookie-btn-decline {
        font-size: 12px;
        padding: 8px 10px;
    }

    .cookie-btn-accept {
        font-size: 12px;
        padding: 8px 10px;
    }


}


@media (max-width: 360px) {

 
    .hero-text {
        padding-top: 60px;
        padding-bottom: 30px;
    }

    .hero-title.loaded {
        font-size: 36px; 
    }

    .hero-description {
        font-size: 8px;
        max-width: 220px;
    }

    .trust-title {    
        font-size: 40px;
    }

    .bracket-down {
        left: 240px;
        bottom: 0;
        top: 140px;
        width: 30px; 
        height: 30px;
    }

    .products-btn {
        margin-top: 6px;
    }

    .bracketup-black {
        width: 30px;  
        height: 30px;
    }

    .bracketdown-black {
        width: 30px;  
        height: 30px;
    }

}