/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Montserrat',sans-serif;

    background:#0f1012;

    color:#ffffff;

    line-height:1.6;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font-family:inherit;

}

input,
textarea,
select{

    font-family:inherit;
    outline:none;

}

/*==================================================
ROOT
==================================================*/

:root{

    --bg:#0f1012;

    --bg2:#17191d;

    --card:#202329;

    --orange:#ff8d22;

    --green:#8dc63f;

    --white:#ffffff;

    --gray:#b9bcc2;

    --border:#32353b;

    --shadow:0 12px 40px rgba(0,0,0,.35);

    --radius:18px;

    --transition:.35s;

}

/*==================================================
CONTAINER
==================================================*/

.container{

    width:min(1240px,92%);

    margin:auto;

}

/*==================================================
SECTION
==================================================*/

section{

    padding:100px 0;

}

.section-title{

    font-size:42px;

    font-weight:800;

    margin-bottom:60px;

    text-align:center;

}

.orange{

    color:var(--orange);

}

.green{

    color:var(--green);

}

/*==================================================
BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:16px 34px;

    border-radius:999px;

    font-weight:700;

    transition:.3s;

}

.btn-orange{

    background:var(--orange);

    color:#fff;

}

.btn-orange:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(255,141,34,.35);

}

.btn-green{

    background:var(--green);

    color:#fff;

}

.btn-green:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 30px rgba(141,198,63,.35);

}

.btn-outline{

    border:2px solid var(--border);

    color:#fff;

}

.btn-outline:hover{

    background:var(--orange);

    border-color:var(--orange);

}

/*==================================================
HEADER
==================================================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    background:rgba(15,16,18,.82);

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.header__wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:82px;

}

.logo{

    font-size:30px;

    font-weight:900;

}

.logo__orange{

    color:var(--orange);

}

.logo__green{

    color:var(--green);

}

.nav ul{

    display:flex;

    gap:34px;

}

.nav a{

    font-weight:600;

    transition:.3s;

}

.nav a:hover{

    color:var(--orange);

}

/*==================================================
HERO
==================================================*/

.hero{

    padding-top:170px;

    padding-bottom:120px;

}

.hero__wrapper{

    display:grid;

    grid-template-columns:1.15fr .85fr;

    align-items:center;

    gap:70px;

}

.hero__subtitle{

    display:inline-block;

    background:rgba(255,255,255,.06);

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:28px;

    color:var(--gray);

    letter-spacing:2px;

    font-size:13px;

}

.hero h1{

    font-size:32px;

    line-height:1.05;

    font-weight:900;

    margin-bottom:28px;

}

.hero__lead{

    font-size:26px;

    font-weight:600;

    margin-bottom:24px;

    color:#ececec;

}

.hero__description{

    color:var(--gray);

    font-size:18px;

    max-width:650px;

    margin-bottom:40px;

}

.hero__buttons{

    display:flex;

    gap:18px;

    margin-bottom:45px;

}

.hero__advantages{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.advantage{

    display:flex;

    align-items:center;

    gap:12px;

    color:var(--gray);

}

.circle{

    width:12px;

    height:12px;

    border-radius:50%;

    background:var(--green);

    flex-shrink:0;

}

.hero__image{

    position:relative;

}

.hero__image img{

    width:100%;

    border-radius:30px;

    box-shadow:var(--shadow);

}

/*==================================================
SERVICES
==================================================*/

.services{

    background:var(--bg2);

}

.services__grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.service{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    padding:36px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.service::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        var(--orange),
        var(--green)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.service:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

    border-color:transparent;

}

.service:hover::before{

    transform:scaleX(1);

}

.service__icon{

    width:72px;
    height:72px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#2b2f35;

    font-size:30px;

    margin-bottom:25px;

}

.service h3{

    font-size:24px;

    margin-bottom:18px;

    font-weight:800;

}

.service p{

    color:var(--gray);

    font-size:16px;

    line-height:1.7;

}



/*==================================================
PORTFOLIO
==================================================*/

.portfolio{

    background:#111214;

}

.portfolio__list{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-bottom:50px;

}

.track{

    display:grid;

    grid-template-columns:70px 250px 1fr 90px;

    align-items:center;

    gap:30px;

    padding:24px 28px;

    border-radius:18px;

    border:1px solid var(--border);

    background:var(--card);

    transition:.3s;

}

.track:hover{

    transform:translateY(-4px);

    border-color:var(--orange);

    box-shadow:var(--shadow);

}

.track__play{

    width:54px;

    height:54px;

    border-radius:50%;

    background:var(--orange);

    color:#fff;

    font-size:18px;

    transition:.3s;

}

.track:hover .track__play{

    transform:scale(1.08);

}

.track__info h3{

    font-size:21px;

    font-weight:700;

    margin-bottom:6px;

}

.track__info span{

    color:var(--gray);

    font-size:15px;

}

.track__wave{

    display:flex;

    align-items:center;

}


.waveform{

    width:100%;

    height:70px;

}

.track__wave{

    width:100%;

}

.track__time{

    text-align:right;

    color:var(--gray);

    font-weight:700;

    font-size:18px;

}

.portfolio__button{

    text-align:center;

}



/*==================================================
PROCESS
==================================================*/

.process{

    background:var(--bg2);

}

.process__timeline{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.process__line{

    position:absolute;

    top:36px;

    left:0;

    width:100%;

    height:3px;

    background:linear-gradient(
        90deg,
        var(--orange),
        var(--green)
    );

    z-index:0;

}

.step{

    position:relative;

    z-index:1;

    background:var(--card);

    border-radius:20px;

    padding:35px;

    border:1px solid var(--border);

    transition:.3s;

}

.step:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.step__number{

    width:72px;

    height:72px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--orange),
        var(--green)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:24px;

    font-weight:900;

    margin-bottom:25px;

}

.step h3{

    margin-bottom:18px;

    font-size:23px;

    font-weight:700;

}

.step p{

    color:var(--gray);

    line-height:1.8;

}

/*==================================================
ABOUT
==================================================*/

.about{

    background:#111214;

}

.about__wrapper{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:center;

}

.about__text{

    font-size:18px;

    color:var(--gray);

    margin-bottom:24px;

    line-height:1.9;

}

.about__text strong{

    color:var(--orange);

}

.about__features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:45px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:14px;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:14px;

    padding:18px 20px;

    transition:.3s;

}

.feature:hover{

    transform:translateY(-4px);

    border-color:var(--orange);

}

.feature__icon{

    width:34px;

    height:34px;

    border-radius:50%;

    background:var(--green);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    font-size:14px;

    font-weight:700;

}

.about__image{

    position:relative;

}

.about__image img{

    width:100%;

    border-radius:24px;

    box-shadow:var(--shadow);

}



/*==================================================
REVIEWS
==================================================*/

.reviews{

    background:var(--bg2);

}

.reviews__slider{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.review{

    position:relative;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px 35px;

    transition:.35s;

}

.review:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.review__quote{

    font-size:70px;

    color:var(--orange);

    line-height:1;

    margin-bottom:18px;

    font-family:Georgia,serif;

}

.review p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:35px;

}

.review__author{

    display:flex;

    align-items:center;

    gap:16px;

}

.review__author img{

    width:64px;

    height:64px;

    object-fit:cover;

    border-radius:50%;

}

.review__author strong{

    display:block;

    margin-bottom:5px;

    font-size:17px;

}

.review__author span{

    color:var(--gray);

    font-size:14px;

}

.reviews__dots{

    display:flex;

    justify-content:center;

    gap:14px;

    margin-top:40px;

}

.dot{

    width:14px;

    height:14px;

    border-radius:50%;

    background:#555;

    transition:.3s;

}

.dot.active{

    background:var(--orange);

    transform:scale(1.3);

}



/*==================================================
FAQ
==================================================*/

.faq{

    background:#111214;

}

.faq__list{

    max-width:950px;

    margin:auto;

}

.faq__item{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:16px;

    margin-bottom:20px;

    overflow:hidden;

    transition:.3s;

}

.faq__item:hover{

    border-color:var(--orange);

}

.faq__question{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:28px 32px;

    color:#fff;

    font-size:20px;

    font-weight:700;

}

.faq__question span{

    font-size:34px;

    color:var(--orange);

}

.faq__answer{

    display:none;

    padding:0 32px 30px;

}

.faq__item.active .faq__answer{

    display:block;

}

.faq__answer p{

    color:var(--gray);

    line-height:1.9;

}



/*==================================================
CTA
==================================================*/

.cta{

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #17191d,
        #202329
    );

}

.cta__box{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:var(--card);

    border-radius:28px;

    border:1px solid var(--border);

    padding:70px;

    box-shadow:var(--shadow);

}

.cta__box h2{

    font-size:46px;

    margin-bottom:24px;

    font-weight:800;

}

.cta__box p{

    font-size:20px;

    color:var(--gray);

    margin-bottom:40px;

}

/*==================================================
CONTACTS
==================================================*/

.contacts{

    background:var(--bg2);

}

.contacts__wrapper{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:60px;

    align-items:start;

}

.contacts__info h2{

    font-size:42px;

    font-weight:800;

    margin-bottom:24px;

}

.contacts__info p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:40px;

}

.contacts__list{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contacts__list li{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:18px;

    color:var(--gray);

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:22px;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:22px;

    padding:45px;

    box-shadow:var(--shadow);

}

.contact-form input,

.contact-form textarea{

    width:100%;

    background:#2a2d33;

    border:1px solid #3b3f47;

    border-radius:14px;

    padding:18px 20px;

    color:#fff;

    font-size:16px;

    transition:.3s;

}

.contact-form textarea{

    resize:vertical;

    min-height:180px;

}

.contact-form input::placeholder,

.contact-form textarea::placeholder{

    color:#8b8e95;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:var(--orange);

    box-shadow:0 0 0 4px rgba(255,141,34,.15);

}

.contact-form button{

    align-self:flex-start;

}



/*==================================================
FOOTER
==================================================*/

.footer{

    background:#0b0c0e;

    border-top:1px solid rgba(255,255,255,.06);

    padding:60px 0 30px;

}

.footer__top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:30px;

    margin-bottom:45px;

}

.footer__logo{

    font-size:32px;

    font-weight:900;

}

.footer__menu{

    display:flex;

    flex-wrap:wrap;

    gap:28px;

}

.footer__menu a{

    color:var(--gray);

    transition:.3s;

}

.footer__menu a:hover{

    color:var(--orange);

}

.footer__bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:25px;

    padding-top:35px;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer__bottom p{

    color:#7c7f86;

    font-size:15px;

}


/* new footer_social */
.footer__social{

    display:flex;

    gap:16px;

    align-items:center;

}

.footer__social a{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#202329;

    color:#fff;

    font-size:22px;

    transition:.3s;

    text-decoration:none;

}

.footer__social a:hover{

    transform:translateY(-5px);

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero__content,

.hero__image,

.service,

.track,

.step,

.review,

.feature,

.cta__box{

    animation:fadeUp .8s ease both;

}

.service:nth-child(2){animation-delay:.08s;}
.service:nth-child(3){animation-delay:.16s;}
.service:nth-child(4){animation-delay:.24s;}
.service:nth-child(5){animation-delay:.32s;}

.step:nth-child(2){animation-delay:.05s;}
.step:nth-child(3){animation-delay:.10s;}
.step:nth-child(4){animation-delay:.15s;}
.step:nth-child(5){animation-delay:.20s;}
.step:nth-child(6){animation-delay:.25s;}

.review:nth-child(2){animation-delay:.08s;}
.review:nth-child(3){animation-delay:.16s;}



/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0d0e10;

}

::-webkit-scrollbar-thumb{

    background:var(--orange);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#ff9d44;

}

/*==================================================
ADAPTIVE
==================================================*/


/* ==========================
1200px
========================== */

@media (max-width:1200px){

.hero h1{

    font-size:60px;

}

.hero__wrapper{

    gap:50px;

}

.about__wrapper{

    grid-template-columns:1fr 420px;

}

.contacts__wrapper{

    grid-template-columns:360px 1fr;

}

.process__timeline{

    grid-template-columns:repeat(2,1fr);

}

.process__line{

    display:none;

}

}



/* ==========================
992px
========================== */

@media (max-width:992px){

.header__wrapper{

    height:74px;

}

.nav{

    display:none;

}

.hero{

    padding-top:130px;

}

.hero__wrapper{

    grid-template-columns:1fr;

    text-align:center;

}

.hero__description{

    margin-left:auto;

    margin-right:auto;

}

.hero__buttons{

    justify-content:center;

}

.hero__advantages{

    grid-template-columns:1fr;

    max-width:420px;

    margin:auto;

}

.hero__image{

    order:-1;

    max-width:500px;

    margin:auto;

}

.services__grid{

    grid-template-columns:repeat(2,1fr);

}

.about__wrapper{

    grid-template-columns:1fr;

}

.about__image{

    max-width:700px;

    margin:auto;

}

.reviews__slider{

    grid-template-columns:1fr;

}

.contacts__wrapper{

    grid-template-columns:1fr;

}

.footer__top{

    flex-direction:column;

    text-align:center;

}

.footer__bottom{

    flex-direction:column;

    text-align:center;

}

}



/* ==========================
768px
========================== */

@media (max-width:768px){

section{

    padding:80px 0;

}

.section-title{

    font-size:34px;

    margin-bottom:45px;

}

.hero h1{

    font-size:46px;

}

.hero__lead{

    font-size:22px;

}

.hero__description{

    font-size:17px;

}

.hero__buttons{

    flex-direction:column;

    align-items:center;

}

.services__grid{

    grid-template-columns:1fr;

}

.track{

    grid-template-columns:60px 1fr;

    row-gap:20px;

}

.track__wave{

    grid-column:1/3;

}

.track__time{

    text-align:left;

}

.process__timeline{

    grid-template-columns:1fr;

}

.about__features{

    grid-template-columns:1fr;

}

.contact-form{

    padding:30px;

}

.cta__box{

    padding:45px 30px;

}

.cta__box h2{

    font-size:36px;

}

.footer__menu{

    justify-content:center;

}

}



/* ==========================
576px
========================== */

@media (max-width:576px){

.logo{

    font-size:24px;

}

.hero h1{

    font-size:38px;

}

.hero__subtitle{

    font-size:11px;

    letter-spacing:1px;

}

.hero__lead{

    font-size:19px;

}

.section-title{

    font-size:30px;

}

.service{

    padding:28px;

}

.step{

    padding:28px;

}

.review{

    padding:28px;

}

.faq__question{

    padding:22px;

    font-size:18px;

}

.faq__answer{

    padding:0 22px 22px;

}

.contacts__info h2{

    font-size:34px;

}

.contact-form{

    padding:24px;

}

.footer__social{

    flex-wrap:wrap;

    justify-content:center;

}

}



/* ==========================
420px
========================== */

@media (max-width:420px){

.container{

    width:94%;

}

.hero{

    padding-top:115px;

}

.hero h1{

    font-size:32px;

}

.hero__lead{

    font-size:18px;

}

.hero__description{

    font-size:16px;

}

.btn{

    width:100%;

}

.track{

    padding:18px;

}

.track__play{

    width:46px;

    height:46px;

}

.track__info h3{

    font-size:18px;

}

.step__number{

    width:58px;

    height:58px;

    font-size:20px;

}

.cta__box{

    padding:35px 22px;

}

.cta__box h2{

    font-size:30px;

}

.cta__box p{

    font-size:17px;

}

.contact-form input,

.contact-form textarea{

    padding:15px 16px;

}

.footer{

    padding:45px 0 25px;

}

}

.service,
.track,
.step,
.feature,
.review,
.cta__box{

    opacity:0;

    transform:translateY(40px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}

.service.visible,
.track.visible,
.step.visible,
.feature.visible,
.review.visible,
.cta__box.visible{

    opacity:1;

    transform:translateY(0);

}
/*==========================
TELEGRAM BUTTON
==========================*/

.btn-telegram{

    background:#229ED9;

    color:#666;

}

.btn-telegram:hover{

    background:#1b8dc3;

    color:#666;

    transform:translateY(-5px);

    box-shadow:
        0 18px 35px rgba(34,158,217,.28);

}

.track__wave{

    position:relative;

    overflow:hidden;

    border-radius:6px;

    cursor:pointer;

}

.track__wave img{

    display:block;

    width:100%;

}

.track__progress{

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:100%;

    background:rgba(255,140,41,.35);

    pointer-events:none;

}