/* ==========================================================
   RESET
========================================================== */

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Manrope",sans-serif;

    background:#0B0F15;

    color:#fff;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    font:inherit;
    cursor:pointer;

}

ul{

    list-style:none;

}

/* ==========================================================
   VARIABLES
========================================================== */

:root{

    --bg:#0B0F15;

    --surface:#151C2D;

    --primary:#E53935;

    --text:#FFFFFF;

    --text-secondary:#AEB7C5;

    --border:rgba(255,255,255,.08);

    --transition:.3s ease;

}

/* ==========================================================
   CONTAINER
========================================================== */

.container{

    width:100%;

    max-width:1800px;

    margin:0 auto;

    padding:0 48px;

}


/* ==========================================================
   HEADER
========================================================== */

.header{

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(11,15,21,.85);

    backdrop-filter:blur(16px);

    border-bottom:1px solid var(--border);

}

.header-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:88px;

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo-icon{

    width:52px;

    height:52px;

    border-radius:16px;

    background:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:800;

}

.logo-text{

    display:flex;

    flex-direction:column;

    line-height:1;

}

.logo-text span:first-child{

    font-size:22px;

    font-weight:800;

}

.logo-text span:last-child{

    color:var(--primary);

    font-size:16px;

    font-weight:700;

}

.nav{

    display:flex;

    gap:48px;

}

.nav a{

    color:var(--text-secondary);

    transition:var(--transition);

}

.nav a:hover{

    color:#fff;

}

.btn-whatsapp{

    display:flex;

    align-items:center;

    justify-content:center;

    height:52px;

    padding:0 28px;

    border-radius:16px;

    background:var(--primary);

    font-weight:700;

    transition:var(--transition);

    gap: 10px;

}

.btn-whatsapp svg{

    width:20px;

    height:20px;

}

.btn-whatsapp:hover{

    transform:translateY(-2px);

}

/* ==========================================================
   HERO
========================================================== */

.hero{

    min-height:calc(100vh - 88px);

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:
        linear-gradient(
            90deg,
            rgba(11,15,21,.97) 0%,
            rgba(11,15,21,.90) 40%,
            rgba(11,15,21,.55) 70%,
            rgba(11,15,21,.25) 100%
        ),
        url("../img/hero-car.png");

    background-size:cover;

    background-position:center right;

}


.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

        radial-gradient(
            circle at left,
            rgba(11,15,21,.9),
            transparent 70%
        );

}

.hero .container{

    position:relative;

    z-index:2;

}

.hero-wrapper{

    display:block;

    max-width:760px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(229,57,53,.12);

    border:1px solid rgba(229,57,53,.25);

    color:#fff;

    font-size:15px;

    font-weight:700;

}

.hero h1{

    margin-top:28px;

    font-size:72px;

    line-height:1.05;

    font-weight:800;

    max-width:760px;

}

.hero p{

    margin-top:28px;

    max-width:640px;

    color:var(--text-secondary);

    font-size:20px;

    line-height:1.8;

}

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:42px;

}

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    height:60px;

    padding:0 34px;

    border-radius:18px;

    font-weight:700;

    transition:var(--transition);

    gap:12px;

}

.btn svg{

    width:20px;

    height:20px;

    stroke-width:2.2;

}

.btn-primary{

    background:var(--primary);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    border:1px solid var(--border);

    background:var(--surface);

}

.btn-secondary:hover{

    border-color:var(--primary);

}

.hero-right{

    display:flex;

    justify-content:flex-end;
align-items:center;
}

.hero-right img{

    width:100%;

    max-width:700px;

    object-fit:contain;

    filter:
        drop-shadow(0 35px 60px rgba(0,0,0,.55));

}

/* ==========================================================
   ADVANTAGES
========================================================== */

.advantages{
    padding:140px 0;
    position:relative;
}

.section-header{
    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border:1px solid rgba(255,255,255,.08);
    border-radius:999px;

    background:rgba(255,255,255,.03);

    color:#9AE6B4;

    font-size:13px;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.section-badge::before{
    content:"";
    width:8px;
    height:8px;

    border-radius:50%;

    background:#59FF89;

    box-shadow:0 0 12px rgba(89,255,137,.8);
}

.section-header h2{
    margin:26px 0 20px;

    font-size:56px;
    line-height:1.1;
    font-weight:700;

    color:#fff;
}

.section-header p{
    color:#9A9A9A;

    font-size:18px;
    line-height:1.8;
}

.advantages-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.advantage-card{

    position:relative;

    padding:38px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    background:#151515;

    overflow:hidden;

    transition:
    transform .35s,
    border-color .35s,
    box-shadow .35s;

}

.advantage-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:60px;

}

.advantage-number{

    font-size:52px;

    font-weight:700;

    color:rgba(255,255,255,.12);

    transition:.35s;

}

.arrow{

    color:#777;

    transition:.35s;

}

.advantage-card h3{

    margin-bottom:18px;

    color:#fff;

    font-size:28px;

    line-height:1.2;

}

.advantage-card p{

    color:#9A9A9A;

    line-height:1.8;

    font-size:16px;

}


.advantage-card::before{
    content:"";

    position:absolute;
    inset:0;

    background:
        radial-gradient(
            circle at top right,
            rgba(59,255,130,.12),
            transparent 55%
        );

    opacity:0;

    transition:.45s;

    pointer-events:none;
}


.advantage-card::after{
    content:"";

    position:absolute;

    top:0;
    left:50%;

    width:0;
    height:2px;

    transform:translateX(-50%);

    background:#59FF89;

    transition:.35s;
}

.advantage-card:hover{

    transform:translateY(-8px);

    border-color:rgba(89,255,137,.35);

    box-shadow:
        0 25px 60px rgba(0,0,0,.45),
        0 0 40px rgba(89,255,137,.10);

}

.advantage-card:hover::before{

    opacity:1;

}

.advantage-card:hover::after{

    width:100%;

}

.advantage-card:hover .advantage-number{

    color:#59FF89;

}

.advantage-card:hover .arrow{

    color:#59FF89;

    transform:
        translateX(4px)
        translateY(-4px);

}

.advantage-card h3{

    transition:.35s;

}

.advantage-card:hover h3{

    color:#59FF89;

}

.advantage-glow{

    position:absolute;

    right:-90px;
    top:-90px;

    width:220px;
    height:220px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(89,255,137,.22),
            transparent 70%
        );

    filter:blur(30px);

    opacity:.15;

    transition:.4s;

    pointer-events:none;

}

.advantage-card:hover .advantage-glow{

    opacity:.5;

    transform:scale(1.2);

}

.advantage-card{
    min-height: 340px;
}

.categories{

    padding:140px 0;

}

.categories-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    grid-auto-rows:320px;

    gap:28px;

}

.category-large{

    min-height:420px;
    grid-row:span 2;
}


.category-card{

    position:relative;

    overflow:hidden;

    border-radius:30px;

    background:#141414;

    border:1px solid rgba(255,255,255,.08);

    transition:
        transform .45s,
        border-color .45s,
        box-shadow .45s;

}

.category-card img{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:
        transform .8s ease,
        filter .8s ease;

}

.category-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(

        to top,

        rgba(0,0,0,.82),

        rgba(0,0,0,.18),

        transparent

    );

    z-index:1;

}

.category-content{

    position:absolute;

    left:32px;

    bottom:32px;

    z-index:2;

}


.category-content h3{

    color:#fff;

    font-size:34px;

    font-weight:700;

    margin-bottom:10px;

}



.category-content p{

    color:#B5B5B5;

    font-size:17px;

}

.category-arrow{

    position:absolute;

    right:28px;

    bottom:28px;

    width:58px;

    height:58px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    color:#fff;

    z-index:5;

    transition:.35s;

}

.category-card:hover{

    transform:translateY(-8px);

    border-color:rgba(89,255,137,.35);

    box-shadow:

    0 25px 60px rgba(0,0,0,.45),

    0 0 45px rgba(89,255,137,.12);

}

.category-card:hover img{

    transform:scale(1.08);

    filter:brightness(1.08);

}

.category-card:hover .category-arrow{

    background:#59FF89;

    color:#111;

    transform:translateX(4px);

}

.category-card h3{

    transition:.35s;

}

.category-card:hover h3{

    color:#59FF89;

}

/* ==========================================================
   WORKFLOW
========================================================== */

.workflow{
    position: relative;
    padding: 140px 0;
}

.workflow-line{

    position:relative;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

    margin-top:90px;

}

.workflow-line::before{

    content:"";

    position:absolute;

    top:36px;

    left:8%;

    width:84%;

    height:2px;

    background:rgba(255,255,255,.08);

}

.workflow-item{

    position:relative;

    text-align:center;

}

.workflow-item span{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:72px;

    height:72px;

    border-radius:50%;

    background:#151515;

    border:1px solid rgba(255,255,255,.08);

    color:#59FF89;

    font-size:22px;

    font-weight:700;

    position:relative;

    z-index:2;

}

.workflow-icon{

    width:74px;

    height:74px;

    margin:34px auto;

    border-radius:22px;

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

     display:flex;

    justify-content:center;

    align-items:center;

}

.workflow-item h3{

    margin-bottom:18px;

    color:#fff;

    font-size:28px;

}

.workflow-item p{

    color:#9A9A9A;

    line-height:1.8;

    font-size:16px;

}

.workflow-item span{

    transition:.35s;

}

.workflow-icon{

    transition:.35s;

}

.workflow-item:hover span{

    background:#59FF89;

    color:#111;

}

.workflow-item:hover .workflow-icon{

    border-color:#59FF89;

    transform:translateY(-8px);

    box-shadow:

    0 20px 40px rgba(89,255,137,.15);

}

/* ==========================================================
   SHOWCASE
========================================================== */

.showcase{

    padding:140px 0;

}

.showcase-banner{

    position:relative;

    min-height:720px;

    border-radius:40px;

    overflow:hidden;

    background:#161616;

    border:1px solid rgba(255,255,255,.08);

}

.showcase-banner{

    background-image:url("../img/company.png");

    background-size:cover;

    background-position:center;

}

.showcase-overlay{

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.82) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.25) 100%
        );

}

.showcase-content{

    position:relative;

    z-index:2;

    max-width:760px;

    padding:90px;

}

.showcase-badge{

    display:inline-flex;

    padding:12px 20px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:#59FF89;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.showcase-content h2{

    margin:32px 0 26px;

    font-size:72px;

    line-height:1.05;

    color:#fff;

}

.showcase-content h2 span{

    color:#59FF89;

}

.showcase-content p{

    max-width:620px;

    font-size:20px;

    line-height:1.8;

    color:#B5B5B5;

    margin-bottom:42px;

}

.showcase-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    padding:18px 34px;

    border-radius:18px;

    background:#59FF89;

    color:#111;

    font-size:16px;

    font-weight:600;

    text-decoration:none;

    transition:all .35s cubic-bezier(.2,.8,.2,1);

}

.showcase-btn svg{

    transition:.35s;

}

.showcase-btn:hover{

    transform:translateY(-4px);

    box-shadow:

        0 20px 45px rgba(89,255,137,.35);

}

.showcase-btn:hover svg{

    transform:translate(4px,-4px);

}

.showcase-btn:active{

    transform:scale(.98);

}

/* ==========================================================
   ABOUT
========================================================== */

.about{

    padding:140px 0;

}

.about-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    

    border-radius:40px;

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    overflow:hidden;

}

.about-content{

    max-width:650px;

}

.about-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    color:#59FF89;

    font-size:14px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

.about-content h2{

    margin:30px 0;

    color:#fff;

    font-size:56px;

    line-height:1.15;

}

.about-content p{

    color:#A8A8A8;

    font-size:18px;

    line-height:1.9;

    margin-bottom:24px;

}

.about-stats{

    display:flex;

    gap:60px;

    margin-top:60px;

}

.about-stat h3{

    color:#59FF89;

    font-size:52px;

    margin-bottom:12px;

}

.about-stat span{

    color:#999;

    font-size:15px;

    text-transform:uppercase;

    letter-spacing:.08em;

}

/* ==========================================================
   FOOTER
========================================================== */

.footer{

    padding:100px 0 40px;

    border-top:1px solid rgba(255,255,255,.08);

    background:#0F0F0F;

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

}

.footer-logo{

    display:inline-block;

    margin-bottom:24px;

    color:#fff;

    font-size:32px;

    font-weight:700;

    text-decoration:none;

}

.footer-info p{

    color:#999;

    line-height:1.9;

    max-width:420px;

}


.footer h3{

    margin-bottom:22px;

    color:#fff;

    font-size:20px;

}

.footer ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer li{

    margin-bottom:16px;

}

.footer a{

    color:#9A9A9A;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#59FF89;

}

.footer-contact li{

    color:#9A9A9A;

}

.footer-bottom{

    padding-top:40px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

}

.footer-bottom p{

    color:#777;

    font-size:15px;

}


/* ==========================================================
   REVEAL ANIMATION
========================================================== */

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:
        opacity .8s ease,
        transform .8s ease;

    will-change:opacity, transform;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}


.workflow-icon svg{

    width:34px;

    height:34px;

    stroke:#59FF89;

    stroke-width:2;

    transition:.35s;

}

.workflow-item:hover .workflow-icon svg{

    transform:scale(1.15);

}


.footer-contact li{

    display:flex;

    align-items:center;

    gap:12px;

}

.footer-contact svg{

    width:18px;

    height:18px;

    color:#59FF89;

    flex-shrink:0;

}

.footer-social ul{

    display:flex;

    gap:16px;

}

.footer-social a{

   width:50px;
    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

    background:#171717;

    transition:.35s;

}

.footer-social svg{

    width:20px;
    height:20px;

}

.footer-social a:hover{

    background:#59FF89;

    color:#111;

    transform:translateY(-4px);

}


/* ==========================================================
   BURGER
========================================================== */

.burger{

    display:none;

    position:relative;

    width:54px;
    height:54px;

    border:none;
    background:none;

    cursor:pointer;

    z-index:1200;

}

.burger span{

    position:absolute;

    left:13px;

    width:28px;
    height:2px;

    background:#fff;

    border-radius:10px;

    transition:.35s;

}

.burger span:nth-child(1){

    top:17px;

}

.burger span:nth-child(2){

    top:26px;

}

.burger span:nth-child(3){

    top:35px;

}

/* active */

.burger.active span:nth-child(1){

    top:26px;

    transform:rotate(45deg);

}

.burger.active span:nth-child(2){

    opacity:0;

}

.burger.active span:nth-child(3){

    top:26px;

    transform:rotate(-45deg);

}

/* ==========================================================
   MOBILE MENU
========================================================== */

.mobile-menu{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(11,15,21,.96);

    backdrop-filter:blur(18px);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.35s;

    z-index:1100;

}

.mobile-menu.active{

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}

.mobile-menu-content{

    text-align:center;

}

.mobile-nav{

    display:flex;

    flex-direction:column;

    gap:28px;

    margin-bottom:50px;

}

.mobile-nav a{

    color:#fff;

    font-size:38px;

    font-weight:700;

    transition:.35s;

}

.mobile-nav a:hover{

    color:#59FF89;

}

.mobile-btn{

    display:inline-flex;

}

/* блокировка скролла */

body.menu-open{

    overflow:hidden;

}



@media (max-width:992px){

    .nav{

        display:none;

    }

    .btn-whatsapp{

        display:none;

    }

    .burger{

        display:block;

    }

}


/* ==========================================================
   1400px
========================================================== */

@media (max-width:1400px){

    .container{

        padding:0 36px;

    }

    /* HERO */

    .hero{

        background-position:65% center;

    }

    .hero-wrapper{

        max-width:680px;

    }

    .hero h1{

        font-size:60px;

    }

    .hero p{

        font-size:18px;

        max-width:560px;

    }

    .hero-buttons{

        gap:16px;

    }

    /* SECTION */

    .advantages,
    .categories,
    .workflow,
    .showcase,
    .about{

        padding:120px 0;

    }

    .section-header{

        margin-bottom:60px;

    }

    .section-header h2{

        font-size:48px;

    }

    /* ADVANTAGES */

    .advantages-grid{

        gap:24px;

    }

    .advantage-card{

        padding:32px;

    }

    .advantage-card h3{

        font-size:24px;

    }

    /* CATEGORIES */

    .categories-grid{

        gap:24px;

        grid-auto-rows:280px;

    }

    .category-large{

        min-height:360px;

    }

    .category-content h3{

        font-size:28px;

    }

    /* WORKFLOW */

    .workflow-line{

        gap:24px;

    }

    .workflow-item h3{

        font-size:24px;

    }

    /* SHOWCASE */

    .showcase-banner{

        min-height:620px;

    }

    .showcase-content{

        padding:70px;

    }

    .showcase-content h2{

        font-size:60px;

    }

    .showcase-content p{

        font-size:18px;

    }

    /* ABOUT */

    .about-wrapper{

        gap:60px;

    }

    .about-content h2{

        font-size:48px;

    }

    .about-stats{

        gap:40px;

    }

    /* FOOTER */

    .footer-top{

        gap:40px;

    }

}

/* ==========================================================
   1200px
========================================================== */

@media (max-width:1200px){

    .container{

        padding:0 28px;

    }

    /* HERO */

    .hero{

        background-position:72% center;

    }

    .hero-wrapper{

        max-width:620px;

    }

    .hero h1{

        font-size:52px;

    }

    .hero p{

        max-width:520px;

        font-size:17px;

        line-height:1.7;

    }

    .hero-buttons{

        gap:14px;

    }

    .btn{

        height:56px;

        padding:0 28px;

    }

    /* SECTION */

    .advantages,
    .categories,
    .workflow,
    .showcase,
    .about{

        padding:100px 0;

    }

    .section-header{

        margin-bottom:56px;

    }

    .section-header h2{

        font-size:42px;

    }

    .section-header p{

        font-size:17px;

    }

    /* ADVANTAGES */

    .advantages-grid{

        gap:20px;

    }

    .advantage-card{

        min-height:300px;

        padding:28px;

    }

    .advantage-number{

        font-size:42px;

    }

    .advantage-card h3{

        font-size:22px;

    }

    /* CATEGORIES */

    .categories-grid{

        gap:20px;

        grid-auto-rows:240px;

    }

    .category-large{

        min-height:300px;

    }

    .category-content{

        left:24px;

        bottom:24px;

    }

    .category-content h3{

        font-size:24px;

    }

    .category-content p{

        font-size:15px;

    }

    .category-arrow{

        width:52px;

        height:52px;

        right:20px;

        bottom:20px;

    }

    /* WORKFLOW */

    .workflow-line{

        gap:20px;

    }

    .workflow-item h3{

        font-size:22px;

    }

    .workflow-item p{

        font-size:15px;

    }

    /* SHOWCASE */

    .showcase-banner{

        min-height:560px;

    }

    .showcase-content{

        padding:56px;

        max-width:620px;

    }

    .showcase-content h2{

        font-size:52px;

    }

    .showcase-content p{

        font-size:17px;

    }

    /* ABOUT */

    .about-wrapper{

        gap:48px;

    }

    .about-content h2{

        font-size:42px;

    }

    .about-content p{

        font-size:17px;

    }

    .about-stats{

        gap:28px;

    }

    .about-stat h3{

        font-size:42px;

    }

    /* FOOTER */

    .footer-top{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

}


/* ==========================================================
   992px
========================================================== */

@media (max-width:992px){

    .container{

        padding:0 24px;

    }

    /* HEADER */

    .header-wrapper{

        height:80px;

    }

    .logo-icon{

        width:46px;
        height:46px;

        font-size:22px;

    }

    .logo-text span:first-child{

        font-size:20px;

    }

    .logo-text span:last-child{

        font-size:14px;

    }

    /* HERO */

    .hero{

        min-height:auto;

        padding:80px 0 90px;

        background-position:78% center;

    }

    .hero-wrapper{

        max-width:100%;

    }

    .hero h1{

        font-size:46px;

        max-width:620px;

    }

    .hero p{

        font-size:17px;

        max-width:560px;

    }

    .hero-buttons{

        flex-wrap:wrap;

    }

    /* SECTION */

    .advantages,
    .categories,
    .workflow,
    .showcase,
    .about{

        padding:90px 0;

    }

    .section-header{

        margin-bottom:50px;

    }

    .section-header h2{

        font-size:38px;

    }

    /* ADVANTAGES */

    .advantages-grid{

        grid-template-columns:repeat(2,1fr);

    }

    /* CATEGORIES */

    .categories-grid{

        grid-template-columns:1fr;

        grid-auto-rows:300px;

    }

    .category-large{

        grid-row:auto;

        min-height:300px;

    }

    /* WORKFLOW */

    .workflow-line{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

        margin-top:60px;

    }

    .workflow-line::before{

        display:none;

    }

    /* SHOWCASE */

    .showcase-banner{

        min-height:520px;

        border-radius:30px;

    }

    .showcase-content{

        padding:50px;

        max-width:100%;

    }

    .showcase-content h2{

        font-size:46px;

    }

    /* ABOUT */

    .about-wrapper{

        grid-template-columns:1fr;

        gap:50px;

    }

    .about-image{

        min-height:420px;

    }

    .about-content{

        max-width:100%;

    }

    /* FOOTER */

    .footer{

        padding:80px 0 40px;

    }

    .footer-top{

        grid-template-columns:repeat(2,1fr);

        gap:40px;

    }

}

/* ==========================================================
   768px
========================================================== */

@media (max-width:768px){

    .container{

        padding:0 20px;

    }

    /* HERO */

    .hero{

        padding:70px 0 80px;

        background-position:82% center;

    }

    .hero-badge{

        font-size:13px;

        padding:8px 16px;

    }

    .hero h1{

        font-size:40px;

        line-height:1.1;

    }

    .hero p{

        margin-top:22px;

        font-size:16px;

        line-height:1.7;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:stretch;

        margin-top:36px;

    }

    .btn{

        width:100%;

        height:56px;

    }

    /* SECTION */

    .advantages,
    .categories,
    .workflow,
    .showcase,
    .about{

        padding:80px 0;

    }

    .section-header{

        margin-bottom:42px;

    }

    .section-header h2{

        font-size:34px;

    }

    .section-header p{

        font-size:16px;

    }

    /* ADVANTAGES */

    .advantages-grid{

        grid-template-columns:1fr;

    }

    .advantage-card{

        min-height:auto;

    }

    /* CATEGORIES */

    .categories-grid{

        grid-auto-rows:260px;

    }

    .category-large{

        min-height:260px;

    }

    .category-content{

        left:22px;

        bottom:22px;

    }

    .category-content h3{

        font-size:22px;

    }

    .category-arrow{

        width:48px;

        height:48px;

    }

    /* WORKFLOW */

    .workflow-line{

        grid-template-columns:1fr;

        gap:36px;

    }

    /* SHOWCASE */

    .showcase-banner{

        min-height:460px;

        border-radius:24px;

    }

    .showcase-content{

        padding:36px;

    }

    .showcase-content h2{

        font-size:38px;

    }

    .showcase-content p{

        font-size:16px;

    }

    .showcase-btn{

        width:100%;

        justify-content:center;

    }

    /* ABOUT */

    .about-image{

        min-height:340px;

        border-radius:28px;

    }

    .about-content h2{

        font-size:36px;

    }

    .about-stats{

        justify-content:space-between;

        gap:20px;

    }

    .about-stat h3{

        font-size:34px;

    }

    /* FOOTER */

    .footer-top{

        grid-template-columns:1fr;

        gap:36px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

        gap:12px;

    }

}


/* ==========================================================
   576px
========================================================== */

@media (max-width:576px){

    .container{

        padding:0 18px;

    }

    /* HEADER */

    .header-wrapper{

        height:74px;

    }

    .logo{

        gap:10px;

    }

    .logo-icon{

        width:42px;
        height:42px;

        font-size:20px;

        border-radius:12px;

    }

    .logo-text span:first-child{

        font-size:18px;

    }

    .logo-text span:last-child{

        font-size:13px;

    }

    .burger{

        width:48px;
        height:48px;

    }

    /* HERO */

    .hero{

        padding:60px 0 70px;

        background-position:85% center;

    }

    .hero-badge{

        font-size:12px;

        padding:8px 14px;

    }

    .hero h1{

        margin-top:22px;

        font-size:34px;

        line-height:1.15;

    }

    .hero p{

        margin-top:20px;

        font-size:15px;

        line-height:1.7;

    }

    .hero-buttons{

        margin-top:30px;

        gap:14px;

    }

    .btn{

        height:54px;

        font-size:15px;

        padding:0 22px;

    }

    /* SECTION */

    .advantages,
    .categories,
    .workflow,
    .showcase,
    .about{

        padding:70px 0;

    }

    .section-header{

        margin-bottom:36px;

    }

    .section-header h2{

        font-size:30px;

    }

    .section-header p{

        font-size:15px;

    }

    /* ADVANTAGES */

    .advantage-card{

        padding:24px;

    }

    .advantage-number{

        font-size:34px;

    }

    .advantage-card h3{

        font-size:20px;

    }

    /* CATEGORIES */

    .categories-grid{

        grid-auto-rows:220px;

        gap:16px;

    }

    .category-large{

        min-height:220px;

    }

    .category-content{

        left:18px;

        bottom:18px;

    }

    .category-content h3{

        font-size:20px;

    }

    .category-content p{

        font-size:14px;

    }

    .category-arrow{

        width:44px;

        height:44px;

        right:18px;

        bottom:18px;

    }

    /* WORKFLOW */

    .workflow-icon{

        width:64px;

        height:64px;

    }

    .workflow-item h3{

        font-size:20px;

    }

    /* SHOWCASE */

    .showcase-banner{

        min-height:420px;

        border-radius:20px;

    }

    .showcase-content{

        padding:28px;

    }

    .showcase-content h2{

        font-size:32px;

    }

    .showcase-content p{

        font-size:15px;

    }

    .showcase-btn{

        width:100%;

        justify-content:center;

        padding:16px 22px;

    }

    /* ABOUT */

    .about-image{

        min-height:280px;

        border-radius:24px;

    }

    .about-content h2{

        font-size:30px;

    }

    .about-content p{

        font-size:15px;

    }

    .about-stats{

        flex-wrap:wrap;

        gap:24px;

    }

    .about-stat{

        width:100%;

    }

    .about-stat h3{

        font-size:30px;

    }

    /* FOOTER */

    .footer{

        padding:70px 0 30px;

    }

    .footer-logo{

        font-size:28px;

    }

    .footer h3{

        font-size:18px;

    }

}

/* ==========================================================
   430px
========================================================== */

@media (max-width:430px){

    .container{

        padding:0 16px;

    }

    /* HEADER */

    .header-wrapper{

        height:70px;

    }

    .logo{

        gap:8px;

    }

    .logo-icon{

        width:38px;
        height:38px;

        font-size:18px;

        border-radius:10px;

    }

    .logo-text span:first-child{

        font-size:17px;

    }

    .logo-text span:last-child{

        font-size:12px;

    }

    .burger{

        width:44px;
        height:44px;

    }

    /* HERO */

    .hero{

        min-height: 80vh;

        padding:10px 0 50px;

        background-position:82% center;
        background-size:cover;

    }

    .hero-badge{

        font-size:16px;

        padding:7px 12px;

    }

    .hero h1{

        margin-top:18px;

        font-size:30px;

        line-height:1.15;

    }

    .hero p{

        margin-top:18px;

        font-size:15px;

        line-height:1.65;

    }

    .hero-buttons{

        margin-top:26px;

        gap:12px;

    }

    .btn{

        width:100%;

        height:52px;

        padding:0 18px;

        border-radius:14px;

        font-size:15px;

    }

    /* SECTION */

    .advantages,
    .categories,
    .workflow,
    .showcase,
    .about{

        padding:60px 0;

    }

    .section-header{

        margin-bottom:32px;

    }

    .section-header h2{

        font-size:28px;

        line-height:1.2;

    }

    .section-header p{

        font-size:15px;

    }

    /* ADVANTAGES */

    .advantage-card{

        padding:22px;

        border-radius:22px;

    }

    .advantage-top{

        margin-bottom:40px;

    }

    .advantage-number{

        font-size:30px;

    }

    .advantage-card h3{

        font-size:19px;

    }

    .advantage-card p{

        font-size:15px;

    }

    /* CATEGORIES */

    .categories-grid{

        grid-auto-rows:200px;

        gap:14px;

    }

    .category-large{

        min-height:200px;

    }

    .category-card{

        border-radius:22px;

    }

    .category-content{

        left:16px;

        bottom:16px;

    }

    .category-content h3{

        font-size:18px;

    }

    .category-content p{

        font-size:13px;

    }

    .category-arrow{

        width:40px;

        height:40px;

        right:16px;

        bottom:16px;

        font-size:18px;

    }

    /* WORKFLOW */

    .workflow{

        padding:60px 0;

    }

    .workflow-line{

        gap:30px;

        margin-top:40px;

    }

    .workflow-item span{

        width:58px;

        height:58px;

        font-size:18px;

    }

    .workflow-icon{

        width:58px;

        height:58px;

        margin:22px auto;

    }

    .workflow-icon svg{

        width:28px;

        height:28px;

    }

    .workflow-item h3{

        font-size:18px;

    }

    .workflow-item p{

        font-size:15px;

    }

    /* SHOWCASE */

    .showcase-banner{

        min-height:380px;

        border-radius:18px;

        background-position:center;

    }

    .showcase-content{

        padding:24px;

    }

    .showcase-content h2{

        font-size:28px;

    }

    .showcase-content p{

        font-size:15px;

        margin-bottom:28px;

    }

    .showcase-btn{

        width:100%;

        justify-content:center;

        height:52px;

    }

    /* ABOUT */

    .about-image{

        min-height:240px;

        border-radius:20px;

    }

    .about-content h2{

        font-size:28px;

    }

    .about-content p{

        font-size:15px;

    }

    .about-stats{

        flex-direction:column;

        gap:18px;

        margin-top:36px;

    }

    .about-stat h3{

        font-size:28px;

    }

    .about-stat span{

        font-size:13px;

    }

    /* FOOTER */

    .footer{

        padding:60px 0 24px;

    }

    .footer-top{

        gap:28px;

    }

    .footer-logo{

        font-size:24px;

    }

    .footer h3{

        font-size:17px;

    }

    .footer-bottom{

        gap:10px;

    }

    .footer-bottom p{

        font-size:13px;

    }

    /* MOBILE MENU */

    .mobile-nav a{

        font-size:30px;

    }

}