*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter';
  background:#f5f5f5;
  color:#111;
}

/* CONTAINER */
.container{
  max-width:1300px;
  margin:auto;
  padding:0 10px;
}

/* HERO */
.hero{
  background:linear-gradient(90deg,#3800CE,#6E3EEF);
  padding:160px 0;
  color:#fff;
}

.hero-wrap{
  display:flex;
  align-items:center;
}

.hero-left{
  width:45%;
  padding-left:60px;
}

.hero-left h1{
  font-family:'Syne';
  font-size:63px;
  line-height:1.1;
}

.hero-left p{
  margin-top:20px;
  font-size:14px;
  line-height:1.7;
  max-width:420px;
}

.hero-right{
  width:55%;
  text-align:right;
}

.hero-right img{
  width:620px;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:24px;
  padding:12px 28px;
  background:#FF5433;
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

/* SECTION */
.section{
  padding:110px 0;
  text-align:center;
}

.title{
  font-family:'Syne';
  font-size:38px;
}

.subtitle{
  max-width:700px;
  margin:20px auto 60px;
  font-size:14px;
  color:#444;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

.card{
  background:#f3f2f7;
  padding:35px 30px;
  border-radius:14px;
  text-align:left;
  box-shadow:0 8px 20px rgba(0,0,0,0.04);
}

.full{
  grid-column:span 2;
}

/* ICON */
.icon{
  font-size:20px;
  color:#5b2cff;
  margin-bottom:12px;
}

/* TEXT */
.card h3{
  font-size:16px;
  margin-bottom:10px;
}

.card p{
  font-size:14px;
  line-height:1.6;
  color:#555;
}

/* CTA */
.cta{
  background:#f0f0f0;
  padding:90px 20px;
  text-align:center;
  border-top:1px solid #ccc;
  border-bottom:1px solid #ccc;
}

.cta h2{
  font-family:'Syne';
  font-size:30px;
  color:#4E18DD;
}

/* LAYANAN */
.layanan-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
  margin-top:50px;
}

.tall{
  grid-row:span 2;
}

/* FOOTER */
.footer{
  text-align:center;
  padding:30px;
  font-size:13px;
  color:#555;
}

.hero-header{
  position:absolute;

  top:50px;
  left:50%;

  transform:translateX(-580px); /* mengikuti container 1180px */

  font-family:'Syne';
  font-size:30px;
  color:#fff;
  letter-spacing:2px;
}

.hero{
  position:relative; /* WAJIB */
}

/* ========================= */
/* RESPONSIVE TABLET */
/* ========================= */
@media (max-width: 1024px){

  .hero-left h1{
    font-size:45px;
  }

  .hero-right img{
    width:450px;
  }

  .container{
    padding:0 20px;
  }

}

/* ========================= */
/* RESPONSIVE HP */
/* ========================= */
@media (max-width: 768px){

  /* HERO JADI 1 KOLOM */
  .hero-wrap{
    flex-direction:column;
    text-align:center;
  }

  .hero-left{
    width:100%;
    padding-left:0;
  }

  .hero-right{
    width:100%;
    margin-top:40px;
    text-align:center;
  }

  .hero-right img{
    width:90%;
    max-width:350px;
  }

  .hero-left h1{
    font-size:32px;
  }

  .hero-left p{
    margin:auto;
    margin-top:15px;
  }

  /* HEADER LOGO */
  .hero-header{
    position:static;
    transform:none;
    text-align:center;
    margin-bottom:30px;
  }

  /* SECTION */
  .section{
    padding:70px 0;
  }

  .title{
    font-size:26px;
  }

  .subtitle{
    font-size:13px;
    margin-bottom:40px;
  }

  /* GRID JADI 1 KOLOM */
  .grid{
    grid-template-columns:1fr;
  }

  .full{
    grid-column:span 1;
  }

  /* LAYANAN */
  .layanan-grid{
    grid-template-columns:1fr;
  }

  .tall{
    grid-row:span 1;
  }

  /* CARD */
  .card{
    padding:25px 20px;
  }

  /* ICON */
  .icon img{
    width:40px;
  }

}

/* ========================= */
/* HP KECIL */
/* ========================= */
@media (max-width: 480px){

  .hero{
    padding:100px 0;
  }

  .hero-left h1{
    font-size:26px;
  }

  .title{
    font-size:22px;
  }

  .subtitle{
    font-size:12px;
  }

  .card p{
    font-size:13px;
  }

}

.card h3{
  font-family: 'Syne', sans-serif;
  font-size:18px;
  margin-bottom:12px;
  font-weight:700;
  letter-spacing:0.5px;
}

.layanan-grid{
  display:flex;
  gap:25px;
}

/* kiri */
.layanan-left{
  width:50%;
  display:flex;
  flex-direction:column;
  gap:25px;
}

/* kanan */
.layanan-right{
  width:50%;
  display:flex;
  justify-content:center; /* ini yang bikin card ke tengah */
}

/* CARD KHUSUS CENTER */
.center-card{
  display:flex;
  flex-direction:column;
  justify-content:center;   /* tengah vertikal */
  width:100%;
}

/* RESPONSIVE */
@media (max-width:768px){
  .layanan-grid{
    flex-direction:column;
  }

  .layanan-left,
  .layanan-right{
    width:100%;
  }
}

body{
  user-select:none;
}

.btn{
  display:inline-block;
  margin-top:24px;
  padding:12px 28px;
  background:#FF5433;
  border-radius:30px;
  color:#fff;
  border:none;
  cursor:pointer;
}