:root {
  --sg-blue: #1a4fb6;
  --sg-blue-deep: #123a8c;
  --sg-blue-mid: #2b6de0;
  --sg-blue-soft: #5b8ff0;
  --sg-sky: #6ea8ff;
  --sg-sky-wash: #a9c8ff;
  --sg-yellow: #f5c518;
  --sg-orange: #f0a500;
  --ink: #16325c;
  --mute: #4d648a;
  --white: #ffffff;
  --font: "Montserrat", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #f7faff;
  background: var(--page-bg, #f7faff);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, #1a4fb6 0%, #1747a8 100%);
  border: 0;
  box-shadow: none;
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  background: rgba(26, 79, 182, .96);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(12, 40, 100, .22);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.site-brand:hover { transform: translateY(-1px); }
.site-brand img {
  width: auto;
  height: 48px;
  max-width: 168px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 5px 10px;
  display: block;
  box-shadow: 0 6px 16px rgba(8, 28, 70, .18);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.site-nav__link,
.nav-dropdown > .site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  color: rgba(255,255,255,.88);
  font-family: "Outfit", var(--font);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.01em;
  background: none;
  border: 0;
  cursor: pointer;
  padding: .55rem .85rem;
  border-radius: 999px;
  transition: color .18s ease, background .18s ease;
}
.site-nav__link:hover,
.nav-dropdown:hover > .site-nav__link {
  color: #fff;
  background: rgba(255,255,255,.12);
}
.site-nav__link.is-active,
.nav-dropdown.is-active > .site-nav__link {
  color: #fff;
  background: rgba(255,255,255,.16);
}
.site-nav__link.is-active::after,
.nav-dropdown.is-active > .site-nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .2rem;
  width: 1.1rem;
  height: 3px;
  border-radius: 999px;
  background: var(--sg-yellow);
  transform: translateX(-50%);
}
.nav-dropdown > .site-nav__link i {
  font-size: 1.05rem;
  transition: transform .2s ease;
}
.nav-dropdown:hover > .site-nav__link i,
.nav-dropdown:focus-within > .site-nav__link i,
.nav-dropdown.is-open > .site-nav__link i {
  transform: rotate(180deg);
}
.nav-dropdown { position: relative; }
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 18px 44px rgba(18,58,140,.18);
  padding: .45rem;
  margin-top: .45rem;
  z-index: 30;
  border: 1px solid #e8efff;
}
.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: .55rem;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu { display: grid; gap: .15rem; }
.nav-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
  padding: .7rem .8rem;
  border-radius: .75rem;
  font-family: "Outfit", var(--font);
  font-weight: 600;
  font-size: .9rem;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.nav-dropdown__menu a i {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: .55rem;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--sg-blue);
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-dropdown__menu a:hover {
  background: #eef4ff;
  color: var(--sg-blue-deep);
  transform: translateX(2px);
}
.nav-dropdown__empty {
  display: block;
  padding: .75rem .85rem;
  color: var(--mute);
  font-size: .86rem;
}
.site-nav__portal {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-left: .45rem;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  background: #fff;
  color: var(--sg-blue);
  font-family: "Outfit", var(--font);
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(8, 28, 70, .16);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.site-nav__portal:hover {
  transform: translateY(-1px);
  background: var(--sg-yellow);
  color: var(--sg-blue-deep);
  box-shadow: 0 10px 22px rgba(245, 197, 24, .28);
}
.site-nav__portal i { font-size: 1.05rem; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: .85rem;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 1.3rem;
  place-items: center;
  transition: background .15s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,.22); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 999px;
  padding: .75rem 1.25rem;
  font-weight: 700;
  font-size: .9rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--sg-orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(240,165,0,.28);
}
.btn-primary:hover { background: #e09500; }
.btn-ghost {
  background: #fff;
  color: var(--sg-blue);
}
.btn-outline-light {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.72);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: #fff;
  color: var(--sg-blue);
  border-color: #fff;
}
.btn-nav {
  background: #fff;
  color: var(--sg-blue);
  padding: .55rem 1rem;
  font-size: .84rem;
}

/* HERO — one flowing full-bleed composition */
.hero-sg {
  --hero-pad-x: clamp(2rem, 9vw, 7rem);
  --hero-pad-y: clamp(2.5rem, 8vh, 5rem);
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: calc(100svh - 72px);
  min-height: calc(100dvh - 72px);
  display: flex;
  align-items: center;
  /* Top color = header blue supaya tidak ada garis lurus */
  background:
    radial-gradient(900px 520px at 85% 20%, rgba(126,176,255,.35), transparent 55%),
    radial-gradient(700px 480px at 10% 90%, rgba(245,197,24,.18), transparent 50%),
    linear-gradient(160deg, var(--sg-blue) 0%, #1a4fb6 36%, #2b6de0 72%, #3f7ef0 100%);
  box-sizing: border-box;
  margin-bottom: 0;
  padding-bottom: clamp(4.5rem, 10vh, 7rem);
}
.hero-sg__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-sg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.06);
  animation: hero-ken 22s ease-in-out infinite alternate;
  filter: saturate(.85) contrast(1.05);
}
.hero-sg__wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 18% 45%, rgba(26, 79, 182, .9) 0%, rgba(26, 79, 182, .55) 42%, transparent 72%),
    linear-gradient(105deg, rgba(26, 79, 182, .92) 0%, rgba(26, 79, 182, .68) 38%, rgba(26, 79, 182, .22) 62%, rgba(26, 79, 182, .08) 100%),
    linear-gradient(180deg, rgba(26, 79, 182, .12) 0%, transparent 28%, rgba(26, 79, 182, .4) 100%);
}
.hero-sg:not(.hero-sg--photo) .hero-sg__wash {
  background:
    radial-gradient(800px 500px at 70% 30%, rgba(126,176,255,.28), transparent 60%),
    linear-gradient(125deg, rgba(26, 79, 182, .12), transparent 55%);
}
.hero-sg__blobs {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-sg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: .55;
  mix-blend-mode: soft-light;
  animation: hero-drift 14s ease-in-out infinite;
}
.hero-sg__blob--a {
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, rgba(255,255,255,.55), transparent 68%);
}
.hero-sg__blob--b {
  width: min(320px, 40vw);
  height: min(280px, 34vw);
  bottom: 8%;
  left: 8%;
  border-radius: 60% 40% 55% 45%;
  background: radial-gradient(circle, rgba(245,197,24,.4), transparent 70%);
  animation-delay: -4s;
}
.hero-sg__blob--c {
  width: 220px;
  height: 220px;
  top: 55%;
  right: 28%;
  background: radial-gradient(circle, rgba(110,168,255,.45), transparent 70%);
  animation-delay: -8s;
}
.hero-sg__inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - (var(--hero-pad-x) * 2)));
  margin-inline: auto;
  padding: var(--hero-pad-y) 0 0;
}
.hero-sg__copy {
  max-width: 36rem;
  animation: hero-rise .9s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-sg__brand {
  margin: 0 0 1.25rem;
  font-family: "Outfit", var(--font);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: .92;
  color: #fff;
  text-shadow: 0 10px 40px rgba(8, 28, 70, .35);
}
.hero-sg__brand::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 5px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sg-yellow) 0%, rgba(245,197,24,.2) 100%);
  transform-origin: left center;
  animation: hero-line .8s .2s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-sg__copy h1 {
  margin: 0 0 1.1rem;
  font-family: "Outfit", var(--font);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.02em;
  max-width: 26ch;
  color: rgba(255,255,255,.94);
  text-wrap: balance;
  animation: hero-rise .9s .1s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-sg__lead {
  margin: 0 0 1.85rem;
  max-width: 32rem;
  color: rgba(255,255,255,.82);
  font-size: clamp(.98rem, 1.3vw, 1.08rem);
  line-height: 1.75;
  font-weight: 500;
  animation: hero-rise .9s .18s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-sg__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  animation: hero-rise .9s .26s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-sg__cta {
  box-shadow: 0 12px 28px rgba(240, 165, 0, .32);
}
.hero-sg__cta i {
  font-size: 1.1rem;
  transition: transform .2s ease;
}
.hero-sg__cta:hover i { transform: translateX(3px); }
.hero-sg__meta {
  margin: 1.65rem 0 0;
  display: inline-flex;
  align-items: baseline;
  gap: .55rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  animation: hero-rise .9s .34s cubic-bezier(.22, 1, .36, 1) both;
}
.hero-sg__meta strong {
  font-family: "Outfit", var(--font);
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  text-transform: none;
  color: var(--sg-yellow);
}
/* Satu lengkung kontinu — tanpa plateau / garis lurus putus */
.hero-sg__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  width: 100%;
  height: clamp(5.5rem, 11vw, 8.5rem);
  line-height: 0;
  pointer-events: none;
}
.hero-sg__curve svg {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-sg__curve path {
  fill: #ffffff;
}

@keyframes hero-ken {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.14) translate3d(-2%, -1.5%, 0); }
}
@keyframes hero-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -22px, 0) scale(1.08); }
}
@keyframes hero-rise {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes hero-line {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sg__media img,
  .hero-sg__blob,
  .hero-sg__copy,
  .hero-sg__copy h1,
  .hero-sg__lead,
  .hero-sg__actions,
  .hero-sg__meta,
  .hero-sg__brand::after { animation: none; }
}

/* Program cards overlapping hero */
.program-overlap {
  position: relative;
  z-index: 3;
  margin-top: 0;
  margin-bottom: 2.5rem;
  padding-top: .5rem;
}

.visi-misi-section {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 3.25rem 0 3.5rem;
  background:
    radial-gradient(900px 420px at 8% 0%, rgba(110, 168, 255, .28), transparent 60%),
    radial-gradient(700px 360px at 92% 100%, rgba(26, 79, 182, .12), transparent 55%),
    linear-gradient(180deg, #eef4ff 0%, #f7faff 48%, #ffffff 100%);
}
.visi-misi-section__glow {
  position: absolute;
  inset: auto auto -20% 55%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, .16), transparent 68%);
  pointer-events: none;
  animation: visi-glow 7s ease-in-out infinite alternate;
}
.visi-misi {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.4rem, 3.5vw, 2.5rem);
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}
.visi-misi__label {
  margin: 0 0 .85rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sg-blue);
}
.visi-misi__label--light { color: rgba(255,255,255,.82); }
.visi-misi__visi {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  background: linear-gradient(155deg, #123a8c 0%, #1a4fb6 42%, #3f7ef0 100%);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  isolation: isolate;
}
.visi-misi__visi-orb {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  top: -70px;
  background: rgba(255,255,255,.12);
  z-index: 0;
  animation: visi-orb 8s ease-in-out infinite alternate;
}
.visi-misi__visi-orb::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  left: -90px;
  bottom: -120px;
  background: rgba(245, 197, 24, .18);
}
.visi-misi__text {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.2rem, 2.35vw, 1.55rem);
  line-height: 1.4;
  font-weight: 750;
  letter-spacing: -0.02em;
  max-width: 28ch;
}
.visi-misi__focus {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.visi-misi__focus span {
  min-width: 3.1rem;
  text-align: center;
  padding: .45rem .7rem;
  border-radius: .7rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.visi-misi__misi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.visi-misi__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  position: relative;
}
.visi-misi__list::before {
  content: "";
  position: absolute;
  left: 1.15rem;
  top: .4rem;
  bottom: .4rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(26,79,182,.35), rgba(26,79,182,.08));
  border-radius: 2px;
}
.visi-misi__list li {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: .75rem .9rem;
  padding: .85rem 0 .85rem .15rem;
  transition: transform .25s ease;
  transition-delay: var(--vm-delay, 0ms);
}
.visi-misi__list li:hover { transform: translateX(4px); }
.visi-misi__num {
  font-size: .78rem;
  font-weight: 800;
  color: var(--sg-blue);
  letter-spacing: .04em;
  padding-top: .45rem;
  min-width: 1.5rem;
}
.visi-misi__icon {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--sg-blue);
  font-size: 1.1rem;
  flex: 0 0 auto;
  border: 2px solid #d7e5ff;
  box-shadow: 0 0 0 6px rgba(247, 250, 255, .95);
  z-index: 1;
}
.visi-misi__item-text {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.45;
  font-weight: 650;
  padding-top: .35rem;
}
@keyframes visi-orb {
  from { transform: translate(0, 0); }
  to { transform: translate(-12px, 14px); }
}
@keyframes visi-glow {
  from { transform: translate(-8%, 0) scale(1); opacity: .7; }
  to { transform: translate(4%, -6%) scale(1.08); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .visi-misi__visi-orb,
  .visi-misi-section__glow { animation: none !important; }
  .visi-misi__list li { transition-delay: 0ms !important; }
}

.keunggulan-section {
  position: relative;
  padding: 3rem 0 3.25rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 12%, #f4f8ff 55%, #eef4ff 100%);
}
.keunggulan-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.1rem;
  max-width: 1040px;
  margin-inline: auto;
}
.keunggulan-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .85rem;
  align-items: start;
  padding: .35rem .15rem;
  transition: transform .22s ease;
  transition-delay: var(--kg-delay, 0ms);
}
.keunggulan-item:hover { transform: translateY(-3px); }
.keunggulan-item__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .9rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  font-size: 1.25rem;
  background: linear-gradient(155deg, var(--sg-blue-mid), var(--sg-blue-deep));
  box-shadow: 0 10px 22px rgba(18, 58, 140, .18);
}
.keunggulan-item:nth-child(4n+2) .keunggulan-item__icon {
  background: linear-gradient(155deg, #3f7ef0, var(--sg-blue));
}
.keunggulan-item:nth-child(4n+3) .keunggulan-item__icon {
  background: linear-gradient(155deg, var(--sg-blue), #123a8c);
}
.keunggulan-item:nth-child(4n+4) .keunggulan-item__icon {
  background: linear-gradient(155deg, #f0a500, #e08900);
  box-shadow: 0 10px 22px rgba(224, 137, 0, .22);
}
.keunggulan-item__text {
  color: var(--ink);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.4;
  padding-top: .35rem;
}
@media (max-width: 960px) {
  .keunggulan-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .keunggulan-grid { grid-template-columns: 1fr; gap: .85rem; }
}

.sertifikasi-section {
  padding: 3.25rem 0 3.5rem;
  background: linear-gradient(180deg, #eef4ff 0%, #f7faff 40%, #ffffff 100%);
}
.sertifikasi-intro {
  max-width: 720px;
  margin-bottom: 1.75rem;
}
.sertifikasi-intro__body {
  margin: 0;
  color: var(--mute);
  font-size: 1.02rem;
  line-height: 1.65;
  white-space: pre-line;
}
.sertifikasi-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.25rem;
}
.sertifikasi-filter {
  appearance: none;
  border: 1px solid #d5e3ff;
  background: #fff;
  color: var(--sg-blue-deep);
  font: inherit;
  font-size: .85rem;
  font-weight: 700;
  padding: .45rem .9rem;
  border-radius: .7rem;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sertifikasi-filter:hover {
  border-color: var(--sg-blue);
  color: var(--sg-blue);
}
.sertifikasi-filter.is-active {
  background: var(--sg-blue);
  border-color: var(--sg-blue);
  color: #fff;
}
.sertifikasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.25rem;
  justify-items: center;
}
.sertifikasi-card {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  min-width: 0;
  width: min(100%, 300px);
}
.sertifikasi-card.is-clickable { cursor: pointer; }
.sertifikasi-card.is-clickable:hover .sertifikasi-card__media {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(18, 58, 140, .14);
}
.sertifikasi-card.is-hidden { display: none; }
.sertifikasi-card__media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #edf3ff;
  border: 1px solid #dce7ff;
  box-shadow: 0 12px 30px rgba(18, 58, 140, .1);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sertifikasi-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f7ff;
  display: block;
}
.sertifikasi-card__caption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 0 .15rem;
}
.sertifikasi-card__program {
  color: var(--sg-blue);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sertifikasi-card__title {
  color: var(--ink);
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.3;
}
.sertifikasi-card__count {
  color: var(--mute);
  font-size: .78rem;
  font-weight: 600;
}
@media (max-width: 560px) {
  .sertifikasi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sertifikasi-card { width: 100%; }
}

.program-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.program-sg {
  border-radius: 1.25rem;
  padding: 1.35rem 1.25rem 1.4rem;
  color: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(18,58,140,.22);
  transition: transform .18s ease;
}
.program-sg:hover { transform: translateY(-4px); }
.program-sg--1 { background: linear-gradient(160deg, var(--sg-blue-deep), var(--sg-blue)); }
.program-sg--2 { background: linear-gradient(160deg, var(--sg-blue), var(--sg-blue-mid)); }
.program-sg--3 { background: linear-gradient(160deg, var(--sg-blue-mid), var(--sg-sky)); }
.program-sg__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,.16);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  margin-bottom: .85rem;
}
.program-sg h3 {
  margin: 0 0 .45rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}
.program-sg p {
  margin: 0;
  font-size: .88rem;
  color: rgba(255,255,255,.9);
}

.section { padding: 4.25rem 0; }
.section--white { background: #fff; }
.section--soft { background: #f0f5ff; }
.section__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}
.section__head h2 {
  margin: 0 0 .65rem;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 800;
  color: var(--sg-blue-deep);
  letter-spacing: -0.02em;
}
.section__head p { margin: 0; color: var(--mute); }

.about-sg {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
  align-items: center;
}
.about-sg__body {
  white-space: pre-line;
  color: var(--mute);
  font-size: 1.02rem;
}
.about-sg__panel {
  background: linear-gradient(160deg, var(--sg-blue), var(--sg-blue-mid));
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  min-height: 220px;
  display: grid;
  align-content: end;
  position: relative;
  overflow: hidden;
}
.about-sg__panel::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  top: -40px;
  right: -30px;
}
.about-sg__panel strong {
  position: relative;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 800;
}
.about-sg__panel span {
  position: relative;
  margin-top: .5rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
}

.feature-sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-sg__card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.35rem;
  box-shadow: 0 10px 28px rgba(18,58,140,.08);
  border: 1px solid #e4ecff;
}
.feature-sg__card i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--sg-blue);
  font-size: 1.3rem;
  margin-bottom: .85rem;
}
.feature-sg__card h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sg-blue-deep);
}
.feature-sg__card p { margin: 0; color: var(--mute); font-size: .92rem; }

.branch-sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.branch-sg__card {
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid #e4ecff;
  box-shadow: 0 10px 28px rgba(18,58,140,.08);
  transition: transform .15s ease;
  display: flex;
  flex-direction: column;
}
.branch-sg__card:hover { transform: translateY(-3px); }
.branch-sg__media { display: block; }
.branch-sg__card img,
.branch-sg__media-empty {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  background: linear-gradient(135deg, #cfe0ff, #8eb4ff);
}
.branch-sg__card .body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  flex: 1;
}
.branch-sg__card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sg-blue-deep);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.branch-sg__card p {
  margin: 0;
  color: var(--mute);
  font-size: .9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.branch-sg__card .branch-wa-btn { margin-top: auto; }
.branch-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .25rem;
  width: fit-content;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  font-size: .84rem;
  padding: .55rem .85rem;
  border-radius: .75rem;
  text-decoration: none;
  transition: filter .15s ease, transform .15s ease;
}
.branch-wa-btn:hover { filter: brightness(.95); transform: translateY(-1px); }
.branch-wa-btn i { font-size: 1.1rem; }
.branch-wa-btn span {
  opacity: .92;
  font-weight: 600;
  font-size: .78rem;
}
.branch-card .branch-wa-btn { margin: auto 1rem 1rem; }

.alumni-sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.alumni-sg__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .85rem;
  border: 3px solid #e8f0ff;
}
.alumni-sg__card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.25rem;
  border: 1px solid #e4ecff;
  box-shadow: 0 10px 28px rgba(18,58,140,.08);
}
.alumni-sg__card blockquote {
  margin: 0 0 .9rem;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 600;
}
.alumni-sg__card .meta { color: var(--mute); font-size: .85rem; }

.hasil-section .section__head { margin-bottom: 1.75rem; }
.hasil-marquee {
  display: grid;
  gap: .9rem;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.hasil-marquee__row {
  overflow: hidden;
  width: 100%;
}
.hasil-marquee__track {
  display: flex;
  width: max-content;
  gap: .9rem;
  will-change: transform;
  padding-inline: .5rem;
}
.hasil-marquee__row[data-dir="left"] .hasil-marquee__track {
  animation: hasil-scroll-left 36s linear infinite;
}
.hasil-marquee__row[data-dir="right"] .hasil-marquee__track {
  animation: hasil-scroll-right 40s linear infinite;
}
.hasil-marquee:hover .hasil-marquee__track {
  animation-play-state: paused;
}
.hasil-card {
  flex: 0 0 clamp(240px, 26vw, 300px);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 300px 420px;
}
.hasil-card.is-clickable {
  cursor: pointer;
  transition: transform .2s ease;
}
.hasil-card.is-clickable:hover {
  transform: translateY(-4px);
}
.hasil-card__media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #edf3ff;
  border: 1px solid #dce7ff;
  box-shadow: 0 12px 30px rgba(18,58,140,.1);
}
.hasil-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f4f7ff;
  display: block;
}
.hasil-card__media-empty {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--mute);
  font-weight: 700;
  font-size: .85rem;
  padding: 1rem;
}
.hasil-card__caption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 0 .25rem;
}
.hasil-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .3rem;
  margin-bottom: .2rem;
}
.hasil-card__tag {
  display: inline-flex;
  align-items: center;
  padding: .18rem .5rem;
  border-radius: 999px;
  background: #e8efff;
  color: #1a4fb6;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.2;
}
.hasil-card__name {
  color: var(--ink);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
}
.hasil-card__campus {
  color: #1a4fb6;
  font-size: .82rem;
  font-weight: 700;
}
.hasil-card__from {
  color: var(--mute);
  font-size: .8rem;
  font-weight: 600;
}

/* legacy bits kept so old markup doesn't break */
.hasil-card__zoom,
.hasil-card__top,
.hasil-card__avatar,
.hasil-card__fallback,
.hasil-card__who,
.hasil-card__result,
.hasil-card__major,
.hasil-card__quote {
  display: none;
}

.hasil-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.hasil-lightbox.is-open { display: flex; }
.hasil-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 56, .72);
  backdrop-filter: blur(4px);
}
.hasil-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(90vh, 920px);
  overflow: auto;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
  padding: 1.1rem;
}
.hasil-lightbox__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #123a8c;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 2;
}
.hasil-lightbox__image {
  width: auto;
  max-width: 100%;
  max-height: min(70vh, 720px);
  border-radius: .9rem;
  display: block;
  margin: 0 auto;
  background: #edf3ff;
  object-fit: contain;
}
.hasil-lightbox__gallery {
  position: relative;
}
.hasil-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(18,58,140,.92);
  color: #fff;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.hasil-lightbox__nav--prev { left: .65rem; }
.hasil-lightbox__nav--next { right: .65rem; }
.hasil-lightbox__counter {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: rgba(18,58,140,.9);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: .3rem .55rem;
  border-radius: 999px;
}
.hasil-lightbox__thumbs {
  display: flex;
  gap: .45rem;
  overflow-x: auto;
  margin-top: .7rem;
  padding-bottom: .15rem;
}
.hasil-lightbox__thumb {
  flex: 0 0 64px;
  width: 64px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: .45rem;
  padding: 0;
  overflow: hidden;
  background: #edf3ff;
  cursor: pointer;
}
.hasil-lightbox__thumb.is-active { border-color: #123a8c; }
.hasil-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hasil-lightbox__meta {
  display: flex;
  gap: .9rem;
  align-items: center;
  margin-top: 1rem;
}
.hasil-lightbox__meta img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e8f0ff;
}
.hasil-lightbox__meta strong {
  display: block;
  color: var(--sg-blue);
  font-size: 1.05rem;
}
.hasil-lightbox__meta span {
  display: block;
  color: var(--mute);
  font-size: .85rem;
}
.hasil-lightbox__quote {
  margin: .85rem 0 0;
  color: #4a5d7a;
  font-weight: 600;
  line-height: 1.5;
}
body.hasil-lightbox-open { overflow: hidden; }
.hasil-marquee.is-paused .hasil-marquee__track,
.hasil-marquee.is-offscreen .hasil-marquee__track,
#tutorMarquee.is-offscreen .hasil-marquee__track {
  animation-play-state: paused !important;
}
@keyframes hasil-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes hasil-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hasil-marquee__track { animation: none !important; }
}

.tutor-section { overflow: hidden; }
.tutor-marquee {
  display: grid;
  gap: .9rem;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.tutor-marquee__row {
  overflow: hidden;
  width: 100%;
}
.tutor-marquee__track {
  display: flex;
  width: max-content;
  gap: .85rem;
  will-change: transform;
  padding-inline: .5rem;
}
.tutor-marquee__row[data-dir="left"] .tutor-marquee__track {
  animation: tutor-scroll-left 36s linear infinite;
}
.tutor-marquee__row[data-dir="right"] .tutor-marquee__track {
  animation: tutor-scroll-right 40s linear infinite;
}
.tutor-marquee:hover .tutor-marquee__track {
  animation-play-state: paused;
}
.hasil-marquee.is-offscreen .hasil-marquee__track,
.tutor-marquee.is-offscreen .tutor-marquee__track {
  animation-play-state: paused !important;
}
.tutor-sg__card {
  flex: 0 0 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(18, 58, 140, 0.08);
  border-radius: 1rem;
  box-shadow: 0 10px 24px rgba(18, 58, 140, 0.1);
  overflow: hidden;
  padding: 0;
  text-align: left;
  width: 220px;
}
.tutor-sg__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  margin: 0;
  background: linear-gradient(160deg, #dce8ff, #9ec0ff 55%, #1a4fb6);
  overflow: hidden;
}
.tutor-sg__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.tutor-sg__photo-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #1a4fb6, #6ea8ff);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}
.tutor-sg__box {
  position: relative;
  z-index: 1;
  width: 100%;
  background: linear-gradient(165deg, var(--sg-blue-mid), var(--sg-blue) 55%, var(--sg-blue-deep));
  color: #fff;
  padding: 0.75rem 0.8rem 0.85rem;
  text-align: left;
}
.tutor-sg__box h3 {
  margin: 0 0 .1rem;
  font-weight: 800;
  font-size: 0.92rem;
  color: #fff;
}
.tutor-sg__box .role {
  color: #fff;
  font-weight: 600;
  font-size: .76rem;
  opacity: .95;
}
.tutor-sg__box .university {
  margin-top: .25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.35;
}
.tutor-universities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem .55rem;
  margin: 0 auto 1.35rem;
  max-width: 720px;
}
.tutor-universities__badge {
  display: inline-flex;
  align-items: center;
  padding: .28rem .62rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(26, 79, 182, 0.14);
  color: var(--sg-blue-deep, #123a8c);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .03em;
  box-shadow: 0 4px 12px rgba(18, 58, 140, 0.08);
}
@keyframes tutor-scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes tutor-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 640px) {
  .tutor-sg__card { flex-basis: 160px; width: 160px; }
}
@media (prefers-reduced-motion: reduce) {
  .tutor-marquee__track { animation: none !important; }
}

.post-sg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.social-account-grid,
.ig-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  max-width: 820px;
  margin: 0 auto;
}
.social-account-card,
.ig-account-card {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #fff 0%, #f4f8ff 100%);
  border: 1px solid #e4ecff;
  border-radius: 1.1rem;
  box-shadow: 0 12px 28px rgba(18,58,140,.08);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.social-account-card:hover,
.ig-account-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18,58,140,.14);
}
.social-account-card__icon,
.ig-account-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.45rem;
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976 45%, #4f5bd5 90%);
  flex-shrink: 0;
}
.social-account-card--tiktok .social-account-card__icon { background: #111; }
.social-account-card--youtube .social-account-card__icon { background: #ff0033; }
.social-account-card--facebook .social-account-card__icon { background: #1877f2; }
.social-account-card--whatsapp .social-account-card__icon { background: #25d366; }
.social-account-card--twitter .social-account-card__icon { background: #111; }
.social-account-card--linkedin .social-account-card__icon { background: #0a66c2; }
.social-account-card--threads .social-account-card__icon { background: #111; }
.social-account-card__text,
.ig-account-card__text { min-width: 0; }
.social-account-card__text strong,
.ig-account-card__text strong {
  display: block;
  color: var(--sg-blue-deep);
  font-size: 1rem;
}
.social-account-card__text span,
.ig-account-card__text span {
  display: block;
  color: var(--mute);
  font-size: .84rem;
  margin-top: .1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-account-card__go,
.ig-account-card__go {
  margin-left: auto;
  color: var(--sg-blue);
  font-size: 1.35rem;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .social-account-grid,
  .ig-account-grid { grid-template-columns: 1fr; }
}
.ig-profile-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, #fff 0%, #f4f8ff 100%);
  border: 1px solid #e4ecff;
  border-radius: 1.1rem;
  box-shadow: 0 12px 28px rgba(18,58,140,.08);
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ig-profile-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18,58,140,.14);
}
.ig-profile-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976 45%, #4f5bd5 90%);
  flex-shrink: 0;
}
.ig-profile-card strong {
  display: block;
  color: var(--sg-blue-deep);
  font-size: 1.05rem;
}
.ig-profile-card span {
  display: block;
  color: var(--mute);
  font-size: .85rem;
  margin-top: .1rem;
}
.ig-profile-card__go {
  margin-left: auto;
  color: var(--sg-blue);
  font-size: 1.4rem;
}
.ig-empty-hint {
  text-align: center;
  color: var(--mute);
  font-size: .92rem;
  max-width: 560px;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.ig-embed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  align-items: start;
}
.ig-embed-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #e4ecff;
  box-shadow: 0 12px 28px rgba(18,58,140,.08);
  overflow: hidden;
  min-height: 120px;
  padding: .35rem;
}
.ig-embed-card blockquote.instagram-media {
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}
@media (max-width: 900px) {
  .ig-embed-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .ig-embed-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}
.post-sg__card {
  background: #fff;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid #e4ecff;
  box-shadow: 0 10px 28px rgba(18,58,140,.08);
}
.post-sg__card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #d7e6ff;
}
.post-sg__card .body { padding: 1rem 1.1rem 1.2rem; }
.post-sg__card h3 {
  margin: 0 0 .35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sg-blue-deep);
}
.post-sg__card p { margin: 0; color: var(--mute); font-size: .9rem; }

.cta-sg {
  background: linear-gradient(115deg, var(--sg-blue-deep), var(--sg-blue-mid));
  border-radius: 1.5rem;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.cta-sg h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
}
.cta-sg p { margin: 0; color: rgba(255,255,255,.88); max-width: 34rem; }

.page-hero {
  background: linear-gradient(115deg, #1f57c8, #6ea8ff);
  color: #fff;
  padding: 3.5rem 0 2.5rem;
}
.page-hero h1 {
  margin: 0 0 .55rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
}
.page-hero p { margin: 0; color: rgba(255,255,255,.9); max-width: 40rem; }
.chip {
  display: inline-block;
  background: var(--sg-yellow);
  color: var(--sg-blue-deep);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .3rem .65rem;
  margin-bottom: .7rem;
}
.content-prose { white-space: pre-line; color: var(--mute); font-size: 1.02rem; }
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: .45rem;
}
.highlight-list li {
  display: flex;
  gap: .5rem;
  font-weight: 700;
  color: var(--ink);
}
.highlight-list i { color: var(--sg-blue); }

.site-footer {
  background: #0f2f74;
  color: rgba(255,255,255,.8);
  padding: 3rem 0 1.25rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.75rem;
}
.site-footer h4 {
  margin: 0 0 .7rem;
  color: #fff;
  font-size: .9rem;
}
.site-footer a, .site-footer p {
  display: block;
  margin: 0 0 .35rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.site-brand--footer img {
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  width: auto;
  height: 42px;
  max-width: 150px;
}
.site-footer__copy {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .84rem;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  z-index: 40;
  box-shadow: 0 12px 28px rgba(37,211,102,.35);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* bridges for inner pages */
.program-grid, .feature-grid, .branch-grid, .alumni-grid, .tutor-grid, .post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.alumni-grid .hasil-card {
  flex: none;
  width: min(100%, 320px);
  margin: 0 auto;
}
.program-card, .feature-card, .branch-card, .alumni-card, .tutor-card, .post-card {
  background: #fff;
  border-radius: 1.1rem;
  padding: 1.2rem;
  border: 1px solid #e4ecff;
  box-shadow: 0 10px 28px rgba(18,58,140,.08);
}
.program-card h3, .feature-card h3, .branch-card h3, .tutor-card h3, .post-card h3 {
  margin: 0 0 .4rem;
  color: var(--sg-blue-deep);
  font-weight: 800;
}
.program-card p, .feature-card p, .branch-card p, .alumni-card p, .tutor-card p, .post-card p {
  margin: 0 0 .8rem;
  color: var(--mute);
}
.branch-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.branch-card > a:not(.branch-wa-btn) {
  flex: 1;
  min-height: 0;
}
.branch-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.branch-card p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.feature-card i { color: var(--sg-blue); font-size: 1.4rem; }
.tutor-photo, .post-cover, .branch-photo {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: .8rem;
  margin-bottom: .8rem;
  background: #d7e6ff;
}
.tutor-photo { width: 84px; height: 84px; border-radius: 50%; aspect-ratio: 1; }
.about-split { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; }
.about-split__body { white-space: pre-line; color: var(--mute); }
.about-panel {
  background: linear-gradient(160deg, var(--sg-blue), var(--sg-blue-mid));
  color: #fff;
  border-radius: 1.4rem;
  padding: 1.75rem;
}
.about-panel strong { display: block; font-size: 3rem; line-height: 1; }
.about-panel span { text-transform: uppercase; letter-spacing: .06em; font-size: .75rem; font-weight: 700; }
.cta-band {
  background: linear-gradient(115deg, var(--sg-blue-deep), var(--sg-blue-mid));
  border-radius: 1.4rem;
  padding: 1.75rem;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.cta-band h2 { margin: 0 0 .35rem; font-weight: 800; }
.cta-band p { margin: 0; color: rgba(255,255,255,.85); max-width: 34rem; }
.btn-dark, .btn-flash { background: var(--sg-orange); color: #fff; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-grid; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 76px .75rem auto .75rem;
    background: linear-gradient(180deg, #1747a8, #123a8c);
    padding: .85rem;
    flex-direction: column;
    align-items: stretch;
    gap: .35rem;
    border-radius: 1.15rem;
    box-shadow: 0 18px 40px rgba(10, 30, 80, .28);
    border: 1px solid rgba(255,255,255,.12);
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link,
  .nav-dropdown > .site-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: .85rem 1rem;
    border-radius: .85rem;
  }
  .site-nav__link.is-active::after,
  .nav-dropdown.is-active > .site-nav__link::after { display: none; }
  .site-nav__portal {
    margin: .35rem 0 0;
    justify-content: center;
    width: 100%;
  }
  .nav-dropdown__menu {
    position: static;
    background: rgba(255,255,255,.08);
    box-shadow: none;
    border: 0;
    min-width: 0;
    margin-top: .35rem;
  }
  .nav-dropdown__menu a { color: #fff; }
  .nav-dropdown__menu a i {
    background: rgba(255,255,255,.12);
    color: #fff;
  }
  .nav-dropdown__menu a:hover {
    background: rgba(255,255,255,.14);
    color: #fff;
  }
  .about-sg,
  .about-split,
  .program-cards,
  .feature-sg,
  .branch-sg,
  .alumni-sg,
  .tutor-marquee,
  .post-sg,
  .site-footer__grid { grid-template-columns: 1fr; }
  .hero-sg {
    --hero-pad-x: clamp(1.5rem, 7vw, 2.5rem);
    --hero-pad-y: clamp(2rem, 5vh, 3rem);
    min-height: calc(100svh - 64px);
    min-height: calc(100dvh - 64px);
  }
  .hero-sg__wash {
    background:
      radial-gradient(ellipse 95% 70% at 50% 20%, rgba(26, 79, 182, .5) 0%, transparent 70%),
      linear-gradient(180deg, rgba(26, 79, 182, .45) 0%, rgba(26, 79, 182, .72) 48%, rgba(26, 79, 182, .88) 100%);
  }
  .hero-sg__media img { object-position: center 30%; }
  .hero-sg__copy { max-width: none; }
  .hero-sg__copy h1 { max-width: 28ch; }
  .program-overlap { margin-top: 0; }
  .visi-misi { grid-template-columns: 1fr; }
  .visi-misi__text { max-width: none; }
  .visi-misi__list li { grid-template-columns: auto auto 1fr; }
  .page-hero + .section .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}
