/* ============================================================
   lisensi365.id — neo-brutalist design system (amber + teal palette)
   White paper · Amber Glow #ff9f1c accent · Light Sea Green #2ec4b6 ·
   dark teal-ink borders/shadows · Bricolage Grotesque + Inter
   Palette: ff9f1c (Amber Glow) · ffbf69 (Honey Bronze) · ffffff ·
            cbf3f0 (Frozen Water) · 2ec4b6 (Light Sea Green)
   Dipakai semua halaman. Vanilla CSS, mobile-first, a11y-first.
   ============================================================ */

:root {
  /* surfaces */
  --bg: #ffffff;
  --bg-pink: #ffe9c9;   /* warm light-amber band */
  --bg-cream: #fff4e2;  /* lightest warm cream */
  --bg-mint: #cbf3f0;   /* Frozen Water (cool band) */
  --panel: #ffffff;

  /* ink (dark teal as the "black") */
  --black: #0e2a26;     /* dark teal-ink — borders, shadows, ink */
  --ink: #16302b;       /* body strong */
  --muted: #45615b;     /* muted teal-grey — secondary text */
  --faint: #5f7a74;     /* faint small labels */

  /* brand palette (var names kept; recolored to amber/teal) */
  --pink: #ff9f1c;        /* Amber Glow — primary accent (DARK text on it) */
  --pink-soft: #ffd9a8;   /* light amber (hero dots) */
  --pink-deep: #0b6b61;   /* dark teal — links/emphasis (≥4.5:1 on white) */
  --purple: #2ec4b6;      /* Light Sea Green — gradient end */
  --yellow: #cbf3f0;      /* Frozen Water — chips/badges (dark text) */
  --teal: #2ec4b6;        /* Light Sea Green — positive/check/dots */
  --teal-soft: #cbf3f0;   /* Frozen Water light */
  --orange: #0b6b61;      /* dark teal */
  --red: #4b5a57;         /* muted slate-teal — negative */
  --blue-light: #ffbf69;  /* Honey Bronze — accents on dark footer */

  /* lines + shadow (the signature look) */
  --bd: 2.5px solid var(--black);
  --bd-thin: 2px solid var(--black);
  --sh: 5px 5px 0 var(--black);
  --sh-sm: 3px 3px 0 var(--black);
  --sh-lg: 8px 8px 0 var(--black);

  --r: 16px;
  --r-sm: 10px;

  --display: "Bricolage Grotesque", "Archivo", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1200px;
  --pad: clamp(18px, 5vw, 56px);

  --z-nav: 30;
  --z-overlay: 50;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; color: var(--black); line-height: 1.04; letter-spacing: -.02em; }
p { margin: 0; }
a { color: inherit; }
svg { display: block; }
img { max-width: 100%; height: auto; }
em { font-style: normal; }
ul { margin: 0; }

/* ---------- a11y ---------- */
.skip-link { position: absolute; left: 14px; top: -60px; z-index: var(--z-overlay); background: var(--black); color: #fff; padding: 12px 20px; font-weight: 700; font-size: .9rem; text-decoration: none; border-radius: var(--r-sm); transition: top .2s ease; }
.skip-link:focus { top: 14px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap; }
:where(a, button, summary, input, textarea, select):focus-visible { outline: 3px solid var(--black); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); position: relative; }
.wrap--tight { max-width: 800px; }
.block { padding-block: clamp(56px, 8vw, 104px); position: relative; }
.block--pink { background: var(--bg-pink); }
.block--cream { background: var(--bg-cream); }
.block--rule { border-top: 3px solid var(--black); }

/* eyebrow chip */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--black); background: var(--yellow); border: var(--bd-thin); border-radius: 999px; padding: 6px 14px; margin-bottom: 22px; box-shadow: var(--sh-sm); }
.eyebrow b { font-weight: 800; }
.eyebrow span { color: var(--pink-deep); }

.title { font-size: clamp(2rem, 1.1rem + 3.6vw, 3.3rem); font-weight: 800; color: var(--black); }
.title em { color: var(--pink-deep); }
.lead-head { max-width: 20ch; }
.subtitle { margin-top: 18px; font-size: clamp(1.05rem, 1rem + .4vw, 1.22rem); color: var(--muted); max-width: 56ch; line-height: 1.6; }
.block__head { margin-bottom: clamp(34px, 5vw, 56px); }

.mark { background: var(--pink); color: var(--black); padding: .02em .14em; border-radius: 6px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.mark--y { background: var(--yellow); color: var(--black); }
.mark--t { background: var(--teal-soft); color: var(--black); }

/* ---------- buttons (Gumroad "push" shadow) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 13px 24px;
  font-family: var(--sans); font-size: 1rem; font-weight: 700; line-height: 1;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  border: var(--bd); border-radius: var(--r-sm); background: var(--bg); color: var(--black);
  box-shadow: var(--sh);
  transition: transform .12s ease, box-shadow .12s ease, background-color .15s ease, color .15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--black); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--black); }
.btn--pink { background: var(--pink); color: var(--black); }
.btn--dark { background: var(--black); color: #fff; }
.btn--white { background: #fff; color: var(--black); }
.btn--lg { min-height: 58px; padding: 17px 30px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn svg { flex: none; }

/* ---------- badges / stamps ---------- */
.stamp { display: inline-flex; align-items: center; gap: 5px; font-family: var(--sans); font-size: .68rem; font-weight: 800; letter-spacing: .03em; text-transform: uppercase; color: var(--black); background: var(--yellow); border: var(--bd-thin); border-radius: 999px; padding: 3px 10px; box-shadow: var(--sh-sm); }
.stamp--pink { background: var(--pink); color: var(--black); }
.stamp--mint { background: var(--teal-soft); color: var(--black); }

.pill { display: inline-flex; align-items: center; font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--black); background: #fff; border: var(--bd-thin); border-radius: 999px; padding: 8px 18px; box-shadow: var(--sh-sm); transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease; }
a.pill:hover, .pill:hover { background: var(--pink); color: var(--black); transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--black); }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: var(--z-nav); background: var(--bg); border-bottom: 3px solid transparent; transition: border-color .2s ease, box-shadow .2s ease; }
.nav.is-scrolled { border-bottom-color: var(--black); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; color: var(--black); }
.brand__seal { flex: none; width: 38px; height: 38px; border: var(--bd-thin); border-radius: 10px; background: var(--pink); padding: 5px; color: var(--black); box-shadow: var(--sh-sm); }
.brand__name { font-family: var(--display); font-weight: 800; font-size: 1.32rem; letter-spacing: -.02em; color: var(--black); }
.brand__name span { color: var(--pink-deep); }
.nav__menu { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__menu a:not(.btn) { font-family: var(--sans); font-size: .98rem; font-weight: 600; text-decoration: none; color: var(--ink); transition: color .15s ease; }
.nav__menu a:not(.btn):hover, .nav__menu a[aria-current="page"] { color: var(--pink-deep); }
.nav__cta { min-height: 44px; padding: 10px 20px; }
.nav__toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 48px; height: 48px; padding: 12px; background: #fff; border: var(--bd-thin); border-radius: 10px; cursor: pointer; box-shadow: var(--sh-sm); }
.nav__toggle span { display: block; height: 2.5px; border-radius: 2px; background: var(--black); transition: transform .25s ease, opacity .2s ease; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg-cream); border-bottom: 3px solid var(--black); padding-block: clamp(44px, 7vw, 84px); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .6;
  background-image: radial-gradient(var(--pink-soft) 2px, transparent 2px); background-size: 26px 26px; }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--black); background: #fff; border: var(--bd-thin); border-radius: 999px; padding: 7px 15px; box-shadow: var(--sh-sm); }
.hero__eyebrow .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); border: 1.5px solid var(--black); }
.hero__title { font-family: var(--display); font-weight: 800; font-size: clamp(2.5rem, 1rem + 6.6vw, 4.6rem); line-height: 1; letter-spacing: -.03em; color: var(--black); margin-top: 22px; }
.hero__lead { margin-top: 24px; font-size: clamp(1.08rem, 1rem + .5vw, 1.28rem); color: var(--ink); max-width: 46ch; line-height: 1.55; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__assurance { margin-top: 24px; display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--ink); }
.hero__assurance svg { color: var(--teal); flex: none; }

/* hero product card (replaces certificate) */
.pcard { position: relative; display: block; text-decoration: none; color: var(--black); background: #fff; border: var(--bd); border-radius: var(--r); box-shadow: var(--sh-lg); overflow: hidden; transform: rotate(-1.6deg); transition: transform .18s ease, box-shadow .18s ease; max-width: 420px; margin-inline: auto; }
.pcard:hover { transform: rotate(-1.6deg) translate(-3px, -3px); box-shadow: 11px 11px 0 var(--black); }
.pcard__thumb { position: relative; aspect-ratio: 16 / 9; background: linear-gradient(135deg, var(--pink), var(--purple)); border-bottom: var(--bd); display: grid; place-items: center; }
.pcard__thumb b { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 8vw, 3.6rem); color: var(--black); letter-spacing: -.03em; }
.pcard__thumb .stamp { position: absolute; top: 12px; right: 12px; }
.pcard__body { padding: 20px 22px 22px; }
.pcard__name { font-family: var(--display); font-weight: 800; font-size: 1.22rem; line-height: 1.2; color: var(--black); }
.pcard__rate { display: flex; align-items: center; gap: 6px; margin-top: 8px; font-size: .86rem; font-weight: 600; color: var(--muted); }
.pcard__rate svg { color: var(--pink); }
.pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 16px; border-top: var(--bd-thin); }
.pcard__price { font-family: var(--display); font-weight: 800; font-size: 1.4rem; color: var(--black); }
.pcard__price span { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 600; color: var(--faint); }
.pcard__btn { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .92rem; color: var(--black); background: var(--pink); border: var(--bd-thin); border-radius: 999px; padding: 9px 15px; box-shadow: var(--sh-sm); }

/* ---------- brand register strip ---------- */
.register { background: var(--black); }
.register__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; padding-block: 22px; }
.register__label { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin-right: 6px; }
.register__item { font-family: var(--display); font-weight: 700; font-size: 1rem; color: var(--black); background: #fff; border-radius: 999px; padding: 7px 16px; transition: background-color .15s ease, color .15s ease, transform .15s ease; }
.register__item:hover { background: var(--pink); color: var(--black); transform: translateY(-2px); }

/* ---------- stats (bento) ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 22px); }
.stat { border: var(--bd); border-radius: var(--r); padding: 24px 22px; box-shadow: var(--sh); }
.stat:nth-child(1) { background: var(--bg-pink); }
.stat:nth-child(2) { background: var(--bg-mint); }
.stat:nth-child(3) { background: var(--bg-cream); }
.stat:nth-child(4) { background: #def6f2; }
.stat__num { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 1rem + 4.4vw, 3.5rem); line-height: 1; color: var(--pink-deep); font-variant-numeric: tabular-nums; letter-spacing: -.03em; }
.stat__num .u { font-family: var(--sans); font-size: .3em; font-weight: 700; color: var(--muted); margin-left: 5px; vertical-align: baseline; }
.stat__label { margin-top: 14px; font-family: var(--sans); font-size: .9rem; font-weight: 600; color: var(--ink); line-height: 1.4; }

/* ---------- catalog (card grid) ---------- */
.catgroup { margin-top: clamp(40px, 5vw, 60px); }
.catgroup:first-of-type { margin-top: 0; }
.catgroup__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.catgroup__name { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 1rem + 1.4vw, 1.85rem); color: var(--black); }
.catgroup__code { font-family: var(--sans); font-size: .76rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--black); background: #fff; border: var(--bd-thin); border-radius: 999px; padding: 5px 12px; box-shadow: var(--sh-sm); }

.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(16px, 2vw, 22px); }
.card { position: relative; display: flex; flex-direction: column; text-decoration: none; color: var(--black); background: #fff; border: var(--bd); border-radius: var(--r); box-shadow: var(--sh); overflow: hidden; transition: transform .15s ease, box-shadow .15s ease; }
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--sh-lg); }
.card__band { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 16px; border-bottom: var(--bd-thin); }
.card--m365 .card__band { background: var(--bg-pink); }
.card--win  .card__band { background: #def6f2; }
.card--sec  .card__band { background: var(--bg-mint); }
.card--dsg  .card__band { background: var(--bg-cream); }
.card__sn { font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .05em; color: var(--black); }
.card__glyph { width: 34px; height: 34px; display: grid; place-items: center; background: #fff; border: var(--bd-thin); border-radius: 9px; }
.card__glyph svg { width: 18px; height: 18px; color: var(--black); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 18px 18px 20px; }
.card__name { font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--black); display: flex; align-items: flex-start; gap: 8px; flex-wrap: wrap; }
.card__desc { margin-top: 10px; font-size: .94rem; color: var(--muted); line-height: 1.5; flex: 1; }
.card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: var(--bd-thin); }
.card__price { font-family: var(--display); font-weight: 800; font-size: 1.22rem; color: var(--black); line-height: 1.1; font-variant-numeric: tabular-nums; }
.card__price span { display: block; font-family: var(--sans); font-size: .72rem; font-weight: 600; color: var(--faint); margin-top: 2px; }
.card__cta { display: inline-flex; align-items: center; gap: 6px; flex: none; font-family: var(--sans); font-size: .9rem; font-weight: 700; color: var(--black); background: var(--pink); border: var(--bd-thin); border-radius: 999px; padding: 9px 14px; box-shadow: var(--sh-sm); transition: transform .15s ease, box-shadow .15s ease; }
.card:hover .card__cta { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 var(--black); }
.card__cta svg { transition: transform .15s ease; }
.card:hover .card__cta svg { transform: translateX(3px); }

/* ---------- tiers / paket ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); align-items: stretch; }
.tier { position: relative; display: flex; flex-direction: column; background: #fff; border: var(--bd); border-radius: var(--r); padding: 30px 26px; box-shadow: var(--sh); }
.tier--featured { background: var(--pink); box-shadow: var(--sh-lg); }
.tier__badge { position: absolute; top: -15px; left: 24px; }
.tier__grade { font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--pink-deep); }
.tier--featured .tier__grade { color: var(--black); }
.tier h3 { font-family: var(--display); font-weight: 800; font-size: 1.7rem; margin-top: 8px; }
.tier--featured h3 { color: var(--black); }
.tier__for { margin-top: 4px; font-size: .9rem; font-weight: 600; color: var(--muted); }
.tier--featured .tier__for { color: var(--ink); }
.tier__price { font-family: var(--display); font-weight: 800; font-size: 1.85rem; color: var(--black); margin: 20px 0; padding-block: 18px; border-block: var(--bd-thin); font-variant-numeric: tabular-nums; }
.tier--featured .tier__price { color: var(--black); border-block-color: rgba(14,42,38,.32); }
.tier__price small { font-family: var(--sans); font-size: .7rem; font-weight: 600; color: var(--muted); }
.tier--featured .tier__price small { color: var(--ink); }
.tier__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; flex: 1; }
.tier__list li { position: relative; padding-left: 28px; font-size: .94rem; font-weight: 500; color: var(--ink); }
.tier--featured .tier__list li { color: var(--ink); }
.tier__list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; background: var(--teal); border: 1.5px solid var(--black); border-radius: 50%; }
.tier__list li::after { content: ""; position: absolute; left: 5px; top: 6px; width: 7px; height: 4px; border-left: 2px solid var(--black); border-bottom: 2px solid var(--black); transform: rotate(-45deg); }
.tier--featured .tier__list li::before { background: #fff; }
.tier--featured .tier__list li::after { border-color: var(--black); }

/* ---------- registered vs not ---------- */
.vsgrid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); }
.vs { border: var(--bd); border-radius: var(--r); padding: 28px 26px; box-shadow: var(--sh); }
.vs--yes { background: var(--bg-mint); }
.vs--no { background: #fff; }
.vs__stamp { display: inline-flex; align-items: center; font-family: var(--sans); font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--black); border: var(--bd-thin); border-radius: 999px; padding: 5px 13px; box-shadow: var(--sh-sm); }
.vs--yes .vs__stamp { background: var(--teal); color: var(--black); border-color: var(--black); }
.vs--no .vs__stamp { background: var(--red); color: #fff; }
.vs__title { margin: 18px 0 20px; font-family: var(--display); font-weight: 800; font-size: 1.35rem; color: var(--black); }
.vs__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.vs__list li { position: relative; padding-left: 30px; font-size: .95rem; font-weight: 500; color: var(--ink); }
.vs__list li::before { position: absolute; left: 0; top: -1px; width: 21px; height: 21px; display: grid; place-items: center; font-size: .8rem; font-weight: 900; border: 1.5px solid var(--black); border-radius: 50%; }
.vs--yes .vs__list li::before { content: "✓"; background: var(--teal); color: var(--black); }
.vs--no .vs__list li::before { content: "✕"; background: var(--red); color: #fff; }

/* ---------- process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.step { background: #fff; border: var(--bd); border-radius: var(--r); padding: 26px 24px; box-shadow: var(--sh); }
.step:nth-child(1) { background: var(--bg-pink); }
.step:nth-child(2) { background: var(--bg-cream); }
.step:nth-child(3) { background: var(--bg-mint); }
.step__no { display: inline-grid; place-items: center; width: 46px; height: 46px; font-family: var(--display); font-weight: 800; font-size: 1.2rem; color: var(--black); background: #fff; border: var(--bd); border-radius: 12px; box-shadow: var(--sh-sm); }
.step h3 { font-family: var(--display); font-weight: 800; font-size: 1.3rem; margin-top: 18px; }
.step p { margin-top: 10px; font-size: .95rem; color: var(--muted); line-height: 1.5; }

/* ---------- editorial split (tentang) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.split__points { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.split__points li { background: #fff; border: var(--bd); border-radius: var(--r); padding: 22px 24px; box-shadow: var(--sh); }
.split__points li:nth-child(1) { background: var(--bg-pink); }
.split__points li:nth-child(2) { background: var(--bg-cream); }
.split__points li:nth-child(3) { background: var(--bg-mint); }
.split__points h3 { font-family: var(--display); font-weight: 800; font-size: 1.2rem; }
.split__points h3 .pt-ico { display: inline-block; vertical-align: -4px; margin-right: 8px; color: var(--teal); }
.split__points p { margin-top: 8px; font-size: .94rem; color: var(--muted); }
.prose p { margin-top: 18px; color: var(--ink); max-width: 60ch; }
.prose p:first-child { margin-top: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq details { background: #fff; border: var(--bd); border-radius: var(--r); box-shadow: var(--sh); overflow: hidden; }
.faq details[open] { background: var(--bg-cream); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; list-style: none; cursor: pointer; padding: 20px 22px; font-family: var(--display); font-weight: 800; font-size: 1.1rem; color: var(--black); }
.faq summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; flex: none; width: 26px; height: 26px; background: var(--pink); border: var(--bd-thin); border-radius: 8px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; inset: 50% auto auto 50%; background: var(--black); border-radius: 2px; transition: transform .25s ease; }
.faq__plus::before { width: 12px; height: 2.5px; transform: translate(-50%,-50%); }
.faq__plus::after { width: 2.5px; height: 12px; transform: translate(-50%,-50%); }
.faq details[open] .faq__plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq details p { padding: 0 22px 22px; color: var(--muted); font-size: .98rem; max-width: 68ch; }

/* ---------- CTA ---------- */
.cta { background: var(--pink); }
.cta__inner { text-align: center; display: grid; justify-items: center; }
.cta__title { font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 1rem + 4.4vw, 3.6rem); line-height: 1.02; color: var(--black); max-width: 18ch; letter-spacing: -.02em; }
.cta__title em { background: var(--yellow); color: var(--black); padding: 0 .12em; border-radius: 6px; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.cta__note { margin-top: 20px; font-size: .92rem; font-weight: 600; color: var(--black); }

/* ---------- contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.regbook { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.regbook div { background: #fff; border: var(--bd); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh); }
.regbook div:nth-child(1) { background: var(--bg-mint); }
.regbook div:nth-child(3) { background: var(--bg-cream); }
.regbook dt { font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.regbook dd { margin: 0; font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: var(--black); }
.regbook dd a { color: var(--pink-deep); text-decoration: none; }
.regbook dd a:hover { text-decoration: underline; }

.form-frame { border: var(--bd); border-radius: var(--r); padding: clamp(22px, 3vw, 32px); background: var(--bg-pink); box-shadow: var(--sh-lg); }
.form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--sans); font-size: .82rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; color: var(--black); }
.field input, .field textarea { font-family: var(--sans); font-size: 1rem; color: var(--ink); background: #fff; border: var(--bd-thin); border-radius: var(--r-sm); padding: 13px 15px; width: 100%; transition: box-shadow .15s ease, transform .1s ease; }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; box-shadow: var(--sh-sm); transform: translate(-1px, -1px); }
.form__note { font-size: .82rem; font-weight: 500; color: var(--muted); }

/* ---------- legal ---------- */
.legal { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.legal div { background: #fff; border: var(--bd); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh); }
.legal dt { font-family: var(--sans); font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.legal dd { margin: 0; font-family: var(--display); font-weight: 700; color: var(--black); }
.legal dd em { color: var(--pink-deep); font-style: normal; }

/* ---------- footer ---------- */
.footer { background: var(--black); color: #fff; border-top: 3px solid var(--black); }
.footer .brand__name, .footer .brand { color: #fff; }
.footer .brand__seal { background: var(--pink); color: var(--black); }
.footer .brand__name span { color: var(--blue-light); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(28px, 5vw, 64px); padding-block: clamp(48px, 6vw, 72px) clamp(30px, 4vw, 44px); }
.footer__about { margin-top: 16px; font-size: .92rem; color: #cdd8d5; max-width: 34ch; line-height: 1.55; }
.footer__legal { margin-top: 12px; font-size: .82rem; color: #9fb0ab; max-width: 34ch; line-height: 1.5; }
.footer__legal strong { color: #e6ecf5; font-weight: 700; }
.footer__col h4 { font-family: var(--display); font-size: .92rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; color: var(--blue-light); margin: 0 0 16px; }
.footer__col a, .footer__col p { display: block; font-size: .94rem; color: #e8efed; text-decoration: none; margin-bottom: 11px; width: fit-content; }
.footer__col a:hover { color: var(--blue-light); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.18); font-size: .84rem; color: #9eb0ab; }

/* ---------- storefront: katalog live, keranjang, checkout ---------- */
.card--live .card__cycles { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cyc { font: 700 .8rem/1 var(--sans); color: var(--black); background: #fff; border: var(--bd-thin); border-radius: 999px; padding: 8px 13px; cursor: pointer; box-shadow: var(--sh-sm); transition: transform .1s ease, box-shadow .1s ease, background-color .15s ease; }
.cyc:hover { transform: translate(-1px, -1px); }
.cyc.is-active { background: var(--teal); }
.qtybox { display: inline-flex; align-items: center; border: var(--bd-thin); border-radius: 999px; overflow: hidden; background: #fff; box-shadow: var(--sh-sm); }
.qtybox button { width: 36px; height: 36px; font: 800 1.2rem/1 var(--display); color: var(--black); background: #fff; border: 0; cursor: pointer; transition: background-color .15s ease; }
.qtybox button:hover { background: var(--bg-mint); }
.qtybox > span { min-width: 32px; text-align: center; font: 800 1rem/1 var(--display); color: var(--black); }
.card--live .card__add { margin-top: 16px; }
.card__feats { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 7px; flex: 1; }
.card__feats li { position: relative; padding-left: 22px; font-size: .88rem; color: var(--muted); line-height: 1.4; }
.card__feats li::before { content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 6px; border-left: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(-45deg); }
.card__feats li.more { padding-left: 0; font-weight: 700; color: var(--pink-deep); }
.card__feats li.more::before { display: none; }

.cat-fallback { padding: 24px 26px; border: var(--bd); border-radius: var(--r); background: #fff; box-shadow: var(--sh); font-weight: 600; color: var(--muted); }
.cat-fallback a { color: var(--pink-deep); font-weight: 700; text-decoration: underline; }
.wafab { position: fixed; right: 18px; bottom: 18px; z-index: 41; display: inline-grid; place-items: center; width: 60px; height: 60px; color: #fff; background: #25d366; border: var(--bd); border-radius: 50%; box-shadow: var(--sh); transition: transform .12s ease, box-shadow .12s ease; }
.wafab:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--black); }
.cartfab { position: fixed; right: 18px; bottom: 88px; z-index: 40; display: inline-flex; align-items: center; gap: 9px; font: 800 1rem/1 var(--display); color: var(--black); background: var(--pink); border: var(--bd); border-radius: 999px; padding: 15px 22px; box-shadow: var(--sh); cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.cartfab:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--black); }
.cartfab[hidden] { display: none; }
.cartfab__count { display: inline-grid; place-items: center; min-width: 24px; height: 24px; padding: 0 6px; font-size: .82rem; color: #fff; background: var(--black); border-radius: 999px; }

.drawer { position: fixed; inset: 0; z-index: var(--z-overlay); display: flex; justify-content: flex-end; }
.drawer[hidden] { display: none; }
.drawer__bg { position: absolute; inset: 0; background: rgba(14, 42, 38, .55); }
.drawer__panel { position: relative; width: min(440px, 100%); height: 100%; background: var(--bg); border-left: var(--bd); display: flex; flex-direction: column; animation: drawerin .2s ease; }
@keyframes drawerin { from { transform: translateX(24px); opacity: .5; } to { transform: none; opacity: 1; } }
.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: var(--bd); }
.drawer__head h3 { font-size: 1.3rem; }
.drawer__x { width: 42px; height: 42px; font-size: 1.6rem; line-height: 1; color: var(--black); background: #fff; border: var(--bd-thin); border-radius: 10px; cursor: pointer; box-shadow: var(--sh-sm); }
.drawer__body { flex: 1; overflow: auto; padding: 20px; }
.citem { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; padding: 16px 0; border-bottom: 2px solid var(--bg-mint); }
.citem__name { font: 800 1.05rem/1.2 var(--display); color: var(--black); }
.citem__meta { margin-top: 3px; font-size: .86rem; font-weight: 600; color: var(--muted); }
.citem__price { font: 800 1.05rem/1 var(--display); color: var(--black); text-align: right; white-space: nowrap; }
.citem__rm { margin-top: 8px; justify-self: end; font: 700 .8rem/1 var(--sans); color: var(--red); background: none; border: 0; cursor: pointer; text-decoration: underline; }
.csum { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; padding-top: 14px; border-top: var(--bd-thin); font: 800 1.25rem/1 var(--display); color: var(--black); }
.cempty { color: var(--muted); font-weight: 600; }
.cdone { text-align: center; padding: 12px 0; }
.cdone__badge { display: inline-grid; place-items: center; width: 66px; height: 66px; margin-bottom: 16px; background: var(--teal); border: var(--bd); border-radius: 50%; box-shadow: var(--sh); }
.cdone__no { display: inline-block; margin: 10px 0; padding: 10px 16px; font: 800 1.5rem/1 var(--display); color: var(--black); background: var(--bg-mint); border: var(--bd-thin); border-radius: 10px; }
.cerr { margin-bottom: 12px; padding: 11px 14px; font-weight: 600; color: #fff; background: var(--red); border: var(--bd-thin); border-radius: 10px; }
.drawer .field { margin-bottom: 14px; }
.field select, .drawer .sel { font-family: var(--sans); font-size: 1rem; color: var(--ink); background-color: #fff; border: var(--bd-thin); border-radius: var(--r-sm); padding: 12px 40px 12px 15px; width: 100%; cursor: pointer; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%230e2a26' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field select:focus { outline: none; box-shadow: var(--sh-sm); }
.field select:disabled { opacity: .6; cursor: default; background-color: #f4f4f2; }

/* checkout: rincian + promo */
.cobreak { margin-top: 18px; padding-top: 16px; border-top: var(--bd-thin); }
.cobreak__items { display: grid; gap: 8px; margin-bottom: 12px; }
.cobreak__row { display: flex; justify-content: space-between; gap: 12px; font-size: .95rem; color: var(--ink); }
.cobreak__row span:last-child { font-weight: 700; white-space: nowrap; }
.cobreak__sub { padding-top: 10px; border-top: 2px solid var(--bg-mint); font-weight: 700; }
.cobreak__disc { color: var(--pink-deep); }
.cobreak__disc span:last-child { color: var(--pink-deep); }
.copromo { display: flex; gap: 8px; align-items: center; margin: 14px 0 6px; }
.copromo__in { flex: 1; min-width: 0; font-family: var(--sans); font-size: .95rem; color: var(--ink); background: #fff; border: var(--bd-thin); border-radius: var(--r-sm); padding: 11px 13px; }
.copromo__in:focus { outline: none; box-shadow: var(--sh-sm); }
.copromo__btn { flex: none; min-height: 44px; padding: 10px 18px; font-family: var(--sans); font-weight: 700; color: var(--black); background: var(--teal); border: var(--bd-thin); border-radius: var(--r-sm); box-shadow: var(--sh-sm); cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.copromo__btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--black); }
.copromo__btn:disabled { opacity: .6; cursor: default; }
.copromo__tag { flex: 1; font-family: var(--display); font-weight: 800; letter-spacing: .02em; color: var(--black); background: var(--bg-mint); border: var(--bd-thin); border-radius: var(--r-sm); padding: 10px 14px; }
.copromo__x { flex: none; font: 700 .82rem/1 var(--sans); color: var(--red); background: none; border: 0; cursor: pointer; text-decoration: underline; }
.promo-msg { min-height: 1em; margin: 2px 0 0; font-size: .84rem; font-weight: 600; }
.promo-msg.ok { color: var(--pink-deep); }
.promo-msg.warn { color: var(--red); }

/* konfirmasi pesanan */
.confsec { margin-bottom: 8px; padding: 16px 0; border-top: var(--bd-thin); }
.confsec:first-of-type { border-top: 0; padding-top: 0; }
.confsec h4 { font: 800 .8rem/1 var(--sans); letter-spacing: .06em; text-transform: uppercase; color: var(--pink-deep); margin: 0 0 12px; }
.confrow { display: flex; justify-content: space-between; gap: 16px; padding: 6px 0; font-size: .94rem; }
.confrow > span { flex: none; color: var(--muted); }
.confrow > strong { color: var(--black); font-weight: 700; text-align: right; word-break: break-word; }

/* ---------- reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .pcard { margin-top: 8px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier--featured { order: -1; }
  .vsgrid, .split, .contact, .steps { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .nav__toggle { display: flex; }
  .nav__menu { position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--pad) 22px; background: var(--bg); border-bottom: 3px solid var(--black); transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .nav.is-open .nav__menu { transform: none; opacity: 1; visibility: visible; }
  .nav__menu a:not(.btn) { padding: 15px 4px; border-bottom: 2px solid #f0e7d6; font-size: 1.04rem; }
  .nav__cta { margin-top: 16px; }
  .stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cards { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .pcard { transform: none; }
}
