/* ======================================
   RESET
====================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    overflow-x: hidden;

    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.4;

    color: #000818;
    background: #ffffff;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

picture {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

ul,
ol {
    list-style: none;
}

/* ======================================
   LAYOUT
====================================== */

.container {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    position: relative;
}

.hidden {
    display: none !important;
}

/* ======================================
   TYPOGRAPHY
====================================== */

.title {
    font-weight: 700;
    line-height: 1.05;
}

.title-xl {
    font-size: clamp(42px, 5vw, 88px);
}

.title-lg {
    font-size: clamp(32px, 4vw, 64px);
}

.title-md {
    font-size: clamp(28px, 3vw, 48px);
}

.text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,.75);
}

/* ======================================
   BUTTONS
====================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 72px;
    padding: 0 40px;

    border-radius: 16px;

    transition: .3s ease;
}

.btn-primary {
    background: #2948B8;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.3);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255,255,255,.08);
}

/* ======================================
   CARDS
====================================== */

.card {
    border-radius: 32px;
    overflow: hidden;
}

.glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    background: rgba(8,18,38,.65);

    border: 1px solid rgba(255,255,255,.08);
}

/* ======================================
   FORM
====================================== */

.input {
    width: 100%;
    height: 72px;

    padding: 0 24px;

    border-radius: 16px;

    border: 1px solid rgba(255,255,255,.15);

    background: rgba(255,255,255,.04);

    color: #fff;
}




.input::placeholder {
    color: rgba(255,255,255,.4);
}

/* ======================================
   SPACING
====================================== */

.section-padding {
    padding: 120px 0;
}

.container{
    max-width:1450px;
    margin:0 auto;
    padding:0 20px;
}
/* ===================================
PRODUCTS
=================================== */

.products-section{
    padding:90px 0 90px;

    background:#F5F5F5;

    border-radius:50px;
}

.products-section__head{
    margin-bottom:36px;
}

.products-section__title{
    max-width:730px;

    margin-bottom:18px;

    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.products-section__subtitle{
    max-width:620px;

    font-size:18px;
    line-height:1.45;
    font-weight:500;

    color:#2B3342;
}

.products-section__subtitle span{
    font-weight:800;
}

.products-section__grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:8px;
}

/* ===================================
CARD
=================================== */

.products-card{
    display:flex;
    flex-direction:column;

    min-height:450px;

    background:#fff;

    border-radius:30px;

    overflow:hidden;
}

.products-card__image{
    height:188px;
    overflow:hidden;
}

.products-card__image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.products-card__body{
    display:flex;
    flex-direction:column;
    flex:1;

    padding:22px 26px 24px;
}

.products-card__title{
    margin-bottom:14px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.products-card__text{
    font-size:14px;
    line-height:1.45;

    color:#303848;
}

.products-card__button{
    margin-top:auto;

    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;
    background: #1E3A8A;
    box-shadow: 0 8px 24px rgba(30, 58, 138, .35), inset 0 1px 2px rgba(255, 255, 255, .08);

    border-radius:10px;

    font-size:16px;
    font-weight:700;

    color:#fff;
}

/* ===================================
CTA
=================================== */

.products-cta{
    position:relative;

    grid-column:span 2;

    min-height:450px;

    overflow:hidden;
    border-radius:30px;

    background:#000818;
}

.products-cta__image{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.products-cta__overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            #000818 0%,
            rgba(0,8,24,.92) 35%,
            rgba(0,8,24,.2) 100%
        );
}

.products-cta__content{
    position:relative;
    z-index:2;

    width:320px;

    padding:85px 0 0 58px;
}

.products-cta__title{
    margin-bottom:18px;

    font-size:25px;
    font-weight:800;
    line-height:1.1;

    color:#fff;
}

.products-cta__text{
    margin-bottom:32px;

    font-size:14px;
    line-height:1.45;

    color:#fff;
}

.products-cta__button{
    width:228px;
    height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.8);
    border-radius:10px;

    color:#fff;
    font-weight:700;
}
/* ====================================
ADVANTAGES
==================================== */

.advantages-section{
    padding:90px 0;
}

.advantages-section__wrapper{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:24px;
}

.advantages-section__title{
    margin-bottom:28px;

    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.advantages-section__subtitle{
    margin-bottom:48px;

    font-size:18px;
    font-weight:500;
    line-height:1.45;

    color:#2E3441;
}

.advantages-section__stats{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.advantages-section__stat{
    font-size:18px;
    color:#000818;
}

.advantages-section__stat span{
    font-size:40px;
    font-weight:800;
    color:#2948B8;
}

/* ====================================
GRID
==================================== */

.advantages-section__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
}

/* ====================================
CARD
==================================== */

.advantage-card{
    min-height:321px;

    padding:34px 24px;

    background:#fff;

    border-radius:30px;

    box-shadow:
        0 5px 20px rgba(199,195,195,.25);
}

.advantage-card__icon{
    width:72px;
    height:72px;

    object-fit:contain;

    margin-bottom:34px;
}

.advantage-card__title{
    margin-bottom:24px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.advantage-card__text{
    font-size:14px;
    line-height:1.45;

    color:#303848;
}
/* ====================================
PROCESS
==================================== */

.process-section{
    position:relative;

    overflow:hidden;

    padding:85px 0 95px;

    border-radius:40px;

    background:#000818;
}

.process-section__bg{
    position:absolute;
    inset:0;
}

.process-section__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.process-section__overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            #000818 0%,
            rgba(0,8,24,.92) 42%,
            rgba(0,8,24,.25) 100%
        );
}

.process-section .container{
    position:relative;
    z-index:2;
}

.process-section__wrapper{
    display:grid;
    grid-template-columns:520px 565px;
    justify-content:space-between;
    gap:40px;
}

.process-section__title{
    margin-bottom:24px;
    max-width: 400px;
    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#fff;
}

.process-section__subtitle{
    max-width:490px;

    margin-bottom:42px;

    font-size:18px;
    line-height:1.45;
    font-weight:500;

    color:#fff;
}

.process-section__subtitle span{
    font-weight:800;
}

/* ====================================
STEPS
==================================== */

.process-steps{
    position:relative;

    display:flex;
    flex-direction:column;
    gap:38px;

    margin-bottom:42px;
}

.process-steps::before{
    content:"";

    position:absolute;

    top:65px;
    left:32px;

    width:1px;
    height:calc(100% - 120px);

    border-left:1px dashed rgba(255,255,255,.5);
}

.process-step{
    position:relative;

    display:flex;
    align-items:flex-start;
    gap:32px;
}

.process-step__circle{
    position:relative;
    z-index:2;

    width:67px;
    height:67px;

    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    border:1px solid #2948B8;

    background:#000818;

    font-size:20px;
    font-weight:800;

    color:#fff;
}

.process-step--active .process-step__circle{
    background:#2948B8;
}

.process-step__title{
    margin-bottom:12px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;

    color:#fff;
}

.process-step__text{
    max-width:360px;

    font-size:14px;
    line-height:1.45;

    color:#fff;
}

/* ====================================
BUTTON
==================================== */

.process-section__button{
    width:394px;
    height:71px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.8);
    border-radius:10px;

    font-size:16px;
    font-weight:700;

    color:#fff;
}

/* ====================================
FORM
==================================== */

.process-form{
    padding-top:115px;
}

.process-form__wrapper{
    padding:68px 58px;

    background:rgba(0,8,24,.5);

    border:1px solid rgba(255,255,255,.05);

    backdrop-filter:blur(5px);

    border-radius:15px;
}

.process-form__input{
    width:100%;
    height:71px;

    margin-bottom:18px;

    padding:0 36px;

    border:1px solid rgba(255,255,255,.9);
    border-radius:10px;

    background:transparent;

    font-size:18px;

    color:#fff;
}

.process-form__input::placeholder{
    color:rgba(255,255,255,.4);
}

.process-form__file{
    display:flex;
    align-items:center;
    gap:16px;

    margin:28px 0;

    cursor:pointer;

    color:#fff;
}

.process-form__file input{
    display:none;
}

.process-form__checkbox{
    display:flex;
    align-items:flex-start;
    gap:14px;

    margin-bottom:32px;
}

.process-form__checkbox span{
    width:25px;
    height:25px;

    flex-shrink:0;

    border:1px solid #fff;
    border-radius:5px;
}

.process-form__checkbox p{
    font-size:12px;
    line-height:1.45;

    color:#fff;
}

.process-form__submit{
    width:100%;
    height:71px;

    background: #1E3A8A;
    box-shadow: 0 8px 24px rgba(30, 58, 138, .35), inset 0 1px 2px rgba(255, 255, 255, .08);

    border-radius:10px;

    font-size:16px;
    font-weight:700;

    color:#fff;
}
/* =====================================
CASES
===================================== */

.cases-section{
    padding:90px 0;
}

.cases-section__head{
    margin-bottom:32px;
}

.cases-section__title{
    max-width:730px;

    margin-bottom:24px;

    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.cases-section__subtitle{
    max-width:524px;

    font-size:18px;
    line-height:1.4;
    font-weight:400;

    color:#000818;
}

/* =====================================
CASE CARD
===================================== */

.case-card{
    display:grid;
    grid-template-columns:579px 1fr;

    min-height:536px;

    background:#fff;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
        0 5px 20px 3px rgba(199,195,195,.25);
}

.case-card__image{
    height:100%;
}

.case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.case-card__content{
    padding:
        42px
        40px
        48px
        40px;
}

.case-card__title{
    max-width:650px;

    margin-bottom:34px;

    font-size:25px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.case-card__block{
    margin-bottom:22px;
}

.case-card__label{
    margin-bottom:10px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.case-card__text{
    max-width:740px;

    font-size:14px;
    line-height:1.4;

    color:#000818;
}

.case-card__button{
    margin-top:34px;

    width:286px;
    height:71px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#1E3A8A;

    box-shadow:
        0 8px 24px rgba(30,58,138,.35),
        inset 0 1px 2px rgba(255,255,255,.08);

    border-radius:10px;

    font-size:16px;
    font-weight:700;

    color:#fff;

    transition:.3s;
}

.case-card__button:hover{
    transform:translateY(-2px);
}
/* =====================================
CLIENTS
===================================== */

.clients-section{
    padding:90px 0 90px;

    background:#F5F5F5;

    border-radius:50px;
}

.clients-section__head{
    margin-bottom:50px;
}

.clients-section__title{
    max-width:730px;

    margin-bottom:18px;

    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.clients-section__subtitle{
    max-width:420px;

    font-size:18px;
    line-height:1.4;
    font-weight:400;

    color:#000818;
}

.clients-section__subtitle span{
    font-weight:800;
}

/* =====================================
LOGOS
===================================== */

.clients-logos{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;

    margin-bottom:60px;
}

.clients-logo{
    height:164px;

    background:#fff;

    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.clients-logo img{
    width:196px;
    max-width:70%;

    object-fit:contain;
}

/* =====================================
BOTTOM
===================================== */

.clients-section__bottom{
    display:grid;
    grid-template-columns:687px 287px;
    justify-content:center;
    gap:15px;
}

/* =====================================
REVIEWS
===================================== */

.review-card{
    height:250px;

    overflow:hidden;

    border-radius:30px;

    background:#fff;
}

.review-card__image{
    width:100%;
    height:100%;

    object-fit:none;
}

/* =====================================
CTA
===================================== */

.clients-cta{
    display:flex;
    flex-direction:column;
    justify-content:center;
    margin-left: 40px;
}

.clients-cta__text{
    max-width:280px;

    margin-bottom:32px;

    font-size:18px;
    line-height:1.4;

    color:#000818;
}

.clients-cta__text span{
    font-weight:800;
}

.clients-cta__button{
    width:286px;
    height:71px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#1E3A8A;

    border-radius:10px;

    box-shadow:
        0 8px 24px rgba(30,58,138,.35),
        inset 0 1px 2px rgba(255,255,255,.08);

    font-size:16px;
    font-weight:700;

    color:#fff;

    transition:.3s;
}

.clients-cta__button:hover{
    transform:translateY(-2px);
}
/* ====================================
TASKS
==================================== */

.tasks-section{
    padding:90px 0;
}

.tasks-section__wrapper{
    display:grid;
    grid-template-columns:438px 1fr;
    justify-content:space-between;
    gap:40px;
}

.tasks-section__title{
    margin-bottom:28px;

    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.tasks-section__subtitle{
    max-width:351px;

    margin-bottom:80px;

    font-size:18px;
    line-height:1.4;
    letter-spacing:-0.01em;

    color:#000818;
}

.tasks-section__subtitle strong{
    font-weight:800;
}

.tasks-section__cta-title{
    margin-bottom:14px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;

    color:#000818;
}

.tasks-section__cta-text{
    max-width:351px;

    margin-bottom:25px;

    font-size:18px;
    line-height:1.4;

    color:#000818;
}

.tasks-section__button{
    width:382px;
    height:71px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#1E3A8A;

    border-radius:10px;

    box-shadow:
        0 8px 24px rgba(30,58,138,.35),
        inset 0 1px 2px rgba(255,255,255,.08);

    font-size:16px;
    font-weight:700;

    color:#fff;
}

/* ====================================
GRID
==================================== */

.tasks-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

/* ====================================
CARD
==================================== */

.task-card{
    min-height:321px;

    padding:28px 24px 24px;

    background:#fff;

    border-radius:30px;

    box-shadow:
        0 5px 20px 3px rgba(199,195,195,.25);
}

.task-card__icon{
    width:90px;
    height:70px;

    object-fit:contain;

    margin-bottom:34px;
}

.task-card__title{
    min-height:35px;

    margin-bottom:20px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.task-card__text{
    font-size:14px;
    line-height:1.4;

    color:#000818;
}
/* ====================================
GUARANTEES
==================================== */

.guarantees-section{
    position:relative;

    overflow:hidden;

    padding:90px 0 90px;
margin: 0px 0 90px;
    border-radius:50px;

    background:#000818;
}

.guarantees-section__bg{
    position:absolute;
    inset:0;
}

.guarantees-section__bg img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.guarantees-section__overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            #000818 0%,
            rgba(0,8,24,.95) 35%,
            rgba(0,8,24,.25) 100%
        );
}

.guarantees-section .container{
    position:relative;
    z-index:2;
}

.guarantees-section__content{
    max-width:760px;
}

.guarantees-section__title{
    max-width:680px;

    margin-bottom:26px;

    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#fff;
}

.guarantees-section__subtitle{
    max-width:490px;

    margin-bottom:42px;

    font-size:18px;
    line-height:1.4;

    color:#fff;
}

.guarantees-section__subtitle strong{
    font-weight:800;
}

.guarantees-section__grid{
    display:grid;
    grid-template-columns:repeat(2,290px);
    gap:42px 120px;
}

.guarantee-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.guarantee-item__icon{
    width:26px;
    height:26px;

    flex-shrink:0;

    color:#08AD42;
}

.guarantee-item__icon svg{
    width:100%;
    height:100%;
}

.guarantee-item__title{
    margin-bottom:12px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#fff;
}

.guarantee-item__text{
    font-size:14px;
    line-height:1.4;

    color:#fff;
}
/* ====================================
CTA SECTION
==================================== */

.cta-section{
    position:relative;

    overflow:hidden;

    padding:90px 0;

    background:#000818;

    border-radius:50px;
}

.cta-section__bg{
    position:absolute;
    inset:0;
    top: -35px;
}

.cta-section__bg img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.cta-section__overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            #000818 0%,
            rgba(0,8,24,.95) 35%,
            rgba(0,8,24,.25) 100%
        );
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section__wrapper{
    display:grid;
    grid-template-columns:703px 565px;

    justify-content:space-between;
    align-items:center;

    gap:60px;
}
.cta-section__title{
    max-width: 500px;
    margin-bottom: 32px;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
}

.cta-section__subtitle{
    max-width:465px;

    margin-bottom:36px;

    font-size:18px;
    line-height:1.4;

    color:#fff;
}

.cta-section__advantages{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.cta-section__advantage{
    position:relative;

    padding-left:40px;

    font-size:18px;
    line-height:1.4;

    color:#fff;
}

.cta-section__advantage::before{
    color: #08AD42;
    font-size: 19px;
    font-weight: 700;
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url(/image/svg/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.cta-form__wrapper{
    padding:68px 58px;

    background:rgba(0,8,24,.5);

    border:1px solid rgba(255,255,255,.05);

    backdrop-filter:blur(5px);

    border-radius:15px;
}

.cta-form__input{
    width:100%;
    height:71px;

    margin-bottom:18px;

    padding:0 40px;

    background:transparent;

    border:1px solid #fff;
    border-radius:10px;

    font-size:18px;

    color:#fff;
}

.cta-form__input::placeholder{
    color:rgba(255,255,255,.4);
}

.cta-form__file{
    display:flex;
    align-items:center;
    gap:16px;

    margin:28px 0;

    cursor:pointer;

    color:#fff;
}

.cta-form__file input{
    display:none;
}

.cta-form__file span{
    font-size:18px;
    font-weight:500;
}

.cta-form__file img{
    width:25px;
    height:25px;
}

.cta-form__checkbox{
    display:flex;
    align-items:flex-start;
    gap:16px;

    margin-bottom:34px;
}

.cta-form__checkbox input{
    display:none;
}

.cta-form__checkbox span{
    width:25px;
    height:25px;

    flex-shrink:0;

    border:1px solid #fff;
    border-radius:5px;
}

.cta-form__checkbox p{
    font-size:12px;
    line-height:1.35;

    color:#fff;
}

.cta-form__submit{
    width:100%;
    height:71px;

    background:#1E3A8A;

    border:none;
    border-radius:10px;

    box-shadow:
        0 8px 24px rgba(30,58,138,.35),
        inset 0 1px 2px rgba(255,255,255,.08);

    font-size:16px;
    font-weight:700;

    color:#fff;

    cursor:pointer;
}
/* ====================================
ABOUT
==================================== */

.about-section{
    margin:110px 0;
}

.about-section__wrapper{
    display:grid;
    grid-template-columns:587px 1fr;
    align-items:center;
    gap:54px;
}

/* ====================================
IMAGE
==================================== */

.about-section__image{
    position:relative;

    height:496px;

    overflow:hidden;

    border-radius:50px;
}

.about-section__image img{
    width:100%;
    height:100%;

    object-fit:cover;
}

.about-section__image-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            270deg,
            rgba(0,2,12,0) 35%,
            rgba(0,8,24,.7) 100%
        );
}

/* ====================================
CONTENT
==================================== */

.about-section__content{
    display:flex;
    flex-direction:column;
}

.about-section__text{
    max-width:789px;

    margin-bottom:42px;

    font-size:18px;
    font-weight:500;
    line-height:1.4;
    letter-spacing:-0.01em;

    color:#000818;
}

.about-section__text p{
    margin-bottom:24px;
}

.about-section__text p:last-child{
    margin-bottom:0;
}

.about-section__text strong{
    font-weight:800;
}

/* ====================================
BUTTON
==================================== */

.about-section__button{
    width:282px;
    height:71px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #000818;
    border-radius:10px;

    font-size:16px;
    font-weight:700;

    color:#000818;

    transition:.3s;
}

.about-section__button:hover{
    background:#000818;
    color:#fff;
}
/* ====================================
FOOTER
==================================== */

.footer{
    margin-top:90px;

    padding-top:90px;

    background:#000818;

    border-radius:50px 50px 0 0;
}

.footer__top{
    display:grid;
    grid-template-columns:
        320px
        220px
        320px
        280px;

    justify-content:space-between;
    gap:40px;
}

.footer__logo{
    display:block;

    margin-bottom:20px;
}

.footer__logo img{
    max-width:260px;
}

.footer__description{
    max-width:170px;

    font-size:11px;
    line-height:1.4;

    color:rgba(255,255,255,.5);
}

/* ========================= */

.footer__title{
    margin-bottom:28px;

    font-size:20px;
    font-weight:800;
    line-height:1.1;

    color:#fff;
}

.footer__menu{
    display:flex;
    flex-direction:column;
    gap:5px;
}

.footer__menu a{
    font-size:14px;
    line-height:1.7;

    color:#fff;

    transition:.3s;
}

.footer__menu a:hover{
    opacity:.7;
}

/* ========================= */

.footer__phone{
    display:block;

    margin-bottom:34px;

    font-size:20px;
    font-weight:800;

    color:#fff;
}

.footer__address,
.footer__email{
    margin-bottom:10px;

    font-size:14px;
    line-height:1.4;

    color:#fff;
}

.footer__address strong,
.footer__email strong{
    font-weight:800;
}

.footer__email a{
    color:#fff;
}

/* ========================= */

.footer__socials{
    display:flex;
    gap:12px;

    margin-top:30px;
}

.footer__socials a{
    width:33px;
    height:33px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    transition:.3s;
}

.footer__socials a:hover{
    background:#1E3A8A;
}

/* ========================= */

.footer__bottom{
    margin-top:70px;
    padding:40px 0;

    border-top:1px solid rgba(255,255,255,.1);

    text-align:center;
}

.footer__bottom p,
.footer__bottom a{
    font-size:11px;
    line-height:1.5;

    color:rgba(255,255,255,.5);
}

.footer__bottom a{
    display:block;
    margin-top:4px;
}
a.subm {
    display: flex;
}
a.subm img {
    margin-top: -2px;
    margin-right: 5px;
}
.hero-main__card-icon {
    float: left;
    min-height: 30px;
    width: 50px;
    margin-top: 3px;
}
/* ====================================
MODAL
==================================== */

.modal-form{
    position:fixed;
    inset:0;

    display:none;

    z-index:999;
}

.modal-form.active{
    display:flex;
    align-items:center;
    justify-content:center;
}

.modal-form__overlay{
    position:absolute;
    inset:0;

    background:rgba(0,8,24,.85);
    backdrop-filter:blur(5px);
}

.modal-form__window{
    position:relative;
    z-index:2;

    width:100%;
    max-width:560px;

    padding:45px;

    background:#000818;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    box-shadow:
        0 25px 60px rgba(0,0,0,.4);
}
.modal-form__close{
    position:absolute;

    top:20px;
    right:20px;

    width:40px;
    height:40px;

    background:none;
    border:none;

    color:#fff;

    font-size:28px;

    cursor:pointer;
}

.modal-form__badge{
    display:inline-flex;
    align-items:center;

    height:34px;

    padding:0 18px;

    margin-bottom:20px;

    border:1px solid rgba(255,255,255,.25);
    border-radius:100px;

    font-size:14px;

    color:#fff;
}

.modal-form__title{
    margin-bottom:16px;

    font-size:36px;
    font-weight:800;
    line-height:1.1;

    color:#fff;
}

.modal-form__text{
    margin-bottom:30px;

    font-size:16px;
    line-height:1.5;

    color:rgba(255,255,255,.8);
}
.modal-form__form{
    display:flex;
    flex-direction:column;
}

.modal-form__input{
    width:100%;
    height:70px;

    margin-bottom:15px;

    padding:0 25px;

    border:1px solid rgba(255,255,255,.3);
    border-radius:10px;

    background:transparent;

    font-size:16px;

    color:#fff;
}

.modal-form__input::placeholder{
    color:rgba(255,255,255,.45);
}
.modal-form__file{
    display:flex;
    align-items:center;
    gap:14px;

    margin:20px 0;

    cursor:pointer;

    color:#fff;
}

.modal-form__file input{
    display:none;
}

.modal-form__file img{
    width:22px;
    height:22px;
}

.modal-form__file span{
    font-size:16px;
}
.modal-form__checkbox{
    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-bottom:24px;
}

.modal-form__checkbox input{
    display:none;
}

.modal-form__checkbox span{
    width:22px;
    height:22px;

    flex-shrink:0;

    border:1px solid rgba(255,255,255,.5);
    border-radius:5px;
}

.modal-form__checkbox p{
    font-size:12px;
    line-height:1.4;

    color:rgba(255,255,255,.8);
}
.modal-form__submit{
    width:100%;
    height:71px;

    border:none;

    border-radius:10px;

    background:#1E3A8A;

    box-shadow:
        0 8px 24px rgba(30,58,138,.35),
        inset 0 1px 2px rgba(255,255,255,.08);

    font-size:16px;
    font-weight:700;

    color:#fff;

    cursor:pointer;

    transition:.3s;
}

.modal-form__submit:hover{
    transform:translateY(-2px);
}
.cookie-banner{
    position:fixed;

    left:20px;
    bottom:20px;

    z-index:999;

    max-width:430px;

    padding:20px;

    background:#000818;

    border-radius:16px;

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);
}

.cookie-banner__content{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.cookie-banner__text{
    font-size:14px;
    line-height:1.5;

    color:#fff;
}

.cookie-banner__button{
    width:140px;
    height:48px;

    border:none;

    border-radius:10px;

    background:#1E3A8A;

    color:#fff;

    font-weight:700;

    cursor:pointer;
}
body.modal-open{
    overflow:hidden;
}
.modal-form__textarea{
    width:100%;
    min-height:120px;

    margin-bottom:18px;
    padding:20px 25px;

    resize:vertical;

    border:1px solid rgba(255,255,255,.3);
    border-radius:10px;

    background:transparent;

    font-size:16px;
    line-height:1.5;

    color:#fff;
}

.modal-form__textarea::placeholder{
    color:rgba(255,255,255,.45);
}
a.header-main__logo img {
    margin: 0 0 -10px 0;
}
header.header-main.scrolled {
    border-radius: 100px;
    margin: 10px auto 0 auto;
    max-width: 1450px;
    left: 0;
    right: 0;
}
/* Общие стили для точек навигации */
.cases-slider .owl-dots,
.reviews-slider .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

/* Стили для точек */
.cases-slider .owl-dot,
.reviews-slider .owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 8, 24, 0.25);
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: pointer;
}

/* Активная точка */
.cases-slider .owl-dot.active,
.reviews-slider .owl-dot.active {
    width: 32px;
    border-radius: 4px;
    background: #1E3A8A;
}

/* Эффект при наведении на точку */
.cases-slider .owl-dot:hover,
.reviews-slider .owl-dot:hover {
    transform: scale(1.2);
    background: #1E3A8A;
    opacity: 0.7;
}

/* Стили для контейнера карусели */
.cases-slider,
.reviews-slider {
    position: relative;
}

/* Анимация появления карточек в карусели */
.cases-slider .owl-item,
.reviews-slider .owl-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.cases-slider .owl-item.active,
.reviews-slider .owl-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Задержка для анимации */
.cases-slider .owl-item.active .case-card,
.reviews-slider .owl-item.active .review-card {
    animation: cardFadeIn 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стрелки навигации (опционально) */
.cases-slider .owl-nav,
.reviews-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.cases-slider .owl-nav button,
.reviews-slider .owl-nav button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    color: #1E3A8A;
    font-size: 24px !important;
}

.cases-slider .owl-nav button:hover,
.reviews-slider .owl-nav button:hover {
    transform: scale(1.1);
    background: #1E3A8A;
    color: white;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}
/* Для отзывов - градиентные карточки */
.reviews-slider .review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reviews-slider .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
}

/* Для кейсов - эффект при наведении */
.cases-slider .case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cases-slider .case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.2);
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: #1E3A8A !important;
}
label.process-form__checkbox input[type="checkbox"] {
    display: none;
}
/* ======================================
   DROPDOWN MENU
====================================== */
.header-main__nav {
    position: relative;
}

.header-main__nav-item {
    position: relative;
}

.header-main__nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.header-main__nav-link .arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.header-main__nav-item:hover .arrow {
    transform: rotate(180deg);
}

/* Выпадающее меню */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    min-width: 260px;
    background: rgba(0, 8, 24, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    z-index: 100;
}

.header-main__nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(30, 58, 138, 0.6);
    color: #fff;
    padding-left: 26px;
}

/* Адаптив для мобильных */
@media (max-width: 1200px) {
    .dropdown-menu {
        position: static;
        background: transparent;
        backdrop-filter: none;
        border: none;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 10px;
        margin-left: 20px;
    }
    
    .header-main__nav-item.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 16px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .dropdown-menu a:hover {
        background: transparent;
        color: #fff;
        padding-left: 16px;
    }
}
.clients-logo {
    min-width: 150px;
}
/* ==========================================
   BREADCRUMBS
========================================== */

.breadcrumb{
    display:flex;
    align-items:center;
    flex-wrap:wrap;

    gap:12px;

    margin:0 0 34px;
    padding:0 60px;

    list-style:none;
}

.breadcrumb li{
    display:flex;
    align-items:center;

    font-family:'Manrope',sans-serif;
    font-size:14px;
    font-weight:600;

    color:#9b9b9b;
}

/* SEPARATOR */

.breadcrumb li:not(:last-child)::after{
    content:'';

    width:5px;
    height:5px;

    margin-left:12px;

    border-radius:50%;

    background:#e11919;
}

/* LINK */

.breadcrumb li a{
    text-decoration:none;

    color:#7d7d7d;

    transition:.3s;
}

.breadcrumb li a:hover{
    color:#e11919;
}

/* ACTIVE */

.breadcrumb li:last-child a{
    color:#2a2a2a;

    pointer-events:none;
}

/* ==========================================
   CONTENT
========================================== */

.section-page__content {
    padding: 0px 60px 60px 60px;
}

/* TITLES */

.section-page__content h1{
    margin:0 0 28px;

    
    font-size:56px;
    line-height:1.05;
    font-weight:700;

    letter-spacing:-1.68px;

    color:#2a2a2a;
}

.section-page__content h1 span{
    color:#e11919;
}

.section-page__content h2{
    margin:54px 0 22px;

    
    font-size:38px;
    line-height:1.1;
    font-weight:500;

    letter-spacing:-1px;

    color:#2a2a2a;
}

.section-page__content h3{
    margin:42px 0 18px;

    
    font-size:28px;
    line-height:1.2;
    font-weight:700;

    color:#2a2a2a;
}

/* TEXT */

.section-page__content p{

    color:#444;
}

/* STRONG */

.section-page__content strong{
    font-weight:800;

    color:#2a2a2a;
}

/* LINKS */

.section-page__content a{
    color:#e11919;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

.section-page__content a:hover{
    opacity:.7;
}

/* LIST */

.section-page__content ul,
.section-page__content ol{
    margin:28px 0;
    padding-left:22px;
}

.section-page__content li{
    margin-bottom:14px;
    position: relative;
    font-family:'Manrope',sans-serif;
    line-height:1.7;

    color:#444;
}
.section-page {
    padding: 60px 0 0px;
}
.section-page__content p {
    color: #444;
}
.section-page__content ul li::before {
    color: #08AD42;
    font-size: 19px;
    font-weight: 700;
    content: "";
    position: absolute;
    left: -24px;
    top: 7px;
    width: 16px;
    height: 16px;
    background-image: url(/image/svg/check.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.hero-main__title .word {
    display: inline-block;
    white-space: nowrap;
}
[class*="__container"]{
    width:100% !important;
    max-width:1450px !important;
    margin:0 auto !important;
}
html,body
	{
		margin: 0;
		overflow-x: hidden;
	}
i.fa.fa-phone {
    margin-right: 10px;
}
/* ======================================
TALIPOV
====================================== */
.partners-section{
    padding:90px 0;
}

.partners-section__head{
    margin-bottom:40px;
}

.partners-section__title{
    max-width:850px;

    margin-bottom:20px;

    font-size:45px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#000818;
}

.partners-section__subtitle{
    max-width:590px;

    font-size:18px;
    line-height:1.5;
    font-weight:500;

    color:#000818;
}

.partners-section__grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.partners-section__card{
    position:relative;

    height:399px;

    overflow:hidden;
    border-radius:30px;

    background:#000818;
}

.partners-section__image{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;
}

.partners-section__overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            #000818 0%,
            rgba(0,8,24,.95) 35%,
            rgba(0,8,24,.15) 100%
        );
}

.partners-section__content{
    position:relative;
    z-index:2;

    display:flex;
    flex-direction:column;

    height:100%;

    padding:
        78px
        88px
        78px
        88px;
}

.partners-section__card-title{
    max-width:340px;

    margin-bottom:24px;

    font-size:25px;
    font-weight:800;
    line-height:1.1;
    letter-spacing:-0.03em;

    color:#fff;
}

.partners-section__card-text{
    max-width:320px;

    font-size:14px;
    line-height:1.45;

    color:#fff;
}

.partners-section__button{
    margin-top:auto;

    width:299px;
    height:71px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid rgba(255,255,255,.8);
    border-radius:10px;

    font-size:16px;
    font-weight:700;

    color:#fff;

    transition:.3s;
}

.partners-section__button:hover{
    background:#fff;
    color:#000818;
}

.btn-primary,
.btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:290px;
    height:71px;

    border-radius:10px;

    font-size:16px;
    font-weight:700;

    transition:.3s;
}

.btn-primary{
    background:#1E3A8A;
    color:#fff;

    box-shadow:
        0 8px 24px rgba(30,58,138,.35),
        inset 0 1px 2px rgba(255,255,255,.08);
}

.btn-outline{
    border:1px solid rgba(255,255,255,.8);
    color:#fff;
}
/* =====================================
HEADER
===================================== */

.header-main{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:100;
    padding:40px 0;
}

.header-main__wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.header-main__logo{
    display:flex;
    align-items:center;
    gap:20px;
    flex-shrink:0;
}

.header-main__logo-text{
    font-size:11px;
    line-height:1.4;
    color:#fff;
    opacity:.8;
}

.header-main__nav{
    display:flex;
    gap:34px;
}

.header-main__nav a{
    font-size:16px;
    color:#fff;
    transition:.3s;
}

.header-main__nav a:hover{
    opacity:.7;
}

.header-main__right{
    display:flex;
    align-items:center;
    gap:30px;
}

.header-main__socials{
    display:flex;
    gap:8px;
}

.header-main__socials a{
    width:34px;
    height:34px;

    border-radius:50%;

    background:rgba(0,8,24,.45);

    display:flex;
    align-items:center;
    justify-content:center;
}

.header-main__phone{
    font-weight:700;
    color:#fff;
}

.header-main__btn{
    width:160px;
    height:40px;
    font-size:12px;
}

/* =====================================
BURGER
===================================== */

.header-main__burger{
    display:none;
    flex-direction:column;
    gap:5px;
}

.header-main__burger span{
    width:28px;
    height:2px;
    background:#fff;
}

/* =====================================
HERO
===================================== */

.hero-main{
    position:relative;
    overflow:hidden;
    border-radius:0 0 50px 50px;
    color: #fff;
    background: #020b1b;
}

.hero-main__bg{
    position:absolute;
    inset:0;
}

.hero-main__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-main__bg::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            #000818 0%,
            rgba(0,8,24,.3) 60%
        );
}

.hero-main__content{
    position:relative;
    z-index:2;
    padding-bottom: 90px;
    padding-top:190px;
}

.hero-main__badge{
    width:max-content;

    display:flex;
    align-items:center;
    gap:10px;

    padding:8px 22px;

    border:1px solid rgba(255,255,255,.7);
    border-radius:100px;

    margin-bottom:24px;
}

.hero-main__badge span{
    width:6px;
    height:6px;

    border-radius:50%;
    background:#0acb4d;
}

.hero-main__title{
    max-width:840px;

    font-size:64px;
    line-height:1.05;
    font-weight:800;

    margin-bottom:28px;
}

.hero-main__text{
    max-width:540px;

    font-size:18px;
    line-height:1.6;

    color:rgba(255,255,255,.85);

    margin-bottom:40px;
}

.hero-main__buttons{
    display:flex;
    gap:20px;
    margin-bottom:70px;
}

.hero-main__advantages{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.hero-main__card{
    min-height:170px;

    padding:30px;

    background:rgba(0,8,24,.45);

    border:1px solid rgba(255,255,255,.05);

    backdrop-filter:blur(8px);

    border-radius:16px;
}

.hero-main__card-icon{
    margin-bottom:20px;
    font-size:28px;
}

.hero-main__card-title{
    font-size:16px;
    font-weight:800;
    max-width: 250px;
    margin-bottom:14px;
}

.hero-main__card-text{
    font-size:14px;
    line-height:1.5;

    color:rgba(255,255,255,.8);
}

/* =====================================
MOBILE MENU
===================================== */

.mobile-menu{
    position:fixed;
    inset:0;

    background:#000818;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:999;
}

.mobile-menu.active{
    opacity:1;
    visibility:visible;
}

.mobile-menu__body{
    padding:120px 20px 40px;

    display:flex;
    flex-direction:column;
    gap:24px;
}

.mobile-menu__body a{
    font-size:22px;
    color:#fff;
}

.mobile-menu__phone{
    margin-top:20px;
    font-weight:700;
}


/* ======================================
   ADAPTIVE
====================================== */

/* TALIPOV.BIZ */
@media (max-width: 1420px){
  
  .header-main__logo-text {
    display: none;
}  
 .cta-section__wrapper {
    display: grid;
    grid-template-columns: 520px 1fr;   
 }
    
}


/* ======================================
TALIPOV
====================================== */
@media (max-width: 1250px) {
    .header-main__socials {
    display: none;
}
.products-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.products-cta {
    display: none;
}
    
}

/* ======================================
TALIPOV
====================================== */
@media (max-width: 1200px) {

    .container {
        padding: 0 24px;
    }
.process-form {
    padding-top: 50px;
}
.about-section__text {
    margin: 0 auto;
    max-width: 700px;
}
.process-steps {
    max-width: fit-content;
    margin: 0 auto;
}
.clients-cta {
    display: none;
}
a.process-section__button {
        margin: 30px auto 0 auto;
}
.process-section__wrapper {
    display: grid;
    grid-template-columns: 1fr;
}
.header-main__wrapper {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1.3fr;
}
    .footer__top{
        grid-template-columns:
            repeat(2,1fr);
    }
     .about-section__wrapper{
        grid-template-columns:1fr;
    }

    .about-section__image{
        max-width:700px;
        margin:0 auto;
        width:100%;
    }
    .cta-section__wrapper{
        grid-template-columns:1fr;
    }
    .guarantees-section__grid{
        gap:32px;
    }
    .clients-logos{
        grid-template-columns:repeat(3,1fr);
    }
    .tasks-section__wrapper{
        grid-template-columns:1fr;
    }

    .tasks-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .case-card{
        grid-template-columns:1fr;
    }

    .case-card__image{
        height:450px;
    }
    .header-main__nav{
        display:none;
    }
    .advantages-section__wrapper{
        grid-template-columns:1fr;
    }

    .header-main__burger{
        display:flex;
    }

    .hero-main__advantages{
        grid-template-columns:repeat(2,1fr);
    }

}


/* ======================================
TALIPOV
====================================== */
@media (max-width: 992px) {

    .section-padding {
        padding: 90px 0;
    }
    .hero-main__card-title {
    max-width: 300px;
}


    .btn {
        min-height: 64px;
    }
     .partners-section__grid{
        grid-template-columns:1fr;
    }

    .partners-section__title{
        font-size:48px;
    }

}


/* ======================================
TALIPOV
====================================== */
@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }
    .cookie-banner {
    left: 10px;
    right: 10px;
    }
     .clients-section__bottom {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .reviews-slider {
        max-width: 100%;
        overflow: hidden;
    }
    
    .review-card {
        height: auto;
        min-height: 200px;
    }
    
    .review-card__image {
        object-fit: contain;
        width: 100%;
        height: auto;
    }
    
    .clients-cta {
        margin-left: 0;
        text-align: center;
        align-items: center;
    }
    
    .clients-cta__text {
        max-width: 100%;
    }
    
    .clients-cta__button {
        width: 100%;
        max-width: 300px;
    }
    .review-card {
        padding: 20px;
    }
    .products-card__button {
    margin-top: 30px;
    }
    .advantages-section__grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero-main__advantages {
        grid-template-columns: 1fr !important;
    }
    
    .hero-main__buttons {
        flex-direction: column;
    }
    
    .hero-main__buttons .btn-primary,
    .hero-main__buttons .btn-outline {
        width: 100%;
    }
    .products-section__grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .products-card {
        min-height: auto;
    }
    
    .products-card__body {
        padding: 20px;
    }
    
    /* Для CTA блока на мобильных */
    .products-cta {
        grid-column: span 1;
        min-height: auto;
    }
    
    .products-cta__content {
        width: 100%;
        padding: 40px 30px;
        text-align: center;
    }
    
    .products-cta__button {
        margin: 0 auto;
        width: 100%;
        max-width: 280px;
    }
    .cases-slider .owl-nav,
    .reviews-slider .owl-nav {
        display: none;
    }
        .header-main__wrapper {
        display: grid;
        grid-template-columns: 1fr 0.3fr 1fr;
    }
    .products-cta {
    min-height: auto;
    }
    .products-cta {
    min-height: auto;
    }
    .products-cta__content {
    padding: 35px 0 35px 0px;
}
    .cases-slider .owl-dots,
    .reviews-slider .owl-dots {
        gap: 10px;
        margin-top: 32px;
    }
    
    .cases-slider .owl-dot.active,
    .reviews-slider .owl-dot.active {
        width: 28px;
    }
    .footer{
        margin-top:80px;

        padding-top:60px;

        border-radius:30px 30px 0 0;
    }

    .footer__top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer__bottom{
        margin-top:40px;
        padding:30px 0;
    }


    .about-section__wrapper{
        gap:32px;
    }

    .about-section__image{
        height:380px;
        border-radius:30px;
    }

    .about-section__text{
        font-size:16px;
    }

    .about-section__button{
        width:100%;
    }
    .cta-section{
        padding:80px 0;
        border-radius:30px;
    }

    .cta-section__title{
        font-size:40px;
    }

    .cta-form__wrapper{
        padding:30px 20px;
    }

    .guarantees-section{
        padding:70px 0;
        border-radius:30px;
    }

    .guarantees-section__title{
        font-size:36px;
    }

    .guarantees-section__grid{
        grid-template-columns:1fr;
        gap:28px;
    }
      .tasks-section{
        padding:80px 0;
    }

    .tasks-section__title{
        font-size:36px;
    }

    .tasks-grid{
        grid-template-columns:1fr;
    }

    .tasks-section__button{
        width:100%;
    }
    .clients-section{
        padding:80px 0;
    }

    .clients-section__title{
        font-size:36px;
    }

    .clients-logos{
        grid-template-columns:repeat(2,1fr);
    }

    .clients-logo{
        height:120px;
    }

    .clients-cta__button{
        width:100%;
    }
    .cases-section{
        padding:80px 0;
    }

    .cases-section__title{
        font-size:36px;
    }

    .case-card__content{
        padding:30px 20px;
    }

    .case-card__title{
        font-size:22px;
    }

    .case-card__button{
        width:100%;
    }

    .process-section{
        padding:70px 0;
    }

    .process-section__title{
        font-size:36px;
    }

    .process-step{
        gap:20px;
    }

    .process-section__button{
        width:100%;
    }

    .process-form__wrapper{
        padding:30px 20px;
    }
   

    .advantages-section__title{
        font-size:36px;
    }

    .advantages-section__stat span{
        font-size:34px;
    }
    .partners-section{
        padding:80px 0;
    }

    .partners-section__title{
        font-size:36px;
    }

    .partners-section__content{
        padding:40px 30px;
    }

    .partners-section__button{
        width:100%;
    }


    .section-padding {
        padding: 70px 0;
    }

    .text {
        font-size: 16px;
    }
    .header-main{
        padding:25px 0;
    }

    .header-main__logo-text,
    .header-main__socials,
    .header-main__btn{
        display:none;
    }

    .hero-main{
        min-height:auto;
        padding-bottom:50px;
    }

    .hero-main__content{
        padding-top:130px;
    }

    .hero-main__title{
        font-size:35px;
    }


hero-main__advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.advantages-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
    .header-main__burger {
        margin: 0 auto;
    }

}

/* ======================================
TALIPOV
====================================== */
@media (max-width: 700px) {
    .hero-main__advantages{
        grid-template-columns:1fr;
    }
        .products-cta {
        display: block;
    }
    .clients-section__title {
        font-size: 30px;
    }
    .tasks-section__title {
        font-size: 30px;
    }
        .cta-section__title {
        font-size: 30px;
    }
    .products-section__title {
    font-size: 30px;
}
    .products-section__grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .about-section__button {
        width: 100%;
        margin-top: 30px;
    }
        .guarantees-section__title {
        font-size: 30px;
    }
        .cases-section__title {
        font-size: 30px;
    }
    .partners-section__title {
        font-size: 30px;
    }
    .process-section__title {
        font-size: 30px;
    }
        .advantages-section__title {
        font-size: 30px;
    }
.hero-main__text {
    font-size: 17px;
    line-height: 1.4;
}
hero-main__title {
        font-size: 35px;
    }
.modal-form__title {
    font-size: 25px;
}
     .advantages-section__grid{
        grid-template-columns:1fr;
    }
    a.header-main__phone span {
    display: none;
}
.hero-main__bg {
    position: absolute;
    inset: 0;
    top: -65px;
    background: url(/image/bg0.jpg) 60% top no-repeat;
}
.hero-main__bg img {
    display: none;
}
i.fa.fa-phone {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 8, 24, .45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-main__wrapper {
        display: grid;
        grid-template-columns: 1fr 0.3fr 0.3fr;
    }
    .hero-main__buttons{
        flex-direction:column;
    }
    
}


/* ======================================
TALIPOV
====================================== */
@media (max-width: 480px) {

    .btn {
        width: 100%;
    }
    .clients-logos {
        grid-template-columns: repeat(1, 1fr) !important;
    }
    
    .products-section__grid {
        gap: 12px;
    }
    
    .products-card__image {
        height: 160px;
    }
    
    .products-card__title {
        font-size: 18px;
    }
    .clients-logos {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 12px;
    }
    
    .clients-logo {
        height: 100px;
    }
    
    .clients-logo img {
        max-width: 60%;
    }
.btn-primary, .btn-outline {
    width: 100%;
}
}