:root {
  --green-950: #10261c;
  --green-900: #183928;
  --green-800: #235136;
  --green-700: #2c6a41;
  --green-600: #2f7d46;
  --lime-400: #d7e95f;
  --lime-300: #effa8a;
  --cream: #fff8df;
  --paper: #fffdf4;
  --muted: #66736b;
  --line: rgba(16, 38, 28, .10);
  --shadow: 0 24px 80px rgba(15, 40, 25, .14);
  --shadow-soft: 0 16px 38px rgba(15, 40, 25, .09);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --font-base: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--green-950);
  background: linear-gradient(180deg, #fbfff4 0%, #fffdf7 46%, #f2f9e7 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255, 253, 244, .86);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(16, 38, 28, .10);
}
.site-header.is-scrolled { box-shadow: 0 18px 55px rgba(16, 38, 28, .14); }
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo { width: 58px; height: 58px; flex: 0 0 58px; object-fit: contain; }
.brand-copy { display: grid; gap: 2px; min-width: 0; }
.brand-copy strong { font-size: 14px; font-weight: 800; letter-spacing: -.02em; white-space: nowrap; }
.brand-copy small { font-size: 11px; font-weight: 700; color: rgba(16, 38, 28, .54); white-space: nowrap; }
.main-nav { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 700; }
.main-nav a { padding: 12px 14px; border-radius: 999px; color: rgba(16, 38, 28, .72); transition: .22s ease; }
.main-nav a:hover { background: rgba(47, 125, 70, .08); color: var(--green-950); }
.nav-cta { color: var(--cream) !important; background: var(--green-950); box-shadow: 0 12px 28px rgba(16, 38, 28, .16); }
.menu-button { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 18px 70px;
  background: radial-gradient(circle at top left, rgba(215,233,95,.48), transparent 34%), radial-gradient(circle at bottom right, rgba(47,125,70,.18), transparent 35%);
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(18px); opacity: .5; pointer-events: none; }
.hero-glow-one { width: 340px; height: 340px; top: 90px; left: -120px; background: rgba(215,233,95,.42); }
.hero-glow-two { width: 420px; height: 420px; right: -160px; bottom: -120px; background: rgba(47,125,70,.18); }
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(255,255,255,.24) 0 1px, transparent 1px), linear-gradient(0deg, rgba(255,255,255,.24) 0 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 84%);
  pointer-events: none;
}
.slider { position: relative; width: min(1180px, 100%); margin: 0 auto; z-index: 1; }
.slide { display: none; grid-template-columns: minmax(0, .96fr) minmax(330px, .86fr); align-items: center; gap: 56px; }
.slide.is-active { display: grid; animation: fadeUp .55s ease both; }
.slide-copy { max-width: 625px; padding-top: 10px; }
.slide-copy h1 {
  margin: 18px 0 16px;
  max-width: 625px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 800;
  text-wrap: balance;
}
.slide-copy p { max-width: 600px; color: var(--muted); font-size: clamp(16px, 1.7vw, 19px); line-height: 1.82; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(47,125,70,.18);
  border-radius: 999px;
  color: var(--green-600);
  background: rgba(255,255,255,.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--lime-400); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--cream); background: var(--green-950); box-shadow: 0 14px 30px rgba(16, 38, 28, .18); }
.button.ghost { color: var(--green-950); background: rgba(255,255,255,.82); border: 1px solid rgba(16,38,28,.10); }
.button.light.primary { color: var(--green-950); background: var(--lime-300); }
.button.light.ghost { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.24); }

.slide-media { position: relative; min-height: 500px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(135deg, var(--green-950), var(--green-800)); }
.slide-media > img { width: 100%; height: 500px; object-fit: cover; opacity: .9; }
.media-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,38,28,.05) 20%, rgba(16,38,28,.72)); }
.media-logo { position: absolute; inset: 0; display: grid; place-items: center; padding: 52px; }
.media-logo img { width: min(260px, 58%); filter: drop-shadow(0 20px 34px rgba(0,0,0,.28)); }
.media-badge { position: absolute; left: 20px; bottom: 20px; z-index: 2; padding: 11px 15px; border-radius: 999px; color: var(--cream); background: rgba(16,38,28,.72); backdrop-filter: blur(12px); font-size: 14px; font-weight: 800; }
.slider-footer { margin-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.slider-controls { display: flex; align-items: center; gap: 12px; }
.slider-controls button { border: 0; border-radius: 999px; padding: 10px 16px; color: var(--green-950); background: rgba(255,255,255,.90); box-shadow: var(--shadow-soft); font-family: var(--font-base); font-size: 14px; font-weight: 800; cursor: pointer; }
.dots { display: flex; gap: 7px; align-items: center; }
.dot { width: 10px; height: 10px; padding: 0 !important; background: rgba(16,38,28,.22) !important; box-shadow: none !important; }
.dot.is-active { width: 30px; background: var(--green-950) !important; }
.hero-mini-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-mini-stats span { padding: 10px 13px; border-radius: 999px; background: rgba(255,255,255,.70); border: 1px solid rgba(16,38,28,.08); color: rgba(16,38,28,.68); font-size: 13px; font-weight: 700; }
.hero-mini-stats strong { color: var(--green-950); }

.trust-strip { width: min(1180px, calc(100% - 32px)); margin: -22px auto 0; position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border-radius: var(--radius-md); background: var(--line); box-shadow: var(--shadow-soft); }
.trust-strip span { padding: 22px; text-align: center; background: rgba(255,253,244,.95); font-size: 15px; font-weight: 800; }

.section { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 104px 0; }
.product-section, .trial-section, .video-section { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 58px; }
.section-copy h2, .section-heading h2, .cta-section h2 { margin: 18px 0; font-size: clamp(30px, 4vw, 54px); line-height: 1.04; letter-spacing: -.045em; font-weight: 800; text-wrap: balance; }
.section-copy p, .section-heading p, .cta-section p { color: var(--muted); font-size: 17px; line-height: 1.85; }
.product-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.product-pills span { padding: 10px 14px; border-radius: 999px; color: var(--green-950); background: rgba(215,233,95,.52); font-weight: 800; }
.product-showcase { position: relative; min-height: 500px; border-radius: var(--radius-xl); overflow: hidden; background: radial-gradient(circle at 50% 34%, rgba(239,250,138,.55), transparent 34%), linear-gradient(135deg, var(--green-950), var(--green-700)); box-shadow: var(--shadow); display: grid; place-items: center; padding: 42px; }
.product-showcase::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 26px; }
.product-logo-card { position: relative; z-index: 1; width: min(340px, 80%); aspect-ratio: 1; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18); }
.product-logo-card img { width: 88%; filter: drop-shadow(0 20px 30px rgba(0,0,0,.24)); }
.product-info-card { position: absolute; left: 26px; right: 26px; bottom: 26px; z-index: 2; display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 18px 20px; border-radius: 22px; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); }
.product-info-card strong { font-size: 16px; }
.product-info-card span { color: var(--muted); font-size: 14px; line-height: 1.5; }
.section-heading.center { text-align: center; max-width: 790px; margin: 0 auto 48px; }
.benefit-grid, .article-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card, .article-card, .stat-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255,255,255,.74); box-shadow: var(--shadow-soft); }
.benefit-card span { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 16px; color: var(--green-950); background: var(--lime-300); font-size: 14px; font-weight: 800; }
.benefit-card h3, .article-card h3 { margin: 20px 0 10px; line-height: 1.18; letter-spacing: -.03em; font-size: 22px; }
.benefit-card p, .article-card p, .stat-card small { color: var(--muted); line-height: 1.7; font-size: 15px; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
.stat-card strong { display: block; font-size: 34px; letter-spacing: -.04em; }
.stat-card span { display: block; margin: 6px 0; font-size: 15px; font-weight: 800; }
.trial-visuals { position: relative; }
.trial-main-img { width: 100%; min-height: 500px; object-fit: cover; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow); }
.trial-caption { position: absolute; left: 24px; right: 24px; bottom: 24px; padding: 16px 18px; border-radius: 20px; background: rgba(16,38,28,.78); color: var(--cream); backdrop-filter: blur(12px); font-size: 14px; font-weight: 700; }
.video-card { overflow: hidden; border-radius: var(--radius-xl); box-shadow: var(--shadow); background: var(--green-950); }
.video-card video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-grid { grid-template-columns: repeat(3, 1fr); }
.article-card span { display: inline-flex; padding: 8px 11px; border-radius: 999px; background: rgba(47,125,70,.10); color: var(--green-600); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.article-card a { display: inline-flex; margin-top: 14px; font-weight: 800; color: var(--green-600); }
.cta-section { width: min(1180px, calc(100% - 32px)); margin: 0 auto 90px; padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; border-radius: var(--radius-xl); color: #fff; background: radial-gradient(circle at top right, rgba(215,233,95,.34), transparent 36%), linear-gradient(135deg, var(--green-950), var(--green-800)); box-shadow: var(--shadow); }
.cta-section h2 { max-width: 720px; color: #fff; }
.cta-section p { color: rgba(255,255,255,.74); }
.eyebrow.light { color: var(--lime-300); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.15); }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 45; display: inline-flex; align-items: center; gap: 8px; padding: 13px 17px; border-radius: 999px; background: #1f8f4f; color: #fff; box-shadow: 0 16px 38px rgba(31,143,79,.28); font-weight: 800; }
.floating-whatsapp span { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.18); font-size: 12px; }
.site-footer { width: min(1180px, calc(100% - 32px)); margin: 0 auto 32px; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 14px; border-top: 1px solid var(--line); }
.site-footer div { display: grid; gap: 4px; }
.site-footer strong { color: var(--green-950); }
.site-footer nav { display: flex; gap: 18px; font-weight: 700; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1140px) {
  .slide-copy h1 { font-size: clamp(38px, 4.4vw, 62px); }
  .slide-media, .slide-media > img { min-height: 470px; height: 470px; }
}

@media (max-width: 980px) {
  .site-header { border-radius: 28px; }
  .menu-button { display: inline-flex; width: 46px; height: 46px; border: 0; border-radius: 999px; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; color: var(--cream); background: var(--green-950); cursor: pointer; }
  .menu-button span { width: 18px; height: 2px; border-radius: 999px; background: var(--cream); transition: .22s ease; }
  .menu-button.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button.is-open span:nth-child(2) { opacity: 0; }
  .menu-button.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: absolute; top: calc(100% + 10px); left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 4px; padding: 12px; border-radius: 26px; background: rgba(255,253,244,.96); box-shadow: var(--shadow-soft); }
  .main-nav.is-open { display: flex; }
  .main-nav a { text-align: center; }
  .slide, .product-section, .trial-section, .video-section { grid-template-columns: 1fr; }
  .slide-copy { max-width: 100%; }
  .slide-copy h1 { max-width: 100%; }
  .slide-media, .slide-media > img { min-height: 420px; height: 420px; }
  .slider-footer { align-items: flex-start; flex-direction: column; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid, .article-grid { grid-template-columns: repeat(2, 1fr); }
  .product-info-card { align-items: flex-start; flex-direction: column; }
  .cta-section { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero { padding-top: 112px; padding-bottom: 56px; }
  .site-header { width: calc(100% - 20px); top: 10px; padding: 8px 10px; }
  .brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-copy strong { font-size: 13px; white-space: normal; line-height: 1.2; }
  .brand-copy small { display: none; }
  .slide-copy h1 { font-size: clamp(34px, 9vw, 48px); line-height: 1.04; }
  .slide-copy p { font-size: 16px; }
  .hero-actions { gap: 10px; }
  .button { min-height: 48px; padding: 0 18px; font-size: 14px; }
  .slide-media, .slide-media > img { min-height: 360px; height: 360px; }
  .media-logo img { width: min(210px, 70%); }
  .trust-strip, .benefit-grid, .article-grid, .stats-grid { grid-template-columns: 1fr; }
  .trust-strip span { padding: 18px; }
  .section { padding: 76px 0; }
  .product-showcase { min-height: 390px; padding: 30px; }
  .trial-main-img { min-height: 360px; }
  .cta-section { padding: 32px; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 12px 15px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
  .site-footer nav { flex-wrap: wrap; }
}


/* === Update Section Manfaat: kartu dengan icon watermark transparan === */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 30px 28px;
  border: 1px solid rgba(16, 38, 28, .10);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.94), rgba(255,255,255,.76)),
    radial-gradient(circle at right bottom, rgba(215, 233, 95, .18), transparent 48%);
  box-shadow: 0 18px 42px rgba(15, 40, 25, .10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(15, 40, 25, .14);
}

.benefit-card > * {
  position: relative;
  z-index: 2;
}

.benefit-watermark {
  position: absolute;
  right: 14px;
  bottom: 8px;
  z-index: 1;
  width: 128px;
  height: 128px;
  color: #10261c;
  opacity: .055;
  pointer-events: none;
}

.benefit-watermark svg {
  width: 100%;
  height: 100%;
}

.benefit-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #10261c;
  background: #effa8a;
  font-weight: 800;
  font-size: 14px;
}

.benefit-card h3 {
  margin: 22px 0 10px;
  color: #10261c;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 800;
}

.benefit-card p {
  margin: 0;
  color: #66736b;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-watermark {
    width: 110px;
    height: 110px;
    opacity: .05;
  }
}
