*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

h2, h3{
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1{
  font-weight: 600;
  letter-spacing: -0.03em;
}

p{
  font-weight: 400;
  color: #6b7280;
  line-height: 1.7;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f9fbff;
  color:#111827;
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HERO */
.hero{
  position:relative;
  padding:160px 0;
  overflow:hidden;
  z-index:2;
}

.hero-left{
  margin-top:40px;
}

.hero-right::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  background:#3b82f6;
  border-radius:50%;
  top:-250px;
  right:-200px;
}

.hero-right::after{
  content:"";
  position:absolute;
  width:650px;
  height:650px;
  background:#93c5fd;
  border-radius:50%;
  bottom:-300px;
  right:-250px;
}

.hero-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.hero-text{
  width:55%;
}

.hero-text h1{
  font-size:96px;
  font-weight:700;
  line-height:1.2;
}

.hero-text p{
  margin-top:20px;
  color:#6b7280;
}

.btn{
  display:inline-flex;
  align-items:center;
  background:#1d53dd;
  color:#fff;
  padding:14px 28px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  border:none;
  outline:none;
  cursor:default;
  font-family:inherit;
}

.hero .btn{
  margin-top:30px;
}

.btn:hover{
  opacity:0.95;
}

/* SHAPE (LEBIH MIRIP) */
.hero-shape{
  width:360px;
  height:420px;
  background:#1d53dd;
  border-radius:12px;
  position:relative;
  overflow:hidden;
}

.hero-shape::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:#3b82f6;
  border-radius:50%;
  top:-220px;
  right:-200px;
}

.hero-shape::after{
  content:"";
  position:absolute;
  width:450px;
  height:450px;
  background:#93c5fd;
  border-radius:50%;
  bottom:-200px;
  right:-200px;
}

/* ABOUT */
.about{
  padding:100px 0;
}

.about-inner{
  display:flex;
  justify-content:space-between;
}

.about h2{
  font-size:42px;
}

.about p{
  width:50%;
  color:#4b4f58;
  line-height:1.8;
}

/* FEATURES */
.features{
  padding:100px 0;
  border-top:1px solid #e5e7eb;
  border-bottom:1px solid #e5e7eb;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:70px;
}

.box span{
  font-size:15px;
  color:#1d53dd;
  font-weight:700;
}

.box h3{
  margin:12px 0;
  font-size:20px;
}

.box p{
  color:#4b4f58;
  line-height:1.7;
}

/* CTA */
.cta{
  padding:80px 0;
}

.cta-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.cta h2{
  margin:0;
  line-height:1; /* 🔥 ini yang bikin sejajar */
}

/* FOOTER */
.footer{
  padding: 40px 0;
}

.footer p{
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

/* MOBILE */
@media(max-width:768px){

  .hero-inner{
    flex-direction:column;
  }

  .hero-text{
    width:100%;
  }

  .hero-text h1{
    font-size:48px;
  }

  .hero-shape{
    display:none;
  }

  .about-inner{
    flex-direction:column;
    gap:20px;
  }

  .about p{
    width:100%;
  }

  .grid{
    grid-template-columns:1fr;
  }

}

/* =========================
   RESPONSIVE (HP & TABLET)
========================= */

@media (max-width: 768px){

  /* HERO */
  .hero{
    height:auto;
    padding:80px 0;
  }

  .hero-text h1{
    font-size:42px;
    line-height:1.2;
  }

  .hero-text p{
    font-size:14px;
  }

  .hero-shape{
    display:none; /* 🔥 biar gak ganggu di HP */
  }

  /* ABOUT */
  .about-inner{
    flex-direction:column;
    gap:20px;
  }

  .about p{
    width:100%;
  }

  /* FEATURES */
  .grid{
    grid-template-columns:1fr;
    gap:30px;
  }

  /* CTA */
  .cta-inner{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

  .cta h2{
    font-size:20px;
  }

  /* BUTTON */
  .btn{
    width:100%;
    justify-content:center;
  }

}