/* ============================================================
   OMIO™ Landing Page — style.css
   Forest Noir Palette · Cormorant Garamond + Jost
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --green-deep:  #0F1F16;
  --green-mid:   #1C3324;
  --green-light: #2A4A34;
  --gold:        #C8963C;
  --gold-light:  #DFB060;
  --gold-pale:   #F2D990;
  --cream:       #FDFAF3;
  --cream-dark:  #F4EFE3;
  --cream-mid:   #EDE8DC;
  --white:       #FFFFFF;
  --text-body:   #1C2A20;
  --text-muted:  #4A6055;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;

  --clip-sm: polygon(0 0, calc(100% - 8px)  0, 100%  8px,  100% 100%,  8px 100%, 0 calc(100% -  8px));
  --clip-md: polygon(0 0, calc(100% - 12px) 0, 100% 12px,  100% 100%, 12px 100%, 0 calc(100% - 12px));
  --clip-lg: polygon(0 0, calc(100% - 16px) 0, 100% 16px,  100% 100%, 16px 100%, 0 calc(100% - 16px));
  --clip-xl: polygon(0 0, calc(100% - 20px) 0, 100% 20px,  100% 100%, 20px 100%, 0 calc(100% - 20px));

  --shadow-card:  0 18px 52px rgba(15, 31, 22, 0.10);
  --shadow-hover: 0 24px 60px rgba(15, 31, 22, 0.14);
  --ease:         0.3s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; overflow-x: hidden; }
body  { font-family: var(--font-body); background: var(--cream); color: var(--text-body); overflow-x: hidden; line-height: 1.6; }

/* ── Doodle background pattern ────────────────────────────────
   Diterapkan hanya pada section berlatar terang (cream).
   opacity .045 — cukup terlihat sebagai tekstur, tidak ramai.
   mix-blend-mode: multiply agar menyatu natural dengan warna bg.
───────────────────────────────────────────────────────────────*/
.doodle-bg { position: relative; }
.doodle-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url('images/doodle-pattern.jpg');
  background-repeat: repeat;
  background-size: 480px auto;
  opacity: .17;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.doodle-bg > * { position: relative; z-index: 1; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── Noise texture overlay ───────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.4;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Shared Components ──────────────────────────────────────── */
.section-label {
  display: block; font-size: 10px; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px);
  color: var(--green-deep); line-height: 1.05; margin-bottom: 44px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-wrap { max-width: 1200px; margin: 0 auto; }

/* ── Buttons — Option 5: Gold Border Accent ─────────────────── */
.btn {
  display: inline-block; font-family: var(--font-body); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  padding: 13px 34px; cursor: pointer; text-align: center; border-radius: 0;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

/* Primary — dark fill, gold text + gold border */
.btn--primary {
  background: var(--green-deep); color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--primary:hover {
  background: var(--green-mid); color: var(--gold-light);
  border-color: var(--gold-light); transform: translateY(-2px);
}

/* Gold — gold fill, dark text + gold border */
.btn--gold {
  background: var(--gold); color: var(--green-deep);
  border: 1.5px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light); border-color: var(--gold-light);
  transform: translateY(-2px);
}

/* Outline — transparent, dark text + gold border */
.btn--outline {
  background: transparent; color: var(--green-deep);
  border: 1.5px solid var(--gold); font-weight: 500;
}
.btn--outline:hover {
  background: rgba(200,150,60,.08); color: var(--green-deep);
}

/* Outline light — transparent, cream text + gold border (on dark sections) */
.btn--outline-light {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(200,150,60,.55); font-weight: 500;
}
.btn--outline-light:hover {
  background: rgba(200,150,60,.12); border-color: var(--gold);
}

.btn--full { width: 100%; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 56px;
  background: rgba(253,250,243,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15,31,22,.08);
}
.navbar__logo {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--green-deep); letter-spacing: 4px; text-transform: uppercase;
}
.navbar__logo sup { font-size: 11px; color: var(--gold); font-weight: 300; vertical-align: super; }
.navbar__links { display: flex; gap: 28px; }
.navbar__links a { color: var(--text-muted); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; transition: color var(--ease); }
.navbar__links a:hover { color: var(--green-deep); }
.navbar__cta {
  padding: 10px 22px; background: var(--green-deep); color: var(--gold);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
  border: 1.5px solid var(--gold); transition: background var(--ease), color var(--ease);
  white-space: nowrap;
}
.navbar__cta:hover { background: var(--green-mid); color: var(--gold-light); border-color: var(--gold-light); }
.navbar__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer; z-index: 310; position: relative; }
.navbar__hamburger span { width: 22px; height: 1.5px; background: var(--green-deep); display: block; transition: transform .3s ease, opacity .3s ease; }

/* ── Hamburger → X saat menu terbuka ────────────────────────── */
.navbar--open .navbar__hamburger span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.navbar--open .navbar__hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar--open .navbar__hamburger span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── Mobile Menu Overlay ────────────────────────────────────── */
.navbar__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 100px 24px 60px;
}
.navbar__mobile-menu.open { display: flex; }

.navbar__mobile-menu a {
  width: 100%;
  text-align: center;
  font-size: 15px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green-deep);
  padding: 18px 0;
  border-bottom: 1px solid rgba(15,31,22,.08);
  transition: color var(--ease);
}
.navbar__mobile-menu a:first-child { border-top: 1px solid rgba(15,31,22,.08); }
.navbar__mobile-menu a:hover { color: var(--gold); }

.navbar__mobile-cta {
  margin-top: 28px !important;
  padding: 13px 40px !important;
  background: var(--green-deep) !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold) !important;
  font-size: 11px !important;
  letter-spacing: 2px !important;
  border-bottom: 1.5px solid var(--gold) !important;
  clip-path: var(--clip-sm);
}
.navbar__mobile-cta:hover { background: var(--green-mid) !important; }

.navbar__mobile-lang {
  display: flex;
  gap: 2px;
  margin-top: 24px;
  background: rgba(15,31,22,.06);
  border: 1px solid rgba(15,31,22,.12);
  padding: 3px;
}
.navbar__mobile-lang button {
  padding: 6px 14px;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}
.navbar__mobile-lang button.active { background: var(--green-deep); color: var(--gold); }

/* ── Language Switcher ─────────────────────────────────────── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(15,31,22,.06);
  border: 1px solid rgba(15,31,22,.12);
  padding: 3px;
  clip-path: var(--clip-sm);
}
.lang-btn {
  padding: 5px 10px;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
  line-height: 1;
}
.lang-btn:hover  { color: var(--green-deep); }
.lang-btn.active {
  background: var(--green-deep);
  color: var(--gold);
  clip-path: var(--clip-sm);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; padding-top: 70px; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: linear-gradient(rgba(15,31,22,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15,31,22,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__left {
  padding: 72px 56px 72px 72px; position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 22px;
  background: rgba(200,150,60,.08); border: 1px solid rgba(200,150,60,.2);
  padding: 7px 16px; width: fit-content;
  opacity: 0; animation: fadeUp .8s .1s forwards;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(46px,5.5vw,82px);
  color: var(--green-deep); line-height: .96; margin-bottom: 22px;
  opacity: 0; animation: fadeUp .9s .25s forwards;
}
.hero__title em { color: var(--gold); font-style: italic; }
.hero__subtitle {
  font-size: 15px; line-height: 1.85; color: var(--text-muted);
  font-weight: 300; max-width: 420px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp .9s .4s forwards;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s .52s forwards; }
.hero__badges { display: flex; gap: 24px; margin-top: 32px; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s .65s forwards; }
.hero__badge { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--text-muted); font-weight: 500; }
.hero__badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero__right { position: relative; overflow: hidden; background: var(--green-deep); }
.hero__right-img { width: 100%; height: 100%; object-fit: cover; opacity: .65; }
.hero__right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 22%),
              linear-gradient(to top, rgba(15,31,22,.7) 0%, transparent 50%);
}
.hero__float-card {
  position: absolute; bottom: 40px; right: 36px;
  background: rgba(253,250,243,.96); padding: 20px 24px;
  clip-path: var(--clip-sm); border: 1px solid rgba(200,150,60,.22);
}
.hero__float-num { font-family: var(--font-display); font-size: 44px; color: var(--green-deep); font-weight: 700; line-height: 1; }
.hero__float-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }

/* ── Hero Slider ─────────────────────────────────────────────── */
.hero__right {
  position: relative; overflow: hidden; background: var(--green-deep);
}

/* Outer clip — hides all slides outside the visible area */
.hero__slider-wrap {
  position: absolute; inset: 0; overflow: hidden;
}

/* Track — stretches to fit all slides side by side */
.hero__slider {
  display: flex;
  height: 100%;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide is exactly the width of the container */
.hero__slide {
  flex: 0 0 100%;          /* never grow or shrink, always 100% of the wrap */
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .65; display: block;
}

/* Arrow buttons */
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 40px; height: 40px;
  background: rgba(253,250,243,.15); border: 1px solid rgba(200,150,60,.35);
  color: var(--cream); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), border-color var(--ease), transform var(--ease);
  clip-path: var(--clip-sm);
}
.hero__arrow:hover {
  background: rgba(200,150,60,.25); border-color: var(--gold);
  transform: translateY(-50%) scale(1.05);
}
.hero__arrow--prev { left: 16px; }
.hero__arrow--next { right: 16px; }

/* Dot indicators */
.hero__dots {
  position: absolute; bottom: 56px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px; align-items: center;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(253,250,243,.35); border: none; cursor: pointer;
  transition: background var(--ease), transform var(--ease);
  padding: 0;
}
.hero__dot.active {
  background: var(--gold); transform: scale(1.4);
}

/* ── Trust Bar ──────────────────────────────────────────────── */
.trustbar {
  background: var(--green-deep); padding: 16px 56px;
  display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trustbar__item { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(253,250,243,.45); font-weight: 500; white-space: nowrap; }
.trustbar__sep  { color: rgba(200,150,60,.25); font-size: 16px; }

/* ── Products Section ───────────────────────────────────────── */
.section-products { padding: 96px 56px; background: var(--cream); }
.prod-tabs { display: flex; margin-bottom: 36px; border-bottom: 1px solid rgba(15,31,22,.1); }
.prod-tab {
  padding: 10px 20px; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500; color: var(--text-muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--ease); cursor: pointer;
}
.prod-tab.active { color: var(--green-deep); border-bottom-color: var(--gold); }
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.prod-card {
  background: var(--white); border: 1px solid rgba(15,31,22,.08);
  clip-path: var(--clip-md); overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.prod-card__imgwrap { position: relative; height: 260px; overflow: hidden; background: var(--cream-dark); }
.prod-card__imgwrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: opacity .45s ease, transform .5s ease;
}

/* Gambar 1 — tampil default */
.prod-card__img1 {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* Gambar 2 — tersembunyi default */
.prod-card__img2 {
  opacity: 0;
  transform: scale(1.04);
  z-index: 2;
}

/* Hover: img1 fade out, img2 fade in */
.prod-card:hover .prod-card__img1 {
  opacity: 0;
  transform: scale(1.04);
}
.prod-card:hover .prod-card__img2 {
  opacity: 1;
  transform: scale(1);
}
.prod-card__badge { position: absolute; top: 12px; left: 12px; background: var(--green-deep); color: var(--cream); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; font-weight: 600; }
.prod-card__badge--gold  { background: var(--gold); color: var(--green-deep); }
.prod-card__badge--halal { left: auto; right: 12px; background: var(--gold); color: var(--green-deep); }
.prod-card__body   { padding: 20px 22px 24px; }
.prod-card__category { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 5px; }
.prod-card__name   { font-family: var(--font-display); font-size: 21px; color: var(--green-deep); line-height: 1.15; margin-bottom: 7px; }
.prod-card__desc   { font-size: 12px; line-height: 1.7; color: var(--text-muted); font-weight: 300; margin-bottom: 14px; }
.prod-card__meta   { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid rgba(15,31,22,.07); }
.prod-card__weight { font-size: 10px; color: var(--text-muted); background: var(--cream-dark); padding: 4px 10px; }
.prod-card__protein{ font-size: 10px; font-weight: 600; color: var(--gold); }
.prod-card__price  { font-family: var(--font-display); font-size: 22px; color: var(--green-deep); font-weight: 700; margin-top: 10px; }
.prod-card__price small { font-size: 11px; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }

/* ── Feature Section ────────────────────────────────────────── */
.section-feature { padding: 96px 56px; background: var(--cream-dark); position: relative; overflow: hidden; }
.feature__inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.feature__imgstack { position: relative; height: 520px; }
.feature__img-main {
  position: absolute; top: 0; left: 0; width: 72%; height: 100%;
  object-fit: cover; clip-path: var(--clip-lg); border: 1px solid rgba(200,150,60,.15);
}
.feature__img-stat {
  position: absolute; bottom: 0; right: 0; width: 50%; aspect-ratio: 1;
  background: var(--green-deep); clip-path: var(--clip-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border: 1px solid rgba(200,150,60,.2);
}
.feature__stat-num   { font-family: var(--font-display); font-size: 50px; color: var(--gold); font-weight: 700; line-height: 1; }
.feature__stat-label { font-size: 9px; letter-spacing: 2px; color: rgba(253,250,243,.5); text-transform: uppercase; text-align: center; padding: 0 12px; }
.feature__list { display: flex; flex-direction: column; }
.feature__list-item {
  display: flex; align-items: flex-start; gap: 13px; font-size: 13px;
  color: var(--text-body); padding: 14px 0; border-bottom: 1px solid rgba(15,31,22,.08); line-height: 1.65;
}
.feature__list-item:last-child { border-bottom: none; }
.feature__list-item::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.feature__list-item strong { color: var(--green-deep); }

/* ── Serving Section ────────────────────────────────────────── */
.section-serving { padding: 96px 56px; background: var(--cream); }
.serving__inner  { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; max-width: 1200px; margin: 0 auto; }
.serving__img    { width: 100%; height: 440px; object-fit: cover; clip-path: var(--clip-lg); }
.accordion__item { border-bottom: 1px solid rgba(15,31,22,.1); }
.accordion__header { display: flex; align-items: center; gap: 13px; padding: 18px 0; cursor: pointer; }
.accordion__num    { font-family: var(--font-display); font-size: 13px; color: var(--gold); font-weight: 600; letter-spacing: 2px; width: 26px; flex-shrink: 0; }
.accordion__title  { flex: 1; font-size: 14px; font-weight: 500; color: var(--green-deep); }
.accordion__icon   { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.accordion__icon::before,
.accordion__icon::after { content: ''; position: absolute; background: var(--gold); transition: transform .3s, opacity .3s; }
.accordion__icon::before { width: 10px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion__icon::after  { width: 1.5px; height: 10px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.accordion__item.open .accordion__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.accordion__body {
  max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s;
  font-size: 13px; line-height: 1.8; color: var(--text-muted); font-weight: 300; padding: 0 39px;
}
.accordion__item.open .accordion__body { max-height: 160px; padding: 0 39px 16px; }
.serving__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.serving__tag  { padding: 6px 14px; border: 1px solid rgba(15,31,22,.13); font-size: 10px; letter-spacing: 1.5px; color: var(--text-muted); text-transform: uppercase; background: var(--white); }

/* ── Layanan Section ────────────────────────────────────────── */
.section-layanan { padding: 96px 56px; background: var(--green-deep); position: relative; overflow: hidden; }
.section-layanan::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(200,150,60,.07) 0%, transparent 70%);
}
.layanan__header { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; max-width: 1200px; margin: 0 auto 52px; }
.layanan__header-desc { max-width: 360px; font-size: 14px; line-height: 1.8; color: rgba(253,250,243,.70); font-weight: 300; }
.layanan__marquee-wrap { overflow: hidden; margin-bottom: 52px; border-top: 1px solid rgba(200,150,60,.1); border-bottom: 1px solid rgba(200,150,60,.1); padding: 13px 0; }
.layanan__marquee { display: flex; gap: 48px; animation: marquee 22s linear infinite; width: max-content; }
.layanan__marquee-item { display: flex; align-items: center; gap: 11px; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(200,150,60,.75); white-space: nowrap; font-weight: 500; }
.layanan__marquee-dot  { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: .45; }
.layanan__grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; max-width: 1200px; margin: 0 auto; }
.layanan__main-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(200,150,60,.14);
  clip-path: var(--clip-xl); overflow: hidden; position: relative;
  min-height: 400px; display: flex; flex-direction: column; justify-content: flex-end;
}
.layanan__main-img     { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: .15; }
.layanan__main-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,31,22,1) 0%, rgba(15,31,22,.82) 55%, rgba(15,31,22,.45) 100%); }
.layanan__main-body    { position: relative; z-index: 2; padding: 32px; }
.layanan__pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,150,60,.13); border: 1px solid rgba(200,150,60,.28); padding: 5px 13px; margin-bottom: 14px; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.layanan__main-title { font-family: var(--font-display); font-size: 34px; color: var(--cream); line-height: 1.1; margin-bottom: 10px; }
.layanan__main-title em { color: var(--gold); font-style: italic; }
.layanan__main-desc  { font-size: 13px; color: rgba(253,250,243,.75); line-height: 1.8; font-weight: 300; margin-bottom: 22px; }
.layanan__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.layanan__tag  { padding: 4px 11px; border: 1px solid rgba(200,150,60,.18); font-size: 9px; letter-spacing: 1.5px; color: rgba(253,250,243,.4); text-transform: uppercase; }
.layanan__side { display: flex; flex-direction: column; gap: 16px; }
.layanan__side-card {
  flex: 1; background: rgba(253,250,243,.07); border: 1px solid rgba(200,150,60,.22);
  clip-path: var(--clip-md); padding: 26px; position: relative; overflow: hidden;
  transition: border-color var(--ease), background var(--ease);
}
.layanan__side-card:hover { border-color: rgba(200,150,60,.45); background: rgba(253,250,243,.11); }
.layanan__side-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold); opacity: .5; transition: opacity var(--ease); }
.layanan__side-card:hover::before { opacity: 1; }
.layanan__side-icon  { width: 34px; height: 34px; border: 1px solid rgba(200,150,60,.22); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.layanan__side-title { font-family: var(--font-display); font-size: 21px; color: var(--cream); margin-bottom: 7px; }
.layanan__side-desc  { font-size: 12px; color: rgba(253,250,243,.70); line-height: 1.75; font-weight: 300; margin-bottom: 12px; }
.layanan__side-list li { font-size: 11px; color: rgba(253,250,243,.65); display: flex; align-items: center; gap: 7px; margin-bottom: 6px; }
.layanan__side-list li::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* Tombol di layanan side card */
.layanan__side-btn {
  display: inline-block;
  margin-top: 18px;
  font-size: 10px;
  padding: 10px 22px;
  color: var(--cream);
  border: 1.5px solid rgba(200,150,60,.45);
  background: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  clip-path: var(--clip-sm);
  transition: background var(--ease), border-color var(--ease);
  cursor: pointer;
}
.layanan__side-btn:hover {
  background: rgba(200,150,60,.12);
  border-color: var(--gold);
}
.layanan__stats { max-width: 1200px; margin: 36px auto 0; display: grid; grid-template-columns: repeat(4,1fr); background: rgba(253,250,243,.03); border: 1px solid rgba(200,150,60,.09); clip-path: var(--clip-md); overflow: hidden; }
.layanan__stat { padding: 22px 24px; border-right: 1px solid rgba(200,150,60,.07); text-align: center; }
.layanan__stat:last-child { border-right: none; }
.layanan__stat-num   { font-family: var(--font-display); font-size: 34px; color: var(--gold); font-weight: 700; line-height: 1; margin-bottom: 4px; }
.layanan__stat-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(253,250,243,.28); }

/* ── Harga Section ──────────────────────────────────────────── */
.section-harga { padding: 96px 56px; background: var(--cream); }
.harga__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.harga__card { background: var(--white); border: 1px solid rgba(15,31,22,.08); clip-path: var(--clip-lg); padding: 30px; transition: transform var(--ease), box-shadow var(--ease); position: relative; overflow: hidden; }
.harga__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.harga__card--featured { border-color: rgba(200,150,60,.28); background: var(--green-deep); }
.harga__card--featured .harga__label,
.harga__card--featured .harga__name,
.harga__card--featured .harga__price { color: var(--cream) !important; }
.harga__card--featured .harga__per,
.harga__card--featured .harga__feature { color: rgba(253,250,243,.5) !important; }
.harga__card--featured .harga__feature { border-color: rgba(200,150,60,.1) !important; }
.harga__card--featured .harga__feature::before { background: var(--gold) !important; }
.harga__card--featured .harga__divider { background: rgba(200,150,60,.1) !important; }
.harga__popular-badge { position: absolute; top: 18px; right: 18px; background: var(--gold); color: var(--green-deep); font-size: 8px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 11px; font-weight: 700; }
.harga__label   { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.harga__name    { font-family: var(--font-display); font-size: 22px; color: var(--green-deep); margin-bottom: 16px; line-height: 1.1; }
.harga__price   { font-family: var(--font-display); font-size: 38px; color: var(--green-deep); font-weight: 700; line-height: 1; margin-bottom: 3px; }
.harga__per     { font-size: 11px; color: var(--text-muted); margin-bottom: 20px; }
.harga__divider { height: 1px; background: rgba(15,31,22,.07); margin-bottom: 18px; }
.harga__features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.harga__feature { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 9px; padding-bottom: 9px; border-bottom: 1px solid rgba(15,31,22,.05); }
.harga__feature:last-child { border-bottom: none; padding-bottom: 0; }
.harga__feature::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.harga__note { max-width: 1200px; margin: 28px auto 0; padding: 18px 24px; background: rgba(200,150,60,.07); border-left: 3px solid var(--gold); font-size: 12px; color: var(--text-muted); font-style: italic; }

/* ── Testimoni Section ──────────────────────────────────────── */
.section-testi { padding: 96px 56px; background: var(--cream-dark); }
.testi__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; max-width: 1200px; margin: 0 auto; }
.testi__card { background: var(--white); border: 1px solid rgba(15,31,22,.07); clip-path: var(--clip-md); padding: 26px; }
.testi__stars { display: flex; gap: 2px; margin-bottom: 13px; }
.testi__star  { color: var(--gold); font-size: 13px; }
.testi__text  { font-size: 13px; line-height: 1.8; color: var(--text-body); font-weight: 300; margin-bottom: 18px; font-style: italic; }
.testi__divider { height: 1px; background: rgba(15,31,22,.07); margin-bottom: 14px; }
.testi__author  { display: flex; align-items: center; gap: 11px; }
.testi__avatar  { width: 36px; height: 36px; border-radius: 50%; background: var(--green-deep); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 15px; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.testi__name    { font-size: 13px; font-weight: 600; color: var(--green-deep); }
.testi__role    { font-size: 11px; color: var(--text-muted); }

/* ── Order Section ──────────────────────────────────────────── */
.section-order { padding: 96px 56px; background: var(--cream); }
.order__inner  { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.order__card   { padding: 44px 40px; clip-path: var(--clip-lg); transition: transform var(--ease); }
.order__card:hover { transform: translateY(-4px); }
.order__card--light { background: var(--white); border: 1px solid rgba(15,31,22,.09); }
.order__card--dark  { background: var(--green-deep); border: 1px solid rgba(200,150,60,.14); }
.order__icon  { width: 42px; height: 42px; border: 1px solid rgba(200,150,60,.28); background: rgba(200,150,60,.07); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.order__title { font-family: var(--font-display); font-size: 28px; line-height: 1.1; margin-bottom: 11px; }
.order__card--light .order__title { color: var(--green-deep); }
.order__card--dark  .order__title { color: var(--cream); }
.order__desc  { font-size: 13px; line-height: 1.8; font-weight: 300; margin-bottom: 24px; }
.order__card--light .order__desc { color: var(--text-muted); }
.order__card--dark  .order__desc { color: rgba(253,250,243,.45); }
.order__list  { display: flex; flex-direction: column; gap: 8px; margin-bottom: 30px; }
.order__list li { font-size: 12px; display: flex; align-items: center; gap: 9px; }
.order__card--light .order__list li { color: var(--text-body); }
.order__card--dark  .order__list li { color: rgba(253,250,243,.55); }
.order__list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.order__note { max-width: 1200px; margin: 28px auto 0; padding: 20px 24px; background: rgba(200,150,60,.07); border-left: 3px solid var(--gold); font-size: 12px; color: var(--text-muted); font-style: italic; }
.order__contacts { max-width: 1200px; margin: 24px auto 0; display: flex; gap: 16px; flex-wrap: wrap; }
.order__contact-link { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--text-muted); padding: 12px 20px; border: 1px solid rgba(15,31,22,.12); background: var(--white); transition: border-color var(--ease), color var(--ease); }
.order__contact-link:hover { border-color: var(--gold); color: var(--green-deep); }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--green-deep); padding: 60px 56px 32px; }
.footer__top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 52px; margin-bottom: 44px; }
.footer__logo { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--cream); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; }
.footer__logo sup { font-size: 11px; color: var(--gold); font-weight: 300; }
.footer__tagline  { font-size: 11px; color: rgba(253,250,243,.28); letter-spacing: 1px; font-style: italic; margin-bottom: 18px; }
.footer__certs    { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__cert     { padding: 4px 11px; border: 1px solid rgba(200,150,60,.18); font-size: 8px; letter-spacing: 2px; color: rgba(200,150,60,.4); text-transform: uppercase; }
.footer__col-title{ font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 600; }
.footer__link     { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(253,250,243,.38); margin-bottom: 9px; transition: color var(--ease); }
.footer__link:hover { color: var(--gold); }
.footer__address  { font-size: 12px; color: rgba(253,250,243,.35); line-height: 1.7; font-weight: 300; margin-top: 4px; }
.footer__divider  { border: none; border-top: 1px solid rgba(200,150,60,.09); margin: 0 auto 20px; max-width: 1200px; }
.footer__bottom   { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer__copy     { font-size: 10px; letter-spacing: 1px; color: rgba(253,250,243,.16); text-transform: uppercase; }

/* Tambahkan setelah .serving__img { ... } */
.serving__img,
video.serving__img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  clip-path: var(--clip-lg);
  display: block;        /* hilangkan gap bawah bawaan video */
}

/* ── FAQ Section ─────────────────────────────────────────────── */
.section-faq { padding: 96px 56px; }

.faq__header {
  display: flex; justify-content: space-between;
  align-items: flex-end; gap: 32px; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto 44px;
}
.faq__subtitle {
  max-width: 380px; font-size: 14px; line-height: 1.8;
  color: var(--text-muted); font-weight: 300;
}

/* Tabs */
.faq__tabs {
  display: flex; gap: 0; flex-wrap: wrap;
  max-width: 1200px; margin: 0 auto 40px;
  border-bottom: 1px solid rgba(15,31,22,.1);
}
.faq__tab {
  padding: 11px 20px; font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500; color: var(--text-muted);
  background: transparent; border: none; border-bottom: 2px solid transparent;
  margin-bottom: -1px; cursor: pointer; font-family: var(--font-body);
  transition: color var(--ease), border-color var(--ease); white-space: nowrap;
}
.faq__tab:hover  { color: var(--green-deep); }
.faq__tab.active { color: var(--green-deep); border-bottom-color: var(--gold); }

/* 2-col grid */
.faq__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0 48px; max-width: 1200px; margin: 0 auto;
  align-items: start;
}
.faq__item { border-bottom: 1px solid rgba(15,31,22,.09); transition: background var(--ease); }
.faq__item:hover { background: rgba(200,150,60,.03); }
.faq__item.faq--hidden { display: none; }

.faq__question {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 22px 0; cursor: pointer; user-select: none;
}
.faq__q-badge {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--gold); flex-shrink: 0; line-height: 1.3; margin-top: 1px; width: 20px;
}
.faq__q-text {
  flex: 1; font-size: 14px; font-weight: 500;
  color: var(--green-deep); line-height: 1.55;
}
.faq__icon {
  flex-shrink: 0; width: 18px; height: 18px;
  position: relative; margin-top: 3px;
}
.faq__icon::before,
.faq__icon::after {
  content: ''; position: absolute; background: var(--gold);
  transition: transform .35s ease, opacity .35s ease;
}
.faq__icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__icon::after  { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__item.open .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .5s ease, padding .35s;
  font-size: 13px; line-height: 1.85; color: var(--text-muted);
  font-weight: 300; padding: 0 0 0 34px;
}
.faq__item.open .faq__answer { max-height: 500px; padding: 0 0 22px 34px; }
.faq__answer strong { color: var(--green-deep); font-weight: 600; }

/* CTA */
.faq__cta, .katalog__cta {
  max-width: 1200px; margin: 60px auto 0;
  background: var(--green-deep); clip-path: var(--clip-lg);
  padding: 44px 52px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__cta-title, .katalog__cta-title {
  font-family: var(--font-display); font-size: 28px;
  color: var(--cream); font-weight: 400; line-height: 1.1; margin-bottom: 4px;
}
.faq__cta-sub, .katalog__cta-sub { font-size: 13px; color: rgba(253,250,243,.45); font-weight: 300; }

.faq__cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 24px 0;
  flex-wrap: wrap;
}
.faq__cta-divider {
  width: 100%;
  height: 1px;
  background: rgba(200,150,60,.2);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .navbar { padding: 14px 20px; }
  .navbar__links, .navbar__cta { display: none; }
  .lang-switcher { gap: 1px; }
  .lang-btn { padding: 4px 8px; font-size: 9px; }
  .navbar__hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 90px 24px 48px; }
  .hero__right { height: 280px; min-height: unset; }
  .hero__float-card { display: none; }
  .hero__badges { flex-wrap: wrap; gap: 10px; }

  .trustbar { gap: 12px; padding: 12px 16px; flex-wrap: wrap; justify-content: center; }
  .trustbar__sep { display: none; }

  /* ── All light sections: fix 56px → 24px horizontal padding ── */
  .section-products, .section-feature, .section-serving,
  .section-layanan, .section-harga, .section-testi,
  .section-order, .section-faq {
    padding: 64px 24px;
  }

  /* ── Section wrap: ensure no overflow ── */
  .section-wrap { width: 100%; padding: 0; }

  .prod-grid, .feature__inner, .serving__inner,
  .layanan__grid, .harga__grid, .testi__grid, .order__inner {
    grid-template-columns: 1fr;
  }

  .feature__imgstack { height: 300px; }

  /* ── Layanan: fix inner containers ── */
  .layanan__header { padding: 0; margin-bottom: 32px; }
  .layanan__marquee-wrap { margin-bottom: 32px; }
  .layanan__marquee { animation-duration: 14s; }
  .layanan__stats { grid-template-columns: repeat(2,1fr); }
  .layanan__stat:nth-child(2) { border-right: none; }
  .layanan__stat:nth-child(3),
  .layanan__stat:nth-child(4) { border-top: 1px solid rgba(200,150,60,.07); }

  /* ── Harga ── */
  .harga__note { margin: 20px 0 0; }
  .faq__cta { margin: 40px 0 0; }

  /* ── Order contacts ── */
  .order__contacts { flex-direction: column; }
  .order__note { margin: 20px 0 0; }

  /* ── Footer ── */
  .footer { padding: 48px 24px 28px; }
  .footer__top, .footer__bottom { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }

  /* ── FAQ mobile ── */
  .faq__grid { grid-template-columns: 1fr; gap: 0; }
  .faq__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .faq__tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0; -webkit-overflow-scrolling: touch; }
  .faq__tab { padding: 10px 14px; font-size: 10px; flex-shrink: 0; }
  .faq__cta-title { font-size: 22px; }
}
