/* RESET */
:root{

    --background:#0B0F14;
    --surface:#121922;

    --primary:#3FA9F5;
    --primary-hover:#5CB8FF;

    --text:#FFFFFF;
    --text-secondary:#AEB8C5;

    --border:rgba(255,255,255,.06);

    --radius:22px;

    --transition:.35s ease;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* SITE */

body{
 background:var(--background);
    color:var(--text);
    font-family:'Inter',sans-serif;
    min-height:100vh;
    overflow-x:hidden;
position:relative;
}

.container{
    .container{
    width:min(90%, 1320px);
    margin:0 auto;
    padding:0 10px;
}
}

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:82px;
    background:rgba(11,15,20,.78);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(255,255,255,.06);
    z-index:1000;
    transition:all .3s ease;
}

.header .container{
    height:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:70px;
    display:block;
    transition:transform .3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}

nav ul{
    display:flex;
    align-items:center;
    gap:34px;
    list-style:none;
}

nav a{
    position:relative;
    color:#E8EDF5;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    letter-spacing:.2px;
    transition:color .3s ease;
}

nav a:hover{
    color:#3FA9F5;
}

nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#3FA9F5;
    border-radius:50px;
    transition:width .3s ease;
}

nav a:hover::after{
    width:100%;
}

/* ===========================
   HERO SECTION
=========================== */

#hero{
    min-height:calc(100vh - 82px);
    display:flex;
    align-items:center;
    padding:82px 0 0;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    width:100%;
}

.hero-content{
    flex:1;
    max-width:640px;
    position:relative;
z-index:2;
}

.badge{
    display:inline-block;
    padding:12px 20px;
    border:1px solid rgba(63,169,245,.35);
    background:rgba(63,169,245,.08);
    color:#3FA9F5;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    margin-bottom:25px;
}

.hero h1{
    font-size:clamp(48px, 5vw, 72px);
    line-height:1.05;
    font-weight:800;
    letter-spacing:-2px;
    margin-bottom:28px;
    max-width:780px;
}

.hero p{
    font-size:18px;
    line-height:1.9;
    color:#AEB8C5;
    margin-bottom:45px;
    max-width:560px;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:linear-gradient(135deg,#3FA9F5,#1D7FEA);
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:14px;
    box-shadow:0 12px 30px rgba(63,169,245,.25);
    transition:all .3s ease;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 40px rgba(63,169,245,.40);
}
.hero{
    justify-content:space-between;
    gap:140px;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    position:relative;
}
.hero-image img{
    width:100%;
    max-width:760px;
    height:auto;
    object-fit:contain;
    filter:drop-shadow(0 25px 60px rgba(63,169,245,.18));
}

/* ===========================
   BACKGROUND EFFECT
=========================== */

body::before{
    content:"";
    position:fixed;
    top:-250px;
    right:-250px;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#3FA9F5 0%,transparent 70%);
    opacity:.12;
    filter:blur(80px);
    pointer-events:none;
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    bottom:-300px;
    left:-250px;
    width:600px;
    height:600px;
    background:radial-gradient(circle,#1E88E5 0%,transparent 70%);
    opacity:.08;
    filter:blur(90px);
    pointer-events:none;
    z-index:-1;
}

.logo-glow{
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(63,169,245,.28) 0%,
        rgba(63,169,245,.12) 40%,
        transparent 75%);
    filter:blur(25px);
    z-index:0;
}

.hero-image img{
    position:relative;
    z-index:1;
}

/*=========================
    SERVICII
=========================*/

#servicii{
    padding:140px 0;
}

.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-title span{
    color:#3FA9F5;
    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.section-title h2{
    margin:18px 0;
    font-size:48px;
    font-weight:700;
    line-height:1.2;
}

.section-title p{
    color:#AEB8C5;
    font-size:18px;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card{
    background:#121922;
    border:1px solid rgba(255,255,255,.06);
    border-radius:22px;
    padding:36px;
    min-height:250px;

    display:flex;
    flex-direction:column;
    justify-content:flex-start;

    transition:all .35s ease;
}

.card:hover{
    transform:translateY(-10px);
    border-color:rgba(63,169,245,.45);
    box-shadow:0 18px 45px rgba(20,120,255,.15);
}

.service-icon{
    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    background:rgba(63,169,245,.08);

    font-size:30px;

    margin-bottom:28px;
}

.card h3{
    font-size:28px;
    margin-bottom:18px;
}

.card p{
    color:#AEB8C5;
    line-height:1.8;
    font-size:17px;
}

.service-icon svg{
    width:30px;
    height:30px;
    stroke:#3FA9F5;
    stroke-width:2;
}

/*=========================
    AVANTAJE
=========================*/

#avantaje{
    padding:140px 0;
}

.advantages-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

#avantaje .card{
    text-align:left;
    min-height:220px;
}

#avantaje .card h3{
    font-size:24px;
    margin-bottom:18px;
}

#avantaje .card p{
    color:var(--text-secondary);
    line-height:1.8;
}

.adv-number{
    display:inline-block;
    margin-bottom:20px;
    font-size:14px;
    font-weight:700;
    color:var(--primary);
    letter-spacing:2px;
}



/*=========================
        FOOTER
=========================*/

#footer{
    padding:80px 0 40px;
    border-top:1px solid var(--border);
}

.footer-content{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-logo{
    height:60px;
    margin-bottom:25px;
}

.footer-content p{
    max-width:600px;
    color:var(--text-secondary);
    line-height:1.8;
    margin-bottom:20px;
}

.footer-content small{
    color:#6E7784;
    font-size:14px;
}

/*=========================
      RESPONSIVE
=========================*/

@media (max-width: 992px){
@media (max-width:768px){

    .container{
        width:92%;
    }

    .header{
        height:75px;
    }

    .logo img{
        height:52px;
    }

   .nav{
    display:none;
}

.menu-toggle{
    display:flex;
}
    #hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:42px;
    }

    .hero p{
        font-size:17px;
    }

    .hero-image img{
        max-width:340px;
    }

    .section-title h2{
        font-size:34px;
    }

    .advantages-grid{
        grid-template-columns:1fr;
    }

    .btn-primary{
        width:100%;
        max-width:320px;
    }

}
    .hero{
        flex-direction:column;
        text-align:center;
        gap:60px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero p{
        margin:0 auto 45px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-image{
        justify-content:center;
    }

    .hero-image img{
        max-width:500px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .advantages-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .nav.active{

    display:flex;

    position:absolute;

    top:75px;
    left:0;

    width:100%;

    background:#0B0F14;

    border-top:1px solid rgba(255,255,255,.08);
}

.nav.active .nav-links{

    width:100%;

    display:flex;
    flex-direction:column;

    gap:0;
}

.nav.active li{

    text-align:center;

    border-bottom:1px solid rgba(255,255,255,.05);
}

.nav.active a{

    display:block;

    padding:20px;
}

}

.hero-image::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:radial-gradient(circle,
        rgba(63,169,245,.12) 0%,
        transparent 70%);
    z-index:0;
}

/*=========================
      HAMBURGER MENU
=========================*/

.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:none;
    cursor:pointer;

    flex-direction:column;
    justify-content:center;
    gap:6px;
}

.menu-toggle span{
    width:28px;
    height:2px;
    background:#fff;
    border-radius:50px;
    transition:.3s;
}

/*=========================
      SCROLL ANIMATIONS
=========================*/

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:opacity .8s ease, transform .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}