
@charset "UTF-8";
/* ==========================================================================
   PT Cahaya Prima Flexibles — site stylesheet
   Signature device: the ten-channel gravure colour bar (.pressbar)
   ========================================================================== */

/* ---------- self-hosted fonts (faster than a third-party font CDN) ---------- */
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/plex-sans-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/plex-sans-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("../fonts/plex-sans-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/plex-mono-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/plex-mono-500.woff2") format("woff2");
  font-weight: 500; font-style: normal; font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --blue:        #323566;
  --blue-deep:   #14162E;
  --blue-mid:    #464A87;
  --blue-soft:   #7C80AC;
  --red:         #EC2124;
  --red-btn:     #D81B1E;
  --red-text:    #B7161A;
  --red-deep:    #B7161A;
  --foil:        #C29B57;
  --paper:       #F4F5F9;
  --paper-warm:  #ECEEF5;
  --white:       #FFFFFF;
  --ink:         #16172A;
  --ink-soft:    #55587A;
  --eyebrow:     #5E6291;
  --line:        #D7DAE6;
  --line-soft:   #E6E8F0;

  --ch1:#EC2124; --ch2:#323566; --ch3:#0E4A34; --ch4:#C29B57; --ch5:#8B2A2C;
  --ch6:#0091C9; --ch7:#E3B505; --ch8:#1B1B24; --ch9:#6E2E63; --ch10:#B9BEC9;

  --display: "Archivo", "Archivo Expanded", Helvetica, Arial, sans-serif;
  --body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gut: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1320px;
  --sect: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 3px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--blue-deep); color: #fff; padding: .85rem 1.25rem;
  font-family: var(--mono); font-size: .8rem;
}
.skip:focus { left: 0; }

/* ---------- typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  font-stretch: 112%;
}

.h-display {
  font-size: clamp(2.75rem, 7.4vw, 6.1rem);
  font-weight: 800;
  font-stretch: 118%;
  line-height: .95;
  letter-spacing: -0.035em;
}
.h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); line-height: 1.0; letter-spacing: -0.03em; }
.h2 { font-size: clamp(1.75rem, 3.4vw, 2.85rem); letter-spacing: -0.025em; }
.h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); letter-spacing: -0.015em; }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--eyebrow);
  margin: 0 0 1.15rem;
  display: block;
  font-weight: 500;
}
.eyebrow--red { color: var(--red-text); }
.on-dark .eyebrow, .sect--dark .eyebrow, .sect--blue .eyebrow { color: rgba(255,255,255,.74); }

.lede {
  font-size: clamp(1.075rem, 1.55vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 62ch;
}
.sect--dark .lede, .sect--blue .lede { color: rgba(255,255,255,.82); }

.mono { font-family: var(--mono); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.sect { padding-block: var(--sect); position: relative; }
.sect--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.sect--paper { background: var(--paper); }
.sect--white { background: var(--white); }
.sect--warm  { background: var(--paper-warm); }
.sect--dark  { background: var(--blue-deep); color: #fff; }
.sect--blue  { background: var(--blue); color: #fff; }
.sect--dark h1, .sect--dark h2, .sect--dark h3,
.sect--blue h1, .sect--blue h2, .sect--blue h3 { color: #fff; }

.stack > * + * { margin-top: 1.1rem; }
.measure { max-width: 66ch; }

/* ==========================================================================
   SIGNATURE — the ten-channel gravure colour bar
   ========================================================================== */
.pressbar {
  display: flex;
  width: 100%;
  height: 7px;
  overflow: hidden;
}
.pressbar i {
  flex: 1 1 0;
  display: block;
  transform-origin: left center;
}
.pressbar i:nth-child(1){background:var(--ch1)} .pressbar i:nth-child(2){background:var(--ch2)}
.pressbar i:nth-child(3){background:var(--ch3)} .pressbar i:nth-child(4){background:var(--ch4)}
.pressbar i:nth-child(5){background:var(--ch5)} .pressbar i:nth-child(6){background:var(--ch6)}
.pressbar i:nth-child(7){background:var(--ch7)} .pressbar i:nth-child(8){background:var(--ch8)}
.pressbar i:nth-child(9){background:var(--ch9)} .pressbar i:nth-child(10){background:var(--ch10)}

.pressbar--hair { height: 3px; }
.pressbar--thick { height: 12px; }

/* the "press run": channels ink in one after another */
.pressbar--run i {
  transform: scaleX(0);
  animation: inkIn .5s cubic-bezier(.22,.7,.3,1) forwards;
}
.pressbar--run i:nth-child(1){animation-delay:.10s} .pressbar--run i:nth-child(2){animation-delay:.17s}
.pressbar--run i:nth-child(3){animation-delay:.24s} .pressbar--run i:nth-child(4){animation-delay:.31s}
.pressbar--run i:nth-child(5){animation-delay:.38s} .pressbar--run i:nth-child(6){animation-delay:.45s}
.pressbar--run i:nth-child(7){animation-delay:.52s} .pressbar--run i:nth-child(8){animation-delay:.59s}
.pressbar--run i:nth-child(9){animation-delay:.66s} .pressbar--run i:nth-child(10){animation-delay:.73s}
@keyframes inkIn { to { transform: scaleX(1); } }

/* labelled version used in the hero */
.channels { margin-top: clamp(2rem, 4vw, 3rem); }
.channels__labels {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--eyebrow);
  margin-top: .6rem;
}

@media (prefers-reduced-motion: reduce) {
  .pressbar--run i { transform: none; animation: none; }
}

/* ---------- header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,245,249,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__in {
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem);
  min-height: 78px;
}
.hdr__logo {
  flex: 0 0 auto; display: flex; align-items: center; gap: .6rem; text-decoration: none;
}
.hdr__logo img { height: 42px; width: auto; }
.hdr__logo-txt { display: flex; flex-direction: column; line-height: 1.04; }
.hdr__logo-txt b,
.hdr__logo-txt i {
  font-family: var(--display); font-stretch: 112%; font-size: .97rem;
  letter-spacing: -.022em; font-style: normal;
}
.hdr__logo-txt b { font-weight: 800; color: var(--blue); }
.hdr__logo-txt i { font-weight: 600; color: var(--red-text); }

.nav { display: flex; align-items: center; gap: clamp(.85rem, 1.9vw, 1.9rem); margin-left: auto; }
.nav > a, .navdd__top {
  text-decoration: none;
  font-size: .935rem;
  font-weight: 500;
  color: var(--ink);
  padding: .45rem 0;
  position: relative;
  white-space: nowrap;
}
.nav > a::after, .navdd__top::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .22s ease;
}
.nav > a:hover::after, .nav > a[aria-current="page"]::after,
.navdd__top:hover::after, .navdd__top[aria-current="page"]::after,
.navdd.is-open .navdd__top::after { transform: scaleX(1); }

.hdr__tools { display: flex; align-items: center; gap: .85rem; margin-left: .4rem; }

.langsw { display: flex; border: 1px solid var(--line); border-radius: 2px; overflow: hidden; }
.langsw a {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em;
  padding: .38rem .6rem; text-decoration: none; color: var(--ink-soft);
  background: var(--white); transition: background .18s, color .18s;
}
.langsw a[aria-current="true"] { background: var(--blue); color: #fff; }
.langsw a:not([aria-current="true"]):hover { background: var(--paper-warm); color: var(--ink); }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  width: 44px; height: 40px; border-radius: 2px; cursor: pointer;
  align-items: center; justify-content: center; padding: 0;
}
.burger span { display: block; width: 18px; height: 1.5px; background: var(--ink); position: relative; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--ink);
  transition: transform .2s ease, top .2s ease;
}
.burger span::before { top: -5.5px; } .burger span::after { top: 5.5px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--body); font-weight: 600; font-size: .95rem;
  padding: .82rem 1.5rem; border-radius: 2px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn--red { background: var(--red-btn); color: #fff; border-color: var(--red-btn); }
.btn--red:hover { background: var(--red-deep); border-color: var(--red-deep); }
.btn--blue { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn--blue:hover { background: var(--blue-deep); border-color: var(--blue-deep); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--ghost-light { border-color: rgba(255,255,255,.34); color: #fff; background: transparent; }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--sm { padding: .6rem 1rem; font-size: .875rem; }
.btn__arw { transition: transform .2s ease; }
.btn:hover .btn__arw { transform: translateX(3px); }

.txtlink {
  font-family: var(--mono); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--blue); font-weight: 500;
  border-bottom: 1.5px solid var(--red); padding-bottom: 3px;
  display: inline-flex; align-items: center; gap: .45rem;
}
.txtlink:hover { color: var(--red-text); }
.sect--dark .txtlink, .sect--blue .txtlink { color: #fff; }

/* ---------- hero ---------- */
.hero { background: var(--paper); overflow: hidden; padding-top: clamp(2.5rem, 5vw, 4.5rem); }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__grid > div:first-child {
    transform: translateY(-1cm);
}
.hero__h1 { margin-bottom: 1.6rem; }
.hero__h1 span { display: block; }
.hero__h1 span:first-child { color: var(--blue); }
.hero__h1 span:last-child  { color: var(--red); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; border-radius: 2px;
  box-shadow: 0 30px 70px -30px rgba(20,22,46,.4);
}
.hero__cap {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .06em;
  color: var(--ink-soft); margin-top: .9rem; max-width: 40ch;
}

/* ---------- counters ---------- */
.counters { border-top: 1px solid var(--line); }
.counters__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.counter {
  padding: clamp(1.75rem, 3.5vw, 2.75rem) clamp(1rem, 2vw, 1.75rem);
  border-right: 1px solid var(--line);
}
.counter:last-child { border-right: 0; }
.counter__n {
  font-family: var(--display); font-weight: 800; font-stretch: 118%;
  font-size: clamp(2.4rem, 5vw, 3.9rem); line-height: .95; letter-spacing: -0.035em;
  color: var(--blue); display: block;
  font-variant-numeric: tabular-nums;
}
.counter__n em { font-style: normal; color: var(--red); }
.counter__l { font-weight: 600; font-size: .95rem; margin-top: .55rem; display: block; }
.counter__note {
  font-family: var(--mono); font-size: .7rem; letter-spacing: .06em;
  color: var(--ink-soft); margin-top: .3rem; display: block;
}

/* ---------- generic grids ---------- */
.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--split { grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.grid--split-even { grid-template-columns: repeat(2, minmax(0,1fr)); gap: clamp(2rem,5vw,4.5rem); align-items: center; }

.sect__head { max-width: 70ch; margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem); }
.sect__head .lede { margin-top: 1.1rem; }

/* ---------- why / feature list ---------- */
.whylist { border-top: 1px solid var(--line); }
.sect--dark .whylist, .sect--blue .whylist { border-color: rgba(255,255,255,.18); }
.why {
  display: grid; grid-template-columns: 2.5rem minmax(0, 15rem) minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem); align-items: baseline;
  padding: 1.5rem 0; border-bottom: 1px solid var(--line);
}
.sect--dark .why, .sect--blue .why { border-color: rgba(255,255,255,.18); }
.why__i { font-family: var(--mono); font-size: .75rem; color: var(--red-text); letter-spacing: .05em; }
.why__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.2rem; letter-spacing: -.015em; }
.why__d { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.sect--dark .why__d, .sect--blue .why__d { color: rgba(255,255,255,.72); }

/* ---------- product cards ---------- */
.pcard {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line-soft);
  text-decoration: none; color: inherit; overflow: hidden;
  transition: border-color .22s, transform .22s, box-shadow .22s;
  height: 100%;
}
.pcard:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(20,22,46,.42); }
.pcard__media {
  aspect-ratio: 4 / 3; background: var(--paper-warm);
  display: grid; place-items: center; padding: 1.5rem; position: relative; overflow: hidden;
}
.pcard__media img {
  max-height: 100%; width: auto; max-width: 100%; object-fit: contain;
  transition: transform .35s cubic-bezier(.22,.7,.3,1);
  filter: drop-shadow(0 12px 18px rgba(20,22,46,.16));
}
.pcard:hover .pcard__media img { transform: scale(1.045); }
.pcard__body { padding: 1.35rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.pcard__grp {
  font-family: var(--mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-text); margin-bottom: .55rem;
}
.pcard__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.22rem; letter-spacing: -.02em; }
.pcard__d { color: var(--ink-soft); font-size: .93rem; margin: .5rem 0 1.1rem; flex: 1; }
.pcard__go {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); display: inline-flex; align-items: center; gap: .4rem;
}
.pcard:hover .pcard__go { color: var(--red-text); }

/* ---------- capability ---------- */
.cap {
  padding: 1.6rem 0; border-top: 1px solid rgba(255,255,255,.18);
  display: grid; grid-template-columns: 3.5rem minmax(0,1fr) auto; gap: 1.5rem; align-items: start;
}
.cap:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.cap__n { font-family: var(--mono); font-size: .78rem; color: var(--foil); letter-spacing: .06em; padding-top: .2rem; }
.cap__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.35rem; margin-bottom: .4rem; }
.cap__d { color: rgba(255,255,255,.72); font-size: .97rem; margin: 0; max-width: 54ch; }
.cap__spec {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,.3); padding: .35rem .7rem; white-space: nowrap;
}

/* ---------- laminate layer stack ---------- */
.stackfig { display: flex; flex-direction: column; gap: .55rem; }
.layer {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1.25rem; align-items: center;
  background: var(--white); border: 1px solid var(--line-soft);
  padding: 1.25rem 1.35rem; position: relative;
  transition: transform .3s cubic-bezier(.22,.7,.3,1), border-color .3s, box-shadow .3s;
}
.layer:hover { transform: translateX(10px); border-color: var(--blue); box-shadow: 0 12px 30px -18px rgba(20,22,46,.4); }
.layer::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
}
.layer--print::before   { background: var(--ch2); }
.layer--barrier::before { background: var(--ch10); }
.layer--seal::before    { background: var(--ch3); }
.layer__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.1rem; letter-spacing: -.015em; }
.layer__r { color: var(--ink-soft); font-size: .92rem; margin: .35rem 0 0; max-width: 46ch; }
.layer__m { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: flex-end; }
.chip {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .09em;
  background: var(--paper-warm); color: var(--blue); padding: .3rem .55rem; white-space: nowrap;
}

/* ---------- finish cards ---------- */
.fin { background: var(--white); border: 1px solid var(--line-soft); overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.fin__media { background: var(--paper-warm); padding: 1.5rem; display: grid; place-items: center; aspect-ratio: 1/1; }
.fin__media img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 10px 16px rgba(20,22,46,.18)); }
.fin__body { padding: 1.15rem 1.25rem 1.35rem; }
.fin__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.1rem; }
.fin__w { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; color: var(--red-text); margin: .4rem 0 .6rem; }
.fin__d { font-size: .9rem; color: var(--ink-soft); margin: 0; }

/* ---------- add-on cards ---------- */
.addon { background: var(--white); border: 1px solid var(--line-soft); padding: 1.35rem; height: 100%; display: flex; flex-direction: column; gap: .9rem; }
.addon__media { height: 108px; display: grid; place-items: center; background: var(--paper-warm); }
.addon__media img { max-height: 92px; width: auto; object-fit: contain; }
.addon__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.05rem; }
.addon__d { font-size: .9rem; color: var(--ink-soft); margin: .35rem 0 0; }
.hangicons { display: flex; gap: .5rem; align-items: center; justify-content: center; }
.hangicon { width: 30px; height: 38px; border-radius: 0 0 5px 5px; display: grid; place-items: start center; padding-top: 6px; }
.hangicon i { display: block; background: rgba(255,255,255,.92); }

/* ---------- certifications ---------- */
.cert { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line-soft); padding: 1.25rem; height: 100%; }
.cert__img { flex: 0 0 58px; display: grid; place-items: center; }
.cert__img img { max-height: 58px; width: auto; }
.cert__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.02rem; }
.cert__d { font-size: .88rem; color: var(--ink-soft); margin: .3rem 0 0; }

/* ---------- product detail ---------- */
.phero { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4rem); }
.phero__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(2rem,5vw,4rem); align-items: center; }
.phero__media { background: var(--white); border: 1px solid var(--line-soft); aspect-ratio: 4/3; display: grid; place-items: center; padding: clamp(1.5rem,3vw,3rem); }
.phero__media img { max-height: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 20px 30px rgba(20,22,46,.18)); }

.crumbs { font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1.5rem; }
.crumbs a { text-decoration: none; color: var(--blue); display: inline-block; padding-block: .3rem; }
.crumbs a:hover { color: var(--red-text); }
.crumbs span { margin: 0 .5rem; color: var(--ink-soft); }

.ticklist { list-style: none; margin: 0; padding: 0; }
.ticklist li { position: relative; padding-left: 1.6rem; margin-bottom: .7rem; font-size: .98rem; }
.ticklist li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; background: var(--red);
}
.sect--dark .ticklist li { color: rgba(255,255,255,.82); }

.spectable { width: 100%; border-collapse: collapse; font-size: .95rem; }
.spectable th, .spectable td { text-align: left; padding: .85rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.spectable th { font-weight: 600; width: 45%; color: var(--ink); }
.spectable td { color: var(--ink-soft); font-family: var(--mono); font-size: .88rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; gap: 1.25rem; align-items: flex-start; justify-content: space-between;
  padding: 1.35rem 0; text-align: left;
  font-family: var(--display); font-weight: 700; font-stretch: 110%; font-size: 1.06rem; letter-spacing: -.015em;
  color: var(--ink);
}
.faq__q:hover { color: var(--blue); }
.faq__ic { flex: 0 0 20px; height: 20px; position: relative; margin-top: .22rem; }
.faq__ic::before, .faq__ic::after {
  content: ""; position: absolute; background: var(--red); transition: transform .25s ease;
  left: 50%; top: 50%;
}
.faq__ic::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq__ic::after  { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq__q[aria-expanded="true"] .faq__ic::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { display: none; padding: 0 0 1.5rem; max-width: 72ch; }
.faq__a p { margin: 0; color: var(--ink-soft); }
.faq__item.is-open .faq__a { display: block; }

/* ---------- blog ---------- */
.searchbox { position: relative; margin-bottom: 1.25rem; }
.searchbox input {
  width: 100%; font-family: var(--body); font-size: 1rem;
  padding: 1rem 1.15rem 1rem 3rem; border: 1.5px solid var(--line); background: var(--white);
  border-radius: 2px; color: var(--ink);
}
.searchbox input:focus { border-color: var(--blue); outline: none; box-shadow: 0 0 0 3px rgba(50,53,102,.12); }
.searchbox svg { position: absolute; left: 1.05rem; top: 50%; transform: translateY(-50%); color: var(--ink-soft); }

.filters { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; margin-bottom: 2rem; }
.filter {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
  padding: .45rem .85rem; border: 1px solid var(--line); background: var(--white);
  cursor: pointer; border-radius: 2px; color: var(--ink-soft);
}
.filter[aria-pressed="true"] { background: var(--blue); border-color: var(--blue); color: #fff; }
.searchcount { font-family: var(--mono); font-size: .74rem; color: var(--ink-soft); margin-left: auto; }

.post { background: var(--white); border: 1px solid var(--line-soft); display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; transition: border-color .22s, transform .22s, box-shadow .22s; }
.post:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 18px 40px -24px rgba(20,22,46,.4); }
.post__media { aspect-ratio: 16/9; overflow: hidden; background: var(--paper-warm); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s cubic-bezier(.22,.7,.3,1); }
.post:hover .post__media img { transform: scale(1.04); }
.post__body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.post__meta { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red-text); margin-bottom: .6rem; display: flex; gap: .6rem; flex-wrap: wrap; }
.post__meta span { color: var(--ink-soft); }
.post__t { font-family: var(--display); font-weight: 700; font-stretch: 110%; font-size: 1.16rem; letter-spacing: -.02em; line-height: 1.2; }
.post__e { font-size: .93rem; color: var(--ink-soft); margin: .6rem 0 1.1rem; flex: 1; }

.faqhit { background: var(--white); border: 1px solid var(--line-soft); border-left: 4px solid var(--foil); padding: 1.3rem 1.35rem; height: 100%; }
.faqhit__tag { font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--foil); margin-bottom: .55rem; }
.faqhit__q { font-family: var(--display); font-weight: 700; font-stretch: 110%; font-size: 1.06rem; letter-spacing: -.015em; line-height: 1.25; }
.faqhit__a { font-size: .92rem; color: var(--ink-soft); margin: .6rem 0 0; }

.noresults { padding: 3rem 0; color: var(--ink-soft); font-size: 1.05rem; }
.is-hidden { display: none !important; }

/* ---------- article ---------- */
.article { max-width: 74ch; margin-inline: auto; }
.article__hero { aspect-ratio: 21/9; overflow: hidden; margin-bottom: clamp(2rem,4vw,3rem); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem); margin: 2.6rem 0 .9rem; letter-spacing: -.02em;
}
.article p { margin: 0 0 1.15rem; color: #2A2C42; }
.article ul, .article ol { margin: 0 0 1.35rem; padding-left: 1.3rem; color: #2A2C42; }
.article li { margin-bottom: .6rem; }
.article ul { list-style: none; padding-left: 0; }
.article ul li { position: relative; padding-left: 1.6rem; }
.article ul li::before { content: ""; position: absolute; left: 0; top: .62em; width: 8px; height: 8px; background: var(--red); }
.article ol { counter-reset: n; list-style: none; padding-left: 0; }
.article ol li { counter-increment: n; position: relative; padding-left: 2.1rem; }
.article ol li::before {
  content: counter(n,decimal-leading-zero); position: absolute; left: 0; top: .12em;
  font-family: var(--mono); font-size: .78rem; color: var(--red-text);
}

/* ---------- contact ---------- */
.infocard { background: var(--white); border: 1px solid var(--line-soft); padding: clamp(1.35rem,2.5vw,1.9rem); }
.infocard + .infocard { margin-top: 1rem; }
.infocard__h { font-family: var(--mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--eyebrow); margin-bottom: 1rem; }
.info { display: block; margin-bottom: 1.15rem; }
.info:last-child { margin-bottom: 0; }
.info__l { font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: .2rem; }
.info__v { font-size: 1.05rem; font-weight: 500; text-decoration: none; color: var(--ink); word-break: break-word; display: inline-block; padding-block: .2rem; }
a.info__v:hover { color: var(--red-text); }

.form { background: var(--white); border: 1px solid var(--line-soft); padding: clamp(1.5rem, 3vw, 2.5rem); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .4rem; }
.field .req { color: var(--red-text); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: .98rem; color: var(--ink);
  padding: .8rem .9rem; border: 1.5px solid var(--line); background: var(--paper);
  border-radius: 2px;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--white);
  box-shadow: 0 0 0 3px rgba(50,53,102,.12);
}
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); }
.field__err { display: none; color: var(--red-text); font-size: .82rem; margin-top: .35rem; }
.field.has-error .field__err { display: block; }
.formrow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.formnote { font-size: .85rem; color: var(--ink-soft); margin: 0 0 1.5rem; }
.formdemo {
  font-family: var(--mono); font-size: .72rem; line-height: 1.6; color: var(--ink-soft);
  background: var(--paper-warm); border-left: 3px solid var(--foil); padding: .8rem 1rem; margin-top: 1.25rem;
}
.formok {
  display: none; background: #EAF6EE; border-left: 3px solid #1B7F45;
  padding: 1rem 1.15rem; font-size: .95rem; color: #14532D; margin-bottom: 1.25rem;
}
.formok.is-on { display: block; }

/* ---------- CTA band ---------- */
.ctaband__grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,.8fr); gap: clamp(2rem,4vw,4rem); align-items: center; }
.ctaband .btn { margin-top: .5rem; }

/* ---------- footer ---------- */
.ftr { background: var(--blue-deep); color: rgba(255,255,255,.72); padding-block: clamp(3rem,6vw,4.5rem) 0; }
.ftr__grid { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(3, minmax(0,1fr)); gap: clamp(1.75rem,3.5vw,3rem); }
.ftr__logo { background: #fff; padding: .9rem 1rem; display: inline-block; margin-bottom: 1.25rem; border-radius: 3px; }
.ftr__logo img { height: 104px; width: auto; }
.ftr__about { font-size: .92rem; max-width: 38ch; margin: 0 0 1.25rem; }
.ftr h3 { font-family: var(--mono); font-weight: 500; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.ftr ul { list-style: none; margin: 0; padding: 0; }
.ftr li { margin-bottom: .28rem; }
.ftr a { color: rgba(255,255,255,.82); text-decoration: none; font-size: .93rem; display: inline-block; padding-block: .28rem; }
.ftr a:hover { color: #fff; }
.ftr__certs { display: flex; gap: .75rem; align-items: center; margin-top: 1.25rem; }
.ftr__certs img { height: 40px; width: auto; background: #fff; padding: 5px; border-radius: 2px; }
.ftr__btm a { display: inline-block; padding-block: .28rem; }
.ftr__btm {
  margin-top: clamp(2.5rem,5vw,3.5rem); border-top: 1px solid rgba(255,255,255,.14);
  padding-block: 1.5rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: rgba(255,255,255,.5);
}

/* ---------- reveal on scroll ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.7,.3,1); }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ==========================================================================
   PRODUCTS MEGA-DROPDOWN
   ========================================================================== */
.navdd { position: relative; display: flex; align-items: center; }
.navdd__top { display: inline-flex; align-items: center; gap: .35rem; }
.navdd__cv { transition: transform .22s ease; flex: 0 0 auto; }
.navdd.is-open .navdd__cv { transform: rotate(180deg); }

.mega {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translate(-50%, -6px);
  width: min(920px, calc(100vw - 3rem));
  background: var(--white); border: 1px solid var(--line);
  box-shadow: 0 28px 60px -28px rgba(20,22,46,.42);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 120; border-radius: 3px;
}
.navdd.is-open .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
/* hover bridge so the pointer can travel from the link to the panel */
.mega::before { content: ""; position: absolute; top: -20px; left: 0; right: 0; height: 20px; }

.mega__in { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)) .9fr; gap: 0; }
.mega__col { padding: 1.5rem 1.35rem; border-right: 1px solid var(--line-soft); }
.mega__cta { padding: 1.5rem 1.35rem; background: var(--paper); }
.mega__h {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--eyebrow); margin: 0 0 .3rem;
}
.mega__d { font-size: .82rem; color: var(--ink-soft); margin: 0 0 1rem; line-height: 1.45; }
.mega__list { display: flex; flex-direction: column; gap: .1rem; }
.mega__list a {
  display: block; text-decoration: none; padding: .55rem .6rem; margin-left: -.6rem;
  border-radius: 2px; transition: background .16s ease;
  font-family: var(--display); font-weight: 700; font-stretch: 110%;
  font-size: .94rem; letter-spacing: -.015em; color: var(--ink); line-height: 1.2;
}
.mega__list a em {
  display: block; font-family: var(--body); font-style: normal; font-weight: 400;
  font-size: .78rem; color: var(--ink-soft); letter-spacing: 0; margin-top: .15rem;
}
.mega__list a:hover { background: var(--paper-warm); color: var(--blue); }
.mega__list a:hover em { color: var(--ink-soft); }

/* ==========================================================================
   PRODUCT CATEGORY SECTIONS
   ========================================================================== */
.catnav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(2rem,4vw,3rem); background: var(--line); border: 1px solid var(--line); }
.catnav a { background: var(--white); padding: 1.1rem 1.2rem; text-decoration: none; display: block; transition: background .18s; }
.catnav a:hover { background: var(--paper-warm); }
.catnav b { display: block; font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.02rem; letter-spacing: -.02em; color: var(--blue); }
.catnav span { display: block; font-size: .82rem; color: var(--ink-soft); margin-top: .2rem; }

.pgroup { margin-bottom: clamp(3.5rem, 7vw, 5.5rem); scroll-margin-top: 100px; }
.pgroup__head {
  display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
  gap: clamp(1.5rem,4vw,3.5rem); align-items: start;
  padding-bottom: 1.6rem; margin-bottom: 2rem; border-bottom: 1px solid var(--line);
}
.pgroup__n { font-family: var(--mono); font-size: .72rem; letter-spacing: .12em; color: var(--red-text); display: block; margin-bottom: .5rem; }
.pgroup__t { margin: 0; }
.pgroup__intro { margin: 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }
.pgroup__best {
  margin: .9rem 0 0; font-family: var(--mono); font-size: .78rem; color: var(--blue);
  border-left: 3px solid var(--foil); padding-left: .8rem; line-height: 1.5;
}

/* ==========================================================================
   APPLICATION WIZARD
   ========================================================================== */
.wiz__steps {
  list-style: none; margin: 0 0 2rem; padding: 0 0 1.5rem;
  display: flex; gap: .5rem; border-bottom: 1px solid var(--line); counter-reset: w;
}
.wiz__step {
  flex: 1; display: flex; align-items: center; gap: .55rem;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .05em;
  color: var(--ink-soft); line-height: 1.25;
}
.wiz__step span {
  flex: 0 0 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper-warm); color: var(--ink-soft); font-size: .74rem; font-weight: 500;
}
.wiz__step.is-active { color: var(--ink); }
.wiz__step.is-active span { background: var(--blue); color: #fff; }
.wiz__step.is-done span { background: var(--ch3); color: #fff; }

.wizstep { display: none; }
.wizstep.is-active { display: block; animation: wizIn .3s ease; }
@keyframes wizIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .wizstep.is-active { animation: none; } }

.wiz__nav {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center;
  margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line);
}

.field__help { display: block; font-size: .78rem; color: var(--ink-soft); margin: -.15rem 0 .4rem; }

.formerr {
  display: none; background: #FDECEC; border-left: 3px solid var(--red-text);
  padding: 1rem 1.15rem; font-size: .95rem; color: #7F1416; margin-bottom: 1.25rem;
}
.formerr.is-on { display: block; }

/* ---- position detail panel ---- */
.posdetail { margin-bottom: .5rem; }
.posdetail__t { margin-bottom: .8rem; }
.jobfacts { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0; }
.jobfact {
  border: 1px solid var(--line); padding: .6rem .85rem; background: var(--white); border-radius: 2px;
}
.jobfact span {
  display: block; font-family: var(--mono); font-size: .64rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); margin-bottom: .15rem;
}
.jobfact b { font-size: .92rem; color: var(--ink); }

.jobshift { background: var(--paper-warm); padding: 1.1rem 1.25rem; margin-bottom: 1.75rem; border-left: 3px solid var(--blue); }
.jobshift__h { margin: 0 0 .55rem; font-weight: 600; font-size: .95rem; }
.jobshift ul { margin: 0; padding-left: 1.1rem; }
.jobshift li { font-family: var(--mono); font-size: .82rem; color: var(--ink-soft); margin-bottom: .25rem; }

.jobroles { display: grid; gap: 1rem; margin-bottom: 1.75rem; }
.jobrole { background: var(--white); border: 1px solid var(--line-soft); padding: 1.35rem 1.4rem; }
.jobrole__hd { display: flex; align-items: baseline; gap: .8rem; margin-bottom: .9rem; }
.jobrole__n { font-family: var(--mono); font-size: .72rem; color: var(--red-text); }
.jobrole__t { font-family: var(--display); font-weight: 700; font-stretch: 112%; font-size: 1.1rem; letter-spacing: -.02em; margin: 0; }
.jobrole .ticklist li { font-size: .93rem; color: var(--ink-soft); }

/* ---- file upload ---- */
.filefield { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.filefield input[type="file"] {
  position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.filefield__btn {
  display: inline-flex; align-items: center; gap: .5rem; cursor: pointer;
  font-size: .9rem; font-weight: 600; padding: .65rem 1.1rem;
  border: 1.5px solid var(--line); background: var(--paper); border-radius: 2px;
  transition: border-color .18s, color .18s; margin: 0;
}
.filefield__btn:hover { border-color: var(--blue); color: var(--blue); }
.filefield input[type="file"]:focus-visible + .filefield__btn { outline: 3px solid var(--red); outline-offset: 3px; }
.filefield__name { font-family: var(--mono); font-size: .8rem; color: var(--ink-soft); word-break: break-all; }
.filefield__name.is-set { color: var(--ch3); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .counters__grid { grid-template-columns: repeat(2, 1fr); }
  .counter:nth-child(2) { border-right: 0; }
  .counter:nth-child(1), .counter:nth-child(2) { border-bottom: 1px solid var(--line); }
  .ftr__grid { grid-template-columns: repeat(2, 1fr); }
  .mega__in { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .mega__cta { grid-column: 1 / -1; }
}


@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 78px 0 auto; background: var(--paper);
    flex-direction: column; align-items: stretch; gap: 0; padding: 1rem var(--gut) 2rem;
    border-bottom: 1px solid var(--line); transform: translateY(-8px);
    opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease;
    max-height: calc(100vh - 78px); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav > a { padding: .9rem 0; border-bottom: 1px solid var(--line-soft); font-size: 1.05rem; }
  .nav > a::after, .navdd__top::after { display: none; }
  .nav > a[aria-current="page"], .navdd__top[aria-current="page"] { color: var(--red-text); }
  .hdr__tools { margin-left: auto; }
  .hdr__tools .btn { display: none; }

  .hero__grid, .grid--split, .grid--split-even, .phero__grid, .ctaband__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 2rem 1fr; }
  .why__d { grid-column: 2; }
  .cap { grid-template-columns: 2.5rem 1fr; }
  .cap__spec { grid-column: 2; justify-self: start; }
  .layer { grid-template-columns: 1fr; gap: .9rem; }
  .layer__m { justify-content: flex-start; }
  .catnav { grid-template-columns: 1fr; }
  .pgroup__head { grid-template-columns: 1fr; }

  /* ============================================================
     MOBILE DROPDOWN - FIX untuk Produk & Pusat Pembelajaran
     ============================================================ */
  
  /* Setiap dropdown menjadi block dan full width */
  .navdd {
    display: block;
    width: 100%;
    position: relative;
  }
  
  /* Tombol dropdown di mobile */
  .navdd__top {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.05rem;
    cursor: pointer;
    background: none;
    border: none;
    border-radius: 0;
    color: var(--ink);
    font-weight: 500;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }
  
  /* Chevron icon berputar saat dropdown terbuka */
  .navdd__top .navdd__cv {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
  }
  .navdd.is-open .navdd__top .navdd__cv {
    transform: rotate(180deg);
  }

  /* Konten dropdown di mobile - menggunakan max-height untuk animasi smooth */
  .navdd .mega {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: none !important;
    border: 0 !important;
    background: transparent !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    min-width: auto !important;
  }
  
  /* Saat dropdown terbuka */
  .navdd.is-open .mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 800px;
    padding: 0.5rem 0 1rem 0 !important;
    transform: none !important;
  }
  
  /* Hilangkan hover bridge di mobile */
  .navdd .mega::before {
    display: none !important;
  }

  /* Layout konten dropdown di mobile - menjadi vertikal */
  .navdd .mega__in {
    grid-template-columns: 1fr !important;
    gap: 0.5rem;
  }
  
  .navdd .mega__col {
    border-right: 0 !important;
    padding: 0.5rem 0 0.25rem 0 !important;
    background: transparent !important;
  }
  
  .navdd .mega__cta {
    padding: 0.75rem 0 !important;
    background: transparent !important;
    border-top: 1px solid var(--line-soft);
    margin-top: 0.25rem;
  }
  
  /* Sembunyikan deskripsi di mobile untuk menghemat space */
  .navdd .mega__d {
    display: none !important;
  }
  
  /* Link di dalam dropdown */
  .navdd .mega__list a {
    padding: 0.4rem 0.6rem;
    margin-left: -0.6rem;
    font-size: 0.92rem;
  }
  
  .navdd .mega__list a em {
    font-size: 0.75rem;
    display: block;
    overflow: visible;
    -webkit-line-clamp: unset;
    line-clamp: unset;
  }
  
  .navdd .mega__h {
    font-size: 0.78rem;
  }
  
  /* Hilangkan underline di mobile */
  .navdd__top::after {
    display: none !important;
  }
  
  .nav > a::after {
    display: none !important;
  }
}





@media (max-width: 640px) {
  body { font-size: 1rem; }
  .hdr__logo img { height: 34px; }
  .hdr__logo-txt b, .hdr__logo-txt i { font-size: .84rem; }
  .ftr__logo img { height: 84px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .counters__grid { grid-template-columns: 1fr; }
  .counter { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .counter:last-child { border-bottom: 0; }
  .formrow { grid-template-columns: 1fr; }
  .ftr__grid { grid-template-columns: 1fr; }
  .ftr__btm { flex-direction: column; }
  .channels__labels { font-size: .6rem; }
  .channels__labels span:nth-child(2) { display: none; }
  .article__hero { aspect-ratio: 16/9; }
  .searchcount { width: 100%; margin-left: 0; }
  .wiz__steps { gap: .3rem; padding-bottom: 1.1rem; }
  .wiz__step { flex-direction: column; align-items: flex-start; gap: .3rem; font-size: .62rem; }
  .wiz__nav { flex-direction: column-reverse; align-items: stretch; }
  .wiz__nav .btn { justify-content: center; }
  .jobfacts { flex-direction: column; }
}

/* ---------- print ---------- */
@media print {
  .hdr, .ftr, .burger, .btn, .searchbox, .filters { display: none !important; }
  body { background: #fff; }
  .rv { opacity: 1; transform: none; }
}

/* ==========================================================================
   MEGA-DROPDOWN — defensive overrides
   The panel sits inside .nav, so it must opt out of the top-level nav styling.
   ========================================================================== */
.mega a {
  white-space: normal;
  overflow-wrap: break-word;
  font-size: inherit;
  font-weight: inherit;
}
.mega a::after { content: none !important; }

.mega__in { align-items: start; }
.mega__col { min-width: 0; }
.mega__list a { min-width: 0; }
.mega__list a em {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mega__h, .mega__d { overflow-wrap: break-word; }

/* never let the panel run past the bottom of the window */
.mega { max-height: calc(100vh - 110px); overflow-y: auto; }

@media (max-width: 900px) {
  .mega { max-height: none; overflow: visible; }
  .mega__list a em { -webkit-line-clamp: unset; line-clamp: unset; display: block; overflow: visible; }
}
