*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: 'Segoe UI', Arial, sans-serif;
  background:#f5f7fa;
  color:#222;
  line-height:1.6;
}

/* HEADER */
.header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
  background:#fff;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:999;
}

.logo img{
  height:45px;
}

.top-btn{
  background:#ff3b3b;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
}

.top-btn:hover{
  background:#e60000;
}

/* HERO */
.hero{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:60px 10%;
  background:#fff;
  gap:40px;
}

.hero-text{
  max-width:500px;
}

.hero h1{
  font-size:40px;
  margin-bottom:15px;
}

.hero p{
  font-size:18px;
  color:#555;
}

.cta{
  display:inline-block;
  margin-top:20px;
  background:#2ecc71;
  color:#fff;
  padding:15px 25px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
}

.hero-img img{
  width:320px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* TRUST */
.trust{
  display:flex;
  justify-content:center;
  gap:40px;
  padding:25px;
  background:#f0f3f8;
  font-weight:bold;
}

/* SECTIONS */
.section{
  max-width:900px;
  margin:50px auto;
  padding:30px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.section.light{
  background:#f9fbfd;
}

.section h2{
  margin-bottom:15px;
  font-size:26px;
}

.section p{
  margin-bottom:10px;
  color:#444;
}

/* STEPS */
.steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-top:20px;
}

.steps div{
  background:#f0f3f8;
  padding:15px;
  border-radius:8px;
  text-align:center;
}

/* LIST */
ul{
  margin-top:15px;
}

ul li{
  margin-bottom:10px;
}

/* IMAGES */
.image-block{
  text-align:center;
  margin:40px 0;
}

.image-block img{
  max-width:600px;
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* OFFER */
.offer{
  text-align:center;
  padding:60px;
  background:#111;
  color:#fff;
}

.buy-btn{
  display:inline-block;
  margin-top:20px;
  background:#ff3b3b;
  padding:15px 30px;
  border-radius:8px;
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}

/* FOOTER */
footer{
  text-align:center;
  padding:30px;
  background:#fff;
  margin-top:40px;
}

footer a{
  margin:0 10px;
  color:#333;
  text-decoration:none;
  font-size:14px;
}
.review{
  background:#f8f9fb;
  padding:15px;
  margin:15px 0;
  border-radius:8px;
}
.review span{
  font-size:13px;
  color:#777;
}
/* 📱 MOBILE RESPONSIVE FIX */
@media (max-width: 768px){

  /* HEADER */
  .header{
    padding:15px;
  }

  .top-btn{
    padding:8px 12px;
    font-size:14px;
  }

  /* HERO */
  .hero{
    flex-direction:column;
    text-align:center;
    padding:30px 15px;
  }

  .hero-text{
    max-width:100%;
  }

  .hero h1{
    font-size:26px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-img img{
    width:100%;
    max-width:260px;
    margin-top:20px;
  }

  /* TRUST */
  .trust{
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

  /* SECTION