*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#070b14;
color:#fff;
overflow-x:hidden;
}

/* PARTICLES */
#particles-js{
position:fixed;
width:100%;
height:100%;
z-index:-1;
}

/* NAVBAR */
.navbar{
position:fixed;
top:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
background:rgba(0,0,0,0.4);
backdrop-filter:blur(12px);
z-index:1000;
border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo{
font-size:22px;
font-weight:800;
background:linear-gradient(90deg,#00d9ff,#7b2cff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.navbar nav a{
color:#fff;
text-decoration:none;
margin:0 12px;
font-size:14px;
opacity:0.8;
transition:.3s;
}

.navbar nav a:hover{
opacity:1;
color:#00d9ff;
}

/* BUTTONS */
.nav-buttons button,
.nav-buttons a{
display:inline-block;
padding:8px 14px;
border:none;
text-decoration:none;
cursor:pointer;
border-radius:8px;
font-weight:600;
}

.btn-login{
background:#101827;
color:#fff;
border:1px solid rgba(255,255,255,0.1);
}

.btn-register{
background:linear-gradient(90deg,#00d9ff,#7b2cff);
color:#fff;
}

/* HERO */
.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
padding:120px 20px;
}

.hero-content{
max-width:900px;
}

.badge{
display:inline-block;
padding:8px 18px;
border-radius:50px;
background:rgba(0,217,255,0.1);
border:1px solid #00d9ff;
color:#00d9ff;
margin-bottom:15px;
font-size:13px;
}

.hero h1{
font-size:48px;
font-weight:800;
line-height:1.2;
}

.gradient{
background:linear-gradient(90deg,#00d9ff,#7b2cff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
margin-top:15px;
color:#b8c0cc;
font-size:15px;
max-width:600px;
margin-left:auto;
margin-right:auto;
}

.hero-buttons{
margin-top:25px;
}

.btn-primary,
.btn-secondary{
padding:12px 22px;
border-radius:10px;
text-decoration:none;
font-weight:700;
margin:5px;
display:inline-block;
}

.btn-primary{
background:linear-gradient(90deg,#00d9ff,#7b2cff);
color:#fff;
}

.btn-secondary{
background:#101827;
border:1px solid rgba(255,255,255,0.1);
color:#fff;
}

/* STATS */
.stats{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:15px;
padding:40px 10%;
text-align:center;
}

.stat-box{
background:#101827;
padding:20px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.05);
}

.stat-box h2{
color:#00d9ff;
}

/* SECTION */
.section{
padding:80px 10%;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:40px;
}

/* PRICING */
.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.pricing-card{
background:#101827;
padding:25px;
border-radius:15px;
border:1px solid rgba(255,255,255,0.05);
transition:.3s;
position:relative;
}

.pricing-card:hover{
transform:translateY(-8px);
border-color:#00d9ff;
}

.pricing-card h3{
margin-bottom:10px;
}

.price{
font-size:35px;
color:#00d9ff;
font-weight:800;
margin:10px 0;
}

.pricing-card ul{
list-style:none;
margin-top:10px;
}

.pricing-card ul li{
padding:6px 0;
color:#cbd5e1;
font-size:14px;
}

.order-btn{
margin-top:15px;
width:100%;
padding:10px;
border:none;
border-radius:8px;
background:linear-gradient(90deg,#00d9ff,#7b2cff);
color:#fff;
font-weight:700;
cursor:pointer;
}

/* POPULAR */
.popular{
border:1px solid #00d9ff;
box-shadow:0 0 20px rgba(0,217,255,0.2);
}

.popular-tag{
position:absolute;
top:10px;
right:10px;
background:#00d9ff;
color:#000;
padding:4px 8px;
font-size:11px;
border-radius:6px;
font-weight:700;
}

/* SERVICE */
.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.service-card{
background:#101827;
padding:25px;
border-radius:15px;
border:1px solid rgba(255,255,255,0.05);
text-align:center;
transition:.3s;
}

.service-card:hover{
transform:translateY(-6px);
border-color:#7b2cff;
}

/* TESTIMONI */
.testimonial-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
}

.testimonial-card{
background:#101827;
padding:20px;
border-radius:12px;
border:1px solid rgba(255,255,255,0.05);
}

/* FAQ */
.faq-container{
max-width:800px;
margin:auto;
}

.faq-item{
background:#101827;
margin-bottom:10px;
border-radius:10px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.05);
}

.faq-question{
width:100%;
padding:15px;
background:none;
border:none;
color:#fff;
text-align:left;
cursor:pointer;
font-weight:600;
}

.faq-answer{
padding:15px;
display:none;
color:#b8c0cc;
}

/* STATUS */
.status-card{
text-align:center;
background:#101827;
padding:30px;
border-radius:15px;
border:1px solid rgba(255,255,255,0.05);
}

.status-online{
width:12px;
height:12px;
background:#22c55e;
border-radius:50%;
margin:0 auto 10px;
box-shadow:0 0 10px #22c55e;
}

/* FOOTER */
footer{
background:#0c1220;
padding:50px 10%;
margin-top:50px;
}

.footer-content{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

footer h3{
margin-bottom:10px;
}

footer ul{
list-style:none;
}

footer ul li{
margin:6px 0;
}

footer a{
color:#b8c0cc;
text-decoration:none;
}

footer a:hover{
color:#00d9ff;
}

hr{
margin:20px 0;
border:1px solid rgba(255,255,255,0.05);
}

.copyright{
text-align:center;
color:#64748b;
font-size:13px;
}

/* MODAL */
.modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
justify-content:center;
align-items:center;
z-index:2000;
}

.modal-content{
background:#101827;
padding:30px;
border-radius:15px;
width:90%;
max-width:400px;
}

.modal-content input{
width:100%;
padding:10px;
margin:8px 0;
border-radius:8px;
border:none;
background:#0f172a;
color:#fff;
}

.modal-content button{
width:100%;
padding:10px;
background:linear-gradient(90deg,#00d9ff,#7b2cff);
border:none;
color:#fff;
font-weight:700;
border-radius:8px;
}

.close{
float:right;
cursor:pointer;
font-size:22px;
}

/* FLOATING WA */
.floating-wa{
position:fixed;
bottom:20px;
right:20px;
background:#25d366;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:24px;
box-shadow:0 0 15px #25d366;
text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:768px){
.hero h1{
font-size:32px;
}

.navbar nav{
display:none;
}

.section{
padding:60px 6%;
}
}