/* =========================================================
   FULLFILLED — www.fullfilled.id
   Design system: Navy #12233F · Gold #D4AF37 / #B78A21
   Type: Newsreader (display) + Plus Jakarta Sans (body)
   ========================================================= */

:root {
  /* Brand */
  --navy-900: #0a1425;
  --navy-800: #0b1f3a;
  --navy-700: #12233f;
  --navy-600: #1d3557;
  --navy-500: #2c4870;

  --gold-400: #e2c866;
  --gold-500: #d4af37;
  --gold-600: #c09a2b;
  --gold-700: #b78a21;

  /* Neutrals — biased toward the navy hue, not pure grey */
  --paper: #fcfcfd;
  --paper-2: #f2f4f8;
  --paper-3: #e9edf3;
  --line: #dde3ec;
  --line-strong: #c6cfdd;

  --ink: #12233f;
  --ink-2: #3c4d69;
  --muted: #64748b;
  --on-navy: #eef2f8;
  --on-navy-muted: #a8b6cc;

  /* Type */
  --display: "Anton", "Arial Narrow", "Haettenschweiler", Impact, sans-serif;
  --sans: "Montserrat", "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;

  /* Scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  --step-1: clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2: clamp(1.45rem, 1.3rem + 0.75vw, 1.9rem);
  --step-3: clamp(1.7rem, 1.42rem + 1.35vw, 2.45rem);
  --step-4: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --step-5: clamp(2.4rem, 1.6rem + 3.7vw, 4.6rem);

  --wrap: 1200px;
  --measure: 66ch;
  --radius: 4px;
  --radius-lg: 10px;

  --shadow-sm: 0 1px 2px rgba(11, 31, 58, .06), 0 4px 14px rgba(11, 31, 58, .05);
  --shadow-md: 0 2px 6px rgba(11, 31, 58, .07), 0 18px 44px rgba(11, 31, 58, .09);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; display: block; }
[hidden] { display: none !important; }
h1, h2, h3, h4 { margin: 0; text-wrap: balance; }
/* Anton hanya untuk pernyataan besar — satu bobot, tinggi baris rapat */
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .012em;
}
/* Judul kartu & sub-bagian pakai Montserrat supaya tetap terbaca di ukuran kecil */
h3, h4 {
  font-family: var(--sans);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.012em;
}
p { margin: 0; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; }
button { font: inherit; }

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

::selection { background: var(--gold-500); color: var(--navy-800); }

/* ---------- Layout primitives ---------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, 820px); margin-inline: auto; }
.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 4.5vw, 4rem); }
.stack { display: flex; flex-direction: column; }
.stack-sm { gap: .6rem; }
.stack-md { gap: 1.1rem; }
.stack-lg { gap: 2rem; }
.stack-xl { gap: clamp(2rem, 4vw, 3.5rem); }

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--ink-2); max-width: var(--measure); }
.prose { max-width: var(--measure); color: var(--ink-2); }
.prose p + p { margin-top: 1em; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-700);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 9px;
  background: currentColor;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  clip-path: polygon(50% 0, 100% 62%, 82% 96%, 18% 96%, 0 62%);
  flex: none;
}
.eyebrow--plain::before { display: none; }
.on-dark .eyebrow { color: var(--gold-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.5rem;
  font-family: var(--sans);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--navy-700); color: #fff; }
.btn--primary:hover { background: var(--navy-600); }
.btn--gold { background: var(--gold-600); color: var(--navy-800); }
.btn--gold:hover { background: var(--gold-500); }
.btn--ghost { border-color: var(--line-strong); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--navy-700); background: var(--paper-2); }
.on-dark .btn--ghost { border-color: rgba(212, 175, 55, .5); color: var(--on-navy); }
.on-dark .btn--ghost:hover { border-color: var(--gold-500); background: rgba(212, 175, 55, .1); }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* Tombol WhatsApp: teks & ikon putih.
   Ikon memakai `currentColor` sebagai mask, jadi ikut berubah otomatis.
   Hover sengaja diarahkan ke emas yang lebih TUA (bukan lebih muda)
   supaya tulisan putihnya tidak makin pudar saat disentuh kursor. */
.btn--gold.btn-wa { color: #fff; }
.btn--gold.btn-wa:hover { background: var(--gold-700); color: #fff; }

/* Garis fokus keyboard: emas di atas emas tidak kelihatan, jadi dibuat navy */
.btn--gold:focus-visible { outline-color: var(--navy-700); }

.btn-wa::before {
  content: "";
  width: 18px; height: 18px; flex: none;
  background: currentColor;
  -webkit-mask: var(--wa-icon) center/contain no-repeat;
  mask: var(--wa-icon) center/contain no-repeat;
}
:root {
  --wa-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38a9.9 9.9 0 0 0 4.79 1.22h.01c5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01A9.82 9.82 0 0 0 12.04 2Zm0 18.13h-.01a8.23 8.23 0 0 1-4.19-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.2 8.2 0 0 1-1.26-4.36c0-4.54 3.7-8.24 8.25-8.24 2.2 0 4.27.86 5.83 2.42a8.19 8.19 0 0 1 2.41 5.83c0 4.54-3.7 8.21-8.24 8.21Zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.13-.16.24-.64.8-.78.97-.14.16-.29.19-.54.06-.25-.12-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.01-.38.11-.5.11-.11.25-.29.37-.43.13-.15.17-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.4-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.23.25-.86.85-.86 2.06s.89 2.39 1.01 2.56c.12.16 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.08.14-1.18-.06-.11-.22-.17-.47-.29Z'/%3E%3C/svg%3E");
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: var(--step--1);
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--gold-700); text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .2s var(--ease), gap .2s var(--ease);
}
.link-arrow::after { content: "\2192"; transition: transform .2s var(--ease); }
.link-arrow:hover { border-color: currentColor; }
.link-arrow:hover::after { transform: translateX(3px); }
.on-dark .link-arrow { color: var(--gold-400); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252, 252, 253, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; min-height: 74px;
}
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: .1rem; }
.nav a {
  text-decoration: none;
  padding: .55rem .8rem;
  border-radius: var(--radius);
  font-size: .78rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: var(--navy-700);
  white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav a:hover { background: var(--paper-2); color: var(--gold-700); }
.nav a[aria-current="page"] { background: var(--paper-2); color: var(--gold-700); box-shadow: inset 0 -2px 0 var(--gold-600); }
.header-cta { flex: none; }
.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .header-cta { display: none; }
}
@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: .5rem;
    background: transparent; border: 1.5px solid var(--line-strong);
    border-radius: var(--radius); padding: .5rem .8rem; cursor: pointer;
    font-size: var(--step--1); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  }
  .nav {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: .6rem 1.25rem 1.4rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: .9rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; font-size: .85rem; }
  .nav a[aria-current="page"] { background: transparent; box-shadow: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-800);
  color: var(--on-navy);
  overflow: hidden;
  isolation: isolate;
}

/* Foto latar hero */
.hero-media {
  position: absolute; inset: 0; z-index: -2;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

/* Scrim: gelap pekat di kiri (tempat teks), makin bening ke kanan
   supaya wajah-wajah di foto tetap terlihat. */
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(96deg,
      rgba(10, 20, 37, .94) 0%,
      rgba(10, 20, 37, .90) 32%,
      rgba(11, 31, 58, .68) 56%,
      rgba(11, 31, 58, .44) 100%),
    linear-gradient(to top, rgba(10, 20, 37, .72) 0%, rgba(10, 20, 37, 0) 42%),
    radial-gradient(52rem 34rem at 88% 14%, rgba(212, 175, 55, .14), transparent 62%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: clamp(30rem, 76vh, 44rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.hero-inner > .stack { max-width: 40rem; }
.hero h1 {
  font-size: var(--step-5);
  color: #fff;
  text-transform: uppercase;
}
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero-tagline { display: flex; flex-direction: column; gap: .1rem; margin-top: .4rem; }
.hero-tagline span {
  font-family: var(--sans);
  font-size: var(--step-1);
  font-style: italic;
  font-weight: 500;
  letter-spacing: .005em;
  color: var(--gold-400);
}
.hero-tagline span:nth-child(2) { color: #e8eefa; }
.hero-tagline span:nth-child(3) { color: var(--gold-400); }
.hero p.lede { color: var(--on-navy-muted); }
@media (max-width: 1000px) {
  .hero-media img { object-position: 56% 42%; }
  .hero::after {
    background:
      linear-gradient(to bottom,
        rgba(10, 20, 37, .55) 0%,
        rgba(10, 20, 37, .84) 44%,
        rgba(10, 20, 37, .95) 100%),
      radial-gradient(34rem 24rem at 82% 6%, rgba(212, 175, 55, .12), transparent 64%);
  }
  .hero-inner { min-height: 0; padding-block: clamp(8rem, 26vw, 11rem) clamp(2.5rem, 8vw, 4rem); }
}

/* Di layar HP foto tidak lagi jadi latar di belakang teks.
   Foto berdiri sendiri sebagai pita di atas — wajahnya terbaca penuh,
   teksnya duduk di atas navy pekat. Batas keduanya dilebur dengan gradasi. */
@media (max-width: 760px) {
  .hero { display: block; }
  .hero::after { display: none; }
  .hero-media {
    position: relative; inset: auto;
    z-index: 0;
  }
  .hero-media img {
    width: 100%; height: auto;
    aspect-ratio: 4 / 3;
    object-position: 50% 38%;
  }
  .hero-media::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: -1px;
    height: 42%;
    background: linear-gradient(to top, var(--navy-800) 6%, rgba(11, 31, 58, 0) 100%);
    pointer-events: none;
  }
  .hero-inner { padding-block: 1.5rem clamp(2.5rem, 9vw, 3.5rem); }
}

/* Page banner (non-home pages) */
.page-head {
  background: var(--navy-800);
  color: var(--on-navy);
  position: relative; isolation: isolate; overflow: hidden;
}
.page-head::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(48rem 30rem at 88% 8%, rgba(212, 175, 55, .14), transparent 60%);
}
.page-head-inner { padding-block: clamp(2.8rem, 6vw, 5rem); display: grid; gap: 1.1rem; }
.page-head h1 { font-size: var(--step-4); color: #fff; text-transform: uppercase; }
.page-head .lede { color: var(--on-navy-muted); }
.phase-chip {
  display: inline-flex; align-items: center; gap: .55rem;
  align-self: start; justify-self: start; width: fit-content;
  font-size: var(--step--1); font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-400);
  border: 1px solid rgba(212, 175, 55, .35);
  border-radius: 999px; padding: .35rem .95rem;
}
.phase-chip b { color: #fff; font-weight: 800; }

/* ---------- Journey ---------- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
@media (max-width: 980px) { .journey-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .journey-grid { grid-template-columns: 1fr; } }

.phase-card {
  position: relative;
  display: flex; flex-direction: column; gap: .75rem;
  padding: 1.6rem 1.4rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold-600);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.phase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); border-top-color: var(--gold-500); }
.phase-card .drop { width: 30px; height: 40px; }
.phase-card .p-num {
  position: absolute; top: 1.1rem; right: 1.2rem;
  font-family: var(--display); font-size: 1.6rem; color: var(--paper-3);
  font-variant-numeric: tabular-nums; letter-spacing: .04em;
}
.phase-card h3 { font-family: var(--display); font-weight: 400; font-size: var(--step-2); letter-spacing: .02em; }
.phase-card .p-fn {
  font-size: var(--step--1); font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-700);
}
.phase-card p { color: var(--ink-2); font-size: .96rem; }
.phase-card .p-more {
  margin-top: auto; padding-top: .6rem;
  font-size: var(--step--1); font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--navy-700);
}
.phase-card .p-more::after { content: " \2192"; }

/* Droplet fill illustration */
.drop-shell { fill: none; stroke: var(--gold-600); stroke-width: 6; }
.drop-fill { fill: var(--gold-500); }

/* ---------- Generic cards ---------- */
.card-grid { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.card {
  display: flex; flex-direction: column; gap: .7rem;
  padding: 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card h3 { font-size: var(--step-1); }
.card p { color: var(--ink-2); font-size: .95rem; }
.card-meta {
  display: flex; flex-wrap: wrap; gap: .45rem 1rem;
  font-size: var(--step--1); color: var(--muted);
}
.card-meta span { display: inline-flex; align-items: center; gap: .35rem; }
.card-foot { margin-top: auto; padding-top: .5rem; }

.tag {
  display: inline-flex; align-items: center;
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .6rem; border-radius: 999px;
  background: var(--paper-2); color: var(--navy-600);
  border: 1px solid var(--line);
}
.tag--gold { background: rgba(212, 175, 55, .16); color: #8a6a12; border-color: rgba(183, 138, 33, .35); }
.tag--open { background: #e6f4ec; color: #1c6b41; border-color: #bfe2cd; }
.tag--soon { background: #eaf0fb; color: #2b4a86; border-color: #c9d8f2; }
.tag--done { background: var(--paper-3); color: var(--muted); }
.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; }

/* ---------- Filter bar ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  padding-bottom: .4rem;
}
.filter-btn {
  border: 1.5px solid var(--line-strong);
  background: transparent;
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: var(--step--1); font-weight: 700; letter-spacing: .04em;
  color: var(--ink-2); cursor: pointer;
  transition: all .18s var(--ease);
}
.filter-btn:hover { border-color: var(--navy-600); color: var(--navy-700); }
.filter-btn[aria-pressed="true"] { background: var(--navy-700); border-color: var(--navy-700); color: #fff; }
.filter-empty { color: var(--muted); font-style: italic; padding: 1.5rem 0; }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1.6rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.split-sticky { position: sticky; top: 100px; }
@media (max-width: 860px) { .split-sticky { position: static; } }

/* ---------- Numbered module list ---------- */
.modules { display: grid; gap: 0; border-top: 1px solid var(--line); }
.module {
  display: grid; grid-template-columns: 3.2rem 1fr; gap: 1.2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.module .m-num {
  font-family: var(--display); font-size: var(--step-2); color: var(--gold-600);
  font-variant-numeric: tabular-nums; line-height: 1; letter-spacing: .04em;
}
.module h3 { font-size: var(--step-1); font-weight: 700; margin-bottom: .25rem; }
.module p { color: var(--ink-2); font-size: .95rem; }

/* ---------- Dark band ---------- */
.band-dark {
  background: var(--navy-700);
  color: var(--on-navy);
  position: relative; isolation: isolate; overflow: hidden;
}
.band-dark::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(44rem 28rem at 82% 20%, rgba(212, 175, 55, .13), transparent 62%);
}
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark p { color: var(--on-navy-muted); }
.band-quiet { background: var(--paper-2); }

/* ---------- Quote ---------- */
.quote {
  font-family: var(--sans);
  font-size: var(--step-2);
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.01em;
  color: var(--ink);
  max-width: 30ch;
}
.band-dark .quote { color: #fff; }
.quote-src { font-family: var(--sans); font-style: normal; font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.band-dark .quote-src { color: var(--on-navy-muted); }

/* ---------- Testimonial ---------- */
.testi {
  display: flex; flex-direction: column; gap: 1rem;
  padding: 1.7rem 1.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.testi blockquote { margin: 0; font-family: var(--sans); font-size: var(--step-1); font-style: italic; font-weight: 500; line-height: 1.5; letter-spacing: -.01em; }
.testi footer { display: flex; align-items: center; gap: .8rem; margin-top: auto; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: var(--navy-700); color: var(--gold-400);
  display: grid; place-items: center;
  font-weight: 800; font-size: .9rem; letter-spacing: .04em;
}
.testi .t-name { font-weight: 700; font-size: .95rem; }
.testi .t-role { font-size: var(--step--1); color: var(--muted); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.stat .s-num { font-family: var(--display); font-size: var(--step-4); color: var(--gold-500); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: .03em; }
.stat .s-label { font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; color: var(--on-navy-muted); margin-top: .5rem; }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field label { font-size: var(--step--1); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field textarea, .field select {
  font: inherit; font-size: .97rem;
  padding: .75rem .85rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff; color: var(--ink);
  transition: border-color .18s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy-600); outline-offset: 1px; }
.field textarea { min-height: 130px; resize: vertical; }
.field-note { font-size: var(--step--1); color: var(--muted); }
.form-note {
  font-size: var(--step--1); color: var(--muted);
  border-left: 2px solid var(--gold-600); padding-left: .8rem;
}
.form-status { font-size: .95rem; font-weight: 600; color: var(--navy-700); min-height: 1.4em; }

/* ---------- Info list ---------- */
.info-list { display: grid; gap: .9rem; }
.info-list div { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; padding-bottom: .9rem; border-bottom: 1px solid var(--line); }
.info-list dt { font-size: var(--step--1); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.info-list dd { margin: 0; color: var(--ink); }
.info-list a { color: var(--gold-700); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(183, 138, 33, .4); }
.info-list a:hover { border-color: var(--gold-700); }
@media (max-width: 560px) { .info-list div { grid-template-columns: 1fr; gap: .2rem; } }

/* ---------- Notice ---------- */
.notice {
  position: relative;
  padding: 1.05rem 1.2rem 1.05rem 2.7rem;
  background: rgba(212, 175, 55, .1);
  border: 1px solid rgba(183, 138, 33, .3);
  border-radius: var(--radius);
  font-size: .95rem; line-height: 1.6; color: var(--ink-2);
}
.notice::before {
  content: "\2726";
  position: absolute; left: 1.15rem; top: 1.02rem;
  color: var(--gold-700); font-size: 1rem; line-height: 1.6;
}
.notice code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .86em;
  background: rgba(11, 31, 58, .07);
  border-radius: 3px;
  padding: .1em .35em;
  white-space: nowrap;
}
.on-dark .notice code { background: rgba(255, 255, 255, .1); }
.band-dark .notice { background: rgba(212, 175, 55, .1); border-color: rgba(212, 175, 55, .3); color: var(--on-navy); }

/* ---------- CTA band ---------- */
.cta-band {
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
}
@media (max-width: 780px) { .cta-band { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: var(--on-navy-muted); padding-block: clamp(3rem, 5vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 2.5rem; }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 38px; width: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 34ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--sans); font-size: var(--step--1); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a { text-decoration: none; font-size: .95rem; transition: color .18s var(--ease); }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: .6rem; margin-top: 1.2rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(168, 182, 204, .3);
  color: var(--on-navy-muted);
  transition: all .2s var(--ease);
}
.socials a:hover { border-color: var(--gold-500); color: var(--gold-400); transform: translateY(-2px); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 182, 204, .18);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between;
  font-size: var(--step--1);
}
.footer-tagline { font-family: var(--sans); font-style: italic; font-weight: 500; color: var(--gold-400); }

/* ---------- Float WA ---------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70;
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold-600); color: #fff;
  padding: .75rem 1.1rem; border-radius: 999px;
  font-weight: 800; font-size: .85rem; letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(11, 31, 58, .28);
  transition: transform .2s var(--ease), background-color .2s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); background: var(--gold-700); }
.wa-float:focus-visible { outline-color: var(--navy-700); }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: .85rem; } }

/* ---------- Penyesuaian untuk latar gelap ---------- */
.on-dark .prose,
.on-dark .lede { color: var(--on-navy-muted); }
.on-dark .field label { color: var(--gold-400); }
.on-dark .field-note,
.on-dark .form-status { color: var(--on-navy-muted); }
.on-dark .info-list div { border-bottom-color: rgba(168, 182, 204, .22); }
.on-dark .info-list dt { color: var(--on-navy-muted); }
.on-dark .info-list dd { color: var(--on-navy); }
.on-dark .info-list a { color: var(--gold-400); border-bottom-color: rgba(212, 175, 55, .45); }
.on-dark .modules { border-top-color: rgba(168, 182, 204, .25); }
.on-dark .module { border-bottom-color: rgba(168, 182, 204, .2); }
.on-dark .module h3 { color: #fff; }
.on-dark .module p { color: var(--on-navy-muted); }
.on-dark .m-num { color: var(--gold-500); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Hero load sequence */
@keyframes riseIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.hero-inner > * > * { animation: riseIn .8s var(--ease) both; }
.hero-inner .eyebrow { animation-delay: .05s; }
.hero-inner h1 { animation-delay: .15s; }
.hero-tagline span:nth-child(1) { animation: riseIn .7s var(--ease) both .45s; }
.hero-tagline span:nth-child(2) { animation: riseIn .7s var(--ease) both .6s; }
.hero-tagline span:nth-child(3) { animation: riseIn .7s var(--ease) both .75s; }

/* ---------- Utilities ---------- */
.center { text-align: center; }
.max-measure { max-width: var(--measure); }
.mt-auto { margin-top: auto; }
.hr { border: 0; border-top: 1px solid var(--line); margin: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 100;
  background: var(--navy-700); color: #fff; padding: .7rem 1.1rem; border-radius: var(--radius);
  text-decoration: none; font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* WhatsApp di dalam menu mobile */
.nav-wa { display: none !important; }
@media (max-width: 940px) {
  .nav-wa { display: block !important; border-bottom: 0 !important; color: var(--gold-700) !important; }
}


/* =========================================================
   Komponen halaman baru
   ========================================================= */

/* ---------- The Journey: langkah per fase ---------- */
.jstep {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}
.jstep:first-of-type { border-top: 0; }
.on-dark .jstep { border-top-color: rgba(168, 182, 204, .2); }
@media (max-width: 860px) { .jstep { grid-template-columns: 1fr; } }

.jstep-mark { display: flex; align-items: center; gap: 1rem; }
.jstep-mark .j-num {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(3.2rem, 7vw, 5rem); line-height: .85;
  color: var(--paper-3); letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
}
.on-dark .jstep-mark .j-num { color: rgba(168, 182, 204, .28); }
.jstep-mark .drop { width: 46px; height: 62px; flex: none; }

.jstep h2 { font-size: var(--step-3); text-transform: uppercase; }
.jstep .j-fn {
  font-size: var(--step--1); font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-700);
}
.on-dark .jstep .j-fn { color: var(--gold-400); }
.jstep .j-greek {
  font-size: var(--step--1); color: var(--muted); letter-spacing: .02em;
}
.on-dark .jstep .j-greek { color: var(--on-navy-muted); }

/* ---------- Model supply-demand: The Platform Is the Link ---------- */
.link-model {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
}
.link-node {
  display: flex; flex-direction: column; gap: .5rem;
  padding: 1.5rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
}
.link-node h3 { font-size: var(--step-1); }
.link-node p { font-size: .92rem; color: var(--ink-2); }
.link-node--center {
  background: var(--navy-700);
  border-color: var(--navy-700);
  color: #fff;
}
.link-node--center h3 { color: #fff; }
.link-node--center p { color: var(--on-navy-muted); }
.link-node .ln-label {
  font-size: .68rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-700);
}
.link-node--center .ln-label { color: var(--gold-400); }
.link-arrow-glyph {
  display: grid; place-items: center;
  color: var(--gold-600); font-size: 1.5rem; font-weight: 700;
}
@media (max-width: 860px) {
  .link-model { grid-template-columns: 1fr; }
  .link-arrow-glyph { transform: rotate(90deg); padding-block: .3rem; }
}

/* ---------- Langkah bernomor (cara daftar / cara bergabung) ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.4rem; }
.step { display: flex; flex-direction: column; gap: .5rem; }
.step .st-num {
  font-family: var(--display); font-weight: 400; font-size: 2.2rem; line-height: 1;
  color: var(--gold-600); letter-spacing: .04em; font-variant-numeric: tabular-nums;
}
.step h3 { font-size: var(--step-1); }
.step p { font-size: .95rem; color: var(--ink-2); }
.on-dark .step p { color: var(--on-navy-muted); }
.on-dark .step h3 { color: #fff; }

/* ---------- Partner ---------- */
.partner-card {
  display: grid; grid-template-columns: 200px minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
  padding-block: 2rem;
  border-top: 1px solid var(--line);
}
.partner-card:first-of-type { border-top: 0; }
@media (max-width: 760px) { .partner-card { grid-template-columns: 1fr; } }

.logo-slot {
  display: grid; place-items: center; text-align: center;
  min-height: 110px; padding: 1rem;
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper-2);
  font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); line-height: 1.5;
}
.logo-slot img { max-height: 78px; width: auto; }
.partner-card h3 { font-size: var(--step-2); }
.partner-card .p-role {
  font-size: var(--step--1); font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-700);
  display: block; margin-bottom: .3rem;
}

/* ---------- FAQ ---------- */
.faq { display: grid; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: baseline; gap: .9rem;
  padding: 1.15rem .2rem;
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: var(--step-1); line-height: 1.35;
  letter-spacing: -.012em;
  transition: color .18s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  margin-left: auto; flex: none;
  font-family: var(--sans); font-weight: 400; font-size: 1.5rem; line-height: 1;
  color: var(--gold-700);
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--gold-700); }
.faq .faq-body { padding: 0 2.4rem 1.4rem .2rem; color: var(--ink-2); max-width: var(--measure); }
.faq .faq-body p + p { margin-top: .8em; }

/* ---------- Feature block (kelas unggulan) ---------- */
.feature {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold-600);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 820px) { .feature { grid-template-columns: 1fr; } }
.feature ul { list-style: none; display: grid; gap: .6rem; }
.feature li { display: flex; gap: .7rem; font-size: .95rem; color: var(--ink-2); }
.feature li::before { content: "\2726"; color: var(--gold-600); flex: none; }


/* ---------- Daftar dengan penanda tetesan ---------- */
.tick-list { list-style: none; display: grid; gap: .7rem; }
.tick-list li {
  display: flex; gap: .7rem;
  color: var(--ink-2); max-width: var(--measure);
}
.tick-list li::before { content: "\2726"; color: var(--gold-600); flex: none; line-height: 1.6; }
.on-dark .tick-list li { color: var(--on-navy-muted); }
