/* ============================================================
   LSP Klining Servis — Situs Publik
   Design tokens & base styles
   ============================================================ */

:root {
  /* Brand */
  --blue:        #1a3d83;
  --blue-700:    #15336e;
  --blue-900:    #0f2350;
  --blue-ink:    #0b1a3d;
  --red:         #af231c;
  --red-700:     #94190f;

  /* Neutrals (cool) */
  --ink:         #13141f;
  --paper:       #ffffff;
  --mist:        #f3f6fc;   /* light blue-gray section bg */
  --cloud:       #e9edf7;
  --line:        #e1e6f1;
  --muted:       #5c6580;
  --muted-2:     #8b93a8;

  /* On-dark */
  --on-blue:     #eef2fb;
  --on-blue-dim: #aab6d6;

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body:    "Plus Jakarta Sans", system-ui, sans-serif;

  /* Geometry */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15,35,80,.06), 0 2px 6px rgba(15,35,80,.05);
  --sh-md: 0 8px 24px rgba(15,35,80,.08), 0 2px 6px rgba(15,35,80,.05);
  --sh-lg: 0 24px 60px rgba(11,26,61,.16), 0 6px 18px rgba(11,26,61,.08);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 128px); }
.section--mist { background: var(--mist); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--red);
  display: inline-block;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-top: 16px;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 19px);
  margin-top: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(175,35,28,.28); }
.btn--primary:hover { background: var(--red-700); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(175,35,28,.34); }
.btn--ghost { background: transparent; color: var(--on-blue); border-color: rgba(255,255,255,.32); }
.btn--ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.6); }
.btn--solid { background: var(--blue); color: #fff; }
.btn--solid:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn--line { background: #fff; color: var(--blue); border-color: var(--line); }
.btn--line:hover { border-color: var(--blue); transform: translateY(-2px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  --nav-fg: var(--ink);
  --nav-hover: var(--mist);
  transition: box-shadow .3s ease;
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 84px;
}
.brand { display: flex; align-items: center; flex: none; }
.brand__logo-img { height: 56px; width: 56px; object-fit: contain; display: block; }
.brand__name { display: none; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--nav-fg, var(--on-blue));
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { background: var(--nav-hover, rgba(255,255,255,.12)); }

/* compact, evenly-spaced action buttons */
.site-header__inner .btn { padding: 10px 16px; font-size: 14px; }
.header-login { margin-left: 0; }
.header-cta { margin-left: 0; }

/* scrolled state — slightly stronger shadow */
.site-header.is-solid {
  box-shadow: var(--sh-md);
}

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 8%, #2a4d97 0%, rgba(42,77,151,0) 52%),
    linear-gradient(165deg, var(--blue) 0%, var(--blue-900) 62%, var(--blue-ink) 100%);
  color: var(--on-blue);
}
#bubbles {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(80% 70% at 50% 40%, #000 30%, transparent 80%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 64px;
  width: 100%;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--on-blue);
  backdrop-filter: blur(6px);
}
.hero__badge .pill {
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .1em;
  padding: 4px 9px;
  border-radius: 999px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 70px);
  margin-top: 26px;
  font-weight: 700;
}
.hero h1 .accent { color: #9fc0ff; }
.hero__sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--on-blue-dim);
  max-width: 540px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 52px;
  max-width: 540px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
  letter-spacing: -0.03em;
}
.stat span { font-size: 13.5px; color: var(--on-blue-dim); font-weight: 500; }

/* Hero floating seal card */
.hero__panel {
  position: relative;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-xl);
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px rgba(7,18,46,.45);
}
.seal {
  width: 92px; height: 92px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin: 0 auto 18px;
  background:
    conic-gradient(from 0deg, rgba(255,255,255,.0), rgba(255,255,255,.5), rgba(255,255,255,0) 60%),
    radial-gradient(circle, var(--blue) 0%, var(--blue-900) 100%);
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.35), 0 8px 22px rgba(7,18,46,.4);
  animation: sealspin 14s linear infinite;
}
.seal::before {
  content: "✓";
  font-size: 38px;
  color: #fff;
  font-weight: 700;
  animation: sealspin 14s linear infinite reverse;
}
@keyframes sealspin { to { transform: rotate(360deg); } }
.hero__panel h3 { color:#fff; text-align:center; font-size: 19px; }
.hero__panel .panel-sub { text-align:center; color: var(--on-blue-dim); font-size: 14px; margin-top: 6px; }
.panel-list { margin-top: 22px; display: grid; gap: 12px; }
.panel-list li {
  list-style: none;
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px; color: var(--on-blue);
  padding: 12px 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
}
.panel-list .dot { width: 9px; height: 9px; border-radius: 50%; background: #6ee7a8; flex: none; box-shadow: 0 0 0 3px rgba(110,231,168,.18); }
.panel-list ul { margin: 0; padding: 0; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--on-blue-dim);
}
.hero__scroll .mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.4); border-radius: 12px; position: relative;
}
.hero__scroll .mouse::after {
  content:""; position:absolute; left:50%; top:7px; width:3px; height:7px; border-radius:2px; background:#fff; transform:translateX(-50%);
  animation: scrolldot 1.8s ease-in-out infinite;
}
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 30%{opacity:1} 70%{opacity:1} 100%{opacity:0;transform:translate(-50%,10px)} }

/* ============================================================
   SCHEMES
   ============================================================ */
.scheme-groups { display: grid; gap: 40px; }
.scheme-group__label {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 18px;
}
.scheme-group__label h3 { font-size: 21px; }
.scheme-group__label span { color: var(--muted-2); font-size: 14px; font-weight: 600; }
.scheme-group__label .rule { flex: 1; height: 1px; background: var(--line); }

.scheme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 16px;
}
.scheme-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  overflow: hidden;
}
.scheme-card::before {
  content:""; position:absolute; left:0; top:0; bottom:0; width:3px; background: var(--blue);
  transform: scaleY(0); transform-origin: top; transition: transform .25s ease;
}
.scheme-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.scheme-card:hover::before { transform: scaleY(1); }
.scheme-card__code {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  color: var(--blue);
  background: var(--mist);
  padding: 4px 9px; border-radius: 6px;
  align-self: flex-start;
}
.scheme-card h4 { font-size: 18px; }
.scheme-card p { font-size: 14px; color: var(--muted); }
.scheme-card__meta { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-2); font-weight: 600; }
.scheme-card__wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 2px; padding: 10px 14px; border-radius: 10px;
  background: #25d366; color: #fff; font-size: 13.5px; font-weight: 700;
  transition: background .15s ease;
}
.scheme-card__wa:hover { background: #1da851; color: #fff; }
.scheme-card__wa svg { width: 17px; height: 17px; flex: none; }
.scheme-card__detail {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px; padding: 10px 14px; border-radius: 10px;
  background: var(--mist); color: var(--blue); border: 1.5px solid var(--line);
  font-family: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.scheme-card__detail:hover { border-color: var(--blue); background: #fff; }

/* ---- Pop-up detail skema ---- */
.skema-modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.skema-modal.is-open { display: block; }
.skema-modal__scrim { position: absolute; inset: 0; background: rgba(11,26,61,.55); backdrop-filter: blur(2px); animation: skemaFade .18s ease; }
.skema-modal__panel {
  position: relative; max-width: 720px; width: calc(100% - 32px); max-height: 88vh; overflow-y: auto;
  margin: 5vh auto 0; background: #fff; border-radius: 18px; padding: 30px 32px 34px;
  box-shadow: 0 24px 70px rgba(11,26,61,.32); animation: skemaPop .2s ease;
}
@keyframes skemaFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes skemaPop { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.skema-modal__close {
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  background: var(--mist); color: var(--muted); border: none; transition: background .15s, color .15s;
}
.skema-modal__close:hover { background: #ecebf0; color: var(--ink); }
.skema-modal__close svg { width: 18px; height: 18px; }
.skema-modal__head { padding-right: 44px; margin-bottom: 22px; }
.skema-modal__head h3 { font-size: 24px; margin: 10px 0 0; color: var(--ink); }
.skema-modal__meta { margin-top: 7px; font-size: 13.5px; color: var(--muted-2); font-weight: 600; }
.skema-modal__desc { margin: 14px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.65; }
.skema-modal__sec { margin-top: 26px; }
.skema-modal__sec h4 { font-size: 15px; color: var(--blue); margin: 0 0 12px; }
.skema-unit { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.skema-unit thead th {
  text-align: left; font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted-2); font-weight: 700; padding: 0 10px 8px; border-bottom: 2px solid var(--line);
}
.skema-unit thead th:first-child { width: 42px; }
.skema-unit tbody td { padding: 10px; border-bottom: 1px solid var(--line); color: var(--ink); vertical-align: top; }
.skema-unit tbody td:nth-child(2) { font-weight: 600; color: var(--blue); white-space: nowrap; }
.skema-unit tbody tr:last-child td { border-bottom: none; }
.skema-syarat { margin: 0; padding-left: 20px; }
.skema-syarat li { font-size: 14.5px; color: var(--ink); line-height: 1.6; margin-bottom: 8px; }
.skema-modal__dok {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 18px; border-radius: 11px;
  background: var(--blue); color: #fff; font-size: 14px; font-weight: 700; transition: background .15s, transform .15s;
}
.skema-modal__dok:hover { background: var(--blue-700); transform: translateY(-1px); color: #fff; }
.skema-modal__dok svg { width: 18px; height: 18px; }
@media (max-width: 560px) {
  .skema-modal__panel { padding: 26px 20px 28px; margin-top: 3vh; max-height: 94vh; }
  .skema-modal__head h3 { font-size: 20px; }
  .skema-unit thead { display: none; }
  .skema-unit tbody td { display: block; padding: 2px 0; border: none; }
  .skema-unit tbody tr { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); }
  .skema-unit tbody td:nth-child(2) { white-space: normal; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cloud);
  border: 1px solid var(--line);
}
.about__features { display: grid; gap: 8px; margin-top: 30px; }
.feature {
  display: flex; gap: 16px; padding: 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  transition: box-shadow .2s ease, transform .2s ease;
}
.feature:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.feature__ic {
  flex: none; width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--mist); color: var(--blue);
}
.feature__ic svg { width: 22px; height: 22px; }
.feature h4 { font-size: 16.5px; margin-bottom: 4px; }
.feature p { font-size: 14px; color: var(--muted); }

/* ============================================================
   TUK
   ============================================================ */
.tuk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tuk-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px; display:flex; flex-direction:column; gap: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tuk-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.tuk-card__tag {
  align-self:flex-start; font-size:12px; font-weight:700; letter-spacing:.04em;
  color: var(--red); background: #fbeceb; padding:5px 11px; border-radius:999px;
}
.tuk-card h4 { font-size: 19px; }
.tuk-card p { font-size:14px; color: var(--muted); }
.tuk-card__cap { margin-top:auto; display:flex; align-items:center; gap:8px; font-size:13.5px; color: var(--muted-2); font-weight:600; padding-top:14px; border-top:1px solid var(--line); }

/* ============================================================
   ASESOR
   ============================================================ */
.asesor-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.asesor-card {
  background:#fff; border:1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px; text-align:center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.asesor-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.asesor-card__photo {
  width: 92px; height:92px; border-radius:50%; margin: 0 auto 16px;
  background:
    repeating-linear-gradient(45deg, var(--cloud) 0 8px, #dfe5f2 8px 16px);
  border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line);
  display:grid; place-items:center; color: var(--muted-2); position:relative;
  overflow:hidden;
}
.asesor-card__photo span { font-family: var(--font-display); font-weight:700; font-size: 26px; color: var(--blue); }
.asesor-card__photo.has-photo { background: #fff; }
/* Foto diposisikan absolut (tinggi pasti) agar object-fit:cover konsisten di semua
   browser; container overflow:hidden + border-radius memotongnya jadi lingkaran. */
.asesor-card__photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; }
.asesor-card h4 { font-size: 16.5px; }
.asesor-card .met { font-size: 12.5px; color: var(--muted-2); font-weight:600; margin-top:3px; letter-spacing:.02em; }
.asesor-card__skemas { display:flex; flex-wrap:wrap; gap:6px; justify-content:center; margin-top:14px; }
.chip { font-size:11.5px; font-weight:600; color: var(--blue); background: var(--mist); padding:4px 9px; border-radius:999px; }
.asesor-card .valid { margin-top:14px; padding-top:13px; border-top:1px solid var(--line); font-size:12.5px; color: var(--muted); display:flex; align-items:center; justify-content:center; gap:7px; }
.asesor-card .valid .dot { width:7px;height:7px;border-radius:50%; background:#3fae6a; }

/* Asesor carousel — geser menyamping per 8 (acak), agar tak memanjang ke bawah */
.asesor-slider { position: relative; }
.asesor-slider__viewport { overflow: hidden; }
.asesor-slider__track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.asesor-slider__page { flex: 0 0 100%; min-width: 100%; }
.asesor-slider__page .asesor-grid { padding: 4px; }
.asesor-slider__controls { display:flex; align-items:center; justify-content:center; gap: 18px; margin-top: 26px; }
.asesor-slider__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background:#fff; color: var(--blue); display:grid; place-items:center; cursor:pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.asesor-slider__btn:hover { background: var(--blue); color:#fff; border-color: var(--blue); }
.asesor-slider__btn svg { width:18px; height:18px; }
.asesor-slider__dots { display:flex; align-items:center; gap: 8px; }
.asesor-slider__dot {
  width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0;
  background: var(--line); cursor:pointer; transition: width .25s ease, background .25s ease;
}
.asesor-slider__dot.is-on { background: var(--blue); width: 24px; }

/* slider generik (dipakai preview Blog & Galeri di Beranda) */
.cslider { position: relative; }
.cslider__viewport { overflow: hidden; }
.cslider__track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.cslider__page { flex: 0 0 100%; min-width: 100%; }
.cslider__page > .blog-grid, .cslider__page > .gal-grid { padding: 4px; }
.cslider__controls { display:flex; align-items:center; justify-content:center; gap: 18px; margin-top: 26px; }
.cslider__btn {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line);
  background:#fff; color: var(--blue); display:grid; place-items:center; cursor:pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.cslider__btn:hover { background: var(--blue); color:#fff; border-color: var(--blue); }
.cslider__btn svg { width:18px; height:18px; }
.cslider__dots { display:flex; align-items:center; gap: 8px; }
.cslider__dot {
  width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0;
  background: var(--line); cursor:pointer; transition: width .25s ease, background .25s ease;
}
.cslider__dot.is-on { background: var(--blue); width: 24px; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.post {
  display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--line); border-radius: var(--r-lg);
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.post:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.post__cover {
  aspect-ratio: 16/10;
  background: repeating-linear-gradient(135deg, var(--cloud) 0 12px, #e3e8f4 12px 24px);
  position:relative;
}
.post__cat {
  position:absolute; top:14px; left:14px;
  font-size:11.5px; font-weight:700; letter-spacing:.04em;
  background:#fff; color: var(--blue); padding:5px 11px; border-radius:999px; box-shadow: var(--sh-sm);
}
.post__body { padding: 22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1; }
.post__date { font-size:12.5px; color: var(--muted-2); font-weight:600; }
.post h4 { font-size: 18px; }
.post p { font-size: 14px; color: var(--muted); }
.post__more { margin-top:auto; padding-top:6px; font-weight:700; font-size:14px; color: var(--red); display:flex; align-items:center; gap:7px; }

/* ============================================================
   CTA / KONTAK
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(40px, 6vw, 76px);
  background:
    radial-gradient(120% 120% at 85% 0%, #2a4d97 0%, rgba(42,77,151,0) 55%),
    linear-gradient(155deg, var(--blue) 0%, var(--blue-900) 100%);
  color:#fff;
  display:grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items:center;
}
.cta__grid-bg {
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 100% at 80% 0%, #000, transparent 70%);
          mask-image: radial-gradient(70% 100% at 80% 0%, #000, transparent 70%);
}
.cta h2 { font-size: clamp(28px, 3.6vw, 44px); position:relative; }
.cta p { color: var(--on-blue-dim); margin-top:16px; font-size:17px; max-width:520px; position:relative; }
.cta__actions { display:flex; flex-direction:column; gap:12px; position:relative; }
.cta__actions .btn { justify-content:center; }
.btn--white { background:#fff; color: var(--blue); }
.btn--white:hover { background: var(--mist); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--blue-ink); color: var(--on-blue-dim); padding-block: 64px 32px; }
.footer__top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand {
  display: inline-block;
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.footer__brand img { height: 70px; width: auto; display: block; }
.footer__about { font-size:14px; max-width:320px; margin-top:18px; line-height:1.7; }
.footer__col h5 { color:#fff; font-family: var(--font-display); font-size:14px; letter-spacing:.04em; margin:0 0 16px; }
.footer__col a { display:block; font-size:14.5px; padding:6px 0; color: var(--on-blue-dim); transition: color .15s ease; }
.footer__col a:hover { color:#fff; }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social .social {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--on-blue-dim);
  padding: 0;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}
.footer__social .social:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
  transform: translateY(-3px);
}
.footer__social .social svg { width: 19px; height: 19px; display: block; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top:1px solid rgba(255,255,255,.1);
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
  font-size:13px; color: var(--on-blue-dim);
}
.footer__bnsp { display:flex; align-items:center; gap:10px; }
.footer__bnsp .b { font-weight:700; color:#fff; letter-spacing:.04em; }

/* ============================================================
   LICENSE CREDENTIAL CARD (in About)
   ============================================================ */
.license {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(120% 90% at 85% 0%, #2a4d97 0%, rgba(42,77,151,0) 55%),
    linear-gradient(160deg, var(--blue) 0%, var(--blue-900) 70%, var(--blue-ink) 100%);
  box-shadow: var(--sh-lg);
  isolation: isolate;
}
.license::after {
  content: "✓";
  position: absolute;
  right: -28px; bottom: -52px;
  font-size: 280px; line-height: 1;
  color: rgba(255,255,255,.05);
  z-index: -1;
  font-weight: 700;
}
.license__head { display: flex; align-items: center; gap: 14px; padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.16); }
.license__logo {
  flex: none;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(7,18,46,.3);
}
.license__logo img { height: 60px; width: auto; display: block; }
.license__org { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: #fff; display: block; }
.license__lic { font-size: 13px; color: var(--on-blue-dim); display: flex; align-items: center; gap: 7px; margin-top: 3px; }
.license__lic .dot { width: 7px; height: 7px; border-radius: 50%; background: #6ee7a8; box-shadow: 0 0 0 3px rgba(110,231,168,.2); }
.license__fields { margin: 0; padding-top: 22px; display: grid; gap: 16px; }
.license__fields > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.license__fields dt { font-size: 13px; color: var(--on-blue-dim); font-weight: 500; }
.license__fields dd { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: #fff; letter-spacing: .01em; text-align: right; }

.about__lead { display: flex; gap: 16px; margin-top: 30px; }
.about__lead .feature__ic { flex: none; }

/* ============================================================
   VISI & MISI
   ============================================================ */
.vm { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.visi {
  position: relative;
  padding: 36px 34px;
  border-radius: var(--r-lg);
  background: var(--blue);
  color: #fff;
  background-image:
    radial-gradient(120% 100% at 100% 0%, #2a4d97 0%, rgba(42,77,151,0) 60%);
  box-shadow: var(--sh-md);
}
.visi .eyebrow { color: #fff; }
.visi .eyebrow::before { background: #fff; }
.visi__quote { font-family: var(--font-display); font-size: clamp(20px, 2vw, 25px); line-height: 1.35; font-weight: 500; margin-top: 18px; letter-spacing: -0.01em; }
.visi__mark { font-family: var(--font-display); font-size: 64px; line-height: .6; color: rgba(255,255,255,.22); }
.misi { display: grid; gap: 14px; }
.misi__item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  transition: box-shadow .2s ease, transform .2s ease;
}
.misi__item:hover { box-shadow: var(--sh-md); transform: translateX(3px); }
.misi__num { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--mist); color: var(--blue); font-family: var(--font-display); font-weight: 700; font-size: 15px; display: grid; place-items: center; }
.misi__item p { font-size: 15px; color: var(--ink); }

/* ============================================================
   MENGAPA MEMILIH KAMI
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  padding: 28px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.why-card__ic { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--blue); color: #fff; }
.why-card__ic svg { width: 24px; height: 24px; }
.why-card h4 { font-size: 18px; }
.why-card p { font-size: 14.5px; color: var(--muted); }
.why-card--feature { background: var(--blue-ink); color: #fff; grid-row: span 1; }
.why-card--feature .why-card__ic { background: rgba(255,255,255,.12); }
.why-card--feature p { color: var(--on-blue-dim); }
.why-card--feature h4 { color: #fff; }

/* ============================================================
   MANFAAT
   ============================================================ */
.manfaat { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.manfaat__col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 3vw, 40px); }
.manfaat__col--accent { background: var(--mist); border-color: var(--cloud); }
.manfaat__head { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.manfaat__head .feature__ic { width: 48px; height: 48px; }
.manfaat__head h3 { font-size: 22px; }
.manfaat__head span { font-size: 13px; color: var(--muted-2); font-weight: 600; }
.manfaat__list { display: grid; gap: 2px; }
.manfaat__list li {
  list-style: none; display: flex; gap: 13px; align-items: flex-start;
  padding: 13px 0; font-size: 15.5px; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.manfaat__col--accent .manfaat__list li { border-bottom-color: var(--cloud); }
.manfaat__list li:last-child { border-bottom: none; }
.manfaat__list .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; margin-top: 1px; }
.manfaat__col--accent .manfaat__list .tick { background: var(--red); }
.manfaat__list .tick svg { width: 13px; height: 13px; }

/* ============================================================
   SCROLL REVEAL + HERO ENTRANCE
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: no-preference) {
  .hero__content > *, .hero__panel {
    animation: heroUp .85s cubic-bezier(.22,.61,.36,1) backwards;
  }
  .hero__badge { animation-delay: .10s; }
  .hero h1 { animation-delay: .20s; }
  .hero__sub { animation-delay: .34s; }
  .hero__cta { animation-delay: .46s; }
  .hero__stats { animation-delay: .58s; }
  .hero__panel { animation-delay: .50s; }
}
@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__layout { grid-template-columns: 1fr; }
  .hero__panel { display:none; }
  .about { grid-template-columns: 1fr; }
  .vm { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .manfaat { grid-template-columns: 1fr; }
  .tuk-grid { grid-template-columns: 1fr; }
  .asesor-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap:32px; }
}
@media (max-width: 760px) {
  .nav, .header-cta, .header-login { display: none; }
  .nav-toggle {
    display: inline-grid; place-items:center; margin-left:auto;
    width:44px; height:44px; border-radius:11px; border:1px solid var(--line);
    background:#fff; color: var(--ink); cursor:pointer;
  }
  .hero__stats { grid-template-columns: repeat(3, 1fr); gap:10px; }
  .hero__stats .stat { align-items: center; text-align: center; gap: 4px; }
  .hero__stats .stat b { font-size: clamp(20px, 6.4vw, 28px); }
  .hero__stats .stat span { font-size: 12px; line-height: 1.3; }
  .scheme-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .seal, .seal::before { animation: none; }
  .hero__scroll .mouse::after { animation: none; }
}

/* ============================================================
   PUBLIC BLOG PAGES (Blog.html, Artikel.html)
   ============================================================ */
/* always-solid header variant (no hero behind it) */
.site-header--page {
  position: sticky;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  --nav-fg: var(--ink);
  --nav-hover: var(--mist);
}

.page-body { padding-top: 0; }

/* page hero band */
.blog-hero {
  background:
    radial-gradient(120% 100% at 85% 0%, #2a4d97 0%, rgba(42,77,151,0) 55%),
    linear-gradient(160deg, var(--blue) 0%, var(--blue-900) 100%);
  color: #fff;
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
}
.blog-hero .eyebrow { color: #9fc0ff; }
.blog-hero .eyebrow::before { background: #fff; }
.blog-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 54px); margin-top: 16px; }
.blog-hero p { color: var(--on-blue-dim); font-size: clamp(16px, 1.5vw, 19px); margin-top: 16px; max-width: 600px; }

/* toolbar: search + categories */
.blog-toolbar { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 36px 0 28px; }
.blog-search {
  display: inline-flex; align-items: center; gap: 10px; flex: 1; min-width: 240px; max-width: 380px;
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 18px;
}
.blog-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,61,131,.1); }
.blog-search svg { width: 18px; height: 18px; color: var(--muted-2); flex: none; }
.blog-search input { border: none; outline: none; font-family: inherit; font-size: 15px; flex: 1; background: none; color: var(--ink); }
.cat-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-chip {
  font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--muted);
  background: #fff; border: 1.5px solid var(--line); border-radius: 999px; padding: 9px 16px; cursor: pointer;
  transition: all .15s;
}
.cat-chip:hover { border-color: var(--blue); color: var(--blue); }
.cat-chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }

/* featured (first published) */
.blog-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 36px; background: #fff; box-shadow: var(--sh-sm);
  transition: box-shadow .2s ease, transform .2s ease;
}
.blog-feature:hover { box-shadow: var(--sh-lg); transform: translateY(-3px); }
.blog-feature__cover { min-height: 280px; background-size: cover; background-position: center; position: relative; }
.blog-feature__cover .post__cat { position: absolute; top: 18px; left: 18px; }
.blog-feature__body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; }
.blog-feature__body .post__date { font-size: 13px; color: var(--muted-2); font-weight: 600; }
.blog-feature__body h2 { font-size: clamp(22px, 2.6vw, 32px); margin: 12px 0 14px; }
.blog-feature__body p { color: var(--muted); font-size: 15.5px; }
.blog-feature__body .post__more { margin-top: 22px; color: var(--red); font-weight: 700; font-size: 14.5px; display: inline-flex; align-items: center; gap: 7px; }

.post__cover { background-size: cover !important; background-position: center; }
.blog-empty { text-align: center; padding: 60px 20px; color: var(--muted-2); }
.blog-empty svg { width: 40px; height: 40px; margin-bottom: 12px; }
.blog-empty b { display: block; font-size: 17px; color: var(--muted); font-family: var(--font-display); }

/* ---- galeri ---- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item { position: relative; margin: 0; border-radius: 14px; overflow: hidden; cursor: pointer;
  background: var(--mist); box-shadow: var(--sh-sm); aspect-ratio: 4 / 3; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.gal-item:hover img, .gal-item:focus img { transform: scale(1.06); }
.gal-item:focus { outline: 2px solid var(--blue); outline-offset: 2px; }
.gal-item__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 12px 9px;
  font-size: 12.5px; font-weight: 600; color: #fff; line-height: 1.35;
  background: linear-gradient(transparent, rgba(8, 17, 40, .82)); }
.gal-item__cap span { font-weight: 500; opacity: .85; }
@media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gal-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* lightbox */
.gal-lightbox { position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; background: rgba(8, 12, 24, .92); padding: 40px 16px; }
.gal-lightbox.is-open { display: flex; }
.gal-lightbox__fig { margin: 0; max-width: 92vw; max-height: 88vh; text-align: center; }
.gal-lightbox__fig img { max-width: 92vw; max-height: 80vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.gal-lightbox__fig figcaption { color: #e7ecf7; font-size: 14px; margin-top: 14px; }
.gal-lightbox__close { position: absolute; top: 18px; right: 22px; background: none; border: 0;
  color: #fff; font-size: 34px; line-height: 1; cursor: pointer; opacity: .85; }
.gal-lightbox__close:hover { opacity: 1; }
.gal-lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, .12);
  border: 0; color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.gal-lightbox__nav:hover { background: rgba(255, 255, 255, .25); }
.gal-lightbox__prev { left: 16px; }
.gal-lightbox__next { right: 16px; }
@media (max-width: 620px) { .gal-lightbox__nav { width: 38px; height: 38px; } }

/* ---- article detail ---- */
.article { max-width: 760px; margin-inline: auto; }
.article__back { display: flex; width: fit-content; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; color: var(--blue); margin-bottom: 22px; }
.article__back svg { width: 17px; height: 17px; }
.article__cat { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; color: var(--blue); background: var(--mist); padding: 5px 12px; border-radius: 999px; }
.article h1 { font-size: clamp(30px, 4.4vw, 48px); margin: 18px 0 20px; line-height: 1.1; }
.article__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-bottom: 26px; margin-bottom: 30px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.article__meta .who { display: flex; align-items: center; gap: 10px; }
.article__avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(140deg, var(--blue), var(--blue-900)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.article__avatar + div b { color: var(--ink); font-weight: 600; display: block; font-size: 14px; }
.article__cover { border-radius: var(--r-lg); overflow: hidden; height: clamp(220px, 34vw, 380px); background-size: cover; background-position: center; margin-bottom: 34px; position: relative; }
.acar { position: relative; margin-bottom: 34px; }
.acar__viewport { overflow: hidden; }
.acar__track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); will-change: transform; }
.acar__page { flex: 0 0 100%; min-width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.acar__cell { height: clamp(110px, 16vw, 175px); border-radius: 12px; background-size: cover; background-position: center; background-color: #0f2350; }
/* Tombol & dot hanya tampil saat mode slider (>3 gambar). */
.acar__btn { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; display: grid; place-items: center; border: none; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--ink); cursor: pointer; box-shadow: var(--sh-md); z-index: 2; }
.acar__btn:hover { background: #fff; }
.acar__btn svg { width: 19px; height: 19px; }
.acar__btn--prev { left: -8px; }
.acar__btn--next { right: -8px; }
.acar__dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 14px; }
.acar__dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 999px; background: #c7d0e0; cursor: pointer; transition: width .25s, background .25s; }
.acar__dot.is-on { background: var(--blue, #1a3d83); width: 24px; }
.article__body { font-size: 17.5px; line-height: 1.75; color: #2a2f40; font-family: var(--font-body); }
/* Selaraskan font hasil paste (Word/Docs sering bawa font-family inline). */
.article__body *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) { font-family: inherit !important; }
.article__body h1, .article__body h2, .article__body h3, .article__body h4, .article__body h5, .article__body h6 { font-family: var(--font-display) !important; }
.article__body h2 { font-family: var(--font-display); font-size: 24px; margin: 34px 0 14px; color: var(--ink); }
.article__body p { margin-bottom: 20px; }
.article__body ul { margin: 0 0 20px; padding-left: 22px; }
.article__body li { margin-bottom: 10px; }
.article__body b { color: var(--ink); }
.article__body a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.article__share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line); }
.article__share span { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.share-btn { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--muted); transition: all .15s; }
.share-btn:hover { color: var(--blue); border-color: var(--blue); transform: translateY(-2px); }
.share-btn svg { width: 18px; height: 18px; }

.related-head { margin: 56px 0 24px; }
.related-head h2 { font-size: 26px; }

@media (max-width: 760px) {
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature__cover { min-height: 200px; }
  .blog-toolbar { flex-direction: column; align-items: stretch; }
  .blog-search { max-width: none; }
}
