/* =========================================================
   GREENYELLOW DESIGN SYSTEM — exact tokens from brief
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&display=swap');

:root {
  --primary: #008A4C;
  --primary-dark: #006B3C;
  --deep-green: #004D35;
  --emerald: #009B55;
  --light-green: #EAF8F1;
  --very-light-green: #F4FBF7;
  --accent: #FFD42A;
  --accent-gold: #F6C927;
  --text: #0D2921;
  --text-secondary: #64756F;
  --muted: #87958F;
  --white: #FFFFFF;
  --border: #E5EEE9;
  --border-btn: #B9DCCB;
  --soft-yellow: #FFFDF1;
  --shadow: 0 20px 60px rgba(0, 70, 45, 0.08);
  --shadow-soft: 0 20px 60px rgba(0, 70, 45, 0.06);
  --shadow-btn: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius-card: 24px;
  --radius-btn: 9999px;
  --radius-img: 48px;
  --container: 1280px;
  --font: 'Plus Jakarta Sans', sans-serif;
  --topbar-h: 42px;
  --nav-h: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.gy {
  margin: 0;
  font-family: var(--font) !important;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--text) !important;
  background: #FFFFFF !important;
  overflow-x: hidden;
}
body.gy h1, body.gy h2, body.gy h3, body.gy h4, body.gy h5, body.gy h6 {
  font-family: var(--font) !important;
}
body.gy, body.gy button, body.gy input, body.gy a {
  font-family: var(--font);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.gy-wrap {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
@media (min-width: 1280px) {
  .gy-wrap { width: min(100% - 6rem, var(--container)); }
}

/* ---------- Topbar ---------- */
.gy-topbar {
  background: linear-gradient(90deg, #006B3C, #008A4C, #009B55);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  min-height: var(--topbar-h);
}
.gy-topbar-inner {
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: nowrap;
  padding: .4rem 0;
}
.gy-topbar-news {
  flex: 1;
  min-width: 0;
  width: auto;
  max-width: none;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: .65rem;
}
.gy-topbar-social {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
  margin-left: .25rem;
}
.gy-topbar-social a,
.gy-soc {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.16);
  color: #fff !important;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.gy-soc svg {
  width: 14px;
  height: 14px;
  display: block;
}
.gy-soc:hover {
  background: #FFD42A;
  color: #0D2921 !important;
  transform: translateY(-1px);
}
.gy-soc.is-empty { opacity: .72; }
@media (max-width: 720px) {
  .gy-topbar-social { gap: .25rem; }
  .gy-soc { width: 26px; height: 26px; }
}
.gy-ticker-label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: rgba(255,212,42,.95);
  color: #0D2921;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.gy-ticker-track {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}
.gy-ticker-marquee {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: gyTickerLoop var(--gy-ticker-dur, 28s) linear infinite;
  will-change: transform;
}
.gy-ticker-marquee:hover { animation-play-state: paused; }
.gy-ticker-dup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
}
.gy-ticker-link {
  color: rgba(255,255,255,.95) !important;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.gy-ticker-link:hover {
  color: #FFD42A !important;
  border-bottom-color: rgba(255,212,42,.7);
}
.gy-ticker-sep {
  display: inline-block;
  margin: 0 .7rem;
  opacity: .55;
  color: #FFD42A;
}
@keyframes gyTickerLoop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .gy-ticker-marquee { animation: none; }
}
.gy-topbar a { color: rgba(255,255,255,.95); }
.gy-topbar a:hover { color: var(--accent); }
.gy-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  white-space: nowrap;
}

/* ---------- Navbar ---------- */
.gy-navwrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s var(--ease);
}
.gy-navwrap.is-scrolled { box-shadow: 0 10px 30px rgba(0,70,45,.06); }
.gy-nav {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: .65rem;
}
.gy-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
  max-width: 260px;
}
.gy-brand img,
.gy-brand-fallback {
  width: 56px; height: 56px;
  border-radius: 0;
  object-fit: contain;
  flex-shrink: 0;
}
.gy-brand-fallback {
  background: linear-gradient(135deg, #006B3C 0%, #009B55 55%, #008A4C 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
}
.gy-brand-name {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
  color: var(--text);
}
.gy-brand-tag { display: none; }

.gy-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .04rem;
  min-width: 0;
  flex-wrap: nowrap;
}
.gy-link {
  display: inline-flex;
  align-items: center;
  gap: .18rem;
  padding: .48rem .68rem;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  transition: .2s var(--ease);
}
.gy-link:hover { background: var(--light-green); color: var(--primary-dark); }
.gy-link.is-active {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.gy-drop { position: relative; }
.gy-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: .4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .2s var(--ease);
  z-index: 50;
}
.gy-drop:hover > .gy-drop-menu,
.gy-drop:focus-within > .gy-drop-menu {
  opacity: 1; visibility: visible; transform: none;
}
.gy-drop-menu a {
  display: block;
  padding: .65rem .8rem;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.gy-drop-menu a:hover { background: var(--light-green); color: var(--primary); }

.gy-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-left: auto;
}
.gy-btn-ppdb {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 10px 18px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #FFD42A 0%, #F6C927 100%);
  color: var(--text);
  font-weight: 700;
  font-size: 13.5px;
  box-shadow: 0 10px 24px rgba(255,212,42,.35);
  transition: .2s var(--ease);
}
.gy-btn-ppdb:hover {
  background: var(--accent-gold);
  transform: translateY(-1px);
}
.gy-icon-btn {
  width: 44px; height: 44px;
  border-radius: 9999px;
  display: grid; place-items: center;
  background: var(--very-light-green);
  color: var(--text);
  border: 1px solid var(--border);
}
.gy-burger { display: none; }

/* Drawer — redesain elegan berwana */
.gy-ov {
  position: fixed; inset: 0;
  background: rgba(0, 70, 45, .48);
  backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden;
  transition: .25s; z-index: 1200;
}
.gy-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(90vw, 340px);
  background:
    radial-gradient(280px 180px at 100% 0%, rgba(255,212,42,.18), transparent 65%),
    linear-gradient(180deg, #F4FBF7 0%, #FFFFFF 42%, #FFFDF5 100%);
  transform: translateX(105%);
  transition: .3s var(--ease);
  z-index: 1201;
  padding: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0, 70, 45, .18);
}
.gy-ov.open { opacity: 1; visibility: visible; }
.gy-drawer.open { transform: none; }
.gy-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: 1.1rem 1.1rem 1rem;
  background: linear-gradient(100deg, #006837 0%, #007A40 40%, #22B14C 72%, #8DC63F 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.gy-drawer-brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.gy-drawer-title {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.01em;
  color: #fff;
}
.gy-drawer-tag {
  display: block;
  margin-top: .15rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}
.gy-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, .95);
  color: #006837;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 40, 28, .14);
}
.gy-drawer-nav {
  padding: .9rem .85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}
.gy-drawer-link {
  display: flex !important;
  align-items: center;
  gap: .7rem;
  padding: .72rem .8rem !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  font-size: .92rem;
  color: #0D2921 !important;
  background: transparent;
  border: 1px solid transparent;
  transition: .2s ease;
}
.gy-drawer-link-ico {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #EAF8F1;
  color: #008A4C;
}
.gy-drawer-link-ico svg { width: 16px; height: 16px; }
.gy-drawer-chevron {
  margin-left: auto;
  width: 16px !important;
  height: 16px !important;
  color: #87958F;
  transition: transform .2s ease;
}
.gy-drawer-link:hover,
.gy-drawer-link.is-active {
  background: #EAF8F1 !important;
  border-color: rgba(0, 138, 76, .14) !important;
  color: #006B3C !important;
}
.gy-drawer-link.is-active .gy-drawer-link-ico {
  background: #008A4C;
  color: #fff;
}
.gy-drawer-group {
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid #E5EEE9;
  overflow: hidden;
}
.gy-drawer-group .gy-drawer-parent {
  border-radius: 0 !important;
  border: none !important;
}
.gy-drawer-group.is-open .gy-drawer-chevron,
.gy-drawer-group:hover .gy-drawer-chevron {
  transform: rotate(180deg);
  color: #008A4C;
}
.gy-drawer-children {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 0 .55rem .55rem;
  background: linear-gradient(180deg, #F7FBF8, #FFFFFF);
}
.gy-drawer-child {
  display: flex !important;
  align-items: center;
  gap: .55rem;
  padding: .55rem .7rem !important;
  border-radius: 11px !important;
  font-size: .84rem !important;
  font-weight: 600 !important;
  color: #4A5C56 !important;
  background: transparent;
}
.gy-drawer-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #C8E6D5;
  flex-shrink: 0;
}
.gy-drawer-child:hover,
.gy-drawer-child.is-active {
  background: #EAF8F1 !important;
  color: #006B3C !important;
}
.gy-drawer-child.is-active .gy-drawer-dot,
.gy-drawer-child:hover .gy-drawer-dot {
  background: #FFD42A;
  box-shadow: 0 0 0 3px rgba(255, 212, 42, .25);
}
.gy-drawer-cta {
  margin-top: auto;
  padding: .9rem 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  background: #FFFFFF;
  border-top: 1px solid #E5EEE9;
  position: sticky;
  bottom: 0;
  z-index: 3;
  box-shadow: 0 -8px 24px rgba(0, 70, 45, .06);
}
.gy-drawer-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 16px !important;
  font-size: .9rem !important;
}
.gy-drawer-cta .gy-btn-secondary {
  background: #FFFFFF;
  border-color: #008A4C;
  color: #006B3C;
}
.gy-drawer-cta .gy-btn-primary {
  background: #FFD42A;
}
.gy-drawer a:not(.gy-drawer-link):not(.gy-drawer-child):not(.gy-btn) {
  display: block;
  padding: .85rem .75rem;
  border-radius: 12px;
  font-weight: 700;
  color: var(--text);
}
.gy-drawer a:not(.gy-drawer-link):not(.gy-drawer-child):not(.gy-btn):hover {
  background: var(--light-green);
}

/* ---------- Buttons ---------- */
.gy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 14px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 15px;
  transition: .25s var(--ease);
}
.gy-btn i, .gy-btn svg { transition: transform .25s var(--ease); }
.gy-btn:hover i, .gy-btn:hover svg { transform: translateX(3px); }
.gy-btn-primary {
  background: #FFD42A;
  color: #0D2921;
  box-shadow: 0 12px 28px rgba(255,212,42,.3);
}
.gy-btn-primary:hover {
  background: #F6C927;
  transform: translateY(-1px);
}
.gy-btn-secondary {
  background: transparent;
  border: 1px solid #B9DCCB;
  color: #006B3C;
}
.gy-btn-secondary:hover {
  background: #EAF8F1;
  transform: translateY(-1px);
}
.gy-btn-dark {
  background: #008A4C;
  color: #fff;
}

/* ---------- Hero two-column + premium slide background ---------- */
.gy-hero {
  position: relative;
  padding: 36px 0 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FBF7 55%, #FFFFFF 100%);
  overflow: hidden;
}
.gy-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.gy-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
}
.gy-blob-a {
  width: 420px;
  height: 420px;
  right: -80px;
  top: -40px;
  background: radial-gradient(circle at 35% 40%, rgba(0,155,85,.28), rgba(0,138,76,.08) 55%, transparent 70%);
}
.gy-blob-b {
  width: 360px;
  height: 360px;
  right: 8%;
  bottom: 8%;
  background: radial-gradient(circle at 50% 50%, rgba(255,212,42,.34), rgba(255,212,42,.08) 50%, transparent 70%);
}
.gy-blob-c {
  width: 280px;
  height: 280px;
  left: -90px;
  top: 35%;
  background: radial-gradient(circle at 60% 40%, rgba(0,138,76,.12), transparent 68%);
}
.gy-blob-d {
  width: 180px;
  height: 180px;
  left: 38%;
  top: 12%;
  background: radial-gradient(circle at 50% 50%, rgba(255,212,42,.18), transparent 70%);
}
.gy-hero-inner { position: relative; z-index: 1; }
.gy-swiper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 4px 4px 8px;
}
.gy-swiper .swiper-wrapper { overflow: hidden; }
.gy-swiper.swiper-fade .swiper-slide { pointer-events: none; }
.gy-swiper.swiper-fade .swiper-slide-active { pointer-events: auto; }
.gy-swiper:not(.swiper-initialized) .swiper-slide { display: none; }
.gy-swiper:not(.swiper-initialized) .swiper-slide:first-child { display: block; }
.gy-slide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.08fr);
  gap: 28px 36px;
  align-items: center;
}
.gy-copy { position: relative; z-index: 2; padding: 8px 8px 8px 4px; }
.gy-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #008A4C;
  margin-bottom: .75rem;
}
.gy-eyebrow::before {
  content: '';
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: #FFD42A;
}
.gy-h1 {
  margin: 0 0 .55rem;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.035em;
  color: #0D2921;
}
.gy-h1 em {
  font-style: normal;
  color: #008A4C;
}
.gy-headline {
  margin: 0 0 .55rem;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -.02em;
  color: #0D2921;
}
.gy-desc {
  margin: 0 0 1.15rem;
  max-width: 42ch;
  font-size: 14.5px;
  line-height: 1.7;
  color: #64756F;
}
.gy-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-bottom: 1.25rem;
}
.gy-trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: .85rem 1.05rem;
}
.gy-trust-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.gy-trust-ico {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: #EAF8F1;
  color: #008A4C;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gy-trust-ico svg { width: 16px; height: 16px; }
.gy-trust strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0D2921;
  line-height: 1.15;
}
.gy-trust span {
  display: block;
  font-size: 11.5px;
  color: #64756F;
}
.gy-trust-div {
  width: 1px;
  height: 26px;
  background: #E5EEE9;
}

.gy-visual {
  position: relative;
  padding: 28px 22px 36px 36px;
}
.gy-photo-stack { position: relative; }
.gy-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.gy-shape-yellow {
  width: 72%;
  height: 78%;
  left: -8%;
  bottom: -6%;
  border-radius: 42% 58% 48% 52% / 48% 42% 58% 52%;
  background: linear-gradient(145deg, #FFD42A 0%, #F6C927 70%, #FFE98A 100%);
  transform: rotate(-8deg);
}
.gy-shape-green {
  width: 58%;
  height: 62%;
  right: -10%;
  top: -8%;
  border-radius: 48% 52% 40% 60% / 55% 40% 60% 45%;
  background: linear-gradient(160deg, #008A4C 0%, #009B55 55%, #FFD42A 100%);
  opacity: .92;
}
.gy-shape-mint {
  width: 38%;
  height: 34%;
  right: 6%;
  bottom: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,155,85,.35), transparent 70%);
}
.gy-photo-frame {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 92%;
  border-radius: 36px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background:
    linear-gradient(#EAF8F1, #EAF8F1) padding-box,
    linear-gradient(145deg, #FFD42A 0%, #009B55 45%, #006B3C 100%) border-box;
  border: 10px solid transparent;
  box-shadow:
    0 24px 60px rgba(0, 70, 45, .16),
    0 0 0 1px rgba(0,138,76,.12);
  box-sizing: border-box;
}
.gy-photo-frame img,
.gy-photo-fallback {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gy-photo-fallback {
  background: linear-gradient(145deg, #006B3C, #009B55 55%, #FFD42A);
  min-height: 280px;
}
.gy-photo-card {
  position: absolute;
  left: auto;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #008A4C 0%, #009B55 48%, #F6C927 100%);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 12px 28px rgba(0,70,45,.22);
  backdrop-filter: none;
}
.gy-photo-card-ico,
.gy-photo-card-body { display: none !important; }
.gy-photo-card-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.gy-photo-card-num {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  text-shadow: 0 1px 2px rgba(0,40,28,.25);
}
.gy-photo-card-bars {
  display: inline-flex;
  gap: 4px;
}
.gy-photo-card-bars i {
  display: block;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}
.gy-photo-card-bars i.is-active {
  background: #FFD42A;
  width: 22px;
  box-shadow: 0 0 10px rgba(255,212,42,.55);
}

.gy-hero-inner > .gy-nav-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 8;
}
.gy-hero-inner > .swiper-button-prev { left: calc(48% + 8px); right: auto; }
.gy-hero-inner > .swiper-button-next { right: 18px; }
.gy-nav-btn {
  width: 46px !important;
  height: 46px !important;
  margin-top: 0 !important;
  background: #fff !important;
  border-radius: 999px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.12) !important;
  color: #0D2921 !important;
  border: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.gy-nav-btn::after { display: none !important; }
.gy-nav-btn svg { width: 18px; height: 18px; }
.gy-pagination { display: none !important; }

/* ---------- Hero Design 2 — diagonal split (desktop + mobile) ---------- */
.gy-hero--d2 {
  padding: 0;
  /* Eksperimen: panel kiri mirip sambutan (hijau → aksen kuning) */
  background:
    radial-gradient(640px 280px at 12% 18%, rgba(255, 212, 42, .28), transparent 62%),
    radial-gradient(480px 260px at 38% 88%, rgba(0, 70, 45, .28), transparent 70%),
    linear-gradient(135deg, #006B3C 0%, #008A4C 48%, #009B55 78%, #F6C927 160%);
  overflow: hidden;
}
.gy-hero--d2 .gy-hero-bg--d2 {
  display: none;
}
.gy-hero--d2 .gy-hero-inner {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.gy-hero--d2 .gy-swiper {
  padding: 0;
  overflow: visible;
}
.gy-hero--d2 .gy-slide-grid--d2 {
  display: block;
  min-height: 560px;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.gy-hero--d2 .gy-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(520px, 46%);
  min-height: 560px;
  padding: 48px 20px 56px 8px;
}
.gy-hero--d2 .gy-eyebrow {
  color: #FFD42A;
}
.gy-hero--d2 .gy-h1--accent {
  font-size: clamp(32px, 3.8vw, 52px);
  max-width: 14ch;
  color: #fff;
}
.gy-hero--d2 .gy-h1--accent em {
  color: #FFD42A;
  position: relative;
  display: inline-block;
  font-style: normal;
}
.gy-hero--d2 .gy-h1--accent em::after {
  content: '';
  position: absolute;
  left: -2%;
  right: -4%;
  bottom: .08em;
  height: .28em;
  background: rgba(255, 255, 255, .22);
  border-radius: 40% 60% 55% 45% / 60% 40% 70% 40%;
  z-index: -1;
  transform: rotate(-1.5deg);
}
.gy-hero--d2 .gy-headline { display: none; }
.gy-hero--d2 .gy-desc {
  max-width: 38ch;
  font-size: 15px;
  color: rgba(255, 255, 255, .86);
}
.gy-hero--d2 .gy-cta-row { margin-bottom: 1.5rem; }
.gy-hero--d2 .gy-cta-row .gy-btn-secondary {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.gy-hero--d2 .gy-cta-row .gy-btn-secondary:hover {
  background: rgba(255, 255, 255, .22);
  border-color: #fff;
  color: #fff;
}
.gy-hero--d2 .gy-trust--d2 {
  margin-top: .25rem;
}
.gy-hero--d2 .gy-trust--d2 .gy-trust-ico {
  background: rgba(255, 255, 255, .14);
  color: #FFD42A;
}
.gy-hero--d2 .gy-trust--d2 strong {
  color: #fff;
}
.gy-hero--d2 .gy-trust--d2 span {
  color: rgba(255, 255, 255, .72);
}
.gy-hero--d2 .gy-trust--d2 .gy-trust-div {
  background: rgba(255, 255, 255, .22);
}
.gy-hero--d2 .gy-trust--d2-mobile { display: none; }
.gy-hero--d2 .gy-visual {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  margin-right: -50vw;
  width: 58vw;
  padding: 0;
  min-height: 560px;
  z-index: 1;
}
.gy-hero--d2 .gy-d2-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.gy-hero--d2 .gy-d2-frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0B5C3B;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}
.gy-hero--d2 .gy-d2-stripe {
  position: absolute;
  z-index: 2;
  top: -8%;
  bottom: -8%;
  left: 12.5%;
  width: 18px;
  background: linear-gradient(180deg, #FFE56A 0%, #FFD42A 45%, #F0C020 100%);
  transform: skewX(-16deg);
  box-shadow: 0 0 0 1px rgba(255, 212, 42, 0.25);
  pointer-events: none;
}
.gy-hero--d2 .gy-d2-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 4% 100%);
  background: #0B5C3B;
}
.gy-hero--d2 .gy-d2-photo img,
.gy-hero--d2 .gy-d2-photo .gy-photo-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.gy-hero--d2 .gy-d2-caption {
  position: absolute;
  left: 18%;
  right: 18px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}
.gy-hero--d2 .gy-d2-motto {
  margin: 0;
  color: #fff;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(13px, 1.35vw, 17px);
  line-height: 1.35;
  text-shadow: 0 2px 10px rgba(0, 40, 28, 0.45);
  max-width: 18ch;
  position: relative;
  padding-bottom: 8px;
}
.gy-hero--d2 .gy-d2-motto::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: #FFD42A;
  box-shadow: 0 0 12px rgba(255, 212, 42, 0.45);
}
.gy-hero--d2 .gy-photo-card {
  position: static;
  background: rgba(11, 92, 59, 0.92);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 24px rgba(0, 40, 28, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  flex-shrink: 0;
}
.gy-hero--d2 .gy-photo-card-meta {
  align-items: center;
}
.gy-hero--d2 .gy-hero-inner > .swiper-button-prev {
  left: 8px;
  right: auto;
  top: 50%;
}
.gy-hero--d2 .gy-hero-inner > .swiper-button-next {
  right: 8px;
  left: auto;
  top: 50%;
}
.gy-hero--d2 .gy-nav-btn {
  width: 42px !important;
  height: 42px !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(13, 41, 33, 0.08) !important;
}
.gy-hero--d2 .gy-hero-pagination { display: none !important; }

/* ---------- Feature cards (horizontal like mockup) ---------- */
.gy-features {
  padding: 28px 0 40px;
  margin-top: 0;
  position: relative;
  z-index: 5;
  overflow: hidden;
  background:
    radial-gradient(520px 220px at 8% 20%, rgba(255,212,42,.28), transparent 70%),
    radial-gradient(480px 240px at 92% 80%, rgba(0,138,76,.14), transparent 72%),
    linear-gradient(180deg, #F4FBF7 0%, #EAF8F1 48%, #FFFDF1 100%);
}
.gy-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.gy-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #E5EEE9;
  border-radius: 24px;
  padding: 18px 16px 18px 16px;
  box-shadow: 0 16px 40px rgba(0,70,45,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gy-feat:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,70,45,.08);
}
.gy-feat-ico {
  width: 48px; height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin: 0;
  color: #fff;
}
.gy-feat:nth-child(odd) .gy-feat-ico {
  background: #008A4C;
}
.gy-feat:nth-child(even) .gy-feat-ico {
  background: #FFD42A;
  color: #0D2921;
}
.gy-feat-ico svg { width: 22px; height: 22px; }
.gy-feat-body { min-width: 0; }
.gy-feat h3 {
  margin: 0 0 .22rem;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #0D2921;
  line-height: 1.25;
}
.gy-feat p {
  margin: 0;
  font-size: 13px;
  color: #64756F;
  line-height: 1.5;
}

/* ---------- Jurusan ---------- */
.gy-jurusan {
  position: relative;
  padding: 48px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(600px 280px at 100% 0%, rgba(255,212,42,.32), transparent 65%),
    radial-gradient(420px 260px at 0% 100%, rgba(0,155,85,.16), transparent 70%),
    linear-gradient(165deg, #FFFFFF 0%, #F4FBF7 40%, #FFF8DC 100%);
}
.gy-jurusan .gy-wrap { position: relative; z-index: 1; }
.gy-sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.gy-sec-eye {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #008A4C;
  margin-bottom: .6rem;
}
.gy-sec-eye::before {
  content: '';
  width: 22px; height: 3px;
  border-radius: 999px;
  background: #FFD42A;
}
.gy-sec-title {
  margin: 0 0 .5rem;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #0D2921;
  line-height: 1.1;
}
.gy-sec-desc {
  margin: 0;
  max-width: 46ch;
  color: #64756F;
  font-size: 16px;
}
.gy-jur-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.gy-jur {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border: 1px solid #E5EEE9;
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 70, 45, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  min-height: 0;
}
.gy-jur:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 70, 45, .12);
  border-color: #CDE7D9;
}
.gy-jur-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(145deg, #006B3C, #009B55 55%, #FFD42A);
}
.gy-jur-media img,
.gy-jur-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gy-jur-media-fallback {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,212,42,.35), transparent 55%),
    linear-gradient(145deg, #006B3C, #009B55 55%, #0B5C3B);
}
.gy-jur:hover .gy-jur-media img,
.gy-jur:hover .gy-jur-media-fallback {
  transform: scale(1.06);
}
.gy-jur-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(8, 40, 28, .45) 100%);
  pointer-events: none;
}
.gy-jur-media-ico {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .95);
  color: #008A4C;
  box-shadow: 0 8px 18px rgba(0, 40, 28, .16);
}
.gy-jur-media-ico svg { width: 18px; height: 18px; }
.gy-jur-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 212, 42, .95);
  color: #0D2921;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 6px 14px rgba(0, 40, 28, .15);
}
.gy-jur-body {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: 14px 14px 16px;
  min-width: 0;
}
.gy-jur-code {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #008A4C;
}
.gy-jur-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #0D2921;
  line-height: 1.3;
  letter-spacing: -.015em;
}
.gy-jur-desc {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: #64756F;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gy-jur-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .35rem;
  font-size: 12px;
  font-weight: 700;
  color: #008A4C;
}
.gy-jur-more svg {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
}
.gy-jur:hover .gy-jur-more svg { transform: translateX(3px); }
.gy-jur-arrow { display: none; }
.gy-jur-ico { display: none; }

/* ---------- CTA / Footer ---------- */
.gy-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, #006B3C 0%, #009B55 55%, #008A4C 100%);
  color: #fff;
}
.gy-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gy-cta h2 {
  margin: 0 0 .4rem;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
}
.gy-cta p { margin: 0; color: rgba(255,255,255,.85); max-width: 44ch; }

.gy-footer {
  background: #004D35;
  color: #fff;
  padding: 64px 0 28px;
  position: relative;
  overflow: hidden;
}
.gy-footer::before {
  content: '';
  position: absolute;
  width: 280px; height: 180px;
  right: -40px; top: -40px;
  border-radius: 50%;
  background: #FFD42A;
  opacity: .12;
  transform: rotate(-12deg);
}
.gy-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.gy-footer h4 {
  margin: 0 0 1rem;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #FFD42A;
}
.gy-footer p, .gy-footer li, .gy-footer a {
  color: #B8D9CB;
  font-size: 14px;
}
.gy-footer a:hover { color: #FFD42A; }
.gy-footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: .6rem;
}
.gy-footer-social {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.gy-footer-soc {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: rgba(255,255,255,.9) !important;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: color .2s ease, transform .2s ease;
}
.gy-footer-soc-ico {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: #fff;
  transition: background .2s ease, color .2s ease;
}
.gy-footer-soc-ico svg {
  width: 15px;
  height: 15px;
  display: block;
}
.gy-footer-soc:hover {
  color: #FFD42A !important;
  transform: translateX(3px);
}
.gy-footer-soc:hover .gy-footer-soc-ico {
  background: #FFD42A;
  color: #0D2921;
}
.gy-footer-soc.is-empty { opacity: .72; }
.gy-footer-contact-mini {
  margin-top: 1.1rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  display: grid;
  gap: .35rem;
}
.gy-footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(184,217,203,.2);
  color: #B8D9CB;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* Share berita detail */
.gy-share {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E5EEE9;
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
}
.gy-share-label {
  font-size: .8rem;
  color: #64756F;
  font-weight: 600;
}
.gy-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}
.gy-share-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}
.gy-share-btn:hover {
  transform: translateY(-2px);
  opacity: .92;
}
.gy-share-fb { background: #1877F2; }
.gy-share-wa { background: #25D366; }
.gy-share-x { background: #111111; }

/* ---------- Inner page hero ---------- */
.gy-page-hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 56px;
  background:
    radial-gradient(1200px 420px at 88% -10%, rgba(255,212,42,.18), transparent 55%),
    linear-gradient(118deg, #003828 0%, #005C3D 42%, #008A4C 78%, #006B3C 100%);
  color: #fff;
  isolation: isolate;
}
.gy-page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.gy-ph-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.gy-ph-glow-a {
  width: 340px; height: 340px;
  right: -80px; top: -120px;
  background: radial-gradient(circle, rgba(255,212,42,.28), transparent 68%);
  animation: gyPhFloat 9s var(--ease) infinite alternate;
}
.gy-ph-glow-b {
  width: 280px; height: 280px;
  left: -100px; bottom: -140px;
  background: radial-gradient(circle, rgba(234,248,241,.2), transparent 70%);
  animation: gyPhFloat 11s var(--ease) infinite alternate-reverse;
}
.gy-ph-glow-c {
  width: 160px; height: 160px;
  right: 22%; bottom: -40px;
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 70%);
}
.gy-ph-grid {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}
.gy-ph-arc {
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255,212,42,.22);
  border-radius: 46% 54% 48% 52%;
  box-shadow: inset 0 0 0 18px rgba(255,255,255,.03);
}
.gy-page-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.gy-crumb {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.72);
  margin-bottom: 1.2rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.gy-crumb a { color: rgba(255,255,255,.78); text-decoration: none; transition: color .2s var(--ease); }
.gy-crumb a:hover { color: #FFD42A; }
.gy-crumb .cur { color: #FFD42A; font-weight: 700; }
.gy-crumb i { opacity: .55; flex-shrink: 0; }
.gy-page-hero-copy {
  max-width: min(920px, 100%);
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gy-page-hero-eye {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #FFD42A;
  margin-bottom: .75rem;
}
.gy-page-hero-eye::before {
  content: '';
  width: 26px; height: 3px;
  border-radius: 999px;
  background: #FFD42A;
  box-shadow: 0 0 16px rgba(255,212,42,.55);
}
.gy-page-hero-title {
  margin: 0 auto;
  max-width: 54ch;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.35;
  color: #fff;
  text-align: center;
  text-wrap: balance;
  animation: gyPhRise .7s var(--ease) both;
}
.gy-page-hero-desc {
  margin: .85rem auto 0;
  max-width: 46ch;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  text-align: center;
  animation: gyPhRise .85s var(--ease) both;
}
.gy-page-hero-rule {
  display: block;
  width: 72px;
  height: 4px;
  margin: 1.25rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFD42A, rgba(255,212,42,.15));
  animation: gyPhRise 1s var(--ease) both;
}
@keyframes gyPhFloat {
  from { transform: translate3d(0,0,0) scale(1); }
  to { transform: translate3d(-12px, 10px, 0) scale(1.05); }
}
@keyframes gyPhRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .gy-page-hero { padding: 36px 0 40px; }
  .gy-ph-arc { opacity: .45; }
  .gy-page-hero-title { font-size: clamp(20px, 5.5vw, 26px); max-width: 36ch; }
}
@media (prefers-reduced-motion: reduce) {
  .gy-ph-glow-a, .gy-ph-glow-b,
  .gy-page-hero-title, .gy-page-hero-desc, .gy-page-hero-rule {
    animation: none !important;
  }
}

/* Hide duplicate page H1 under hero (title already in hero) */
.gy .static-page-title,
.gy .static-page-divider { display: none; }
.gy .static-page-wrap { padding-top: .25rem; }

/* ---------- Sambutan Kepala Sekolah ---------- */
.gy-sambutan {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 85% 15%, rgba(255,212,42,.35), transparent 60%),
    radial-gradient(520px 300px at 10% 90%, rgba(0,107,60,.22), transparent 68%),
    linear-gradient(135deg, #006B3C 0%, #008A4C 45%, #009B55 72%, #F6C927 140%);
  color: #fff;
}
.gy-sambutan::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: -70px;
  border-radius: 50%;
  border: 48px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.gy-sambutan::after {
  content: '';
  position: absolute;
  width: 42%;
  height: 100%;
  right: 0;
  top: 0;
  background: linear-gradient(135deg, rgba(255,212,42,.18) 0%, transparent 70%);
  pointer-events: none;
}
.gy-sambutan .gy-sec-eye { color: #FFD42A; }
.gy-sambutan .gy-sec-title,
.gy-sambutan #gySambutanTitle { color: #fff !important; }
.gy-sambutan-text { color: rgba(255,255,255,.88) !important; }
.gy-sambutan-name { color: #fff !important; }
.gy-sambutan-role { color: rgba(255,255,255,.72) !important; }
.gy-sambutan-sign strong { color: #FFD42A !important; }
.gy-sambutan-quote { color: rgba(255,212,42,.35) !important; }
.gy-sambutan-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}
.gy-sambutan-photo {
  text-align: center;
}
.gy-sambutan-photo img,
.gy-sambutan-fallback {
  width: 240px;
  height: 240px;
  border-radius: 28px;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  background: #EAF8F1;
  border: 6px solid #fff;
  box-shadow: 0 18px 48px rgba(0,70,45,.12), 0 0 0 10px #EAF8F1;
}
.gy-sambutan-fallback {
  display: grid;
  place-items: center;
  color: #008A4C;
}
.gy-sambutan-fallback svg {
  width: 64px;
  height: 64px;
}
.gy-sambutan-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0D2921;
  margin-bottom: .2rem;
}
.gy-sambutan-role {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #008A4C;
}
.gy-sambutan-copy { position: relative; max-width: 640px; }
.gy-sambutan-quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 5rem;
  line-height: .7;
  color: #008A4C;
  opacity: .18;
  margin: .35rem 0 -.35rem;
}
.gy-sambutan-text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
  color: #64756F;
  font-style: italic;
}
.gy-sambutan-sign {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.gy-sambutan-sign span {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: #FFD42A;
}
.gy-sambutan-sign strong {
  font-size: .95rem;
  font-weight: 800;
  color: #008A4C;
}

.gy .sambutan-section { display: none !important; }

/* ---------- Galeri (fix fade-up opacity 0) ---------- */
.gy-gallery,
.gy .gallery-section {
  background:
    radial-gradient(620px 280px at 0% 20%, rgba(0,138,76,.22), transparent 68%),
    radial-gradient(520px 240px at 100% 80%, rgba(255,212,42,.2), transparent 68%),
    linear-gradient(180deg, #EAF8F1 0%, #F4FBF7 42%, #FFFFFF 100%) !important;
  overflow: hidden;
  padding: 56px 0;
  position: relative;
}
.gy-gallery::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 5px;
  border-radius: 0 8px 8px 0;
  background: linear-gradient(180deg, #FFD42A 0%, #008A4C 45%, #006B3C 100%);
  box-shadow: 0 0 18px rgba(0,138,76,.25);
  pointer-events: none;
  z-index: 0;
}
.gy-gallery > .gy-wrap { position: relative; z-index: 1; }
.gy .gallery-section::before,
.gy .gallery-section::after { display: none !important; }
.gy .gallery-section .section-title,
.gy .gallery-section .gy-sec-title,
.gy-gallery .gy-sec-title { color: #0D2921 !important; }
.gy-gallery .gy-sec-eye { color: #008A4C; }
.gy .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.gy .gallery-item,
.gy .gallery-item.fade-up {
  opacity: 1 !important;
  transform: none !important;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #EAF8F1;
  box-shadow: 0 12px 32px rgba(0,70,45,.08);
  border: 1.5px solid rgba(0,138,76,.16);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.gy .gallery-item:hover {
  border-color: rgba(0,138,76,.45);
  box-shadow: 0 16px 36px rgba(0,138,76,.16);
  transform: translateY(-3px);
}
.gy .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gy .gallery-item:hover img { transform: scale(1.06); }
.gy .gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 80, 48, .78));
  opacity: 0;
  transition: opacity .28s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: .9rem 1rem;
}
.gy .gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gy .gallery-item-title {
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 1px 4px rgba(0, 40, 28, .35);
}
.gy .gallery-item-type {
  position: absolute;
  top: .65rem;
  right: .65rem;
  background: rgba(0, 138, 76, .92);
  color: #fff;
  border-radius: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 6px 16px rgba(0, 70, 45, .22);
  backdrop-filter: blur(6px);
  z-index: 3;
}
.gy .gallery-item-type svg {
  width: 15px;
  height: 15px;
  display: block;
}
.gy .gallery-item-type i {
  display: grid;
  place-items: center;
  line-height: 0;
}
.gy .gallery-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  background: rgba(8, 40, 28, .12);
}
.gy .gallery-play-ico {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(145deg, #FFE56A 0%, #FFD42A 55%, #F0C020 100%);
  color: #0D2921;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0, 40, 28, .28);
  border: 2px solid rgba(255, 255, 255, .55);
  transition: transform .25s ease;
}
.gy .gallery-item:hover .gallery-play-ico { transform: scale(1.06); }
.gy .gallery-play-ico svg {
  width: 22px;
  height: 22px;
  margin-left: 2px;
  display: block;
}
.gy .gallery-play-ico i {
  display: grid;
  place-items: center;
  line-height: 0;
}
.gy .gallery-item-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #EAF8F1, #D9EFE3);
  color: #008A4C;
}
.gy .gallery-item-fallback svg {
  width: 36px;
  height: 36px;
  opacity: .55;
}

/* Compatibility with existing content templates */
.gy .section-pad,
.gy .fcs-section {
  background: transparent !important;
}
.gy .news-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(580px 260px at 95% 10%, rgba(255,212,42,.3), transparent 65%),
    radial-gradient(480px 240px at 5% 90%, rgba(0,138,76,.12), transparent 70%),
    linear-gradient(180deg, #EAF8F1 0%, #FFFFFF 42%, #FFFDF1 100%) !important;
}
.gy .maps-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(640px 280px at 0% 0%, rgba(0,155,85,.18), transparent 62%),
    radial-gradient(520px 260px at 100% 100%, rgba(255,212,42,.28), transparent 65%),
    linear-gradient(160deg, #F4FBF7 0%, #EAF8F1 45%, #FFF8DC 100%) !important;
}
.gy .section-title { font-family: var(--font) !important; color: #0D2921 !important; }
.gy .section-label { color: #008A4C !important; }
.gy .news-card,
.gy .map-info-card,
.gy .feature-card {
  border-radius: 24px !important;
  border: 1px solid #E5EEE9 !important;
  box-shadow: var(--shadow-soft) !important;
}
.gy .map-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 16px 40px rgba(0,70,45,.06);
  border: 1px solid #E5EEE9;
}
.gy .map-info-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0D2921;
  margin-bottom: 1.1rem;
  padding-bottom: .9rem;
  border-bottom: 2px solid #EAF8F1;
}
.gy .map-info-row {
  display: flex;
  gap: .75rem;
  margin-bottom: 1rem;
}
.gy .map-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #EAF8F1;
  color: #008A4C;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gy .map-info-text strong {
  display: block;
  font-size: .85rem;
  color: #0D2921;
  font-weight: 700;
}
.gy .map-info-text span {
  display: block;
  font-size: .84rem;
  color: #64756F;
  line-height: 1.55;
  white-space: pre-line;
}

/* ---------- Detail Jurusan ---------- */
.gy-jur-detail { background: #fff; padding: 12px 0 72px; }
.gy-jur-detail-head { margin-bottom: 2.5rem; max-width: 48rem; }
.gy-jur-photos-head { margin-bottom: 1.25rem; }
.gy-jur-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gy-jur-photo {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: #EAF8F1;
  box-shadow: 0 12px 32px rgba(0,70,45,.08);
  text-align: left;
}
.gy-jur-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s var(--ease, cubic-bezier(.22,1,.36,1));
}
.gy-jur-photo:hover img { transform: scale(1.05); }
.gy-jur-photo-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .65rem .85rem;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(transparent, rgba(0,40,28,.75));
}
.gy-jur-empty {
  text-align: center;
  padding: 3.5rem 1rem;
  color: #64756F;
}
.gy-jur-empty h2 { color: #0D2921; margin: .75rem 0 .5rem; font-size: 1.4rem; }
.gy-jur-empty--soft {
  border: 1px dashed #C9DDD2;
  border-radius: 20px;
  background: #F4FBF7;
  padding: 2.5rem 1rem;
}
/* ---------- Daftar Semua Jurusan ---------- */
.gy-jur-list {
  padding: 28px 0 72px;
  background:
    radial-gradient(560px 240px at 0% 0%, rgba(0,138,76,.12), transparent 68%),
    radial-gradient(480px 220px at 100% 100%, rgba(255,212,42,.2), transparent 65%),
    linear-gradient(180deg, #F4FBF7 0%, #FFFFFF 50%, #FFFDF1 100%);
}
.gy-jur-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.gy-jur-list-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: #fff;
  border: 1.5px solid rgba(0,138,76,.14);
  box-shadow: 0 14px 36px rgba(0,70,45,.07);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gy-jur-list-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,138,76,.4);
  box-shadow: 0 18px 42px rgba(0,138,76,.12);
}
.gy-jur-list-ico {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #008A4C, #009B55);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gy-jur-list-card:nth-child(even) .gy-jur-list-ico {
  background: linear-gradient(135deg, #F6C927, #FFD42A);
  color: #0D2921;
}
.gy-jur-list-ico svg { width: 24px; height: 24px; }
.gy-jur-list-body { min-width: 0; }
.gy-jur-list-name {
  margin: .2rem 0 .45rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #0D2921;
  line-height: 1.3;
}
.gy-jur-list-desc {
  margin: 0 0 .75rem;
  font-size: .88rem;
  color: #64756F;
  line-height: 1.5;
}
.gy-jur-list-cta {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  color: #008A4C;
}
.gy-jur-list-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
@media (max-width: 720px) {
  .gy-jur-list-grid { grid-template-columns: 1fr; }
}

.gy-jur-related { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid #E5EEE9; }

/* ---------- Prestasi Sekolah (homepage) ---------- */
.gy-prestasi {
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(620px 280px at 100% 0%, rgba(255,212,42,.3), transparent 62%),
    radial-gradient(520px 260px at 0% 100%, rgba(0,138,76,.16), transparent 68%),
    linear-gradient(165deg, #F4FBF7 0%, #FFFFFF 40%, #FFFDF1 100%);
}
.gy-prestasi .gy-wrap { position: relative; z-index: 1; }
.gy-prestasi-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1.75rem;
}
.gy-prestasi-chip {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0,138,76,.14);
  box-shadow: 0 12px 28px rgba(0,70,45,.06);
  font-size: .9rem;
  font-weight: 600;
  color: #0D2921;
  line-height: 1.4;
}
.gy-prestasi-chip-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #008A4C, #FFD42A);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gy-prestasi-chip-ico svg { width: 16px; height: 16px; }
.gy-prestasi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.gy-prestasi-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #E5EEE9;
  box-shadow: 0 14px 36px rgba(0,70,45,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gy-prestasi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,138,76,.12);
}
.gy-prestasi-img {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: #EAF8F1;
  overflow: hidden;
}
.gy-prestasi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.gy-prestasi-card:hover .gy-prestasi-img img { transform: scale(1.05); }
.gy-prestasi-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #008A4C;
  background: linear-gradient(145deg, #EAF8F1, #FFF8DC);
}
.gy-prestasi-fallback svg { width: 36px; height: 36px; }
.gy-prestasi-badge {
  position: absolute;
  top: .7rem;
  left: .7rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(0,138,76,.92);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.gy-prestasi-body { padding: 1rem 1.1rem 1.15rem; }
.gy-prestasi-date {
  font-size: .75rem;
  color: #87958F;
  margin-bottom: .35rem;
}
.gy-prestasi-name {
  margin: 0 0 .65rem;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.02em;
}
.gy-prestasi-name a { color: #0D2921; text-decoration: none; }
.gy-prestasi-name a:hover { color: #008A4C; }
.gy-prestasi-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  color: #008A4C;
  text-decoration: none;
}
.gy-prestasi-link:hover { color: #006B3C; }
@media (max-width: 900px) {
  .gy-prestasi-highlights,
  .gy-prestasi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gy-prestasi-highlights,
  .gy-prestasi-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .gy-jur-photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gy-jur-photo-grid { grid-template-columns: 1fr; }
}

/* ---------- PPDB full-width form (no hero) ---------- */
.gy-ppdb {
  width: 100%;
  background:
    radial-gradient(640px 280px at 0% 0%, rgba(0,138,76,.12), transparent 65%),
    radial-gradient(560px 260px at 100% 0%, rgba(255,212,42,.22), transparent 60%),
    linear-gradient(180deg, #EAF8F1 0%, #FFFFFF 35%, #FFFDF1 100%);
}
.gy-ppdb-body {
  width: 100%;
  padding: 28px 0 64px;
}
.gy-ppdb-formwrap {
  width: min(100% - 2.5rem, var(--container));
  max-width: none;
}
.gy-ppdb-head {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #E5EEE9;
}
.gy-ppdb-eye {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #008A4C;
  margin-bottom: .55rem;
}
.gy-ppdb-eye::before {
  content: '';
  width: 22px; height: 3px;
  border-radius: 999px;
  background: #FFD42A;
}
.gy-ppdb-title {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
  color: #0D2921;
}
.gy-ppdb-desc {
  display: none;
}
.gy-ppdb-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 1.35rem;
}
.gy-ppdb-field.is-wide { grid-column: 1 / -1; }
.gy-ppdb-label {
  display: block;
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .4rem;
  color: #0D2921;
}
.gy-ppdb-label .req { color: #c02626; margin-left: .15rem; }
.gy-ppdb-input {
  width: 100%;
  min-height: 52px;
  border: 1.5px solid #D7E8DF;
  border-radius: 12px;
  padding: .85rem .95rem;
  font: inherit;
  background: #fff;
  color: #0D2921;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea.gy-ppdb-input { min-height: 120px; resize: vertical; }
.gy-ppdb-input:focus {
  outline: none;
  border-color: #008A4C;
  box-shadow: 0 0 0 3px rgba(0,138,76,.14);
}
.gy-ppdb-help {
  font-size: .78rem;
  color: #87958F;
  margin-top: .3rem;
}
.gy-ppdb-choices {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
}
.gy-ppdb-choice {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 500;
  color: #0D2921;
  background: #fff;
  border: 1px solid #E5EEE9;
  border-radius: 999px;
  padding: .45rem .85rem;
}
.gy-ppdb-actions {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E5EEE9;
}
.gy-ppdb-actions .gy-btn {
  min-width: 220px;
}
.gy-ppdb-alert {
  padding: .95rem 1.1rem;
  border-radius: 12px;
  margin-bottom: 1.15rem;
  font-weight: 600;
}
.gy-ppdb-alert--ok { background: #EAF8F1; color: #006B3C; }
.gy-ppdb-alert--err { background: #FEF2F2; color: #991B1B; }
.gy-ppdb-empty { color: #64756F; }

/* ---------- Informasi PPDB (terpisah dari form daftar) ---------- */
.gy-ppdb-info-hero {
  padding: 40px 0 28px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4FBF7 100%);
  border-bottom: 1px solid #E5EEE9;
}
.gy-ppdb-info-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 28px;
  align-items: center;
}
.gy-ppdb-info-eye {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #008A4C;
  margin-bottom: .75rem;
}
.gy-ppdb-info-eye::before {
  content: '';
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: #FFD42A;
}
.gy-ppdb-info-title {
  margin: 0 0 .75rem;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: #0D2921;
}
.gy-ppdb-info-intro {
  margin: 0 0 1.25rem;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.7;
  color: #64756F;
}
.gy-ppdb-info-cta { display: flex; flex-wrap: wrap; gap: .7rem; }
.gy-ppdb-info-cover {
  border-radius: 24px;
  overflow: hidden;
  border: 8px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(145deg, #FFD42A, #008A4C) border-box;
  box-shadow: 0 18px 40px rgba(0, 70, 45, .12);
  aspect-ratio: 4 / 3;
}
.gy-ppdb-info-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gy-ppdb-info-body { padding: 36px 0 64px; }
.gy-ppdb-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.gy-ppdb-info-card {
  background: #fff;
  border: 1px solid #E5EEE9;
  border-radius: 22px;
  padding: 1.25rem 1.35rem 1.4rem;
  box-shadow: 0 14px 32px rgba(0, 70, 45, .05);
}
.gy-ppdb-info-card-head {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  margin-bottom: .85rem;
}
.gy-ppdb-info-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #EAF8F1;
  color: #008A4C;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.gy-ppdb-info-ico svg { width: 20px; height: 20px; }
.gy-ppdb-info-card-head h2 {
  margin: 0 0 .25rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0D2921;
}
.gy-ppdb-info-card-head p {
  margin: 0;
  font-size: .86rem;
  color: #64756F;
  line-height: 1.45;
}
.gy-ppdb-info-card-body {
  font-size: .95rem;
  line-height: 1.7;
  color: #33413C;
}
.gy-ppdb-info-card-body p { margin: 0 0 .75rem; }
.gy-ppdb-info-card-body ul,
.gy-ppdb-info-card-body ol { margin: 0 0 .75rem; padding-left: 1.2rem; }
.gy-ppdb-info-card-body li { margin-bottom: .35rem; }
.gy-ppdb-info-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
  justify-content: center;
}

/* Brosur / gallery PPDB */
.gy-ppdb-brosur {
  padding: 8px 0 28px;
  background: linear-gradient(180deg, #F4FBF7 0%, #FFFFFF 70%);
}
.gy-ppdb-brosur-head { max-width: 640px; margin-bottom: 1.35rem; }
.gy-ppdb-brosur-title {
  margin: .35rem 0 .45rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 800;
  color: #0D2921;
  letter-spacing: -.02em;
}
.gy-ppdb-brosur-desc {
  margin: 0;
  color: #5B6B66;
  font-size: .95rem;
  line-height: 1.6;
}
.gy-ppdb-brosur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.1rem;
}
.gy-ppdb-brosur-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.gy-ppdb-brosur-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #0B5C3B;
  box-shadow: 0 10px 28px rgba(0, 70, 45, .12);
}
.gy-ppdb-brosur-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease);
}
.gy-ppdb-brosur-thumb:hover img { transform: scale(1.04); }
.gy-ppdb-brosur-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
  color: #006B3C;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 40, 28, .16);
}
.gy-ppdb-brosur-zoom svg { width: 16px; height: 16px; }
.gy-ppdb-brosur-card figcaption {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding: 0 .15rem;
}
.gy-ppdb-brosur-card figcaption strong {
  font-size: .88rem;
  color: #0D2921;
  font-weight: 700;
}
.gy-ppdb-brosur-card figcaption span {
  font-size: .78rem;
  color: #64756F;
  line-height: 1.4;
}
.gy-ppdb-lightbox[hidden] { display: none !important; }
.gy-ppdb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 28, 20, .88);
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.gy-ppdb-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #006B3C;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}
.gy-ppdb-lightbox-close svg { width: 18px; height: 18px; }
.gy-ppdb-lightbox-inner {
  margin: 0;
  max-width: min(920px, 100%);
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.gy-ppdb-lightbox-inner img {
  max-width: 100%;
  max-height: calc(100vh - 6.5rem);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  background: #fff;
}
.gy-ppdb-lightbox-inner figcaption {
  color: rgba(255, 255, 255, .9);
  font-size: .9rem;
  text-align: center;
  max-width: 40ch;
}

@media (max-width: 900px) {
  .gy-ppdb-info-hero-inner { grid-template-columns: 1fr; }
  .gy-ppdb-info-cover { max-width: 420px; }
  .gy-ppdb-info-grid { grid-template-columns: 1fr; }
  .gy-ppdb-info-bottom .gy-btn { width: 100%; justify-content: center; }
  .gy-ppdb-brosur-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
}

@media (max-width: 760px) {
  .gy-ppdb-grid { grid-template-columns: 1fr; }
  .gy-ppdb-actions .gy-btn { width: 100%; }
}

.gy .stats-section { display: none !important; }
.gy .main-content { height: 0; }

.gy-main-pad { padding-top: 8px; }

/* Animations */
.gy-fade-up {
  animation: gyUp .8s var(--ease) both;
}
@keyframes gyUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1180px) {
  .gy-links { display: none; }
  .gy-burger { display: grid; }
  .gy-btn-ppdb { display: none !important; }
  .gy-feat-grid,
  .gy-jur-grid { grid-template-columns: repeat(2, 1fr); }
  .gy-footer-grid { grid-template-columns: 1fr 1fr; }

  /* Navbar mobile — gradasi hijau sambutan (gelap → lime) */
  .gy-navwrap {
    background: linear-gradient(100deg, #006837 0%, #007A40 35%, #22B14C 68%, #8DC63F 100%) !important;
    border-bottom: none !important;
    backdrop-filter: none !important;
    box-shadow: 0 8px 24px rgba(0, 70, 45, .16);
  }
  .gy-navwrap.is-scrolled {
    box-shadow: 0 12px 32px rgba(0, 70, 45, .22);
  }
  .gy-brand-name {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 40, 28, .28);
  }
  .gy-icon-btn {
    background: rgba(255, 255, 255, .95) !important;
    color: #006837 !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 40, 28, .12);
  }
}
@media (max-width: 900px) {
  .gy-topbar { display: none; }
  .gy-hero { min-height: 0; padding: 16px 0 0; overflow: hidden; }
  .gy-swiper { padding: 8px 4px 20px; }
  .gy-slide-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .gy-visual { order: 2; padding: 12px 8px 28px; }
  .gy-copy { order: 1; padding: 0 4px 12px; }
  .gy-h1 { font-size: 32px; }
  .gy-headline { font-size: 20px; }
  .gy-photo-card {
    right: 12px;
    bottom: 12px;
    left: auto;
    padding: 8px 12px;
  }
  .gy-photo-card-meta { display: flex; }
  .gy-hero-inner > .swiper-button-prev {
    left: 16px;
    right: auto;
    top: auto;
    bottom: 18%;
    transform: none;
  }
  .gy-hero-inner > .swiper-button-next {
    right: 16px;
    top: auto;
    bottom: 18%;
    transform: none;
  }
  .gy-cta-row .gy-btn { width: 100%; }
  .gy-trust { flex-wrap: wrap; }
  .gy-trust-div { display: none; }
  .gy-jurusan { padding: 36px 0 56px; }
  .gy-sambutan { padding: 48px 0; }
  .gy-sambutan-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    text-align: center;
  }
  .gy-sambutan-copy { max-width: none; }
  .gy-sambutan-quote { display: none; }
  .gy-sambutan-sign { justify-content: center; }
  .gy .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Design 2 mobile — redesain elegan */
  .gy-hero--d2 {
    padding: 0 0 8px;
    background:
      radial-gradient(420px 200px at 80% 8%, rgba(255, 212, 42, .22), transparent 60%),
      linear-gradient(160deg, #006B3C 0%, #008A4C 52%, #009B55 100%);
    overflow: visible;
  }
  .gy-hero--d2 .gy-hero-inner {
    padding: 0;
    overflow: visible;
  }
  .gy-hero--d2 .gy-swiper {
    padding: 0;
    overflow: visible;
  }
  .gy-hero--d2 .swiper-slide {
    height: auto !important;
  }
  .gy-hero--d2 .gy-slide-grid--d2 {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  /* Gambar full-bleed, rata (tanpa miring) */
  .gy-hero--d2 .gy-visual {
    order: 1;
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    min-height: 230px !important;
    height: clamp(230px, 58vw, 380px) !important;
    max-height: none;
    z-index: 1;
    overflow: hidden;
    border-radius: 0 !important;
  }
  .gy-hero--d2 .gy-d2-visual {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
    border-radius: 0 !important;
  }
  .gy-hero--d2 .gy-d2-frame,
  .gy-hero--d2 .gy-d2-stripe {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    clip-path: none !important;
  }
  .gy-hero--d2 .gy-d2-photo {
    position: absolute !important;
    inset: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    border-radius: 0 !important;
    background: #0B5C3B;
    overflow: hidden;
  }
  .gy-hero--d2 .gy-d2-photo::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 40, 28, .55) 100%);
  }
  .gy-hero--d2 .gy-d2-photo img,
  .gy-hero--d2 .gy-d2-photo .gy-photo-fallback {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center;
    border-radius: 0 !important;
  }
  .gy-hero--d2 .gy-d2-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    align-items: flex-end;
    z-index: 3;
  }
  .gy-hero--d2 .gy-d2-motto {
    font-size: 12.5px;
    font-weight: 600;
    max-width: 17ch;
    letter-spacing: .01em;
  }
  .gy-hero--d2 .gy-photo-card {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(11, 92, 59, .88);
    backdrop-filter: blur(8px);
  }

  /* Copy elegan — lanjut gradasi sambutan (bukan putih) */
  .gy-hero--d2 .gy-copy {
    order: 2;
    width: auto;
    min-height: 0;
    padding: 20px 18px 14px;
    background: transparent;
    position: relative;
    z-index: 2;
  }
  .gy-hero--d2 .gy-eyebrow {
    font-size: 11px;
    letter-spacing: .14em;
    margin-bottom: .55rem;
    color: #FFD42A;
  }
  .gy-hero--d2 .gy-h1--accent {
    font-size: clamp(24px, 6.4vw, 30px);
    max-width: none;
    line-height: 1.18;
    margin-bottom: .55rem;
    color: #fff;
  }
  .gy-hero--d2 .gy-h1--accent em::after {
    height: .22em;
    bottom: .06em;
    opacity: .95;
  }
  .gy-hero--d2 .gy-desc {
    font-size: 13px;
    line-height: 1.65;
    max-width: none;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .86);
  }

  /* CTA 1 baris */
  .gy-hero--d2 .gy-cta-row {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: stretch;
    gap: .6rem;
    margin-bottom: 0;
  }
  .gy-hero--d2 .gy-cta-row .gy-btn {
    flex: 1 1 0;
    width: auto !important;
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
    border-radius: 999px;
    box-shadow: none;
  }
  .gy-hero--d2 .gy-cta-row .gy-btn-primary {
    box-shadow: 0 8px 18px rgba(255, 212, 42, .28);
  }
  .gy-hero--d2 .gy-cta-row .gy-btn svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
  }

  /* Trust full-width 1 baris elegan */
  .gy-hero--d2 .gy-trust--d2-desktop { display: none !important; }
  .gy-hero--d2 .gy-trust--d2-mobile {
    display: flex !important;
    order: 3;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 16px 10px 18px;
    background: linear-gradient(180deg, rgba(0, 80, 50, .35) 0%, rgba(0, 70, 45, .55) 100%);
    border-radius: 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .16);
    box-shadow: none;
    position: relative;
    z-index: 5;
  }
  .gy-hero--d2 .gy-trust--d2-mobile .gy-trust-item {
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .4rem;
    min-width: 0;
    padding: 0 .35rem;
    position: relative;
  }
  .gy-hero--d2 .gy-trust--d2-mobile .gy-trust-item + .gy-trust-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12%;
    bottom: 12%;
    width: 1px;
    background: rgba(255, 255, 255, .2);
  }
  .gy-hero--d2 .gy-trust--d2-mobile .gy-trust-item > div {
    min-width: 0;
  }
  .gy-hero--d2 .gy-trust--d2-mobile strong {
    font-size: 11.5px;
    letter-spacing: -.01em;
    color: #fff;
  }
  .gy-hero--d2 .gy-trust--d2-mobile span {
    font-size: 10px;
    line-height: 1.3;
    color: rgba(255, 255, 255, .72);
  }
  .gy-hero--d2 .gy-trust--d2-mobile .gy-trust-div { display: none !important; }
  .gy-hero--d2 .gy-trust--d2-mobile .gy-trust-ico {
    width: 36px;
    height: 36px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .14);
    color: #FFD42A;
  }

  .gy-hero--d2 .gy-hero-inner > .swiper-button-prev,
  .gy-hero--d2 .gy-hero-inner > .swiper-button-next {
    top: calc(clamp(230px, 58vw, 380px) / 2);
    bottom: auto;
    transform: translateY(-50%);
    width: 34px !important;
    height: 34px !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .14) !important;
  }
  .gy-hero--d2 .gy-hero-inner > .swiper-button-prev { left: 10px; }
  .gy-hero--d2 .gy-hero-inner > .swiper-button-next { right: 10px; }

  /* Features section lebih rapat setelah hero */
  .gy-hero--d2 + .gy-features {
    padding-top: 18px;
  }
}
@media (max-width: 640px) {
  .gy-feat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .gy-feat {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 12px;
    border-radius: 18px;
  }
  .gy-feat-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .gy-feat-ico svg { width: 18px; height: 18px; }
  .gy-feat-body h3 { font-size: 13.5px; }
  .gy-feat-body p { font-size: 11.5px; line-height: 1.45; }
  .gy-jur-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .gy-jur-media { aspect-ratio: 4 / 3; }
  .gy-jur-body { padding: 12px 11px 13px; }
  .gy-jur-name { font-size: 13px; }
  .gy-jur-desc { font-size: 11.5px; -webkit-line-clamp: 2; }
  .gy-jur-badge { font-size: 10px; padding: 4px 8px; top: 8px; right: 8px; }
  .gy-jur-media-ico { width: 30px; height: 30px; left: 8px; bottom: 8px; border-radius: 10px; }
  .gy-jur-media-ico svg { width: 14px; height: 14px; }
  .gy-footer-grid { grid-template-columns: 1fr; }
  .gy-btn-ppdb span.label { display: none; }
  .gy-brand-name { font-size: 16px; }
  .gy-nav { min-height: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  .gy-fade-up, .gy-feat, .gy-jur, .gy-btn { animation: none; transition: none; }
}
