/* Native cross-document transition — Chrome/Edge crossfade old/new page
   instead of a blank flash on navigation. No-op in unsupported browsers. */
@view-transition {
  navigation: auto;
}

/* Slightly longer, eased crossfade instead of the browser's snappy
   linear default — reads as a "settle" rather than a hard cut. */
::view-transition-old(root) {
  animation: sbki-fade-out .32s cubic-bezier(.4,0,.2,1) both;
}
::view-transition-new(root) {
  animation: sbki-fade-in .32s cubic-bezier(.4,0,.2,1) both;
}
@keyframes sbki-fade-out {
  to { opacity: 0; }
}
@keyframes sbki-fade-in {
  from { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ── Variables ── */
:root {
  --navy:      #1a2e5a;
  --coral:     #E8412A;
  --gold:      #F5C800;
  --sky:       #4AABDB;
  --off-white: #F5F6F8;
  --white:     #ffffff;
  --gray:      #6B7280;
  --gray-dark: #374151;

  --font: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);

  --section-py: 80px;
  --container-max: 1200px;
  --container-px: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; color: var(--gray-dark); background: var(--white); line-height: 1.6; }

/* ── Page curtain (load reveal) ── */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  animation: page-curtain-lift .5s cubic-bezier(.65,0,.35,1) .05s both;
  pointer-events: none;
}
#navbar-scroll-sentinel {
  position: absolute;
  top: 80px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
@keyframes page-curtain-lift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .page-curtain { display: none; }
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* ── Container ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ── Tri-color stripe ── */
.stripe {
  display: block;
  height: 4px;
  width: 64px;
  background: linear-gradient(to right, var(--coral) 33.3%, var(--gold) 33.3% 66.6%, var(--sky) 66.6%);
  border-radius: 2px;
  margin: 12px 0 0;
}
.stripe--center { margin: 12px auto 0; }

/* ── Section heading ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.section-title--white { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 12px;
  max-width: 560px;
}
.section-sub--white { color: rgba(255,255,255,.75); }
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 16px rgba(245,200,0,.35); }
.btn--gold:hover { box-shadow: 0 8px 24px rgba(245,200,0,.45); }
.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.5); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--outline-navy { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--coral { background: var(--coral); color: var(--white); }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .28s;
  border-top: 3px solid transparent;
  position: relative;
  overflow: hidden;
}
/* Subtle tinted wash behind content */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .28s;
  pointer-events: none;
}
.card:hover { transform: translateY(-7px); }
.card:hover::before { opacity: 1; }

.card--coral { border-top-color: var(--coral); }
.card--coral::before { background: rgba(232,65,42,.035); }
.card--coral:hover { box-shadow: 0 12px 32px rgba(232,65,42,.18); }

.card--gold { border-top-color: var(--gold); }
.card--gold::before { background: rgba(245,200,0,.04); }
.card--gold:hover { box-shadow: 0 12px 32px rgba(245,200,0,.2); }

.card--sky { border-top-color: var(--sky); }
.card--sky::before { background: rgba(74,171,219,.04); }
.card--sky:hover { box-shadow: 0 12px 32px rgba(74,171,219,.18); }

.card--navy { border-top-color: var(--navy); }
.card--navy::before { background: rgba(26,46,90,.03); }
.card--navy:hover { box-shadow: 0 12px 32px rgba(26,46,90,.16); }

.card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: transform .28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.card:hover .card__icon { transform: scale(1.1); }
.card__icon--coral { background: rgba(232,65,42,.1); color: var(--coral); }
.card__icon--gold  { background: rgba(245,200,0,.18); color: #b08b00; }
.card__icon--sky   { background: rgba(74,171,219,.12); color: #2a8ab8; }
.card__icon--navy  { background: rgba(26,46,90,.08); color: var(--navy); }

.card__title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card__text { font-size: .9rem; color: var(--gray); line-height: 1.7; }

/* Underline slide-in link */
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
  position: relative;
  padding-bottom: 2px;
}
.card__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: currentColor;
  transition: width .25s cubic-bezier(0.4, 0, 0.2, 1);
}
.card__link:hover::after { width: 100%; }
.card--coral .card__link { color: var(--coral); }
.card--gold  .card__link { color: #b08b00; }
.card--sky   .card__link { color: #2a8ab8; }
.card--navy  .card__link { color: var(--navy); }

/* Checkmark list inside a card (e.g. scope-of-work bullets) */
.card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.card__list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray-dark);
  line-height: 1.5;
}
.card__list-item::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.5l2.7 2.7L12 5.5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 9px;
}
.card--center { text-align: center; }
.card--center .card__icon { margin-left: auto; margin-right: auto; }

.card--coral .card__list-item::before { background-color: var(--coral); }
.card--gold  .card__list-item::before { background-color: #b08b00; }
.card--sky   .card__list-item::before { background-color: #2a8ab8; }
.card--navy  .card__list-item::before { background-color: var(--navy); }

/* ── Avatar ── */
.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}
.avatar--lg { width: 96px; height: 96px; font-size: 1.8rem; }
.avatar--coral { border-color: var(--coral); }
.avatar--sky { border-color: var(--sky); }

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge--coral { background: rgba(232,65,42,.14); color: #c5301c; }
.badge--gold { background: rgba(245,200,0,.25); color: #7a5f00; }
.badge--sky { background: rgba(74,171,219,.16); color: #1c6388; }
.badge--navy { background: rgba(26,46,90,.1); color: var(--navy); }

/* ══════════════════════
   NAVBAR
══════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background .3s, box-shadow .3s;
  padding: 0 var(--container-px);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: relative;
}
.navbar__logo { position: relative; display: block; height: 40px; }
.navbar__logo-img { height: 40px; width: auto; display: block; }
.navbar__logo-img--dark { position: absolute; top: 0; left: 0; opacity: 0; }
.navbar.scrolled .navbar__logo-img--light { opacity: 0; }
.navbar.scrolled .navbar__logo-img--dark { opacity: 1; }
.navbar__logo-img--light, .navbar__logo-img--dark { transition: opacity .3s; }

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar__link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: var(--white);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.navbar.scrolled .navbar__link { color: var(--navy); }
.navbar__link:hover,
.navbar__link.active { color: var(--gold); }
.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link.active { color: var(--coral); background: rgba(232,65,42,.06); }

/* Dropdown */
.navbar__item { position: relative; }

/* Dropdown item escapes to navbar__inner as positioning context */
.navbar__item:has(.navbar__dropdown) { position: static; }

.navbar__item:hover .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar__dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.navbar__dropdown-toggle::after {
  content: '▾';
  font-size: .7rem;
  transition: transform .2s;
}
.navbar__item:hover .navbar__dropdown-toggle::after { transform: rotate(180deg); }

.navbar__dropdown {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  width: min(360px, calc(100vw - 48px));
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
.navbar__dropdown--mega {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  width: min(900px, calc(100vw - 48px));
}

/* Tri-color stripe at top of dropdown */
.navbar__dropdown::before {
  content: '';
  grid-column: 1 / -1;
  height: 3px;
  background: linear-gradient(to right,
    var(--coral) 33.3%,
    var(--gold)  33.3% 66.6%,
    var(--sky)   66.6%
  );
}

/* Dropdown inner padding per column */
.dropdown__category {
  padding: 20px 20px 24px;
  border-right: 1px solid var(--off-white);
}
.dropdown__category:last-child { border-right: none; }

.dropdown__cat-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--off-white);
}
/* Category title color — cycles the brand palette per column */
.dropdown__category:nth-child(1) .dropdown__cat-title { color: #c5301c; border-bottom-color: rgba(232,65,42,.3); }
.dropdown__category:nth-child(2) .dropdown__cat-title { color: #b08b00; border-bottom-color: rgba(245,200,0,.3); }
.dropdown__category:nth-child(3) .dropdown__cat-title { color: #1c6388; border-bottom-color: rgba(74,171,219,.3); }
.dropdown__category:nth-child(4) .dropdown__cat-title { color: var(--navy); border-bottom-color: rgba(26,46,90,.15); }
.dropdown__category:nth-child(5) .dropdown__cat-title { color: #c5301c; border-bottom-color: rgba(232,65,42,.3); }

.dropdown__link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
  transition: padding-left .15s;
}
.dropdown__link:hover { padding-left: 5px; }
.dropdown__link-acr {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .02em;
}
.dropdown__category:nth-child(1) .dropdown__link-acr { color: #c5301c; }
.dropdown__category:nth-child(2) .dropdown__link-acr { color: #b08b00; }
.dropdown__category:nth-child(3) .dropdown__link-acr { color: #1c6388; }
.dropdown__category:nth-child(4) .dropdown__link-acr { color: var(--navy); }
.dropdown__category:nth-child(5) .dropdown__link-acr { color: #c5301c; }
.dropdown__link-name {
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray);
  line-height: 1.4;
}
.dropdown__link:hover .dropdown__link-name { color: var(--gray-dark); }

/* Accreditation partners — footer strip of the mega-menu */
.dropdown__partners {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-top: 1px solid rgba(26,46,90,.08);
}
.dropdown__partners-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  flex-shrink: 0;
  margin-right: 4px;
}
.dropdown__partners-badge {
  background: var(--white);
  border-radius: 8px;
  padding: 6px 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  transition: transform .2s, box-shadow .2s;
}
.dropdown__partners-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.dropdown__partners img {
  height: 30px;
  width: auto;
  display: block;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background .3s, transform .3s, opacity .3s;
}
.navbar.scrolled .navbar__hamburger span { background: var(--navy); }
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav — right-side drawer */
.navbar__mobile {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  z-index: 1001;
  background: var(--white);
  box-shadow: -8px 0 48px rgba(0,0,0,.18);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s .38s;
  display: block;
}
.navbar__mobile.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .38s cubic-bezier(.4,0,.2,1), visibility 0s 0s;
}

/* Tri-color stripe at drawer top */
.navbar__mobile::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(to right, var(--coral) 33.3%, var(--gold) 33.3% 66.6%, var(--sky) 66.6%);
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Drawer header */
.navbar__mobile-header {
  background: var(--navy);
  padding: 20px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar__mobile-header img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.navbar__mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  color: var(--white);
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font);
}
.navbar__mobile-close:hover { background: rgba(255,255,255,.22); }

/* Drawer body */
.navbar__mobile-body { padding: 8px 24px 40px; }

.mobile-link {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--off-white);
  transition: color .15s, padding-left .15s;
}
.mobile-link:hover, .mobile-link.active { color: var(--coral); padding-left: 4px; }
.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--off-white);
  cursor: pointer;
  transition: color .15s;
}
.mobile-dropdown-toggle:hover { color: var(--coral); }
.mobile-dropdown-toggle .arrow { transition: transform .25s; font-size: .8rem; }
.mobile-dropdown-toggle.open .arrow { transform: rotate(180deg); }
.mobile-sub {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.mobile-sub.open { grid-template-rows: 1fr; }
.mobile-sub-inner { overflow: hidden; padding: 0 0 0 16px; }
.mobile-sub.open .mobile-sub-inner { padding: 8px 0 8px 16px; }
.mobile-sub-cat { font-size: .7rem; font-weight: 700; text-transform: uppercase; color: var(--gray); letter-spacing: .1em; margin: 10px 0 4px; }
.mobile-sub-link { display: block; padding: 6px 0; font-size: .875rem; color: var(--navy); transition: color .15s, padding-left .15s; }
.mobile-sub-link:hover { color: var(--coral); padding-left: 4px; }

/* Nested category accordion inside the Sertifikasi drawer panel */
.mobile-cat-toggle {
  padding: 11px 0 11px 4px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--off-white);
}
.mobile-cat-toggle .arrow { font-size: .7rem; }
.mobile-sub--nested {
  padding-left: 4px;
}
.mobile-sub--nested .mobile-sub-inner { padding: 4px 0 4px 12px; }
.mobile-sub--nested .mobile-sub-link { font-size: .82rem; padding: 7px 0; }

/* Accreditation partners inside the mobile Sertifikasi panel */
.mobile-sub__partners {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 4px 10px;
  margin-top: 10px;
  border-top: 1px solid var(--off-white);
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.mobile-sub__partners-label {
  width: 100%;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 4px;
}
.mobile-sub__partners-badge {
  background: var(--white);
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}
.mobile-sub__partners img {
  height: 26px;
  width: auto;
  display: block;
}

/* Backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,20,50,.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .38s, visibility 0s .38s;
}
.nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .38s, visibility 0s 0s;
}

/* ══════════════════════
   HERO
══════════════════════ */
.hero {
  background: var(--navy);
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px var(--container-px) 60px;
}
.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero__text {
  position: relative;
  padding-left: 24px;
}

/* Vertical tri-color stripe — brand signature */
.hero__text::before {
  content: '';
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to bottom,
    var(--coral)  33.3%,
    var(--gold)   33.3% 66.6%,
    var(--sky)    66.6%
  );
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__headline {
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero__headline em {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero image visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero image wrap — contains main img + floating card */
.hero__img-wrap {
  position: relative;
  display: inline-block;
}

/* Main image: slow organic drift */
.hero__img-main {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 22px;
  object-fit: cover;
  animation: hero-drift 8s ease-in-out infinite;
}

@keyframes hero-drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* Floating card: faster, opposite phase, counter-rotate */
.hero__float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  animation: card-drift 5s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes card-drift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hero__float-card-icon {
  font-size: 1.4rem;
  width: 40px; height: 40px;
  background: rgba(245,200,0,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__float-card-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.hero__float-card-label {
  font-size: .72rem;
  color: var(--gray);
  margin-top: 2px;
  white-space: nowrap;
}

/* ══════════════════════
   PAGE HERO (inner pages)
══════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 140px var(--container-px) 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__inner { max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 1; }
.page-hero .section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.page-hero .section-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: currentColor;
  transform: rotate(45deg);
}
.page-hero__title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero__sub { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto; }
.page-hero__stripe { margin: 16px auto 0; }

/* Decorative watermark */
.page-hero::before {
  content: attr(data-watermark);
  position: absolute;
  bottom: -20px; right: -20px;
  font-size: clamp(80px, 15vw, 140px);
  font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.02em;
}

/* ══════════════════════
   STATS
══════════════════════ */
.stats { background: var(--white); padding: 48px var(--container-px); }
.stats__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat__number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.stat__label { font-size: .85rem; color: var(--gray); margin-top: 4px; }
.stat__divider { width: 1px; background: var(--off-white); display: none; }

/* ══════════════════════
   SECTIONS
══════════════════════ */
.section { padding: var(--section-py) var(--container-px); }
.section--white { background: var(--white); }
.section--off-white {
  background-color: var(--off-white);
  background-image: radial-gradient(circle, rgba(26,46,90,.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.section--navy { background: var(--navy); }
.section--coral { background: var(--coral); }

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }


/* ══════════════════════
   TESTIMONIALS
══════════════════════ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: min-content;
  gap: 24px;
  align-items: start;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s cubic-bezier(.25,.46,.45,.94), box-shadow .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  position: absolute;
  top: 12px; left: 24px;
  line-height: 1;
  opacity: .6;
  transition: transform .3s ease, opacity .3s ease;
}
.testimonial-card:hover::before {
  transform: scale(1.15);
  opacity: .85;
}
.testimonial-card__text { font-size: .9rem; color: var(--gray); line-height: 1.7; margin-top: 24px; }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-card__name { font-weight: 700; font-size: .875rem; color: var(--navy); }
.testimonial-card__role { font-size: .75rem; color: var(--gray); }

/* ══════════════════════
   CLIENTS MARQUEE
══════════════════════ */
.clients { padding-bottom: 64px; }
.clients .section-header { margin-bottom: 40px; }
.clients-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.clients-row {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: clients-scroll-left 42s linear infinite;
}
.clients-row--reverse {
  animation-name: clients-scroll-right;
  animation-duration: 38s;
}
.clients-marquee:hover .clients-row { animation-play-state: paused; }
@keyframes clients-scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes clients-scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.client-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 84px;
  flex-shrink: 0;
}
.client-logo {
  max-height: 84px;
  max-width: 132px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: filter .25s ease, transform .25s ease;
}
.client-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-3px);
}

/* ══════════════════════
   CTA BANNER
══════════════════════ */
.cta-banner {
  background: var(--coral);
  padding: 64px var(--container-px);
  text-align: center;
}
.cta-banner__inner { max-width: 600px; margin: 0 auto; }
.cta-banner__title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner__sub { color: rgba(255,255,255,.85); margin-bottom: 28px; }

/* ══════════════════════
   STATS STRIP
══════════════════════ */
.stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 40px;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 36px;
  flex: 1;
  min-width: 140px;
}
.stats-strip__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.stats-strip__num sup {
  font-size: .5em;
  font-weight: 700;
  color: var(--gold);
  vertical-align: super;
}
.stats-strip__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: 8px;
}
.stats-strip__divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* ══════════════════════
   ABOUT SPLIT
══════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-split__text {}
.about-split__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.badge-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(26,46,90,.08);
  color: var(--navy);
  border: 1px solid rgba(26,46,90,.15);
  white-space: nowrap;
}
.about-split__cta {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .about-split__cta {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
  }
  .about-split__badge {
    gap: 8px;
  }
  .badge-tag {
    font-size: .7rem;
    padding: 6px 12px;
  }
}
.about-split__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ── Credential Card ── */
.cred-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  width: 100%;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(26,46,90,.22);
}
.cred-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 0 var(--radius-lg) 0 100%;
  opacity: .12;
}
.cred-card__header {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}
.cred-card__since-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  padding-bottom: 6px;
}
.cred-card__year {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.04em;
}
.cred-card__rule {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 18px;
}
.cred-card__stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 22px;
}
.cred-card__stat {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cred-card__stat-value {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  min-width: 54px;
  line-height: 1;
}
.cred-card__stat-value sup {
  font-size: .65em;
  color: var(--gold);
  font-weight: 700;
}
.cred-card__stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.58);
  font-weight: 500;
  line-height: 1.35;
}
.cred-card__footer {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.cred-card__partner-eyebrow {
  font-size: .6rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.cred-card__partner-name {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  line-height: 1.45;
}

/* ══════════════════════
   SERTIFIKASI INTERNASIONAL
══════════════════════ */
.sertif-section {
  padding: 72px var(--container-px);
  background: var(--navy);
}
.sertif-header {
  text-align: center;
  margin-bottom: 44px;
}
.sertif-eyebrow {
  color: var(--gold) !important;
}
.sertif-title {
  font-size: clamp(1.65rem, 5.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 18px;
}
.sertif-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid — single column on mobile */
.sertif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 44px;
}

/* Card — credential badge style */
.sertif-card {
  --accent: var(--gold);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px 20px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-left: 3px solid transparent;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
/* Each credential is colour-coded by domain, echoing the tri-colour
   coral/gold/sky split used in the site's section divider. */
.sertif-card:nth-child(3n+1) { --accent: var(--coral); }
.sertif-card:nth-child(3n+2) { --accent: var(--gold); }
.sertif-card:nth-child(3n+3) { --accent: var(--sky); }

/* Card body — vertical stack */
.sertif-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.sertif-card__acronym {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: .04em;
  line-height: 1;
  display: inline-block;
}
.sertif-card__name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.sertif-card__domain {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

.sertif-cta {
  text-align: center;
}

/* ≥540px — 2 columns */
@media (min-width: 540px) {
  .sertif-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .sertif-grid .sertif-card:last-child {
    grid-column: 1 / -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ≥900px — 3 columns. With 5 cards, a plain 3-col grid leaves a lopsided
   row of 2 hugging the left edge, so the grid uses 6 tracks and the final
   row's pair is placed to span the centre 4 — keeping both rows balanced. */
@media (min-width: 900px) {
  .sertif-section { padding: 88px var(--container-px); }
  .sertif-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
  }
  .sertif-grid .sertif-card {
    grid-column: span 2;
    max-width: none;
    margin: 0;
  }
  .sertif-grid .sertif-card:nth-child(4) {
    grid-column: 2 / 4;
  }
  .sertif-grid .sertif-card:nth-child(5) {
    grid-column: 4 / 6;
  }
  .sertif-card:hover {
    transform: translateY(-3px) translateX(0);
  }
  .sertif-card:hover .sertif-card__chevron {
    transform: translateX(0);
  }
}

/* ══════════════════════
   CLIENTS STRIP (legacy)
══════════════════════ */
.clients { padding: 48px var(--container-px); background: var(--white); }
.clients__title { text-align: center; font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); margin-bottom: 28px; }
.clients__strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.client-badge {
  padding: 10px 20px;
  border: 2px solid var(--off-white);
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}

/* ══════════════════════
   TEAM CARDS
══════════════════════ */
.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-top: 16px; }
.team-card__role { font-size: .85rem; color: var(--gray); margin-top: 4px; }
.team-card--featured {
  flex-direction: row;
  text-align: left;
  gap: 24px;
  align-items: flex-start;
}
.team-card--featured .avatar { width: 96px; height: 96px; font-size: 1.8rem; flex-shrink: 0; }
.team-card--featured .team-card__name { margin-top: 0; font-size: 1.25rem; }

/* ── AAPM partner strip ── */
.partner-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  margin-bottom: 40px;
}
.partner-strip__mark {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--navy);
  background: var(--gold);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
}
.partner-strip__text { color: rgba(255,255,255,.85); font-size: .9rem; line-height: 1.6; }
.partner-strip__text strong { color: var(--white); }

/* ── Instructor cards (compact avatar header, symmetric) ── */
.instructor-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--coral);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform .25s, box-shadow .25s;
}
.instructor-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.instructor-card:nth-child(4n+2) { border-top-color: var(--gold); }
.instructor-card:nth-child(4n+3) { border-top-color: var(--sky); }
.instructor-card:nth-child(4n+4) { border-top-color: var(--navy); }

.instructor-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.instructor-card__photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--off-white);
  border: 3px solid var(--coral);
}
.instructor-card:nth-child(4n+2) .instructor-card__photo { border-color: var(--gold); }
.instructor-card:nth-child(4n+3) .instructor-card__photo { border-color: var(--sky); }
.instructor-card:nth-child(4n+4) .instructor-card__photo { border-color: var(--navy); }
.instructor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instructor-card__name { font-weight: 700; font-size: .85rem; color: var(--navy); line-height: 1.4; }
.instructor-card__role {
  font-size: .8rem;
  font-weight: 700;
  color: var(--coral);
}
.instructor-card:nth-child(4n+2) .instructor-card__role { color: #8a6d00; }
.instructor-card:nth-child(4n+3) .instructor-card__role { color: #1c6388; }
.instructor-card:nth-child(4n+4) .instructor-card__role { color: var(--navy); }
.instructor-card__desc { font-size: .85rem; color: var(--gray); line-height: 1.7; margin-top: 10px; }

.instructor-note {
  text-align: center;
  font-size: .9rem;
  font-style: italic;
  color: var(--gray);
  max-width: 680px;
  margin: 40px auto 0;
  line-height: 1.7;
}

/* ── Jadwal tabs + poster gallery (/jadwal) ── */
.jadwal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.jadwal-tab {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--off-white);
  border-radius: 999px;
  padding: 8px 18px;
  transition: background .2s, color .2s;
}
.jadwal-tab:hover { background: var(--sky); color: var(--white); }
.jadwal-tab.is-active { background: var(--coral); color: var(--white); }

.jadwal-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.jadwal-poster {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.jadwal-poster:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.jadwal-poster img { width: 100%; height: auto; display: block; }
.jadwal-poster__caption {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  padding: 12px 16px;
}
.jadwal-cta { display: inline-block; }

@media (max-width: 900px) {
  .jadwal-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .jadwal-gallery { grid-template-columns: 1fr; }
}

/* ── Trainer cards ── */
.trainer-grid { grid-template-columns: repeat(2, 1fr); }
.trainer-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  transition: transform .25s, box-shadow .25s;
}
.trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.trainer-card__head { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.trainer-card__name { font-weight: 700; font-size: 1.05rem; color: var(--navy); line-height: 1.3; }
.trainer-card__creds {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent);
  margin-top: 4px;
  text-transform: uppercase;
}
.trainer-card__role { font-size: .85rem; font-weight: 600; color: var(--gray-dark); margin-bottom: 12px; }
.trainer-card__program { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.trainer-card__desc { font-size: .85rem; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.trainer-card__desc em { color: var(--gray-dark); font-style: normal; font-weight: 600; }
.trainer-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }
.expertise-tag {
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-dark);
  background: var(--off-white);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ══════════════════════
   TIMELINE
══════════════════════ */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--off-white);
  transform: translateX(-50%);
}
.timeline__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}
.timeline__item:nth-child(odd) .timeline__content { grid-column: 3; }
.timeline__item:nth-child(odd) .timeline__empty { grid-column: 1; }
.timeline__item:nth-child(even) .timeline__content { grid-column: 1; text-align: right; }
.timeline__item:nth-child(even) .timeline__empty { grid-column: 3; }
.timeline__dot {
  grid-column: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
  position: relative;
  z-index: 1;
}
.timeline__year { font-size: .75rem; font-weight: 700; color: var(--coral); margin-bottom: 4px; }
.timeline__title { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.timeline__desc { font-size: .875rem; color: var(--gray); }

/* ══════════════════════
   CONTACT FORM
══════════════════════ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--off-white);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-family: var(--font);
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}
.form-input:focus { border-color: var(--sky); }
textarea.form-input { resize: vertical; min-height: 120px; }

.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: rgba(26,46,90,.06);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--navy);
}
.contact-info-text strong { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); }
.contact-info-text span { font-size: .875rem; color: var(--gray); }
.map-placeholder {
  background: var(--off-white);
  border-radius: var(--radius-md);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .875rem;
  margin-top: 24px;
  border: 2px dashed #ddd;
}

/* ══════════════════════
   SERTIFIKASI
══════════════════════ */
.cert-category { margin-bottom: 56px; }
.cert-category__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-category__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--off-white);
}
.cert-category__count { font-size: .8rem; color: var(--gray-dark); margin-bottom: 20px; }

.cert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-card__name { font-weight: 700; font-size: 1rem; color: var(--navy); margin: 10px 0 6px; }
.cert-card__desc { font-size: .85rem; color: var(--gray-dark); flex: 1; }
.cert-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--coral);
  margin-top: 16px;
  transition: gap .2s;
}
.cert-card__link:hover { gap: 10px; }

/* Detail page */
.cert-detail-header {
  background: var(--navy);
  padding: 140px var(--container-px) 60px;
  position: relative;
  overflow: hidden;
}
.cert-detail-header__inner { max-width: var(--container-max); margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); margin: 0 6px; }
.cert-detail-title {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--white);
  margin: 12px 0;
}

.checklist { list-style: none; }
.checklist li {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .9rem;
  color: var(--gray-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--off-white);
}
.checklist li::before {
  content: '✓';
  font-weight: 700;
  color: var(--gold);
  background: rgba(245,200,0,.15);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

/* Hero / badge placeholder images */
.cert-hero-photo {
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--off-white);
}
.cert-hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.cert-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}
.cert-badge-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.cert-badge-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cert-badge-row__text {
  flex: 1 1 220px;
  min-width: 0;
  font-size: .85rem;
  color: var(--gray);
  line-height: 1.6;
}
@media (max-width: 480px) {
  .cert-badge-row { flex-direction: column; text-align: center; }
  .cert-badge-circle { width: 120px; height: 120px; }
  .cert-badge-row__text { flex-basis: auto; }
}

/* Benefit grid */
.benefit-grid { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.benefit-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.benefit-item__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(232,65,42,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.benefit-item__text { font-size: .875rem; color: var(--gray-dark); line-height: 1.6; }
.benefit-item__text strong { color: var(--navy); }
@media (min-width: 600px) {
  .benefit-grid { display: grid; grid-template-columns: 1fr 1fr; }
}

/* Trainer note strip */
.cert-trainer-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 4px;
}
.cert-trainer-strip__badge {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.cert-trainer-strip__badge img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cert-trainer-strip .checklist { flex: 1; }

/* FAQ — native disclosure, zero JS */
.faq-item {
  border-bottom: 1px solid var(--off-white);
  padding: 14px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gray);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: .85rem; color: var(--gray); margin-top: 10px; line-height: 1.7; }

/* Related certifications (sidebar) */
.related-cert-list { display: flex; flex-direction: column; gap: 12px; }

.cert-cta-box {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  position: sticky;
  top: 96px;
}
.cert-cta-box__title { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.cert-cta-box__sub { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 20px; }
.cert-cta-box__btn { width: 100%; justify-content: center; }
.cert-cta-box__btn + .cert-cta-box__btn { margin-top: 12px; }
.cert-cta-box__perks { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.cert-cta-box__perks-label { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.cert-cta-box__perks ul { font-size: .8rem; color: rgba(255,255,255,.75); line-height: 2; }

.related-cert-list { margin-top: 20px; }
.related-cert-list__heading { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.related-cert-list .cert-card { display: block; padding: 14px; }
.related-cert-list .cert-card .badge { font-size: .7rem; }
.related-cert-list .cert-card__title { font-size: .875rem; font-weight: 700; color: var(--navy); margin-top: 6px; }

/* ══════════════════════
   PORTFOLIO FILTER
══════════════════════ */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--off-white);
  cursor: pointer;
  transition: background .2s, color .2s;
  border: none;
  font-family: var(--font);
}
.filter-tab.active, .filter-tab:hover { background: var(--navy); color: var(--white); }

.portfolio-card {
  --accent: var(--coral);
  background: var(--white);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--accent);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.portfolio-card:nth-child(3n+1) { --accent: var(--coral); }
.portfolio-card:nth-child(3n+2) { --accent: var(--gold); }
.portfolio-card:nth-child(3n+3) { --accent: var(--sky); }
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.portfolio-card__img {
  height: 180px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gray);
}
.portfolio-card__photo {
  height: 200px;
  overflow: hidden;
  background: var(--off-white);
}
.portfolio-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.portfolio-card:hover .portfolio-card__photo img { transform: scale(1.06); }
.portfolio-card__body { padding: 20px; }
.portfolio-card__title { font-weight: 700; color: var(--navy); margin: 8px 0 4px; line-height: 1.35; }
.portfolio-card__client { font-size: .8rem; color: var(--gray); }
.portfolio-card__desc { font-size: .8rem; color: var(--gray); margin-top: 8px; line-height: 1.6; }

/* ── Portfolio pagination ── */
.portfolio-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  font-family: var(--font);
}
.portfolio-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.portfolio-pagination a.page-numbers:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.portfolio-pagination .page-numbers.current {
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
  cursor: default;
}
.portfolio-pagination .page-numbers.dots {
  background: transparent;
  box-shadow: none;
  color: var(--gray);
  min-width: auto;
  padding: 0 4px;
}
.portfolio-pagination .page-numbers.next,
.portfolio-pagination .page-numbers.prev {
  background: var(--gold);
  color: var(--navy);
  padding: 0 18px;
  box-shadow: 0 4px 16px rgba(245,200,0,.35);
}
.portfolio-pagination .page-numbers.next:hover,
.portfolio-pagination .page-numbers.prev:hover {
  box-shadow: 0 8px 24px rgba(245,200,0,.45);
}

/* ── Client roster ── */
.client-roster { display: flex; flex-direction: column; gap: 32px; }
.client-category__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
}
.client-category__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--coral);
}
.client-category:nth-of-type(2) .client-category__dot { background: var(--gold); }
.client-category:nth-of-type(3) .client-category__dot { background: var(--sky); }
.client-category__label { font-size: 1rem; font-weight: 700; color: var(--navy); }
.client-category__count {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray);
  background: var(--off-white);
  padding: 3px 10px;
  border-radius: 50px;
}
.client-chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.client-chip {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-dark);
  background: var(--off-white);
  border: 1px solid transparent;
  padding: 6px 14px;
  border-radius: 50px;
  transition: background .2s, color .2s, border-color .2s;
}
.client-category:nth-of-type(1) .client-chip:hover { background: rgba(232,65,42,.08); color: var(--coral); border-color: rgba(232,65,42,.25); }
.client-category:nth-of-type(2) .client-chip:hover { background: rgba(245,200,0,.12); color: #8a6d00; border-color: rgba(245,200,0,.35); }
.client-category:nth-of-type(3) .client-chip:hover { background: rgba(74,171,219,.1); color: #1c6388; border-color: rgba(74,171,219,.3); }

/* ══════════════════════
   PROCESS STEPS
══════════════════════ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--coral), var(--gold), var(--sky));
}
.step { text-align: center; padding: 0 16px; position: relative; }
.step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--navy);
}
.step:nth-child(1) .step__num { background: var(--coral); box-shadow: 0 0 0 3px var(--coral); }
.step:nth-child(2) .step__num { background: #c49e00; box-shadow: 0 0 0 3px #c49e00; }
.step:nth-child(3) .step__num { background: var(--sky); box-shadow: 0 0 0 3px var(--sky); }
.step:nth-child(4) .step__num { background: var(--navy); box-shadow: 0 0 0 3px var(--navy); }
.step__title { font-weight: 700; font-size: .95rem; color: var(--navy); margin-bottom: 8px; }
.step__desc { font-size: .825rem; color: var(--gray); }

/* ══════════════════════
   FOOTER
══════════════════════ */
.footer {
  background: var(--navy);
  padding: 64px var(--container-px) 32px;
  color: rgba(255,255,255,.75);
}
.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.footer__logo img { display: block; height: 40px; width: auto; }
.footer__about { font-size: .875rem; line-height: 1.7; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: background .2s;
  color: var(--white);
}
.footer__social:hover { background: var(--gold); color: var(--navy); }
.footer__heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--white); margin-bottom: 16px; }
.footer__link { display: block; font-size: .875rem; color: rgba(255,255,255,.65); padding: 4px 0; transition: color .2s; }
.footer__link:hover { color: var(--gold); }
.footer__bottom {
  max-width: var(--container-max);
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  flex-wrap: wrap;
  gap: 12px;
}

/* ══════════════════════
   WHATSAPP FLOAT
══════════════════════ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 998;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), box-shadow .2s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(37,211,102,.55);
}
.wa-float:active { transform: scale(.95); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}

@media (max-width: 480px) {
  .wa-float { width: 50px; height: 50px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
  .wa-float svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; opacity: 0; }
  .wa-float, .wa-float:hover, .wa-float:active { transition: none; transform: none; }
}

/* ══════════════════════
   RESPONSIVE — MOBILE FIRST
══════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .navbar__links { display: none; }
  .navbar__hamburger { display: flex; }

  .hero__inner { grid-template-columns: 1fr; text-align: left; }
  .hero__visual { order: -1; }
  .hero__text { padding-left: 16px; }
  .hero__text::before { width: 3px; }
  .hero__ctas { justify-content: flex-start; }
  .hero__sub { margin-left: 0; margin-right: 0; }
  .hero__img-main { max-width: 100%; }
  .hero__float-card { left: 0; bottom: -16px; padding: 10px 14px; }
  .hero__float-card-num { font-size: .95rem; }
  .hero__img-wrap { max-width: 360px; width: 100%; }

  .stats__inner { grid-template-columns: repeat(2, 1fr); }

  .grid-2, .grid-3, .grid-4, .testimonial-grid { grid-template-columns: 1fr; }

  .partner-strip { flex-direction: column; align-items: flex-start; text-align: left; gap: 12px; }
  .trainer-card__head { flex-wrap: wrap; }

  .sertif-header { text-align: left; }
  .sertif-sub { margin-left: 0; margin-right: 0; }

  .section-header--mobile-left { text-align: left; }
  .section-header--mobile-left .stripe--center { margin-left: 0; }
  .section-header--mobile-left .section-sub { margin-left: 0; margin-right: 0; }

  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
  .step { text-align: left; display: flex; gap: 16px; align-items: flex-start; padding: 0; }
  .step__num { flex-shrink: 0; margin: 0; }

  .timeline::before { left: 20px; }
  .timeline__item { grid-template-columns: auto 1fr; }
  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content { grid-column: 2; text-align: left; }
  .timeline__dot { grid-column: 1; }
  .timeline__empty { display: none; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .team-card--featured { flex-direction: column; align-items: center; text-align: center; }

  .cert-detail-body { flex-direction: column; }
  .cert-cta-box { position: static; }

  .stats-strip { gap: 0; }
  .stats-strip__item { padding: 20px 16px; min-width: 110px; }
  .stats-strip__divider { height: 40px; }

  .about-split { grid-template-columns: 1fr; gap: 32px; }
  .about-split__visual { order: -1; }
  .cred-card { max-width: 100%; }

  /* Clients marquee — no hover on touch, so logos run in full colour
     and the scroll itself carries the "alive" feeling instead. */
  .clients-row { gap: 32px; animation-duration: 22s; }
  .clients-row--reverse { animation-duration: 20s; }
  .client-logo-box { width: 104px; height: 60px; }
  .client-logo, .client-logo:hover {
    max-height: 60px;
    max-width: 104px;
    filter: grayscale(0) opacity(.85);
    transform: none;
  }

  .page-hero { padding: 104px var(--container-px) 56px; }
  .card { padding: 24px; }
  .cta-banner { padding: 48px var(--container-px); }

  .portfolio-card__photo { height: 180px; }
  .portfolio-pagination { gap: 6px; margin-top: 32px; }
  .portfolio-pagination .page-numbers { min-width: 36px; height: 36px; padding: 0 10px; font-size: .8rem; }
  .portfolio-pagination .page-numbers.next,
  .portfolio-pagination .page-numbers.prev { padding: 0 14px; }
  .client-roster { gap: 24px; }
  .client-chip { font-size: .76rem; padding: 5px 12px; }
}

@media (max-width: 480px) {
  :root { --container-px: 16px; }
  .stats__inner { grid-template-columns: 1fr 1fr; }
  .hero__headline { font-size: 1.9rem; }
  .page-hero { padding: 92px var(--container-px) 48px; }
  .page-hero__sub { font-size: .9rem; }
  .card { padding: 20px; }
}

/* ── Pagination (Artikel) ── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--off-white);
  color: var(--navy);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.pagination .page-numbers:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}
.pagination .page-numbers.current {
  background: var(--navy);
  color: var(--white);
}
.pagination .page-numbers.dots {
  background: transparent;
}

/* ── Editable content (sertifikasi the_content) ──
   Styling tied to the tag itself instead of inline style="",
   so it survives edits / heading-level changes / non-admin saves
   that strip inline style attributes. */
.entry-content {
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
}
.entry-content * {
  max-width: 100%;
}
.entry-content h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 12px;
}
.entry-content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 12px;
}
.entry-content p:not([class]) {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.8;
}
.entry-content p:not([class]) + p:not([class]) {
  margin-top: 14px;
}
.entry-content ul:not([class]) {
  list-style: none;
  padding-left: 0;
  color: var(--gray);
  font-size: .9rem;
}
.entry-content ul:not([class]) li {
  position: relative;
  padding: 10px 0 10px 22px;
  line-height: 1.7;
  border-bottom: 1px solid var(--off-white);
}
.entry-content ul:not([class]) li:last-child {
  border-bottom: none;
}
.entry-content ul:not([class]) li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--coral);
}
.entry-content ul:not([class]) li > b:first-child {
  color: var(--navy);
}
.entry-content blockquote {
  margin: 0 0 16px;
  padding: 16px 20px;
  border-left: 3px solid var(--coral);
  background: var(--off-white);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .95rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
}
.entry-content .stripe {
  margin-bottom: 20px;
}
.entry-content > div + div {
  margin-top: 36px;
}

/* ── Hero entry sequence ── */
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hero-fade-right {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes hero-bar-grow {
  from { transform: scaleY(0); transform-origin: top; }
  to   { transform: scaleY(1); transform-origin: top; }
}

/* Tri-color bar grows first */
.hero__text::before {
  animation: hero-bar-grow .5s cubic-bezier(.4,0,.2,1) .1s both;
}

.hero-enter-1 { animation: hero-fade-up .55s cubic-bezier(.4,0,.2,1) .25s both; }
.hero-enter-2 { animation: hero-fade-up .55s cubic-bezier(.4,0,.2,1) .42s both; }
.hero-enter-3 { animation: hero-fade-up .55s cubic-bezier(.4,0,.2,1) .58s both; }
.hero-enter-4 { animation: hero-fade-up .55s cubic-bezier(.4,0,.2,1) .72s both; }
.hero-enter-img  { animation: hero-fade-right .65s cubic-bezier(.4,0,.2,1) .35s both; }
.hero-enter-card { animation: hero-fade-up .5s cubic-bezier(.4,0,.2,1) .85s both; }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Swoosh float ── */
@keyframes swoosh-float {
  0%, 100% { transform: rotate(-18deg) translateY(0); }
  50%       { transform: rotate(-18deg) translateY(-10px); }
}
@keyframes swoosh-float-gold {
  0%, 100% { transform: rotate(-22deg) translateY(0); }
  50%       { transform: rotate(-22deg) translateY(-14px); }
}
@keyframes swoosh-float-sky {
  0%, 100% { transform: rotate(-26deg) translateY(0); }
  50%       { transform: rotate(-26deg) translateY(-8px); }
}

.swoosh__ring--coral { animation: swoosh-float 6s ease-in-out infinite; }
.swoosh__ring--gold  { animation: swoosh-float-gold 8s ease-in-out infinite; }
.swoosh__ring--sky   { animation: swoosh-float-sky 7s ease-in-out 1s infinite; }

/* ── Pulse glow ── */
@keyframes pulse-glow {
  0%, 100% { opacity: .4; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: .7; transform: translate(-50%, -50%) scale(1.15); }
}
.swoosh__glow { animation: pulse-glow 4s ease-in-out infinite; }

/* ── Counter ── */
.stat-number { transition: none; }

/* ── Nav underline slide ── */
@keyframes underline-in {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── Dropdown fade ── */
.navbar__dropdown {
  animation: none;
}


/* ── Cred card stat counter fade-up ── */
@keyframes stat-in {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal.visible .cred-card__stat:nth-child(1) { animation: stat-in .35s ease .2s both; }
.reveal.visible .cred-card__stat:nth-child(2) { animation: stat-in .35s ease .35s both; }
.reveal.visible .cred-card__stat:nth-child(3) { animation: stat-in .35s ease .5s both; }
.reveal.visible .cred-card__footer            { animation: stat-in .35s ease .65s both; }

/* ── Badge tag slide-in ── */
@keyframes badge-slide-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.badge-tag--anim {
  opacity: 0;
  animation: badge-slide-up .4s ease .9s both;
}
.badge-tag--anim-2 {
  animation-delay: 1.1s;
}

/* ── Mobile card enhancements ── */
@media (max-width: 768px) {
  /* More dramatic entry translate so stagger is visible */
  .reveal {
    transform: translateY(40px);
  }

  /* Wider stagger gaps so cards visibly enter one-by-one */
  .reveal-delay-1 { transition-delay: .15s; }
  .reveal-delay-2 { transition-delay: .30s; }
  .reveal-delay-3 { transition-delay: .45s; }

  /* Icon pops in with spring when card becomes visible */
  .card .card__icon {
    transform: scale(0.55);
    opacity: 0;
    transition: transform .42s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity .25s ease;
  }
  .card.visible .card__icon {
    transform: scale(1);
    opacity: 1;
    transition-delay: .18s;
  }

  /* Physical tap feedback */
  .card:active {
    transform: scale(0.97);
    transition: transform .1s ease;
  }

  /* Show link underline always on mobile (no hover) */
  .card__link::after {
    width: 100%;
  }

  /* Stats items: spring pop when visible */
  .stats-strip__item {
    transform: translateY(40px) scale(0.92);
    transition: opacity .5s ease, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .stats-strip__item.visible {
    transform: translateY(0) scale(1);
  }

  /* Since circle: scale-in spring */
  .about-split__since {
    transform: scale(0.75);
    opacity: 0;
    transition: transform .6s cubic-bezier(0.34, 1.56, 0.64, 1) .2s,
                opacity .4s ease .2s;
  }
  .about-split__visual.visible .about-split__since {
    transform: scale(1);
    opacity: 1;
  }

}

/* ── Sertifikasi section header stagger ── */
@keyframes sertif-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sertif-section.visible .sertif-eyebrow {
  animation: sertif-fade-up .38s ease .1s both;
}
.sertif-section.visible .sertif-title {
  animation: sertif-fade-up .4s ease .22s both;
}
.sertif-section.visible .sertif-sub {
  animation: sertif-fade-up .4s ease .36s both;
}

/* ── Sertifikasi card — individual entrance ── */
.sertif-card {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity .38s ease, transform .38s cubic-bezier(.25,.46,.45,.94),
              background .2s, box-shadow .2s;
}
.sertif-card.sertif-entered {
  opacity: 1;
  transform: translateX(0);
}

/* Gold left border — stamp draw from top */
.sertif-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.sertif-card.sertif-entered::before {
  transform: scaleY(1);
  transition-delay: .28s;
}
.sertif-card:hover::before,
.sertif-card:focus-visible::before {
  opacity: 1;
  box-shadow: 2px 0 8px color-mix(in srgb, var(--accent) 55%, transparent);
}

/* Sheen sweep — a quiet glint across the card on hover, evoking a
   credential catching light */
.sertif-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, color-mix(in srgb, var(--accent) 14%, transparent) 50%, transparent 60%);
  background-size: 220% 100%;
  background-position: 120% 0;
  pointer-events: none;
  transition: background-position .55s ease;
}
.sertif-card:hover::after {
  background-position: -20% 0;
}

/* Acronym stamp — spring scale-in */
@keyframes sertif-acronym-stamp {
  0%   { opacity: 0; transform: scale(.72); }
  65%  { transform: scale(1.08); }
  100% { opacity: 1; transform: scale(1); }
}
.sertif-card__acronym {
  opacity: 0;
}
.sertif-card.sertif-entered .sertif-card__acronym {
  animation: sertif-acronym-stamp .42s cubic-bezier(.34,1.56,.64,1) .32s both;
}

/* Domain tag — fades in last */
.sertif-card__domain {
  opacity: 0;
  transition: opacity .3s ease;
}
.sertif-card.sertif-entered .sertif-card__domain {
  opacity: 1;
  transition-delay: .52s;
}

/* CTA button — slides up after cards */
.sertif-section.visible .sertif-cta {
  animation: sertif-fade-up .4s ease .6s both;
}

/* Mobile: softer translateX, stronger spring */
@media (max-width: 540px) {
  .sertif-card {
    transform: translateX(-12px);
  }
}

/* ── Proses 4 langkah: garis penghubung tergambar + nomor pop ── */
.steps::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .9s cubic-bezier(.4,0,.2,1) .15s;
}
.steps.visible::before {
  transform: scaleX(1);
}
@keyframes step-num-pop {
  0%   { opacity: 0; transform: scale(.6); }
  65%  { transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
.step .step__num { opacity: 0; }
.step.visible .step__num {
  animation: step-num-pop .4s cubic-bezier(.34,1.56,.64,1) .1s both;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .swoosh__ring--coral,
  .swoosh__ring--gold,
  .swoosh__ring--sky,
  .swoosh__glow { animation: none; }
  .navbar__mobile,
  .nav-backdrop { transition: none; }
  .hero__img-main, .hero__float-card { animation: none; }
  .hero-enter-1, .hero-enter-2, .hero-enter-3,
  .hero-enter-4, .hero-enter-img, .hero-enter-card { animation: none; }
  .hero__text::before { animation: none; }
  .card .card__icon { transform: none; opacity: 1; transition: none; }
  .badge-tag--anim, .badge-tag--anim-2 { animation: none; opacity: 1; }
  .stats-strip__item { transform: none; }
  .testimonial-card,
  .testimonial-card::before { transition: none; }
  .testimonial-card:hover { transform: none; }
  .testimonial-card:hover::before { transform: none; }
  /* Sertif */
  .sertif-card { opacity: 1; transform: none; transition: none; }
  .sertif-card::before { transform: scaleY(1); transition: none; }
  .sertif-card::after { transition: none; }
  .sertif-card:hover .sertif-card__acronym { transform: none; }
  .sertif-card__acronym { opacity: 1; animation: none; }
  .sertif-card__domain { opacity: 1; transition: none; }
  .sertif-section.visible .sertif-eyebrow,
  .sertif-section.visible .sertif-title,
  .sertif-section.visible .sertif-sub,
  .sertif-section.visible .sertif-cta { animation: none; opacity: 1; }
  /* Clients marquee */
  .clients-row {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .clients-row > .client-logo[aria-hidden="true"] { display: none; }
  .steps::before { transform: scaleX(1); transition: none; }
  .step .step__num { opacity: 1; animation: none; }
}
