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

body{
  font-family:'Poppins',sans-serif;
  min-height:100vh;
  color:#0f172a;
}

/* ================================
   HERO BACKGROUND
================================ */
.landing-hero{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:linear-gradient(
    135deg,
    #38bdf8,
    #2dd4bf,
    #fde68a
  );
}

/* ================================
   HERO CONTAINER (PAKSA 1 KOLOM)
================================ */
.hero-container{
  width:90%;
  max-width:900px;

  /* ⛔ PAKSA FLEX, BUKAN GRID */
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;

  background:rgba(255,255,255,.55);
  backdrop-filter:blur(18px);
  border-radius:28px;
  padding:64px 48px;
  box-shadow:0 40px 80px rgba(0,0,0,.25);
}

/* ================================
   LOGO ATAS
================================ */
.hero-logo-top{
  margin-bottom:28px;
}

.hero-logo-top img{
  width:160px;
  max-width:100%;
  filter:drop-shadow(0 16px 32px rgba(0,0,0,.25));
}

/* ================================
   TEKS
================================ */
.hero-content h1{
  font-size:42px;
  font-weight:700;
  letter-spacing:2.5px;
  margin-bottom:10px;
}

.hero-content h2{
  font-size:20px;
  font-weight:500;
  margin-bottom:26px;
  color:#0f766e;
}

/* ================================
   GARIS AKSEN
================================ */
.hero-divider{
  width:90px;
  height:5px;
  margin:0 auto 26px;
  background:linear-gradient(135deg,#facc15,#eab308);
  border-radius:6px;
}

/* ================================
   TAGLINE
================================ */
.hero-tagline{
  font-size:18px;
  margin-bottom:40px;
  color:#334155;
}

/* ================================
   BUTTON
================================ */
.hero-button{
  display:inline-block;
  padding:16px 52px;
  border-radius:40px;
  background:linear-gradient(135deg,#facc15,#eab308);
  color:#000;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(234,179,8,.45);
  transition:.3s;
}

.hero-button:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(234,179,8,.65);
}

/* ================================
   FOOTER
================================ */
.landing-footer{
  text-align:center;
  padding:16px;
  font-size:14px;
  background:#f8fafc;
  color:#475569;
}

/* ================================
   RESPONSIVE
================================ */
@media(max-width:768px){

  .hero-container{
    padding:44px 26px;
  }

  .hero-logo-top img{
    width:120px;
  }

  .hero-content h1{
    font-size:30px;
    letter-spacing:1.5px;
  }

  .hero-content h2{
    font-size:16px;
  }

  .hero-tagline{
    font-size:15px;
  }

  .hero-button{
    padding:14px 38px;
    font-size:15px;
  }
}
