/* ===== Foundation ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --cream-50: #fffdf8;
  --cream-100: #faf4e8;
  --cream-200: #f1e5d1;
  --cream-300: #e5d3b5;
  --green-950: #092719;
  --green-900: #103722;
  --green-850: #123d27;
  --green-800: #174b2f;
  --green-700: #24623e;
  --green-500: #4f8a5f;
  --gold-700: #9b7125;
  --gold-600: #b88931;
  --gold-500: #cda64e;
  --gold-300: #ead18e;
  --brown-900: #3d291b;
  --brown-700: #62462f;
  --ink: #182019;
  --muted: #68665e;
  --white: #ffffff;
  --line: rgba(92, 66, 36, 0.13);
  --shadow-sm: 0 10px 26px rgba(47, 34, 19, 0.08);
  --shadow-md: 0 22px 55px rgba(39, 31, 18, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1220px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 28%, rgba(205, 166, 78, 0.07), transparent 23rem),
    var(--cream-100);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--green-900);
  letter-spacing: -0.035em;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  display: block;
  width: 1.15em;
  height: 1.15em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 3000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green-950);
  color: var(--white);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

/* ===== Shared typography and controls ===== */
.section {
  position: relative;
  padding: 82px 0;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.testimonial-copy h2,
.faq-intro h2,
.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
  color: var(--gold-700);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 34px;
  height: 1px;
  background: currentColor;
}

.eyebrow-center {
  justify-content: center;
}

.eyebrow-light {
  color: var(--gold-300);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  min-height: 56px;
  padding: 16px 24px;
  border-color: rgba(234, 209, 142, 0.55);
  background: linear-gradient(135deg, var(--green-700), var(--green-950));
  box-shadow: 0 13px 26px rgba(16, 55, 34, 0.24), inset 0 1px rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2e7148, var(--green-900));
  box-shadow: 0 16px 32px rgba(16, 55, 34, 0.32), inset 0 1px rgba(255, 255, 255, 0.16);
}

.btn-large {
  min-width: 245px;
}

.icon-arrow {
  margin-left: 2px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 2px;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.text-link .icon {
  transition: transform 0.2s ease;
}

.text-link:hover .icon {
  transform: translateX(3px);
}

.text-link-strong {
  border-bottom: 1px solid rgba(23, 75, 47, 0.3);
}

/* ===== Sales header ===== */
.sales-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 74px;
  border-bottom: 1px solid rgba(137, 99, 39, 0.16);
  background: rgba(255, 252, 245, 0.94);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.sales-header.is-scrolled {
  background: rgba(255, 252, 245, 0.985);
  box-shadow: 0 7px 28px rgba(46, 35, 18, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
}

.brand-mark,
.footer-mark {
  display: grid;
  overflow: hidden;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 7px;
  border: 1px solid rgba(234, 209, 142, 0.78);
  border-radius: 50%;
  background: var(--green-900);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.brand-mark img,
.footer-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy,
.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.brand-copy strong {
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.64rem;
}

.header-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: var(--green-900);
  font-size: 0.7rem;
  font-weight: 700;
}

.header-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.header-trust .icon {
  color: var(--gold-700);
  font-size: 1.15rem;
}

.btn-header {
  min-height: 42px;
  padding: 11px 17px;
  background: var(--green-900);
  color: var(--white);
  font-size: 0.78rem;
}

.btn-header:hover {
  background: var(--green-700);
  box-shadow: 0 8px 20px rgba(16, 55, 34, 0.2);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 680px;
  background: var(--cream-100);
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(253, 248, 238, 0.99) 0%, rgba(253, 248, 238, 0.92) 30%, rgba(253, 248, 238, 0.26) 54%, transparent 75%);
  content: "";
  pointer-events: none;
}

.hero-art {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-art picture,
.hero-art img {
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 680px;
  padding: 62px 0 58px;
}

.hero-copy {
  width: min(49%, 570px);
}

.hero h1 {
  max-width: 570px;
  font-size: clamp(3rem, 5.4vw, 5.1rem);
  font-weight: 800;
  line-height: 0.99;
}

.hero h1 em {
  display: block;
  color: var(--brown-900);
  font-style: normal;
}

.hero-description {
  max-width: 525px;
  margin-top: 22px;
  color: #464139;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 510px;
  margin: 27px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid rgba(126, 87, 37, 0.18);
  gap: 11px 20px;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brown-700);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-points .icon {
  color: var(--green-700);
  font-size: 1.1rem;
}

.hero-mobile-visual {
  display: none;
}

/* ===== Pain cards ===== */
.keluhan {
  background:
    linear-gradient(rgba(255, 253, 248, 0.91), rgba(255, 253, 248, 0.91)),
    radial-gradient(circle at 50% 0%, rgba(205, 166, 78, 0.18), transparent 34rem);
}

.keluhan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
}

.keluhan-card {
  overflow: hidden;
  border: 1px solid rgba(136, 99, 42, 0.17);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.keluhan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.keluhan-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--cream-200);
}

.keluhan-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(12, 38, 24, 0.16));
  content: "";
}

.keluhan-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.keluhan-card:hover img {
  transform: scale(1.035);
}

.keluhan-body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 112px;
  padding: 14px 13px 15px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-300);
}

.card-icon .icon {
  font-size: 1.05rem;
}

.keluhan-body h3 {
  color: var(--green-900);
  font-size: 0.88rem;
  line-height: 1.3;
}

.keluhan-body p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

/* ===== Why strip ===== */
.mengapa {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 0;
  background: var(--green-950);
  color: var(--white);
}

.mengapa::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 32, 20, 0.5), rgba(15, 59, 37, 0.18), rgba(5, 32, 20, 0.5));
  content: "";
}

.mengapa-art {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.76;
}

.mengapa-art picture,
.mengapa-art img {
  width: 100%;
  height: 100%;
}

.mengapa-art img {
  object-fit: cover;
}

.mengapa-inner {
  display: grid;
  grid-template-columns: 0.82fr 2fr;
  align-items: center;
  gap: 48px;
}

.mengapa-intro {
  padding-right: 30px;
  border-right: 1px solid rgba(234, 209, 142, 0.32);
}

.mengapa-intro h2 {
  color: var(--gold-300);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.mengapa-intro > p:last-child {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.79rem;
  line-height: 1.65;
}

.mengapa-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}

.reason-card {
  min-height: 210px;
  padding: 22px 17px 19px;
  border: 1px solid rgba(234, 209, 142, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  text-align: center;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, transform 0.25s ease;
}

.reason-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.reason-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 15px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  color: var(--gold-300);
}

.reason-icon .icon {
  font-size: 1.65rem;
}

.reason-card h3 {
  color: var(--white);
  font-size: 0.88rem;
  line-height: 1.35;
}

.reason-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.7rem;
  line-height: 1.55;
}

/* ===== Ingredients ===== */
.kandungan {
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream-100), #f8eedf 100%);
}

.kandungan::before,
.kandungan::after {
  position: absolute;
  z-index: -1;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 103, 62, 0.09), transparent 68%);
  content: "";
}

.kandungan::before {
  top: -130px;
  left: -120px;
}

.kandungan::after {
  right: -130px;
  bottom: -140px;
}

.kandungan-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 20px;
}

.ingredient-card {
  margin: 0;
  text-align: center;
}

.ingredient-image {
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid var(--gold-500);
  border-radius: 50%;
  background: var(--cream-200);
  box-shadow: 0 11px 24px rgba(73, 48, 22, 0.1), inset 0 0 0 5px rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ingredient-card:hover .ingredient-image {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(73, 48, 22, 0.17), inset 0 0 0 5px rgba(255, 255, 255, 0.7);
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ingredient-card:hover img {
  transform: scale(1.045);
}

.ingredient-card figcaption {
  margin-top: 12px;
  color: var(--green-900);
  font-size: 0.76rem;
  font-weight: 800;
}

/* ===== TikTok testimonial ===== */
.testimoni {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 50%, rgba(205, 166, 78, 0.12), transparent 25rem),
    var(--cream-50);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(290px, 0.78fr) minmax(520px, 1.22fr);
  align-items: center;
  gap: clamp(42px, 6vw, 80px);
}

.testimonial-copy h2 {
  max-width: 450px;
}

.testimonial-lead {
  max-width: 470px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.video-points {
  display: grid;
  gap: 15px;
  margin: 29px 0 22px;
}

.video-points > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.video-points > div > .icon {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(184, 137, 49, 0.45);
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--green-800);
}

.video-points span {
  display: flex;
  flex-direction: column;
}

.video-points strong {
  color: var(--green-900);
  font-size: 0.8rem;
}

.video-points small {
  color: var(--muted);
  font-size: 0.69rem;
}

.tiktok-frame {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(151, 106, 35, 0.22);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.tiktok-frame-top {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 12px 17px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #f4e8d5, #fffaf1);
  gap: 10px;
}

.tiktok-brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #111;
  color: var(--white);
}

.tiktok-brand-mark svg {
  width: 20px;
  height: 20px;
}

.tiktok-frame-top > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.3;
}

.tiktok-frame-top strong {
  color: var(--green-900);
  font-size: 0.76rem;
}

.tiktok-frame-top small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-dot {
  margin-left: auto;
  padding: 4px 9px;
  border-radius: 20px;
  background: #111;
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
}

.tiktok-embed-wrap {
  display: grid;
  min-height: 360px;
  padding: 16px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(18, 61, 39, 0.04), transparent 44%),
    var(--white);
}

.tiktok-embed-wrap .tiktok-embed {
  width: 100%;
  margin: 0 !important;
}

.tiktok-embed-wrap blockquote > section {
  display: grid;
  min-height: 280px;
  padding: 28px;
  place-items: center;
  border: 1px dashed rgba(18, 61, 39, 0.22);
  border-radius: 14px;
  text-align: center;
}

.tiktok-embed-wrap blockquote a,
.embed-fallback a {
  color: var(--green-800);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}

.embed-fallback {
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

/* ===== Trust strip ===== */
.trust-strip {
  position: relative;
  padding: 22px 0;
  border-block: 1px solid rgba(151, 106, 35, 0.24);
  background: #efe0c6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 5px 22px;
  border-right: 1px solid rgba(112, 78, 30, 0.18);
  gap: 11px;
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat > span {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  border: 1px solid var(--gold-700);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--gold-300);
}

.trust-stat p {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.32;
}

.trust-stat strong {
  color: var(--green-900);
  font-size: 0.8rem;
}

.trust-stat small {
  color: var(--brown-700);
  font-size: 0.64rem;
}

/* ===== FAQ ===== */
.faq {
  background:
    linear-gradient(100deg, rgba(250, 244, 232, 0.9), rgba(255, 253, 248, 0.96)),
    var(--cream-100);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.25fr);
  align-items: start;
  gap: clamp(44px, 6vw, 82px);
}

.faq-intro {
  position: sticky;
  top: 110px;
}

.faq-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  overflow: hidden;
  border: 1px solid rgba(151, 106, 35, 0.19);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.faq-item {
  border-bottom: 1px solid rgba(151, 106, 35, 0.15);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 68px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  text-align: left;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-question:hover,
.faq-question[aria-expanded="true"] {
  background: rgba(241, 229, 209, 0.55);
  color: var(--green-800);
}

.faq-toggle {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-left: 16px;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  color: var(--muted);
}

.faq-answer p {
  max-width: 700px;
  padding: 0 20px 20px;
  font-size: 0.78rem;
  line-height: 1.75;
}

/* ===== Final CTA ===== */
.cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 430px;
  padding: 68px 0 60px;
  background: var(--cream-100);
}

.cta-section::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 252, 245, 0.98) 0 23%, rgba(255, 252, 245, 0.76) 47%, transparent 70%);
  content: "";
}

.cta-art {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.cta-art picture,
.cta-art img {
  width: 100%;
  height: 100%;
}

.cta-art img {
  object-fit: cover;
  object-position: center;
}

.cta-inner {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.cta-inner h2 {
  color: var(--green-900);
}

.cta-inner > p:not(.eyebrow) {
  max-width: 580px;
  margin: 14px auto 24px;
  color: var(--brown-700);
  font-size: 0.92rem;
}

.cta-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 22px;
}

.cta-notes span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-900);
  font-size: 0.67rem;
  font-weight: 700;
}

/* ===== Footer ===== */
.footer {
  padding: 34px 0 22px;
  background: var(--green-950);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-mark {
  width: 45px;
  height: 45px;
  border-color: rgba(234, 209, 142, 0.62);
}

.footer-brand strong {
  color: var(--gold-300);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.footer-brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-actions {
  display: flex;
  gap: 9px;
}

.footer-actions a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234, 209, 142, 0.32);
  border-radius: 50%;
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-actions a:hover {
  background: var(--gold-300);
  color: var(--green-950);
}

.footer-actions svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.61rem;
}

.mobile-order-bar {
  display: none;
}

/* ===== Reveal animation ===== */
.js .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.js .reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .header-trust span:nth-child(2) {
    display: none;
  }

  .hero-copy {
    width: 53%;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(253, 248, 238, 0.99) 0%, rgba(253, 248, 238, 0.9) 36%, rgba(253, 248, 238, 0.2) 62%, transparent 79%);
  }

  .keluhan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .keluhan-card:nth-child(4),
  .keluhan-card:nth-child(5) {
    width: calc(150% + 8px);
  }

  .keluhan-card:nth-child(4) {
    margin-left: calc(50% + 8px);
  }

  .mengapa-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mengapa-intro {
    max-width: 700px;
    padding: 0;
    border: 0;
    text-align: center;
    justify-self: center;
  }

  .mengapa-intro .eyebrow {
    justify-content: center;
  }

  .mengapa-intro h2 br {
    display: none;
  }

  .mengapa-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .kandungan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 820px;
    margin-inline: auto;
  }

  .testimonial-layout {
    grid-template-columns: minmax(280px, 0.7fr) minmax(450px, 1.3fr);
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .header-trust {
    display: none;
  }

  .hero-copy {
    width: 55%;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 7vw, 4rem);
  }

  .mengapa-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reason-card {
    min-height: 190px;
  }

  .testimonial-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .testimonial-copy {
    max-width: 680px;
  }

  .video-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .video-points > div {
    align-items: flex-start;
  }

  .tiktok-frame {
    max-width: 780px;
    width: 100%;
    margin-inline: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .trust-stat:nth-child(2) {
    border-right: 0;
  }

  .faq-intro {
    position: static;
    max-width: 680px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
  }

  .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 30px, var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .testimonial-copy h2,
  .faq-intro h2,
  .cta-inner h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .sales-header,
  .header-inner {
    min-height: 66px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.83rem;
  }

  .brand-copy small {
    font-size: 0.57rem;
  }

  .btn-header {
    display: none;
  }

  .hero {
    min-height: auto;
    background: var(--cream-100);
  }

  .hero::before,
  .hero-art {
    display: none;
  }

  .hero-inner {
    display: block;
    min-height: auto;
    padding: 44px 0 0;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(2.75rem, 13vw, 4.3rem);
    line-height: 1.02;
  }

  .hero h1 em {
    display: inline;
  }

  .hero-description {
    max-width: 600px;
    margin-top: 17px;
    font-size: 0.93rem;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 23px;
  }

  .hero-actions .btn-primary {
    flex: 1 1 auto;
  }

  .hero-actions .text-link {
    flex: 0 0 auto;
  }

  .hero-points {
    max-width: 620px;
    margin-top: 22px;
    padding-top: 17px;
  }

  .hero-mobile-visual {
    display: block;
    overflow: hidden;
    width: 100vw;
    height: clamp(310px, 83vw, 490px);
    margin-top: 26px;
    margin-left: calc(50% - 50vw);
    border-top: 1px solid rgba(151, 106, 35, 0.16);
    background: var(--cream-200);
  }

  .hero-mobile-visual picture,
  .hero-mobile-visual img {
    width: 100%;
    height: 100%;
  }

  .hero-mobile-visual img {
    object-fit: cover;
    object-position: 72% center;
  }

  .keluhan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .keluhan-card:nth-child(4),
  .keluhan-card:nth-child(5) {
    width: auto;
  }

  .keluhan-card:nth-child(4) {
    margin-left: 0;
  }

  .keluhan-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    justify-self: center;
  }

  .keluhan-body {
    min-height: 124px;
    padding: 12px 10px 14px;
    gap: 8px;
  }

  .card-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .mengapa {
    padding: 56px 0;
  }

  .mengapa-grid {
    gap: 12px;
  }

  .reason-card {
    min-height: 204px;
    padding: 20px 13px 17px;
  }

  .kandungan-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 14px;
  }

  .ingredient-card figcaption {
    font-size: 0.7rem;
  }

  .video-points {
    grid-template-columns: 1fr;
  }

  .tiktok-frame {
    border-radius: var(--radius-md);
  }

  .tiktok-embed-wrap {
    padding: 10px;
  }

  .trust-stat {
    padding-inline: 10px;
  }

  .trust-stat > span {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .cta-section {
    min-height: 480px;
    padding: 64px 0 56px;
  }

  .cta-section::after {
    background: linear-gradient(rgba(255, 252, 245, 0.94), rgba(255, 252, 245, 0.87));
  }

  .cta-art img {
    object-position: 30% center;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 22px;
  }

  .footer-links {
    gap: 13px 17px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  /* Old mobile-order-bar is replaced by mobile-bottom-nav */
  .mobile-order-bar {
    display: none;
  }

  /* ===== Mobile Bottom Navigation ===== */
  .mobile-bottom-nav {
    position: fixed;
    z-index: 2000;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    height: 64px;
    background: rgba(255, 252, 245, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(137, 99, 39, 0.18);
    box-shadow: 0 -8px 32px rgba(47, 34, 19, 0.1);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 4px 8px;
    color: var(--muted);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    position: relative;
  }

  .mbn-item:hover,
  .mbn-item.is-active {
    color: var(--green-800);
  }

  .mbn-item.is-active::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 2.5px;
    border-radius: 0 0 4px 4px;
    background: var(--green-700);
  }

  .mbn-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    transition: transform 0.2s ease;
  }

  .mbn-item:active .mbn-icon {
    transform: scale(0.88);
  }

  /* Center CTA button */
  .mbn-cta {
    flex: 1.1;
    padding-top: 0;
    justify-content: flex-end;
    padding-bottom: 6px;
    color: var(--green-800);
  }

  .mbn-cta-bubble {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-700), var(--green-950));
    border: 3px solid rgba(255, 252, 245, 0.96);
    box-shadow: 0 6px 20px rgba(16, 55, 34, 0.32);
    color: var(--white);
    position: relative;
    top: -14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mbn-cta:hover .mbn-cta-bubble,
  .mbn-cta:active .mbn-cta-bubble {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 28px rgba(16, 55, 34, 0.4);
  }

  .mbn-cta .mbn-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .hero-inner {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.2vw, 3.6rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .hero-actions .text-link {
    justify-self: start;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .hero-mobile-visual {
    height: 330px;
  }

  .section-heading > p:last-child {
    font-size: 0.85rem;
  }

  .keluhan-grid {
    gap: 10px;
  }

  .keluhan-image {
    aspect-ratio: 1 / 0.86;
  }

  .keluhan-body {
    display: block;
    min-height: 150px;
  }

  .card-icon {
    position: relative;
    z-index: 2;
    margin: -28px 0 8px;
    border: 3px solid var(--white);
  }

  .keluhan-body h3 {
    font-size: 0.77rem;
  }

  .keluhan-body p {
    font-size: 0.65rem;
  }

  .mengapa-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    display: grid;
    grid-template-columns: auto 1fr;
    min-height: auto;
    padding: 17px;
    text-align: left;
    column-gap: 13px;
  }

  .reason-icon {
    grid-row: 1 / 3;
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .reason-card p {
    margin-top: 4px;
  }

  .kandungan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 390px;
  }

  .ingredient-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .tiktok-frame-top {
    padding-inline: 12px;
  }

  .tiktok-embed-wrap {
    min-height: 310px;
    padding: 8px 0;
  }

  .tiktok-embed-wrap .tiktok-embed {
    min-width: 288px !important;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .trust-stat {
    justify-content: flex-start;
    padding: 12px 3px;
    border-right: 0;
    border-bottom: 1px solid rgba(112, 78, 30, 0.15);
  }

  .trust-stat:last-child {
    border-bottom: 0;
  }

  .faq-question {
    min-height: 64px;
    padding: 16px 15px;
    font-size: 0.76rem;
  }

  .faq-answer p {
    padding: 0 15px 17px;
    font-size: 0.72rem;
  }

  .cta-notes {
    align-items: flex-start;
    flex-direction: column;
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    grid-row: 2;
  }

  .footer-links {
    grid-column: 1;
    grid-row: 3;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal-item {
    opacity: 1;
    transform: none;
  }
}
