/* reset css */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* colors */
:root {
    --main-color: #FF5107;
    --btn-hover: #372C58;
    --background: #0B193F;
    --text: #E2F0F7;
}

h2 {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
}


body {
    font-family: "Montserrat", sans-serif;
    /* line-height: 1; */
}

.wrapper{
    max-width: 1920px;
    width: 100%;
    margin: 0 auto;
}

.center{
    max-width: 1462px;
    width: 100%;
    margin: 0 auto;
}

.head-background{
    background-image: url('../images/background-head.webp');
    padding-top: 15px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Header */
header {
    padding: 0 33px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0B193F;
    margin-top: 15px;
    border-radius: 60px;
    position: relative; 
    z-index: 100;
    gap: 5%;
}

header a {
    text-decoration: none;
    color: #FFFFFF;
}

.contacts a img,
.tg-mobile a img{
    margin-right: 13px;
}

header .menu ul {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}

header .menu ul a {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    transition: 0.3s;
}

.contacts {
    display: flex;
    align-items: center;
    gap: 35px;
}

.contacts a,
.tg-mobile a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

header .menu ul a:hover{
    text-shadow: 1px 0 0 currentColor;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img{
    height: 60px;
    width: auto;
}

.logo h6{
    text-align: center;
}

.logo h6:hover{
    text-shadow: 1px 0 0 currentColor;
}

header nav {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 15%;
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
    padding: 10px; 
    z-index: 1001;
}

.tg-mobile {
    display: none; 
    cursor: pointer;
    padding: 10px;
    z-index: 1001; 
}

.burger img {
    width: 28px;
    height: auto;
    display: block;
}

/* Стили для мобильного меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #100A28;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    box-sizing: border-box;
    color: #FFFFFF;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    overflow-y: auto; 
}

.mobile-menu.active {
    transform: translateX(0); 
}

.mobile-menu-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px; 
}

.logo-mobile svg {
    display: block;
}

.mobile-menu-tg {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 15px; 
    font-weight: 500;
}

.mobile-menu-tg img {
    width: 28px;
    height: 28px;
    margin-right: 8px;
}

.mobile-menu-close {
    cursor: pointer;
    padding: 5px; 
}


.mobile-menu-nav {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    width: 100%;
}

.mobile-menu-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: center;
}

.mobile-menu-nav li {
    margin-bottom: 28px; 
}

.mobile-menu-nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 20px; 
    font-weight: 400; 
    transition: color 0.2s;
}
.mobile-menu-nav a:hover {
    color: #cccccc; 
}

.mobile-menu-nav a.mobile-nav-link:first-child { 
    font-weight: 700; 
}

.mobile-menu-email {
    margin-bottom: 40px; 
    text-align: center;
}

.mobile-menu-email a {
    display: inline-flex; 
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
}

.mobile-menu-email .mail-icon-svg { 
    width: 22px;
    height: auto;
    margin-right: 10px;
}
.mobile-menu-email .mail-icon-svg path {
    stroke: white; 
}


.mobile-menu-cta {
    width: 100%;
    text-align: center; 
    margin-top: auto; 
    padding-bottom: 20px; 
}

.mobile-menu-cta a.btn-cta {
    display: inline-block;
    background-color: #FF6B00; 
    color: #FFFFFF;
    padding: 16px 30px; 
    border-radius: 30px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    min-width: 280px;
    box-sizing: border-box;
    transition: background-color 0.3s;
}

.mobile-menu-cta a.btn-cta:hover {
    background-color: #e65c00;
}



/* section head-content */
.head-content{
    display: flex;
    justify-content: space-around;
}

.head-content .text-content {
    width: 50%;
    margin-top: 126px;
}

.head-content .text-content h1{
    color: var(--text);
    font-size: 64px;
    font-weight: 600;
}

.head-content .text-content h3{
    color: var(--text);
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 500;
}

.head-content .text-content p{
    color: var(--text);
    font-size: 20px;
    margin-bottom: 56px;
}

.head-content button,
.try-free button,
.tariffs .plans button {
    background-color: var(--main-color);
    padding: 19px 33px;
    border-radius: 60px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 18px;
    cursor: pointer;
    border: 1px solid var(--btn-hover);
    transition: 0.5s;
}

.head-content button:hover,
.try-free button:hover,
.tariffs .plans button:hover{
    background-color: var(--btn-hover);
    border: 1px solid var(--main-color);
}

.head-content .images-content{
    margin-top: 42px;
    margin-bottom: 81px;
}

/* section 1 */
.sec1{
    background-image: url('../images/sec1-background.png');
    padding-top: 41px;
    padding-bottom: 68px;
    color: var(--text);
    text-align: center;
}

.sec1 h3{
    font-size: 18px;
    margin-top: 12px;
    margin-bottom: 86px;
}

.sec1 .sec1-items{
    display: flex;
    justify-content: space-around;
    gap: 106px;
}

.sec1 .sec1-items .sec1-item .sec1-icon{
    width: 126px; 
    height: 120px;
    border-radius: 50%;
    border: 1.5px solid var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-sizing: border-box;
    flex-shrink: 0;
}

.sec1 .sec1-items .sec1-item img{
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.sec1 .sec1-items .sec1-item h4{
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: 30px;
    font-size: 700;
}

.sec1 .sec1-items .sec1-item p{
    font-size: 16px;
}

/* case-conatiner */
.case-conatiner{
    background-image: url('../images/sec2-background.webp');
    padding-top: 56px;
    padding-bottom: 42px;
    color: var(--text);
    text-align: center;
}

.decor-line {
    margin-top: 50px;
    margin-bottom: 106px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        #372C58 45%,
        var(--main-color) 45%,
        var(--main-color) 55%,
        #372C58 55%
    );
}

.case-conatiner .case-content{
    display: flex;
    align-items: center;
}

.case-conatiner a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.case-conatiner .video-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--main-color);  
    border-radius: 16px;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: none;
    height: 100%;
    transition: 0.3s;
}

.case-conatiner .video-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-conatiner .video-btn__text {
  text-align: left;
  line-height: 1.2;
  font-size: 16px;
  color: #fff;
}

.video-btn:hover,
.video-btn:focus {
  background: #372C58;
}


/* Instructions Section */
.instructions{
    background-image: url('../images/background-instructions.webp');
    padding-top: 18px;
    padding-left: 18px;
    padding-bottom: 56px;
    color: var(--text);
}

.instruction-items{
    display: flex;
    gap: 20px;
    overflow: scroll;
}

.carousel-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.instruction-item{
    width: 410px;
    padding: 30px;
    background-color: #0C0520;
}

.instruction-item img{
    margin-top: 25px;
    width: 100%;
}

.instruction-item-text{
    display: flex;
    gap: 30px;
}

.instruction-item-text h5{
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%;
    text-align: center;   
    font-size: 16px; 
    color: #FFFFFF;
    box-sizing: border-box;
}

.instruction-item-text p{
    font-size: 16px;
    color: var(--text);
}




/* try-free section */
.try-free{
    background-image: url('../images/try-free-background.png');
    padding-top: 72px;
    padding-bottom: 124px;
    color: var(--text);
}

.try-free h2 span{
    color: #00F0A8;
}

.try-free .try-now{
    color: #F4F8FB;
    font-size: 24px;
    line-height: 58px;
    margin-bottom: 52px;
    text-align: center;
}

.try-free-content{
    display: flex;
    justify-content: center;
    gap: 70px
}

.try-free .qr-container{
    display: flex;
    gap: 32px;
}

.try-free .qr-container .arrow p{
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #F4F8FB;
    padding: 18px 22px;
    background-color: #201934;
    border-radius: 15px;
}

.try-free .qr-container .arrow .down{
    display: none;
}

.try-free .qr-container .arrow img{
    margin-top: 20px;
    margin-left: 80px;
}

.try-free .qr-button{
    text-align: center;
}

.try-free .qr-button p{
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 30px;
}

/* tariffs container */
.tariffs{
    background-image: url('../images/background-tariffs.png');
    padding-top: 15px;
    padding-bottom: 77px;
    color: var(--text);
    text-align: center;
}

.tariffs-example {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-items: center;
    margin: 20px 0;
}

.tariffs-example .without-background{
    font-weight: 600;
    font-size: 18px;
    line-height: 58px;
    padding: 20px 50px;
    border: 1px solid #15304E;
    border-radius: 15px;
}

.tariffs-example .with-background{
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
    padding: 32px 50px;
    background-color: #201934;
    border-radius: 15px;
    align-self: center;
}

.tariffs .tariffs-content{
    display: flex;
    gap: 70px;
}

.tariffs .plans{
    display: flex;
    gap: 24px;
}

.tariffs .plans .plan{
    padding: 40px 32px 35px 32px;
    border: 1px solid var(--main-color);
    border-radius: 20px;
    position: relative;
}

.tariffs .plans .plan h4{
    font-size: 20px;
    line-height: 58px;
    color: var(--text);
}

.tariffs .plans .plan h5 span{
    font-size: 24px;
    font-weight: 700;
    line-height: 58px;
}

.tariffs .plans .plan h5{
    font-size: 18px;
    margin-top: 13px;
    color: var(--text);
}

.tariffs .plans .plan p{
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
}

.tariffs .plans .plan .plan-sale {
    position: absolute;
    top: -5%;
    left: 10%;
    background-color: #7C00CF; 
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 1;
}

/* founder-section */
.founder-section{
    background-image: url('../images/founder-background.png');
    padding-top: 40px;
    padding-bottom: 80px;
    color: var(--text);
    text-align: center;
}

.founder-section h3{
    font-size: 24px;
    line-height: 58px;
}

.founder-section .decor-line {
    margin-top: 30px;
}

.founder-section .menu ul a {
    font-size: 20px;
}

.about-founder{
    border-radius: 20px;
    background: linear-gradient(135deg, #341056 0%, #0C0520 100%);
    color: var(--text);
    text-align: center;
    display: flex;
    align-items: center;
    padding-left: 82px;
    margin-bottom: 46px;
    width: auto;
}

.about-founder p{
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
}

.founder-image {
    background-image: url('../images/Ellipse 14.webp');
}


@media (max-width: 1550px){
    .center{
        width: 95%;
        max-width: 100%;
    }
}

@media (max-width: 1320px){
    header{
        width: 90% !important;
    }

    .case-content{
        justify-content: center;
        flex-direction: column;
    }

    .wrapper{
        max-width: 1920px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 1200px){
    .tariffs-content{
        justify-content: center;
        flex-direction: column;
    }

    .tariffs-content .plans{
        justify-content: center;
    }

    .tariffs-example {
        margin: 0;
    }

    .about-founder {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .about-founder .founder-text{
        width: 95%;
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .about-founder .founder-image{
        width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }
}

@media(max-width: 990px){
    header .menu ul {
        display: none;
    }

    header .menu svg{ 
        margin-left: 20px;
    }

    header .contacts { 
        display: none;
    }

    .burger {
        display: block; 
    }

    .tg-mobile{
        display: block;
    }

    header {
        padding: 0 20px; 
    }
}

@media (max-width: 960px){
    .tariffs-example .without-background{
        line-height: 20px;
    }
}

@media (max-width: 930px){
    .head-content{
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .head-content .text-content {
        width: 100%;
        margin-top: 100px;
    }

    .sec1 .sec1-items{
        justify-content: center;
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .head-content .text-content h1{
        font-size: 52px;
    }

    .head-content .text-content h3{
        font-size: 26px;
    }

    .head-content .text-content p{
        font-size: 18px;
    }

    h2 {
        font-size: 32px;
    }

    .sec1 h3{
        margin-bottom: 40px;
    }

    .try-free-content{
        justify-content: center;
        flex-direction: column;
        gap: 70px;
    }

    .try-free .qr-container{
       justify-content: center;
    }

    .tariffs-example .without-background{
        padding: 10px 20px;
    }

    .tariffs-example .with-background{
        padding: 22px 20px;
    }
}

@media (max-width: 630px){
    .case-content-img img{
        width: 100%;
    }

    .about-founder .founder-image img{
        width: 100%;
    }

    footer .contacts{
        justify-content: center;
    }
}


@media (max-width: 480px){
    .head-content .text-content h1{
        font-size: 48px;
    }

    .head-content .text-content h3{
        font-size: 24px;
    }

    .head-content .text-content p{
        font-size: 16px;
    }

    h2 {
        font-size: 28px;
    }

    .head-content .text-content {
        margin-top: 70px;
    }

    .tariffs-example .without-background{
        font-size: 14px;
        padding: 5px;
    }

    .tariffs-example .with-background{
        font-size: 14px;
        padding: 5px;
    }   

    .tariffs .plans{
        justify-content: center;
        flex-direction: column;
    }

    .tariffs .plans .plan{
        padding: 20px;
    }

    .tariffs .plans .plan .plan-sale {
        left: 30%;
    }

    .try-free .qr-container{
        justify-content: center;
        flex-direction: column;
    }

    .try-free .qr-container .arrow{
        text-align: center;
    }

    .try-free .qr-container .arrow .down{
        display: block;
        margin: auto;
        margin-top: 15px;
    }

    .try-free .qr-container .arrow .right{
        display: none;
    }
}

@media (max-width: 400px){
    .tg-mobile{
        display: none;
    }

    header{
        width: 80% !important;
    }

    .tariffs .plans .plan .plan-sale {
        left: 28%;
    }
}