/* =====================
   GLOBAL
===================== */
html {
  scroll-behavior: smooth;
}



/* =====================
   NAVBAR PROFESIONAL
===================== */
.menu {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f766e;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

/* KIRI */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand {
  color: #ecfeff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* KANAN */
.nav-right {
  display: flex;
  gap: 18px;
}

.menu a {
  color: #ecfeff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.menu a:hover {
  background: rgba(255,255,255,0.15);
}





/* =====================
   CONTAINER & GRID
===================== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 40px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* =====================
   PRODUK
===================== */
.produk {
  position: relative;
  background: white;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(15,118,110,0.15);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produk:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(15,118,110,0.25);
}

.produk img {
  width: 65%;
  margin-bottom: 16px;
}

.produk h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.desc {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* =====================
   TRUST ICONS
===================== */
.trust-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 16px;
  flex-wrap: wrap;
}

.trust-icons span {
  background: #ecfeff;
  color: #0f766e;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #ccfbf1;
}


/* BADGE */
.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #22c55e;
  color: #064e3b;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}

/* HARGA */
.harga-coret {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 14px;
  margin: 0;
}

.harga {
  font-size: 20px;
  font-weight: 700;
  color: #0f766e;
  margin: 4px 0 16px;
}


/* =====================
   MANFAAT
===================== */
.manfaat {
  list-style: none;
  padding: 0;
}

.manfaat li {
  margin-bottom: 10px;
}

/* =====================
   TESTIMONI & ARTIKEL
===================== */
.testimoni,
.artikel {
  background: white;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(15,118,110,0.1);
}

/* =====================
   BUTTON
===================== */
.btn {
  background: #0f766e;
   display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn.wa {
  background: #22c55e;
}
.btn:hover {
  opacity: 0.9;
}
/* =====================
   FLOATING WHATSAPP
===================== */
.wa-float {
  background: #22c55e;
}
.wa-float:hover {
  background: #1ebe5b;
  transform: scale(1.1);
}

/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  font-size: 13px;
  color: #666;
  padding: 30px 20px;
}


body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f7fffc;
  color: #0f172a;
}
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.menu a.active {
  background: #22c55e;
  color: #064e3b;
}

/* =====================
   HERO / HOME
===================== */
.hero {
  background:
    linear-gradient(
      135deg,
      rgba(15,118,110,0.92),
      rgba(22,163,74,0.92)
    ),
    url("../img/hero-bg.jpg") center/cover no-repeat;
  color: white;
  padding: 160px 20px;
  text-align: center;
}

.hero-box {
  max-width: 720px;
  margin: auto;
  background: rgba(255,255,255,0.08);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.hero {
  margin-top: -1px;
}

/* =====================
   FEATURED PRODUCT
===================== */
.featured {
  transform: scale(1.06);
  border: 3px solid #22c55e;
  box-shadow: 0 25px 60px rgba(34,197,94,0.35);
  z-index: 2;
}

.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

/* =====================
   MOBILE FIRST
===================== */
@media (max-width: 768px) {

  /* NAVBAR */
  .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-right {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
  }

  .menu a {
    font-size: 14px;
    padding: 6px 10px;
  }

  /* HERO */
  .hero {
    padding: 120px 16px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 15px;
  }

  .hero-box {
    padding: 28px 20px;
  }

  /* GRID PRODUK */
  .grid {
    grid-template-columns: 1fr;
  }

  /* PRODUK CARD */
  .produk img {
    width: 70%;
  }

  .produk {
    padding: 22px;
  }

  /* FEATURED */
  .featured {
    transform: scale(1);
  }

  .featured:hover {
    transform: translateY(-6px);
  }

  /* BUTTON */
  .btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .btn.wa {
    font-size: 16px;
    padding: 14px;
  }

  /* TRUST ICON */
  .trust-icons {
    justify-content: center;
  }

}
.section-cta {
  text-align: center;
  margin-top: 40px;
}
.hero-badge {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.9;
}
.btn-article {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}


