/* ============================================================
   Dailyswit — Design System
   Palette: cream · forest green · marigold gold
   Type: Fraunces (display serif) + Plus Jakarta Sans (UI/body)
   ============================================================ */

:root {
  /* Brand */
  --gold: #F2C230;
  --gold-600: #DFA81C;
  --gold-100: #FCEFC7;
  --gold-50: #FDF8E6;

  --forest: #21402A;
  --forest-800: #17301E;
  --forest-600: #2F5A3A;
  --leaf: #3E7D4E;
  --leaf-100: #E6F0E6;

  --cream: #FAF6EC;
  --cream-200: #F2EBDA;
  --paper: #FFFFFF;

  --ink: #21261D;
  --body: #3C4436;
  --muted: #6A7261;
  --line: #E8E1D0;
  --line-strong: #DED5BE;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radius & shadow */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(33, 64, 42, .06), 0 2px 8px rgba(33, 64, 42, .05);
  --shadow-md: 0 6px 22px rgba(33, 64, 42, .10);
  --shadow-lg: 0 20px 50px rgba(33, 64, 42, .16);

  --container: 1140px;
  --gutter: clamp(20px, 5vw, 40px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--forest-600); text-decoration-color: rgba(47,90,58,.35); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.2em; }

:focus-visible { outline: 3px solid var(--leaf); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--forest); line-height: 1.12; font-weight: 560; letter-spacing: -.01em; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.28rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.12rem; font-family: var(--font-sans); font-weight: 700; color: var(--forest); letter-spacing: 0; }
p { margin: 0 0 1rem; }
strong { color: var(--ink); font-weight: 700; }
.serif { font-family: var(--font-display); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 760px; }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }
.bg-cream2 { background: var(--cream-200); }
.bg-paper { background: var(--paper); }
.bg-forest { background: var(--forest); color: #E9EEE5; }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: #FBF7EC; }
.bg-gold { background: var(--gold); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-sans); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--leaf);
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gold-600); border-radius: 2px; }
.bg-forest .eyebrow { color: var(--gold); }
.bg-forest .eyebrow::before { background: var(--gold); }

.section-head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p.lead { color: var(--muted); font-size: 1.12rem; margin-top: .6rem; }
.bg-forest .section-head p.lead { color: #C4D2BE; }

.lead { font-size: 1.18rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-sans); font-weight: 700; font-size: 1rem;
  padding: .82em 1.5em; border-radius: var(--r-pill); border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
/* Logo merek (WhatsApp / Shopee / Gmail) di dalam tombol — dikasih alas putih
   bulat biar logo yang latarnya putih tetap rapi di atas tombol berwarna. */
.btn .brand-ico {
  width: 1.5em; height: 1.5em; flex: 0 0 auto;
  border-radius: 50%; background: #fff; object-fit: contain;
  margin-left: -.15em;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--forest); color: #FDF8E6; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-800); box-shadow: var(--shadow-md); color: #fff; }
.btn-gold { background: var(--gold); color: var(--forest); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: #F7CB45; box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--forest); background: rgba(33,64,42,.04); }
.bg-forest .btn-outline { color: #F1F5EC; border-color: rgba(255,255,255,.35); }
.bg-forest .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 1em 1.8em; font-size: 1.06rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: .45em;
  font-weight: 700; font-size: .82rem; letter-spacing: .01em;
  padding: .4em .9em; border-radius: var(--r-pill);
  background: var(--gold-100); color: var(--forest); border: 1.5px solid var(--gold);
}
.pill-outline { background: transparent; border: 1.5px solid var(--line-strong); color: var(--forest-600); }
.pill svg { width: 1em; height: 1em; }

.tag-drop {
  display: inline-flex; align-items: center; gap: .5em;
  border: 2px solid var(--gold); color: var(--forest); font-weight: 700;
  padding: .35em 1em; border-radius: var(--r-pill); font-size: .95rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,236,.86); backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent; transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(33,64,42,.05); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; color: var(--forest); }
.brand-mark { width: 34px; height: 34px; border-radius: 8px; flex: none; }
.brand-name { font-family: var(--font-sans); font-weight: 800; font-size: 1.4rem; letter-spacing: -.02em; color: var(--forest); }
.brand-name b { color: var(--forest); }

.nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; color: var(--body); font-weight: 600; font-size: .98rem; padding: .5rem .8rem; border-radius: var(--r-pill); transition: background .15s ease, color .15s ease; }
.nav-links a:hover { color: var(--forest); background: rgba(33,64,42,.06); }
.nav-links a.active { color: var(--forest); background: var(--gold-100); }
.nav-cta { display: flex; align-items: center; gap: .6rem; }

@media (min-width: 901px) {
  .nav-menu { display: flex; align-items: center; gap: 1.6rem; }
}

.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line-strong); border-radius: var(--r-md); background: var(--paper); align-items: center; justify-content: center; color: var(--forest); }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed; inset: 74px 0 auto 0; background: var(--cream);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gutter) 24px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links a { padding: .85rem .6rem; font-size: 1.05rem; border-radius: var(--r-md); }
  .nav-cta { margin-top: 12px; flex-direction: column; align-items: stretch; }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(36px, 6vw, 64px); padding-bottom: clamp(48px, 7vw, 88px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; right: -12%; top: -18%;
  width: min(60vw, 620px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(242,194,48,.28), rgba(242,194,48,0));
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.hero-copy h1 { margin-bottom: 1rem; }
.hero-copy h1 em { font-style: italic; color: var(--leaf); }
.hero-copy .lead { color: #4A5343; max-width: 34ch; margin-bottom: 1.6rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.5rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem .5rem; }

.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); }
.hero-float {
  position: absolute; background: var(--paper); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); padding: .8rem 1rem; display: flex; align-items: center; gap: .7rem;
  border: 1px solid var(--line);
}
.hero-float .num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--forest); line-height: 1; }
.hero-float .lbl { font-size: .82rem; font-weight: 600; color: var(--muted); line-height: 1.2; }
.hero-float.tl { top: 8%; left: -6%; }
.hero-float.br { bottom: 7%; right: -5%; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; margin-inline: auto; }
  .hero-copy .lead { max-width: none; }
  .hero-float.tl { top: 4%; left: 3%; }
  .hero-float.br { bottom: 4%; right: 3%; }
}
@media (max-width: 520px) {
  .hero-float { padding: .6rem .8rem; }
  .hero-float .num { font-size: 1.4rem; }
  .hero-float .lbl { font-size: .74rem; }
}

/* ---------- Grid helpers ---------- */
.grid { display: grid; gap: clamp(18px, 2.5vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- Cards ---------- */
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow-sm);
}
.card-hover { transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--leaf-100); color: var(--forest-600); margin-bottom: 1rem;
}
.card .ic svg { width: 26px; height: 26px; }
/* Varian ikon kartu buat logo merek: alas putih supaya logo brand tampil apa adanya. */
.card .ic-brand { background: #fff; border: 1px solid var(--line); }
.card .ic-brand img { width: 34px; height: 34px; object-fit: contain; }
.card h3 { font-family: var(--font-sans); font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; letter-spacing: 0; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* Stat cards */
.stat { text-align: center; }
.stat .big { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 600; color: var(--forest); line-height: 1; }
.bg-forest .stat .big { color: var(--gold); }
.stat .cap { font-weight: 600; color: var(--muted); font-size: .95rem; margin-top: .4rem; }
.bg-forest .stat .cap { color: #C4D2BE; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media img { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-md); }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } .split-media { max-width: 460px; margin-inline: auto; } }

.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: .8rem; }
.check-list li { display: grid; grid-template-columns: 26px 1fr; gap: .7rem; align-items: start; }
.check-list li svg { width: 22px; height: 22px; color: var(--leaf); margin-top: 2px; }
.check-list li b { color: var(--forest); }

/* ---------- Comparison ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare .col { border-radius: var(--r-lg); padding: clamp(22px,3vw,30px); border: 1px solid var(--line); }
.compare .col.win { background: var(--forest); color: #E9EEE5; border-color: var(--forest); }
.compare .col.win h3 { color: #FBF7EC; }
.compare .col.lose { background: var(--paper); }
.compare .col h3 { font-family: var(--font-sans); font-size: 1.15rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.compare ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.compare li { display: grid; grid-template-columns: 22px 1fr; gap: .6rem; font-size: .98rem; align-items: start; }
.compare li svg { width: 20px; height: 20px; margin-top: 3px; flex: none; }
.compare .win li svg { color: var(--gold); }
.compare .lose { color: var(--muted); }
.compare .lose li svg { color: #C98A7B; }
@media (max-width: 640px) { .compare { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step .n {
  width: 46px; height: 46px; border-radius: 50%; background: var(--gold); color: var(--forest);
  font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; display: grid; place-items: center; margin-bottom: .9rem;
}
.step h3 { font-family: var(--font-sans); font-size: 1.12rem; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- Packages ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pkg-grid { grid-template-columns: 1fr; } }
.pkg { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.pkg.featured { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-100), var(--shadow-md); }
.pkg-img { aspect-ratio: 1; background: var(--cream-200); }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.pkg-body { padding: 20px; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.pkg-body .name { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest); font-weight: 600; }
.pkg-body .desc { font-size: .92rem; color: var(--muted); flex: 1; }
.pkg-body .best { align-self: flex-start; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--forest); background: var(--gold); padding: .25em .7em; border-radius: var(--r-pill); }

/* ---------- Trust strip ---------- */
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; color: var(--forest); font-size: .98rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--leaf); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 1.3rem; font-weight: 700; color: var(--forest); display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.03rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { width: 22px; height: 22px; flex: none; transition: transform .2s ease; color: var(--leaf); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .faq-body { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq .faq-body p { margin-bottom: .6rem; }

/* ---------- Callout / disclaimer ---------- */
.callout { border-left: 4px solid var(--gold); background: var(--gold-50); border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.1rem 1.3rem; color: #5A5333; font-size: .96rem; }
.callout strong { color: var(--forest); }
.note-legal { font-size: .86rem; color: var(--muted); background: var(--cream-200); border: 1px dashed var(--line-strong); border-radius: var(--r-md); padding: 1rem 1.2rem; }

/* Placeholder highlight (for pre-publish values) */
.ph { background: var(--gold-100); border-bottom: 2px dotted var(--gold-600); padding: 0 .2em; border-radius: 3px; font-weight: 600; }

/* ---------- Video ---------- */
.video-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #14170f; aspect-ratio: 9 / 16;
  max-width: 330px; margin-inline: auto; width: 100%;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-frame .video-play {
  position: absolute; inset: 0; margin: auto; width: 76px; height: 76px;
  display: grid; place-items: center; border: none; border-radius: 50%;
  background: rgba(242, 194, 48, .95); color: var(--forest); cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.35); transition: transform .15s ease, background .2s ease;
}
.video-frame .video-play:hover { transform: scale(1.06); background: var(--gold); }
.video-frame .video-play svg { width: 30px; height: 30px; margin-left: 4px; }
.video-frame.playing .video-play { display: none; }
.video-note { text-align: center; font-size: .84rem; color: var(--muted); margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); border-radius: var(--r-xl); padding: clamp(32px, 5vw, 60px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: auto -10% -60% auto; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(closest-side, rgba(242,194,48,.25), transparent); }
.cta-band h2 { color: #FBF7EC; position: relative; }
.cta-band p { color: #C4D2BE; position: relative; max-width: 52ch; margin-inline: auto; }
.cta-band .hero-actions { justify-content: center; position: relative; }
.cta-band .eyebrow { color: var(--gold); }
.cta-band .eyebrow::before { background: var(--gold); }
.cta-band .btn-outline { color: #F1F5EC; border-color: rgba(255,255,255,.4); }
.cta-band .btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Article / prose ---------- */
.article-head { padding-block: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 32px); }
.article-meta { display: flex; flex-wrap: wrap; gap: .6rem 1rem; color: var(--muted); font-size: .9rem; font-weight: 600; margin-top: 1rem; }
.article-meta .cat { color: var(--forest); background: var(--gold-100); padding: .2em .7em; border-radius: var(--r-pill); }
.prose { max-width: 720px; margin-inline: auto; font-size: 1.09rem; }
.prose > * + * { margin-top: 1.05rem; }
.prose h2 { margin-top: 2.4rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.prose h3 { margin-top: 1.8rem; font-size: 1.3rem; font-family: var(--font-sans); font-weight: 700; }
.prose p { color: var(--body); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--leaf); }
.prose a { font-weight: 600; }
.prose blockquote { border-left: 4px solid var(--gold); padding: .4rem 0 .4rem 1.2rem; margin-left: 0; font-family: var(--font-display); font-size: 1.25rem; color: var(--forest); font-style: italic; }
.prose figure { margin: 1.6rem 0; }
.prose figure img { border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.prose figcaption { font-size: .86rem; color: var(--muted); text-align: center; margin-top: .6rem; }
.prose table { width: 100%; border-collapse: collapse; font-size: .98rem; }
.prose th, .prose td { text-align: left; padding: .7rem .9rem; border-bottom: 1px solid var(--line); }
.prose thead th { background: var(--cream-200); color: var(--forest); font-family: var(--font-sans); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-md); }
.refs { font-size: .92rem; color: var(--muted); }
.refs ol { padding-left: 1.4em; }
.refs li { margin-bottom: .5rem; word-break: break-word; }

/* TOC */
.toc { background: var(--cream-200); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.2rem 1.4rem; }
.toc p { font-weight: 800; color: var(--forest); text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; margin-bottom: .6rem; }
.toc ol { margin: 0; padding-left: 1.2em; }
.toc a { font-weight: 600; }

/* ---------- Blog cards ---------- */
.post-card { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--cream-200); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .pc-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.post-card .cat { align-self: flex-start; font-size: .74rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--forest); background: var(--gold-100); padding: .25em .7em; border-radius: var(--r-pill); }
.post-card h3 { font-family: var(--font-display); font-size: 1.28rem; color: var(--forest); }
.post-card p { color: var(--muted); font-size: .96rem; margin: 0; }
.post-card .rm { margin-top: auto; font-weight: 700; color: var(--forest-600); font-size: .92rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest-800); color: #BFCDB8; padding-block: clamp(48px, 6vw, 72px) 28px; }
.site-footer a { color: #D7E2CF; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 32px; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand-name { color: #FBF7EC; }
.site-footer .brand-mark { color: var(--gold); }
.footer-about p { color: #A9B8A2; font-size: .95rem; max-width: 32ch; }
.footer-col h4 { color: #FBF7EC; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .96rem; }
.footer-legal { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: .84rem; color: #8FA088; }
.footer-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 1rem; }
.footer-badges .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #E4EDDD; }
/* Badge sertifikasi pakai logo asli — ditaruh di atas keping putih supaya
   warna resmi logo tetap kebaca di latar footer yang hijau gelap. */
.footer-badges .badge-logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; padding: 8px;
  background: #fff; border-radius: 14px;
}
.footer-badges .badge-logo img { width: 100%; height: 100%; object-fit: contain; }

/* ---------- Misc utilities ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--gold-600); margin: 8px 0; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: 60px; background: var(--line-strong); }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--forest); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--r-md) 0; z-index: 100; }
.skip-link:focus { left: 0; }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.hide-mobile { }
@media (max-width: 900px) { .hide-mobile { display: none !important; } }
