/* =====================================================================
   @CiciAsuransi — Natasha Tan, Family Financial Planner
   Design system: "Bersih & terang" (clean & light) + subtle motion
   Shared stylesheet for all pages.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Warm-white clean base */
  --bg:         #FCFBF9;
  --surface:    #FFFFFF;
  --bg-warm:    #F5F1EA;   /* alternating sections */
  --bg-ink:     #17150F;   /* dark CTA band */

  /* Ink & text */
  --ink:        #1A1917;
  --ink-soft:   #47433C;
  --muted:      #7C766C;
  --on-dark:    #F6F1E8;
  --on-dark-mut:#B7AE9F;

  /* Accent — warm brick red (insurance-adjacent, premium, not loud) */
  --accent:     #ab0066;
  --accent-ink: #7d004a;
  --accent-soft:#fbe6f1;

  /* Gold — accolades / awards */
  --gold:       #A67C3D;
  --gold-soft:  #F2E8D5;

  --line:       #EAE3D8;
  --line-soft:  #F0EBE1;

  /* Shadows — soft, warm-tinted, layered */
  --shadow-sm: 0 1px 2px rgba(40,30,15,.05), 0 2px 6px rgba(40,30,15,.04);
  --shadow-md: 0 6px 16px rgba(40,30,15,.07), 0 2px 6px rgba(40,30,15,.05);
  --shadow-lg: 0 20px 50px rgba(40,30,15,.12), 0 8px 20px rgba(40,30,15,.06);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 56px);

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

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--accent-soft); color: var(--accent-ink); }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 860px; }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--warm { background: var(--bg-warm); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

/* ---------- Typography ---------- */
.display, h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 480; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { color: var(--ink-soft); }
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--ink-soft); line-height: 1.6; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans);
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1.5px; background: var(--accent); display: inline-block; opacity: .7;
}
.eyebrow--center { justify-content: center; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 100px;
  font-weight: 600; font-size: .98rem; letter-spacing: .005em;
  transition: transform .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(171,0,102,.28); }
.btn--primary:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(171,0,102,.32); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--onDark { background: var(--accent); color:#fff; box-shadow: 0 6px 18px rgba(171,0,102,.35); }
.btn--onDark:hover { background: #c81f84; transform: translateY(-2px); }
.btn--outlineDark { background: transparent; color: var(--on-dark); border: 1.5px solid rgba(255,255,255,.25); }
.btn--outlineDark:hover { border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.cta-note { font-size: .9rem; color: var(--muted); margin-bottom: 14px; max-width: 440px; }
.cta-note strong { color: var(--ink-soft); font-weight: 600; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(252,251,249,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; letter-spacing: -.02em; flex: none; color: var(--accent); }
.brand .at { color: var(--accent); }
.brand small { font-family: var(--font-sans); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-left: 8px; align-self: center; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu a:not(.btn) {
  padding: 9px 15px; border-radius: 100px; font-size: .95rem; font-weight: 500; color: var(--ink-soft);
  transition: color .25s, background .25s;
}
.nav-menu a:not(.btn):hover { color: var(--ink); background: rgba(0,0,0,.035); }
.nav-menu a.active { color: var(--accent); font-weight: 600; }
.nav-menu .btn { margin-left: 12px; padding: 11px 20px; font-size: .92rem; }

.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding-top: 138px; padding-bottom: clamp(56px, 8vw, 96px); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; z-index: 0; top: -12%; right: -8%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(171,0,102,.10), rgba(171,0,102,0) 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy h1 .hl { color: var(--accent); font-style: italic; }
.hero-copy .lead { max-width: 560px; margin-bottom: 30px; }
.hero-copy .btn-row { margin-top: 4px; }

/* Hero visual: portrait + floating achievement card */
.hero-visual { position: relative; }
.portrait {
  position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(150deg, #efe7db, #e3d6c4 55%, #d8c7b0);
  box-shadow: var(--shadow-lg);
}
.portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait__ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; color: #8a7a63; padding: 24px; }
.portrait__ph .mono { font-family: var(--font-display); font-size: 3.2rem; font-weight: 600; color: #b09571; letter-spacing: .04em; }
.portrait__ph small { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }

.achieve-card {
  position: absolute; left: -18px; bottom: 16px; z-index: 3;
  width: min(212px, 58%);
  background: var(--surface); border-radius: var(--r); padding: 13px 16px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line-soft);
}
.achieve-card .label { font-size: .64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 7px; }
.achieve-card .label::before { content: "★"; font-size: .74rem; }
.achieve-card .big { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; line-height: 1; color: var(--ink); margin: 4px 0 4px; }
.achieve-card p { font-size: .76rem; line-height: 1.4; color: var(--ink-soft); }

/* ---------- Achievement strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip .wrap { display: flex; flex-wrap: wrap; gap: 14px 34px; padding-block: 22px; align-items: center; justify-content: space-between; }
.strip-item { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); }
.strip-item svg { width: 17px; height: 17px; color: var(--accent); flex: none; }
.strip-item strong { color: var(--ink); font-weight: 700; }

/* ---------- Stat blocks ---------- */
.stat-num { font-family: var(--font-display); font-weight: 600; line-height: 1; color: var(--ink); }

/* ---------- Problem → Solution ---------- */
.ps-list { display: grid; gap: 18px; }
.ps-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.ps-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ps-side { padding: 24px 26px; }
.ps-problem { background: var(--bg-warm); border-right: 1px solid var(--line); }
.ps-label { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.ps-problem .ps-label { color: var(--muted); }
.ps-solution .ps-label { color: var(--accent); }
.ps-side p { color: var(--ink); font-size: 1.02rem; }
.ps-problem p { color: var(--ink-soft); font-style: italic; }

/* ---------- Cards grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease);
  height: 100%;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-soft); }
.card__ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--accent-soft); color: var(--accent);
}
.card__ico svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card__num { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--accent); border: 1.5px solid var(--accent-soft); background: var(--accent-soft); width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px; }

/* Benefit cards (numbered, emphasis) */
.benefit { display: flex; gap: 20px; align-items: flex-start; }
.benefit__n { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--accent); line-height: 1; flex: none; width: 40px; }
.benefit h3 { font-size: 1.2rem; margin-bottom: 8px; }

/* ---------- Stat trio (profile) ---------- */
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 28px; text-align: left; }
.stat-card .kicker { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.stat-card .stat-num { font-size: clamp(2.6rem, 5vw, 3.4rem); margin-bottom: 10px; color: var(--accent); }
.stat-card p { font-size: .96rem; }

/* ---------- Split feature (teaser / cara kerja) ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__body .eyebrow { margin-bottom: 18px; }
.split__body h2 { margin-bottom: 18px; }
.split__body p { font-size: 1.08rem; }

.aside-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 8px; box-shadow: var(--shadow-md); }
.aside-row { padding: 22px 24px; border-radius: var(--r); }
.aside-row + .aside-row { border-top: 1px dashed var(--line); }
.aside-row .k { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.aside-row .v { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--ink); line-height: 1.25; }
.aside-row .v.plain { font-family: var(--font-sans); font-size: 1.05rem; font-weight: 500; }

/* quote-style origin box */
.pull {
  border-left: 3px solid var(--accent); padding-left: 22px; margin: 4px 0;
  font-family: var(--font-display); font-size: clamp(1.3rem,2.4vw,1.7rem); font-style: italic; color: var(--ink); line-height: 1.35;
}

/* ---------- Mentor card (peluang bisnis hero) ---------- */
.mentor-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.mentor-card__media { aspect-ratio: 4 / 5; background: linear-gradient(150deg,#efe7db,#ddceb8); position: relative; overflow: hidden; }
.mentor-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.mentor-card__media .portrait__ph { color:#8a7a63; }
.mentor-card__body { padding: 24px 26px; }
.mentor-card__label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.mentor-card__name { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; margin-bottom: 10px; }
.mentor-card__body p { font-size: .95rem; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip { font-size: .78rem; font-weight: 600; padding: 6px 12px; border-radius: 100px; background: var(--gold-soft); color: var(--gold); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; position: relative; }
.step__n { font-family: var(--font-display); font-size: .95rem; font-weight: 700; letter-spacing: .06em; color: var(--accent); margin-bottom: 14px; }
.step h3 { font-size: 1.12rem; }

/* ---------- Testimonials ---------- */
.tms { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.tm { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px; position: relative; }
.tm__mark { font-family: var(--font-display); font-size: 3rem; line-height: .6; color: var(--accent-soft); margin-bottom: 6px; }
.tm p { font-size: 1.02rem; color: var(--ink); font-style: italic; margin-bottom: 18px; }
.tm cite { font-style: normal; font-size: .9rem; font-weight: 600; color: var(--muted); }
.tm .placeholder-tag { position: absolute; top: 14px; right: 14px; font-size: .64rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); background: var(--gold-soft); padding: 4px 9px; border-radius: 100px; }

/* ---------- Chooser (hitung premi) ---------- */
.chooser { display: grid; gap: 16px; }
.choose-row {
  display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 26px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}
.choose-row:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.choose-row .when { font-weight: 600; color: var(--ink); }
.choose-row .arrow { color: var(--accent); }
.choose-row .then { color: var(--ink-soft); }
.choose-row .then b { color: var(--accent); font-weight: 700; }
.choose-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.choose-ico svg { width: 24px; height: 24px; }

/* ---------- Calculator placeholder ---------- */
.calc-ph {
  border: 2px dashed var(--line); border-radius: var(--r-lg); background:
    repeating-linear-gradient(45deg, rgba(171,0,102,.02) 0 12px, transparent 12px 24px), var(--surface);
  padding: clamp(40px, 7vw, 72px) 24px; text-align: center;
}
.calc-ph__badge { display:inline-flex; align-items:center; gap:8px; font-size:.76rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color: var(--accent); background: var(--accent-soft); padding:7px 14px; border-radius:100px; margin-bottom: 18px; }
.calc-ph h3 { font-size: clamp(1.4rem,2.5vw,1.9rem); margin-bottom: 10px; }
.calc-ph p { max-width: 520px; margin: 0 auto; }
.note {
  margin-top: 22px; text-align: left; max-width: 640px; margin-inline: auto;
  background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 16px 18px; font-size: .88rem; color: var(--ink-soft);
}
.note code { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .82em; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; color: var(--accent-ink); }
.note .note-k { display:block; font-weight:700; color: var(--ink); margin-bottom: 6px; font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; }

/* ---------- Legality / reach band ---------- */
.legal { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.legal-item { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; }
.legal-item .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-soft); color: var(--gold); display: grid; place-items: center; flex: none; }
.legal-item .ico svg { width: 22px; height: 22px; }
.legal-item .k { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.legal-item p { font-size: .98rem; color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--bg-ink); color: var(--on-dark); border-radius: clamp(20px, 3vw, 34px); padding: clamp(44px, 6vw, 76px) clamp(28px, 5vw, 64px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; width: 420px; height: 420px; border-radius:50%; top:-40%; left:-6%; background: radial-gradient(circle, rgba(171,0,102,.30), transparent 62%); }
.cta-band::after { content:""; position:absolute; width: 360px; height: 360px; border-radius:50%; bottom:-46%; right:-4%; background: radial-gradient(circle, rgba(166,124,61,.22), transparent 64%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: #f2a8d0; justify-content: center; }
.cta-band .eyebrow::before { background: #f2a8d0; }
.cta-band h2 { color: #fff; max-width: 720px; margin: 16px auto 28px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-ink); color: var(--on-dark-mut); padding-block: clamp(48px, 6vw, 72px) 34px; }
.footer-top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand { max-width: 380px; }
.footer-brand .brand { color: var(--accent); margin-bottom: 12px; }
.footer-brand .brand small { color: var(--on-dark-mut); }
.footer-brand p { color: var(--on-dark-mut); font-size: .95rem; }
.footer-nav { display: flex; gap: 46px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-sans); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-mut); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--on-dark); font-size: .96rem; padding: 5px 0; opacity: .85; transition: opacity .2s, color .2s; }
.footer-col a:hover { opacity: 1; color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: .86rem; }
.footer-bottom .socials { display: flex; gap: 8px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--on-dark); transition: background .25s, transform .25s; }
.footer-bottom .socials a:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 18px; height: 18px; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .08s; }
[data-reveal].d2 { transition-delay: .16s; }
[data-reveal].d3 { transition-delay: .24s; }
[data-reveal].d4 { transition-delay: .32s; }
[data-reveal].d5 { transition-delay: .40s; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 440px; }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .tms { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 74px 0 auto 0; background: rgba(252,251,249,.97);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    flex-direction: column; align-items: stretch; gap: 4px; padding: 16px var(--gutter) 24px;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease); z-index: 99;
  }
  body.nav-open .nav-menu { transform: none; opacity: 1; pointer-events: auto; }
  .nav-menu a:not(.btn) { padding: 12px 14px; font-size: 1.05rem; }
  .nav-menu .btn { margin-left: 0; margin-top: 8px; }
  .grid-2, .grid-3, .legal { grid-template-columns: 1fr; }
  .ps-item { grid-template-columns: 1fr; }
  .ps-problem { border-right: none; border-bottom: 1px solid var(--line); }
  .achieve-card { left: 50%; transform: translateX(-50%); bottom: -26px; width: min(300px, 88%); }
  .hero-visual { margin-inline: auto; margin-bottom: 26px; }
  .choose-row { grid-template-columns: 1fr; text-align: left; }
  .stat-card { text-align: left; }
}
@media (max-width: 420px) {
  body { font-size: 16px; }
  .btn { width: 100%; }
  .btn-row { width: 100%; }
}

/* ======================================================
   v2 COMPONENTS — added for full site
   ====================================================== */

/* ---------- Compact page hero (subpages) ---------- */
.page-hero { padding-top: 132px; padding-bottom: clamp(20px, 4vw, 40px); position: relative; overflow: hidden; }
.page-hero::before {
  content: ""; position: absolute; z-index: 0; top: -30%; right: -6%;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(171,0,102,.09), rgba(171,0,102,0) 62%); pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 18px; }
.page-hero h1 { margin-bottom: 18px; max-width: 16ch; }
.page-hero.center h1 { margin-inline: auto; }
.page-hero .lead { max-width: 640px; }
.page-hero.center .lead { margin-inline: auto; }

/* Breadcrumb */
.crumbs { font-size: .84rem; color: var(--muted); margin-bottom: 20px; }
.crumbs a { color: var(--accent); font-weight: 600; }
.crumbs span { margin: 0 8px; opacity: .5; }

/* ---------- Awards ---------- */
.awards-marquee { overflow: hidden; border-block: 1px solid var(--line); background: var(--surface); padding-block: 16px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 42px; width: max-content; animation: marquee 32s linear infinite; }
.awards-marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--ink); white-space: nowrap; }
.marquee-item::before { content: "★"; color: var(--gold); font-size: .9rem; }
.marquee-item span { color: var(--muted); font-family: var(--font-sans); font-size: .82rem; font-weight: 600; }
@keyframes marquee { to { transform: translateX(-50%); } }

.award-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.award-col { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 26px; }
.award-col h3 { font-size: 1.08rem; display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.award-col h3 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.award-col ul { list-style: none; display: grid; gap: 10px; }
.award-col li { font-size: .92rem; color: var(--ink-soft); padding-left: 20px; position: relative; line-height: 1.4; }
.award-col li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: .82rem; }
.award-col li b { color: var(--ink); font-weight: 700; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.service {
  display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 22px 24px;
  transition: box-shadow .35s var(--ease), transform .35s var(--ease), border-color .35s var(--ease); color: var(--ink);
}
.service:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--accent-soft); }
.service__ico { width: 48px; height: 48px; border-radius: 13px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.service__ico svg { width: 24px; height: 24px; }
.service h3 { font-size: 1.1rem; margin-bottom: 3px; }
.service p { font-size: .88rem; color: var(--muted); }
.service__go { width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--accent); transition: background .25s, color .25s, border-color .25s; flex: none; }
.service:hover .service__go { background: var(--accent); border-color: var(--accent); color: #fff; }
.service__go svg { width: 16px; height: 16px; }
.service .tag-free { display: inline-block; font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #2c8a5c; background: #e3f5ec; padding: 2px 8px; border-radius: 100px; margin-left: 8px; vertical-align: middle; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; transition: box-shadow .3s var(--ease), border-color .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--accent-soft); }
.faq-q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 22px; font-family: var(--font-sans); font-size: 1.04rem; font-weight: 600; color: var(--ink); }
.faq-q:hover { color: var(--accent); }
.faq-ico { width: 24px; height: 24px; flex: none; position: relative; }
.faq-ico::before, .faq-ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.faq-ico::before { top: 11px; left: 4px; width: 16px; height: 2px; }
.faq-ico::after { left: 11px; top: 4px; width: 2px; height: 16px; }
.faq-item.open .faq-ico::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a__inner { padding: 0 22px 22px; color: var(--ink-soft); font-size: .98rem; line-height: 1.6; }
.faq-a__inner ul { margin: 8px 0 0; padding-left: 20px; }
.faq-a__inner li { margin-bottom: 6px; }
.faq-item.open .faq-a { max-height: 720px; }

/* ---------- Article cards (index) ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .35s var(--ease), transform .35s var(--ease); color: var(--ink); height: 100%; }
.post-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.post-card__thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--accent), #d81b93); position: relative; display: grid; place-items: center; overflow: hidden; }
.post-card__thumb .cat { position: absolute; top: 14px; left: 14px; font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(0,0,0,.22); backdrop-filter: blur(4px); padding: 5px 11px; border-radius: 100px; }
.post-card__thumb .glyph { font-family: var(--font-display); font-size: 2.6rem; color: rgba(255,255,255,.9); font-weight: 600; }
.post-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card h3 { font-size: 1.16rem; line-height: 1.25; margin-bottom: 10px; }
.post-card p { font-size: .92rem; color: var(--ink-soft); flex: 1; }
.post-card__meta { margin-top: 16px; font-size: .8rem; color: var(--muted); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.post-card__more { color: var(--accent); font-weight: 700; }

/* ---------- Article body (single) ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article__cat { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); padding: 5px 12px; border-radius: 100px; margin-bottom: 18px; }
.article h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.article__meta { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .9rem; padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.article__meta .who { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink-soft); }
.article__meta .ava { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #d81b93); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-size: .82rem; font-weight: 600; }
.article-body { font-size: 1.08rem; line-height: 1.75; color: var(--ink-soft); }
.article-body > * + * { margin-top: 20px; }
.article-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: var(--ink); margin-top: 40px; }
.article-body h3 { font-size: 1.22rem; color: var(--ink); margin-top: 30px; }
.article-body strong { color: var(--ink); font-weight: 700; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body li::marker { color: var(--accent); }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 6px 0 6px 22px; margin: 28px 0; font-family: var(--font-display); font-style: italic; font-size: 1.24rem; color: var(--ink); line-height: 1.4; }
.article-body a { color: var(--accent); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.article-cta { margin-top: 40px; background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 28px; text-align: center; }
.article-cta h3 { font-size: 1.3rem; margin-bottom: 8px; }
.article-cta p { margin-bottom: 18px; font-size: .98rem; }
.article-share { margin-top: 26px; display: flex; align-items: center; gap: 12px; font-size: .88rem; color: var(--muted); }

/* related posts */
.related { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* ---------- Section imagery helper ---------- */
.media-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: linear-gradient(150deg,#f3d9e8,#e7bcd6); }
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 940px) {
  .award-groups { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .post-grid, .related { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .service { grid-template-columns: auto 1fr; }
  .service__go { display: none; }
}

/* ---------- Awards timeline (swipeable carousel) ---------- */
.timeline-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.timeline-wrap { position: relative; }
.timeline {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 18px; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
}
.timeline::-webkit-scrollbar { height: 6px; }
.timeline::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.timeline::-webkit-scrollbar-track { background: transparent; }
.tl-card {
  flex: 0 0 clamp(232px, 76vw, 288px); scroll-snap-align: start;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.tl-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tl-card__img { aspect-ratio: 4/5; position: relative; overflow: hidden; background: linear-gradient(150deg, #f3d9e8, #e7bcd6); }
.tl-card__img img { width: 100%; height: 100%; object-fit: cover; }
.tl-card__year { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--accent); color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 1rem; padding: 3px 13px; border-radius: 100px; box-shadow: 0 4px 12px rgba(171,0,102,.3); }
.tl-ph { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; color: #a1547f; text-align: center; padding: 20px; }
.tl-ph svg { width: 32px; height: 32px; opacity: .55; }
.tl-ph small { font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.tl-card__body { padding: 15px 18px 18px; }
.tl-card__body .k { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.tl-card__body h3 { font-size: 1rem; line-height: 1.28; }
.tl-nav { display: flex; gap: 10px; }
.tl-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface); display: grid; place-items: center; color: var(--ink); transition: background .25s, color .25s, border-color .25s, transform .2s; }
.tl-btn:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.tl-btn:disabled { opacity: .3; cursor: default; }
.tl-btn svg { width: 20px; height: 20px; }

/* ---------- Instagram embed section ---------- */
.ig-section { display: grid; grid-template-columns: 1fr; gap: 22px; }
.ig-slot {
  background: var(--surface); border: 2px dashed var(--line); border-radius: var(--r-lg);
  min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; padding: 40px 24px; color: var(--muted);
}
.ig-slot .ig-logo { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); display: grid; place-items: center; color: #fff; }
.ig-slot .ig-logo svg { width: 30px; height: 30px; }
.ig-slot h3 { color: var(--ink); font-size: 1.2rem; }
.ig-slot p { max-width: 460px; font-size: .94rem; }

/* ---------- Instagram grid (real posts) ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.ig-tile { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: 12px; background: var(--bg-warm); display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile__ov { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(171,0,102,0); transition: background .3s; }
.ig-tile:hover .ig-tile__ov { background: rgba(171,0,102,.34); }
.ig-tile__ov svg { width: 26px; height: 26px; color: #fff; opacity: 0; transform: scale(.7); transition: opacity .3s, transform .3s; }
.ig-tile:hover .ig-tile__ov svg { opacity: 1; transform: scale(1); }
.ig-follow { text-align: center; margin-top: 26px; }
@media (max-width: 860px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Services: expand in place ---------- */
.services .svc-hidden { display: none; }
.services.show-all .svc-hidden { display: grid; }

/* ---------- Calculator embed ---------- */
.calc-wrap { position: relative; }
.calc-bar { display: flex; justify-content: flex-end; margin-bottom: 12px; }
.calc-frame { width: 100%; min-height: 900px; border: 0; border-radius: var(--r-lg); background: var(--surface); box-shadow: var(--shadow-md); display: block; }

/* ---------- Article filter ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-btn { padding: 8px 16px; border-radius: 100px; border: 1.5px solid var(--line); background: var(--surface); font-family: inherit; font-size: .86rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.post-card.hide { display: none; }
.post-count { text-align: center; margin-top: 30px; color: var(--muted); font-size: .9rem; }

/* ---------- Timeline as full grid (Profil: buka semua, bukan slider) ---------- */
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline-grid .tl-card { flex: none; }
@media (max-width: 940px) { .timeline-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .timeline-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery (kegiatan/working) ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure { margin: 0; }
.gallery .g-frame { aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--r); box-shadow: var(--shadow-sm); }
.gallery .g-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .5s var(--ease); }
.gallery figure:hover .g-frame img { transform: scale(1.05); }
.gallery figure.event-photo .g-frame img { object-position: center 68%; }
.gallery figcaption { margin-top: 9px; font-size: .82rem; color: var(--muted); font-weight: 500; line-height: 1.35; }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr 1fr; gap: 12px; } .gallery figcaption { font-size: .76rem; } }

.timeline-wrap.has-arrows { position: relative; }
.tl-arrow { position: absolute; top: 42%; transform: translateY(-50%); z-index: 6; width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--accent); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-lg); cursor: pointer; transition: background .25s, transform .2s, opacity .25s; }
.tl-arrow:hover:not(:disabled) { background: var(--accent-ink); transform: translateY(-50%) scale(1.07); }
.tl-arrow--prev { left: -10px; }
.tl-arrow--next { right: -10px; }
.tl-arrow svg { width: 22px; height: 22px; }
.tl-arrow:disabled { opacity: 0; pointer-events: none; }
@media (max-width: 560px) { .tl-arrow { width: 40px; height: 40px; } .tl-arrow--prev { left: 2px; } .tl-arrow--next { right: 2px; } }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 700; font-size: .92rem;
  padding: 13px 20px 13px 16px; border-radius: 100px;
  box-shadow: 0 10px 26px rgba(37,211,102,.42);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa-float:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 30px rgba(37,211,102,.5); }
.wa-float svg { width: 22px; height: 22px; }
.wa-float .wa-float__t { white-space: nowrap; }
@media (max-width: 520px) {
  .wa-float { padding: 14px; }
  .wa-float .wa-float__t { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .btn, .card, .ps-item, .choose-row { transition: none !important; }
  * { animation: none !important; }
}


/* ---------- A11y & credibility additions ---------- */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }
.ig-grid { grid-template-columns: repeat(3, 1fr) !important; max-width: 780px; margin-inline: auto; }
@media (max-width: 560px){ .ig-grid { gap: 8px; } }
.author-box { display: flex; gap: 14px; align-items: center; background: var(--bg-warm); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; margin: 36px 0 8px; }
.author-box img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; }
.author-box .ab-name { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.author-box .ab-role { font-size: .84rem; color: var(--muted); margin-top: 3px; line-height: 1.5; }
.legal-note { font-size: .82rem; color: var(--on-dark-mut); margin-top: 12px; line-height: 1.55; max-width: 880px; }
.legal-page { max-width: 820px; }
.legal-page h2 { margin: 30px 0 10px; font-size: 1.4rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); }
.legal-page ul { margin: 10px 0 10px 20px; }
.legal-page a { color: var(--accent); font-weight: 600; }


/* ---------- Steps (Cara jadi nasabah) ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 18px; text-align: left; }
.step__ico { width: 48px; height: 48px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 14px; }
.step__ico svg { width: 24px; height: 24px; }
.step__k { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.step h3 { font-size: 1.0rem; margin-bottom: 7px; line-height: 1.25; }
.step p { font-size: .88rem; color: var(--ink-soft); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
/* Instagram embeds */
.ig-embeds { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: flex-start; }
.ig-embeds .instagram-media { margin: 0 !important; min-width: 300px !important; max-width: 328px !important; }
.ig-follow { text-align: center; margin-top: 26px; }

/* ---------- Proof grid (Klaim & Testimoni) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }
.proof-card img { width: 100%; display: block; }
.proof-ph { aspect-ratio: 4 / 5; display: grid; place-items: center; text-align: center; color: var(--muted); font-size: .88rem; line-height: 1.5; padding: 16px; background: repeating-linear-gradient(45deg, var(--bg-warm), var(--bg-warm) 12px, #efe7db 12px, #efe7db 24px); border-bottom: 1px dashed var(--line); }
.proof-ph small { color: var(--accent); font-weight: 700; }
.proof-card figcaption { padding: 12px 15px; font-size: .86rem; color: var(--ink-soft); }
.ph-note { margin-top: 16px; text-align: center; font-size: .82rem; color: var(--muted); max-width: 640px; margin-inline: auto; }
@media (max-width: 720px) { .proof-grid { grid-template-columns: 1fr; } }


/* ---------- Klaim slideshow ---------- */
.klaim-wrap { position: relative; margin-top: 8px; }
.klaim-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 6px 2px; scrollbar-width: none; }
.klaim-track::-webkit-scrollbar { display: none; }
.klaim-slide { margin: 0; flex: 0 0 auto; scroll-snap-align: center; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-md); background: #0d0d0d; }
.klaim-slide img { height: 560px; width: auto; display: block; }
@media (max-width: 560px){ .klaim-slide img { height: 72vh; max-height: 520px; } }


/* ---------- Peluang: milestones & career ---------- */
.milestones { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.milestone { flex: 1 1 180px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; text-align: center; }
.milestone .m-num { font-family: var(--font-display); font-size: 1.6rem; color: var(--accent); font-weight: 600; }
.milestone .m-lab { font-size: .82rem; color: var(--muted); margin-top: 5px; }
.disc-note { font-size: .8rem; color: var(--muted); margin-top: 18px; line-height: 1.55; max-width: 820px; }
.step__n { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }


/* ---------- Nav dropdown (Partnership) ---------- */
.nav-drop { position: relative; }
.nav-drop__btn { display: inline-flex; align-items: center; gap: 5px; padding: 9px 15px; border-radius: 100px; font-family: inherit; font-size: .95rem; font-weight: 500; color: var(--ink-soft); background: none; border: none; cursor: pointer; transition: color .25s, background .25s; }
.nav-drop__btn:hover { color: var(--ink); background: rgba(0,0,0,.035); }
.nav-drop__btn.active { color: var(--accent); font-weight: 600; }
.nav-drop__btn svg { width: 13px; height: 13px; transition: transform .25s; }
.nav-drop.open .nav-drop__btn svg { transform: rotate(180deg); }
.nav-drop__menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 220px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease); z-index: 130; }
.nav-drop.open .nav-drop__menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop__menu a { display: block; padding: 11px 14px; border-radius: 10px; font-size: .93rem; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.nav-drop__menu a:hover { background: var(--accent-soft); color: var(--accent-ink); }
.nav-drop__menu a.active { color: var(--accent); }
@media (min-width: 761px) {
  .nav-drop::after { content: ""; position: absolute; left: -12px; right: -12px; top: 100%; height: 18px; }
}
@media (max-width: 760px) {
  .nav-drop { width: 100%; }
  .nav-drop__btn { width: 100%; justify-content: space-between; padding: 12px 14px; font-size: 1.05rem; }
  .nav-drop__menu { position: static; transform: none; min-width: 0; box-shadow: none; border: none; background: transparent; padding: 0; opacity: 1; visibility: hidden; height: 0; overflow: hidden; transition: none; }
  .nav-drop.open .nav-drop__menu { visibility: visible; height: auto; padding: 2px 0 8px 14px; transform: none; }
  .nav-drop__menu a { font-size: 1rem; }
}


/* ---------- Logo strip (kolaborasi) ---------- */
.logo-strip { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.logo-strip img { width: 100%; max-width: 820px; height: auto; }
.logo-more { font-size: .9rem; color: var(--muted); font-weight: 600; }


/* ---------- Steps column variants + req list ---------- */
.steps.cols-4 { grid-template-columns: repeat(4, 1fr); }
.steps.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .steps.cols-4, .steps.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps.cols-4, .steps.cols-3 { grid-template-columns: 1fr; } }
.req-list { list-style: none; counter-reset: r; padding: 0; margin: 0; }
.req-list li { counter-increment: r; position: relative; padding: 14px 14px 14px 56px; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; background: var(--surface); color: var(--ink-soft); }
.req-list li::before { content: counter(r); position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-family: var(--font-display); font-weight: 600; display: grid; place-items: center; }


/* ---------- Highlight box / svc hint / e-book ---------- */
.highlight-box { background: var(--accent-soft); border: 1px solid #f3cfe4; border-left: 4px solid var(--accent); border-radius: var(--r); padding: 20px 24px; margin-top: 22px; }
.highlight-box p { color: var(--accent-ink); margin: 0; font-size: 1.06rem; }
.svc-hint { text-align: center; font-size: .9rem; color: var(--muted); margin: -6px auto 24px; max-width: 580px; }
.ebook-grid { display: grid; grid-template-columns: 300px 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; }
.ebook-cover img { width: 100%; height: auto; display: block; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.ebook-copy .eyebrow { margin-bottom: 14px; }
.ebook-copy h2 { margin-bottom: 12px; }
.ebook-points { list-style: none; padding: 0; margin: 18px 0 24px; }
.ebook-points li { position: relative; padding-left: 30px; margin-bottom: 10px; color: var(--ink-soft); }
.ebook-points li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.ebook-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
@media (max-width: 720px) { .ebook-grid { grid-template-columns: 1fr; } .ebook-cover { max-width: 240px; margin-inline: auto; } }


/* ---------- Award notes + 2-col grid ---------- */
.award-note { display: block; font-size: .82rem; color: var(--muted); margin-top: 3px; line-height: 1.45; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }


/* ---------- Peluang: fasilitas + BOP box ---------- */
.fac-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px 28px; max-width: 900px; margin-inline: auto; }
.fac-list li { position: relative; padding-left: 28px; color: var(--ink-soft); }
.fac-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
@media (max-width: 760px) { .fac-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .fac-list { grid-template-columns: 1fr; } }
.prog-lead { text-align: center; margin-top: 34px; font-size: .9rem; color: var(--muted); font-weight: 600; }
.bop-box { max-width: 760px; margin: 0 auto 34px; background: var(--accent-soft); border: 1px solid #f3cfe4; border-radius: var(--r-lg); padding: 26px 30px; text-align: center; }
.bop-box h3 { color: var(--accent-ink); margin-bottom: 8px; }
.bop-box p { color: var(--ink-soft); }


/* ---------- Risk Checkup ---------- */
.checkup-box { max-width: none; margin: 0 auto; text-align: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(32px,5vw,52px); box-shadow: var(--shadow-md); }
.checkup-ico { width: 60px; height: 60px; border-radius: 16px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin: 0 auto 18px; }
.checkup-ico svg { width: 30px; height: 30px; }
.checkup-box .eyebrow { justify-content: center; margin-bottom: 12px; }
.checkup-box h2 { margin-bottom: 12px; }
.checkup-box p { margin-bottom: 18px; }
.checkup-feats { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.checkup-feats span { font-size: .82rem; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 6px 14px; border-radius: 100px; }


/* ---------- WhatsApp icon (img) sizing ---------- */
.wa-ico { width: 18px; height: 18px; object-fit: contain; display: block; flex: none; }
.wa-float .wa-ico { width: 22px; height: 22px; }
.lk-ico .wa-ico { width: 24px; height: 24px; }
.footer-bottom .socials .wa-ico { width: 18px; height: 18px; }


/* ---------- Service groups (Layanan) ---------- */
.svc-group-head { max-width: 720px; margin: 0 0 18px; }
.svc-group-head h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; }
.svc-group-head p { color: var(--muted); font-size: .95rem; margin-top: 4px; }
