*{
  box-sizing:border-box;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
}

body{
  margin:0;
  background:#0e0f13;
  color:#eaeaf0;
  line-height:1.6;
}

/* HERO */
.hero{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 20px;
  background:radial-gradient(circle at top,#1b1f3b,#0e0f13);
}

.logo{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#fff;
  padding:8px;
  margin-bottom:20px;
}

.hero h1{
  font-size:2.8rem;
}

.hero p{
  max-width:600px;
  margin:15px 0 30px;
  color:#cfd3ff;
}

/* WHATSAPP BUTTON */
.whatsapp-btn{
  background:#25D366;
  color:#000;
  padding:16px 30px;
  border-radius:12px;
  font-size:1.1rem;
  font-weight:700;
  box-shadow:0 10px 30px rgba(37,211,102,.3);
  transition:.3s;
}

.whatsapp-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 40px rgba(37,211,102,.5);
}

.note{
  margin-top:15px;
  font-size:.9rem;
  color:#aaa;
}

/* SECTION */
.section{
  padding:80px 20px;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  margin-top:40px;
}

.card{
  background:#171a29;
  padding:30px;
  border-radius:16px;
}

.card span{
  font-size:2rem;
}

/* TRUST */
.trust{
  background:#6cf2c2;
  color:#000;
  padding:70px 20px;
  text-align:center;
}

.trust h2{
  margin-bottom:10px;
}

/* FOOTER */
footer{
  padding:30px;
  text-align:center;
  color:#aaa;
}
