/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

body{
  background:#050816;
  color:#fff;
}

/* ===== APP CONTAINER ===== */
body{
  max-width:480px;
  margin:auto;
  box-shadow:0 0 30px rgba(0,0,0,0.6);
}

/* ===== NAVBAR ===== */
.top-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:#000;
  padding:12px 15px;
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
}

.logo-area img{
  height:45px;
}

/* MENU */
.menu{
  display:flex;
  gap:20px;
}

.menu a{
  color:white;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  padding:6px 10px;
  border-radius:6px;
  transition:.3s;
}

.menu a:hover{
  background:#00eaff;
  color:#000;
}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  font-size:22px;
  cursor:pointer;
}

@media(max-width:768px){

  .menu{
    position:absolute;
    top:60px;
    right:0;
    background:#000;
    flex-direction:column;
    width:200px;
    display:none;
    padding:10px;
  }

  .menu a{
    padding:10px;
    border-bottom:1px solid #222;
  }

  .menu-toggle{
    display:block;
  }
}

/* ===== HERO ===== */
section{
  padding:80px 15px;
}

section:first-of-type{
  padding-top:100px;
}

h1{
  font-size:26px;
  color:#00eaff;
  text-align:center;
}

p{
  font-size:14px;
  color:#cceeff;
  text-align:center;
  margin-top:10px;
}

/* ===== BUTTONS ===== */
.btn-group{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:20px;
  flex-wrap:wrap;
}

.btn-main{
  background:linear-gradient(45deg,#00eaff,#00ffcc);
  color:#00222d;
  padding:14px;
  border-radius:10px;
  font-weight:bold;
  text-decoration:none;
  width:100%;
  text-align:center;
  transition:.3s;
  box-shadow:0 0 12px rgba(0,234,255,.4);
}

.btn-main:hover{
  transform:scale(1.05);
  box-shadow:0 0 25px #00eaff;
}

.btn-outline{
  border:2px solid #00eaff;
  color:#00eaff;
  padding:14px;
  border-radius:10px;
  text-decoration:none;
  width:100%;
  text-align:center;
  transition:.3s;
}

.btn-outline:hover{
  background:#00eaff;
  color:#000;
}

/* ===== BOX GRID ===== */
.title{
  text-align:center;
  font-size:22px;
  color:#00eaff;
  margin-bottom:10px;
}

.desc{
  text-align:center;
  font-size:13px;
  color:#8ed8ff;
  margin-bottom:25px;
}

.box-area{
  display:grid;
  gap:15px;
}

.box{
  background:#0f1729;
  padding:18px;
  border-radius:15px;
  box-shadow:0 0 15px rgba(0,234,255,0.15);
}

.box h3{
  color:#00eaff;
  font-size:16px;
  margin-bottom:8px;
}

.box p{
  font-size:13px;
  text-align:left;
}

/* ===== CTA ===== */
.cta{
  background:linear-gradient(45deg,#00eaff,#00ffcc);
  color:#00222d;
  text-align:center;
  padding:40px 15px;
}

.cta h2{
  font-size:22px;
}

.cta a{
  display:inline-block;
  margin-top:10px;
  background:#000;
  color:#fff;
  padding:10px 20px;
  border-radius:20px;
  text-decoration:none;
}

/* ===== TESTIMONIAL ===== */
.test-card{
  background:#0f1729;
  padding:20px;
  border-radius:15px;
  text-align:center;
}

.test-card img{
  width:70px;
  height:70px;
  border-radius:50%;
  border:2px solid #00eaff;
}

/* ===== FLOAT WHATSAPP ===== */
.whatsapp-float{
  position:fixed;
  width:50px;
  height:50px;
  bottom:15px;
  right:15px;
  background:#25D366;
  color:white;
  font-size:26px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  box-shadow:0 0 15px rgba(0,0,0,.4);
}

/* ===== FOOTER ===== */
.footer{
  text-align:center;
  padding:15px;
  font-size:13px;
  background:#020712;
}