/* ===========================================
   SCANAJA V1
   =========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f8fafc;

    color:#1e293b;

    line-height:1.6;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}

header{

    width:100%;

    background:#ffffff;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

header h2{

    color:#16a34a;

    font-size:28px;

}

nav{

    display:flex;

    gap:30px;

}

nav a{

    color:#334155;

    font-weight:600;

}

nav a:hover{

    color:#16a34a;

}


#hero{

    padding:100px 0;

    background:#f8fafc;

}

#hero .container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

#hero h1{

    font-size:52px;

    margin-bottom:25px;

}

#hero p{

    font-size:20px;

    color:#64748b;

    margin-bottom:35px;

}

.button-group{

    display:flex;

    gap:20px;

}

.btn{

    padding:15px 30px;

    border-radius:10px;

    display:inline-block;

    transition:.3s;

    font-weight:bold;

}

.btn-primary{

    background:#16a34a;

    color:white;

}

.btn-primary:hover{

    background:#15803d;

}

.btn-outline{

    border:2px solid #16a34a;

    color:#16a34a;

}

.btn-outline:hover{

    background:#16a34a;

    color:white;

}

section{

    padding:90px 0;

}

section h2{

    font-size:38px;

    text-align:center;

    margin-bottom:50px;

}

#fitur{

    background:white;

}

.grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.card{

    background:white;

    padding:35px;

    border-radius:15px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:15px;

}

.pricing{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.price-card{

    padding:40px;

    border-radius:15px;

    background:white;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    text-align:center;

}

details{

    background:white;

    margin-bottom:15px;

    padding:20px;

    border-radius:10px;

}

footer{

    background:#0f172a;

    color:white;

    text-align:center;

    padding:50px 0;

}

@media(max-width:900px){

#hero .container{

    grid-template-columns:1fr;

}

.grid{

    grid-template-columns:1fr;

}

.pricing{

    grid-template-columns:1fr;

}

nav{

    display:none;

}

#hero h1{

    font-size:36px;

}

}