:root{
    --primary:#0b5d2a;
    --secondary:#0f6f34;
    --accent:#24a05a;
    --light:#f5f7f5;
    --white:#ffffff;
    --text:#2f2f2f;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--light);
    color:var(--text);
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 5%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
    transition:.3s;
	backdrop-filter:blur(10px);
    background:rgba(11,93,42,.85);
}

.navbar.scrolled{
    background:#0b5d2a;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    font-size:26px;
    font-weight:700;
}

.logo i{
    font-size:28px;
}

.nav-menu{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-menu a{
    text-decoration:none;
    color:white;
    font-weight:500;
}

.nav-actions{
    display:flex;
    gap:10px;
}

.btn-nav-login{
    color:white;
    text-decoration:none;
    padding:10px 20px;
}

.btn-nav-register{
    background:white;
    color:#0b5d2a;
    text-decoration:none;
    padding:10px 20px;
    border-radius:50px;
    font-weight:600;
}

/* HERO */

.hero{
    min-height:100vh;
    background:linear-gradient(
        135deg,
        #0b5d2a,
        #15763a
    );
    padding:130px 5% 80px;
}

.hero-content{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:10px 20px;
    border-radius:50px;
    color:white;
    margin-bottom:20px;
}

.hero-text h1{
    color:white;
    font-size:3.5rem;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-text p{
    color:#e7f6ec;
    line-height:1.8;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:white;
    color:#0b5d2a;
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
    font-weight:600;
}

.btn-outline{
    border:2px solid white;
    color:white;
    text-decoration:none;
    padding:15px 28px;
    border-radius:12px;
}

/* STAT HERO */

.hero-stats{
    display:flex;
    gap:40px;
    margin-top:40px;
    flex-wrap:wrap;
}

.hero-stats h3{
    color:white;
    font-size:28px;
}

.hero-stats span{
    color:#dff7e6;
}

/* CLOUD CARD */

.hero-preview{
    display:flex;
    justify-content:center;
}

.cloud-card{
    width:420px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    border-radius:25px;
    padding:25px;
    border:1px solid rgba(255,255,255,.2);
    color:white;
    animation:float 4s ease-in-out infinite;
}

.cloud-header{
    display:flex;
    gap:10px;
    align-items:center;
    font-size:22px;
    margin-bottom:20px;
}

.file-item{
    background:rgba(255,255,255,.12);
    padding:15px;
    border-radius:12px;
    display:flex;
    gap:15px;
    margin-bottom:12px;
}

.progress-box{
    margin-top:20px;
}

.progress-top{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
}

.progress-bar{
    height:10px;
    border-radius:20px;
    background:rgba(255,255,255,.2);
    overflow:hidden;
}

.progress-fill{
    width:23%;
    height:100%;
    background:#7dffb0;
}

/* FEATURES */

.features{
    padding:100px 5%;
}

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

.section-title h2{
    color:#0b5d2a;
    margin-bottom:10px;
    font-size:2.5rem;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.feature-card{
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(10px);
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    border:1px solid rgba(0,0,0,.05);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.feature-card i{
    font-size:50px;
    color:#24a05a;
    margin-bottom:20px;
}

/* STATS */

.stats{
    background:#0b5d2a;
    color:white;
    padding:70px 5%;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
}

.stats h3{
    font-size:2rem;
    margin-bottom:10px;
}

/* CTA */

.cta{
    padding:100px 5%;
    text-align:center;
}

.cta h2{
    color:#0b5d2a;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

/* FOOTER */

footer{
    background:#0b5d2a;
    color:white;
    padding:60px 5%;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-grid a{
    display:block;
    color:white;
    text-decoration:none;
    margin-bottom:10px;
}

/* ANIMATION */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

    .cloud-card{
        width:100%;
        max-width:450px;
    }

}

@media(max-width:768px){

    .navbar{
        flex-wrap:wrap;
        padding:15px 20px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-menu,
    .nav-actions{
        display:none;
        width:100%;
    }

    .nav-menu.active,
    .nav-actions.active{
        display:flex;
    }

    .nav-menu{
        flex-direction:column;
        margin-top:20px;
        gap:15px;
        text-align:center;
    }

    .nav-actions{
        flex-direction:column;
        margin-top:20px;
        gap:10px;
    }

    .btn-nav-login,
    .btn-nav-register{
        text-align:center;
    }

    .hero-text h1{
        font-size:2.2rem;
    }

}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:24px;
    cursor:pointer;
}

@media(max-width:768px){

    .navbar{
        justify-content:space-between;
        align-items:center;
    }

    .menu-toggle{
        display:block;
        margin-left:auto;
    }

}

@media(max-width:768px){

    .navbar{
        background:#0b5d2a;
    }

    .nav-menu{
        background:#0b5d2a;
        padding:20px;
        border-radius:12px;
        margin-top:15px;
    }

    .nav-actions{
        background:#0b5d2a;
        padding:15px;
        border-radius:12px;
    }

    .nav-menu li a{
        color:#fff;
        display:block;
        padding:10px 0;
    }

}

@media(max-width:768px){

    .nav-menu{
        background:#0b5d2a;
        border-radius:15px;
        overflow:hidden;
    }

    .nav-menu li{
        border-bottom:1px solid rgba(255,255,255,0.15);
    }

    .nav-menu li:last-child{
        border-bottom:none;
    }

    .nav-menu li a{
        display:flex;
        align-items:center;
        padding:16px 20px;
        transition:.3s;
    }

    .nav-menu li a:hover{
        background:rgba(255,255,255,0.08);
    }

}
.logo{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

.logo-box{
    display:flex;
    align-items:center;
    justify-content:center;
}

.logo-box img{
    height:70px;
    width:auto;

    filter:
        drop-shadow(0 2px 4px rgba(0,0,0,.35))
        drop-shadow(0 4px 12px rgba(0,0,0,.25));
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-title{
    color:#fff;
    font-size:24px;
    font-weight:700;
    line-height:1;
}

.logo-subtitle{
    color:rgba(255,255,255,.85);
    font-size:13px;
    margin-top:4px;
}

@media(max-width:768px){

    .logo-box img{
        height:55px;
    }

    .logo-title{
        font-size:20px;
    }

    .logo-subtitle{
        font-size:11px;
    }

}