<style>

:root{
    --bg:#040d14;
    --bg2:#071923;
    --card:#0a1b25;
    --line:#163847;
    --green:#7dff1e;
    --green2:#56e300;
    --text:#ffffff;
    --muted:#b8c7ce;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:
        radial-gradient(circle at top right, rgba(125,255,30,.12), transparent 25%),
        linear-gradient(180deg,#031018 0%, #061721 100%);
    color:#ffffff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}


.check-list{
    list-style:none;
    padding:0;
    margin:0;
}

.check-list li{
    position:relative;
    padding-left:34px;
    margin-bottom:16px;
    color:#d5e0e5;
    line-height:1.7;
}

/* галочка */

.check-list li::before{
    content:'✔';
    position:absolute;
    left:0;
    top:1px;
    color:#7dff1e;
    font-size:18px;
    font-weight:700;
}




.container{
    width:min(1320px,92%);
    margin:auto;
}

section{
    padding:100px 0;
}

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

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(12px);
    background:rgba(2,10,16,.86);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.header-inner{
    height:92px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

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

.logo img{
    width:220px;
}


nav{
   
}

<!-- nav::-webkit-scrollbar{ height:4px; }   -->

<!--   nav::-webkit-scrollbar-thumb{     background:#7dff1e;  border-radius:20px; }  -->

nav ul{
    display:flex;
    gap:10px;
    width:max-content;
}

nav a{
    color:#dce4e8;
    font-size:15px;
    position:relative;
    transition:.3s;
   
}

nav a:hover{
    color:#7dff1e;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#7dff1e;
    transition:.3s;
}

nav a:hover::after{
    width:100%;
}

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

.header-right{

    display:flex;

    align-items:center;

    gap:10px;
}


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

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(to right, rgba(3,10,14,.96) 20%, rgba(3,10,14,.55) 55%, rgba(3,10,14,.2)),
        url('/img/zastavka2.jpg') center/cover no-repeat;
    z-index:-2;
}

.hero::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, transparent 70%, #041018 100%);
    z-index:-1;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.hero h2{
    font-size:76px;
    line-height:1;
    font-weight:800;
    margin-bottom:28px;
    text-transform:uppercase;
}

.hero h2 span{
    color:#7dff1e;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    color:#d5dfe4;
}

.hero-cards{
    display:grid;
    gap:24px;
}

.hero-card{
    background:rgba(8,20,28,.82);
    border:1px solid rgba(125,255,30,.18);
    border-radius:24px;
    padding:32px;
    backdrop-filter:blur(10px);
}

.hero-card h3{
    font-size:48px;
    color:#7dff1e;
    margin-bottom:10px;
}

.hero-card p{
    font-size:16px;
}

/* =========================================
LANGUAGE SELECTOR
========================================= */

.language-selector{
    position:relative;
    flex-shrink:0;
}

.language-selector select{

    min-width:80px;
    height:42px;

    padding:0 36px 0 14px;

    background:
        #07141c
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237dff1e' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5 8 12l6.5-6.5' stroke='%237dff1e' stroke-width='2' fill='none'/%3E%3C/svg%3E")
        no-repeat right 12px center;

    color:#7dff1e;

    border:1px solid rgba(125,255,30,.25);

    border-radius:10px;

    font-size:14px;
    font-weight:600;

    cursor:pointer;

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    transition:.3s;
}

.language-selector select:hover{

    border-color:#7dff1e;

    box-shadow:
        0 0 12px rgba(125,255,30,.18);
}

.language-selector select:focus{

    outline:none;

    border-color:#7dff1e;

    box-shadow:
        0 0 18px rgba(125,255,30,.25);
}

.language-selector option{

    background:#07141c;
    color:#ffffff;
}

/* =========================
ADVANTAGES
========================= */

.advantages-strip{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:28px 34px;
    background:linear-gradient(180deg,#07151d 0%, #051019 100%);
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
    overflow-x:auto;
}

.advantage-item{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:max-content;
}

.advantage-icon{
    width:44px;
    height:44px;
    border-radius:50%;
    border:2px solid #7dff1e;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#7dff1e;
    flex-shrink:0;
}

.advantage-icon i{
    font-size:18px;
}

.advantage-item span{
    font-size:14px;
    text-transform:uppercase;
    line-height:1.4;
}

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

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h3{
    font-size:46px;
    margin-bottom:16px;
    text-transform:uppercase;
}

.section-line{
    width:120px;
    height:4px;
    background:#7dff1e;
    margin:auto;
    border-radius:30px;
}

/* =========================
GRID
========================= */

.grid{
    display:grid;
    gap:28px;
}

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

.grid-4{
    grid-template-columns:repeat(4,1fr);
}

.grid-5{
    grid-template-columns:repeat(5,1fr);
}

/* =========================
CARD
========================= */

.card{
    background:linear-gradient(180deg,#091c27 0%, #07141c 100%);
    border:1px solid rgba(125,255,30,.12);
    border-radius:26px;
    padding:34px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgba(125,255,30,.35);
    box-shadow:0 0 40px rgba(125,255,30,.08);
}

.card-number{
    width:58px;
    height:58px;
    border-radius:50%;
    border:2px solid #7dff1e;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#7dff1e;
    font-weight:700;
    margin-bottom:20px;
}

.card h4{
    font-size:24px;
    margin-bottom:16px;
    line-height:1.35;
}

.card p{
    color:var(--muted);
    line-height:1.8;
}

/* =========================
ACCORDION
========================= */

.accordion{
    margin-top:22px;
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:18px;
}

.accordion-btn{
    width:100%;
    border:none;
    background:rgba(125,255,30,.08);
    color:#7dff1e;
    padding:15px 20px;
    border-radius:14px;
    cursor:pointer;
    font-weight:700;
    transition:.3s;
}

.accordion-btn:hover{
    background:rgba(125,255,30,.16);
}

.accordion-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.accordion-content p{
    padding-top:18px;
}

/* =========================
BENEFITS
========================= */

.benefits{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.benefits-image{
    min-height:520px;
    border-radius:28px;
    overflow:hidden;
    background:
        linear-gradient(rgba(0,0,0,.3), rgba(0,0,0,.3)),
        url('img/zastavka2.jpg') center/cover no-repeat;
    border:1px solid rgba(125,255,30,.15);
}

.benefits-list{
    display:grid;
    gap:24px;
}

.benefit-item{
    background:rgba(10,24,33,.82);
    border:1px solid rgba(255,255,255,.06);
    border-radius:20px;
    padding:26px;
}

.benefit-item h5{
    color:#7dff1e;
    font-size:28px;
    margin-bottom:12px;
}

.benefit-item p{
    color:var(--muted);
    line-height:1.7;
}

/* =========================
FINANCE
========================= */

.finance-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.finance-card{
    background:linear-gradient(180deg,#0a1c27 0%, #07141d 100%);
    border:1px solid rgba(125,255,30,.14);
    border-radius:24px;
    padding:40px 28px;
    text-align:center;
}

.finance-card h4{
    font-size:42px;
    color:#7dff1e;
    margin-bottom:12px;
}

.finance-card p{
    color:var(--muted);
}

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

.contact-box{
    background:linear-gradient(180deg,#091b25 0%, #06131b 100%);
    border:1px solid rgba(125,255,30,.15);
    border-radius:30px;
    padding:60px;
    text-align:center;
}

.contact-box h3{
    font-size:42px;
    margin-bottom:24px;
}

.contact-box p{
    font-size:18px;
    margin-bottom:12px;
    color:#d5e0e5;
}


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

.cta-section1{
    padding:40px 0 90px;
}

.cta-box1{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    padding:50px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    background:
        linear-gradient(
            90deg,
            rgba(2,10,14,.92) 0%,
            rgba(2,10,14,.72) 45%,
            rgba(2,10,14,.45) 100%
        ),
        url('/img/zastavka3.jpg') center/cover no-repeat;
    border:1px solid rgba(125,255,30,.16);
    box-shadow:
        0 0 50px rgba(125,255,30,.06),
        inset 0 0 60px rgba(125,255,30,.03);

}

/* glow */

.cta-box1::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at right center,
            rgba(125,255,30,.18),
            transparent 45%
        );
    pointer-events:none;
}

/* content */

.cta-content1{
    position:relative;
    z-index:2;
    max-width:700px;
}

.cta-content1 h2{
    font-size:52px;
    line-height:1.05;
    font-weight:800;
    margin-bottom:22px;
    text-transform:uppercase;
}

.cta-content1 h2 span{
    color:#7dff1e;
}

.cta-content1 p{
    font-size:19px;
    line-height:1.8;
    color:#d7e0e5;
    max-width:640px;
}

/* action */

.cta-action1{
    position:relative;
    z-index:2;
    min-width:360px;
}

/* button */

.cta-button1{
   display:flex;
    align-items:center;
    justify-content:center;
   gap:14px;
    width:100%;
    min-height:72px;
    padding:20px 34px;
    border-radius:18px;
    background:
        linear-gradient(
            180deg,
            #7dff1e 0%,
            #53d800 100%
        );
    color:#041018;
    font-size:16px;
    font-weight:800;
    text-transform:uppercase;
    transition:.35s;
    box-shadow:
        0 10px 35px rgba(125,255,30,.28);
}

.cta-button1:hover{
    transform:translateY(-3px);
    box-shadow:
        0 16px 40px rgba(125,255,30,.4);
}

.cta-button1 i{
    font-size:16px;
}

/* note */

.cta-note1{
    margin-top:18px;
    text-align:center;
    font-size:14px;
    line-height:1.6;
    color:#c8d4d9;
}



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

footer{
    background:#030c12;
    border-top:1px solid rgba(255,255,255,.06);
    padding:40px 0;
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.footer-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 40px;
    }

    .footer-title {
      font-size: 22px;
      margin-bottom: 24px;
      font-weight: 700;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.72);
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: #78ff1f;
    }





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

.footer-logo img{
    width:160px;
}

.footer-logo h4 span{
    color:#7dff1e;
}

.footer-copy{
    color:#7f959e;
}


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

@media (max-width:768px){

    .header-inner{

        display:flex;

        align-items:center;

        justify-content:flex-start;

        gap:10px;

        padding:10px 15px;

        min-height:70px;
    }

    /* ЛОГО */

    .logo{

        flex:0 0 160px;

        width:160px;
    }

    .logo img{

        display:block;

        width:160px;

        height:auto;

        max-width:none;
    }

    /* Текстовый логотип скрываем */

    .logo-text{
        display:none;
    }

    /* ГАМБУРГЕР */

    .burger{

        flex:0 0 42px;

        width:42px;
        height:42px;

        margin:0;
    }

    /* СЕЛЕКТОР ЯЗЫКОВ */

    .language-selector{

        flex:0 0 70px;

        width:70px;

        margin:0;
    }

    .language-selector select{

        width:70px;
        height:42px;

        font-size:13px;

        padding:0 8px;

        border-radius:8px;
    }

}








/* ======================================================
MOBILE / TABLET
====================================================== */

@media (max-width: 1200px){

    .grid-5{
        grid-template-columns:repeat(3,1fr);
    }

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

}

@media (max-width: 768px){

    .container{
        width:94%;
    }

    section{
        padding:70px 0;
    }

   
    nav{
        width:100%;
    }

    nav ul{
        gap:18px;
        padding:0 12px;
    }

    .hero{
        min-height:auto;
        padding-top:190px;
        padding-bottom:70px;
    }

    .hero::before{
        background:
            linear-gradient(
                180deg,
                rgba(3,10,14,.94) 0%,
                rgba(3,10,14,.75) 45%,
                rgba(3,10,14,.92) 100%
            ),
            url('/img/zastavka2.jpg') center/cover no-repeat;
    }

    .hero-grid,
    .benefits,
    .grid-3,
    .grid-4,
    .grid-5,
    .finance-grid{
        grid-template-columns:1fr;
    }

    .hero h2{
        font-size:44px;
        text-align:center;
    }

    .hero p{
        font-size:16px;
        text-align:center;
    }

    .hero-card{
        padding:24px;
    }

    .hero-card h3{
        font-size:34px;
    }

    .section-title{
        margin-bottom:40px;
    }

    .section-title h3{
        font-size:34px;
        line-height:1.2;
    }

    .card,
    .finance-card,
    .benefit-item,
    .contact-box{
        padding:24px;
    }

    .advantages-strip{
        gap:22px;
        padding:20px 16px;
        scroll-snap-type:x mandatory;
    }

    .advantage-item{
        min-width:240px;
        scroll-snap-align:start;
    }

    .benefits-image{
        min-height:340px;
    }

    .footer-inner{
        flex-direction:column;
        text-align:center;
    }


}
@media (max-width: 992px){

    .language-selector{

        margin-right:10px;
    }

    .language-selector select{

        width:70px;
        min-width:70px;

        height:38px;

        font-size:13px;

        padding-left:10px;
    }

}


/* =========================================
MOBILE
========================================= */

@media (max-width: 768px){

    .cta-box1{
        flex-direction:column;
        align-items:flex-start;
        padding:40px 30px;
    }

    .cta-content1 h2{
        font-size:40px;
    }

    .cta-content1 p{
        font-size:16px;
    }

    .cta-action1{
        width:100%;
        min-width:100%;
    }

}


@media (max-width: 640px){

    .cta-box1{
        padding:32px 22px;
        border-radius:24px;
    }

    .cta-content1 h2{
        font-size:30px;
    }

    .cta-content1 p{
        font-size:15px;
        line-height:1.7;
    }

    .cta-button1{
        min-height:64px;
        font-size:14px;
        padding:18px 20px;
    }

    .cta-note1{
        font-size:13px;
    }


/* =========================================
BURGER
========================================= */

.burger{

    width:42px;
    height:42px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:5px;

    background:none;

    border:none;

    cursor:pointer;

    padding:0;
}

.burger span{

    width:24px;
    height:2px;

    background:#7dff1e;

    transition:.3s;
}

/* ACTIVE */

.burger.active span:nth-child(1){

    transform:
        translateY(7px)
        rotate(45deg);
}

.burger.active span:nth-child(2){

    opacity:0;
}

.burger.active span:nth-child(3){

    transform:
        translateY(-7px)
        rotate(-45deg);
}

/* MOBILE MENU */

@media (max-width:768px){

    nav{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#07141c;

        max-height:0;

        overflow:hidden;

        transition:max-height .4s ease;

        z-index:999;
    }

    nav.active{

        max-height:600px;
    }

    nav ul{

        display:flex;

        flex-direction:column;

        padding:10px 0;
    }

    nav a{

        display:block;

        padding:14px 20px;

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

}
/* =========================================
MOBILE
========================================= */
@media (max-width:768px){


    /* =========================================
    ADVANTAGES
    ========================================= */

    .advantages-strip{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:16px;
        padding:24px 18px;
        overflow:visible;
    }

    .advantage-item{
        min-width:auto;
        width:100%;
        justify-content:flex-start;
        align-items:flex-start;
        padding:18px;
        border-radius:18px;
        background:rgba(255,255,255,.03);
        border:1px solid rgba(255,255,255,.05);
    }

    .advantage-item span{
        font-size:13px;
        line-height:1.5;
    }

}


@media (max-width: 640px){

    .advantages-strip{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .header-right,
    .mobile-controls{

        display:flex;

        align-items:center;

        gap:10px;
    }

}

</style>
