:root {
  --wd-primary: #166534;
  --wd-primary-dark: #0f3f27;
  --wd-accent: #d9a12d;
  --wd-ink: #111827;
  --wd-muted: #64748b;
  --wd-line: #dce7e1;
  --wd-paper: #ffffff;
  --wd-soft: #f4faf7;
  --wd-sky: #e0f2fe;
  --wd-danger: #b91c1c;
  --wd-radius: 8px;
  --wd-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--wd-ink);
  background: #f7faf8;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--wd-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--wd-primary-dark);
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wd-shell {
  min-height: 100vh;
}

.wd-container {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
}

.wd-topbar {
  display: none;
}

.wd-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.wd-topbar a {
  color: #eefdf4;
}

.wd-quick-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.wd-hero {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(5, 24, 20, 0.88) 0%, rgba(8, 55, 40, 0.68) 46%, rgba(5, 24, 20, 0.2) 100%),
    var(--wd-primary);
}

.wd-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 76px;
  background: linear-gradient(180deg, rgba(247, 250, 248, 0), #f7faf8);
  z-index: -1;
}

.wd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.12);
}

.wd-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.wd-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation-name: wdHeroFade;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.wd-hero-slide:first-child {
  opacity: 1;
}

.wd-hero-slide:only-child {
  position: absolute;
  opacity: 1;
  animation: none;
}

@keyframes wdHeroFade {
  0%,
  28% {
    opacity: 1;
    transform: scale(1);
  }

  34%,
  94% {
    opacity: 0;
    transform: scale(1.035);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.wd-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  min-height: 330px;
  padding-block: 54px 88px;
}

.wd-hero-copy {
  max-width: 760px;
}

.wd-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.wd-logo {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
  box-shadow: 0 18px 38px rgba(2, 6, 23, 0.24);
}

.wd-kicker,
.wd-hero-badge {
  margin: 0 0 8px;
  color: #facc15;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff7d6;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.wd-title {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: 3.15rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.wd-subtitle {
  max-width: 690px;
  margin: 14px 0 0;
  color: #e6fff0;
  font-size: 1.08rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.wd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.wd-button-admin {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.wd-button-admin:hover {
  color: #0b1f1a;
  background: #fff;
}

.wd-hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 62px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(18px);
}

.wd-panel-label {
  margin: 0 0 12px;
  color: #fff7ed;
  font-weight: 800;
}

.wd-panel-links,
.wd-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.wd-panel-links a,
.wd-hero-facts div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #f8fafc;
  background: rgba(15, 23, 42, 0.2);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.wd-panel-links a:hover {
  color: #111827;
  background: #fef3c7;
  text-decoration: none;
}

.wd-hero-facts strong {
  color: #fff;
  font-size: 0.98rem;
}

.wd-hero-facts span {
  color: #dff7ec;
  font-size: 0.78rem;
  font-weight: 600;
}

.wd-search {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.wd-search input {
  min-width: 0;
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--wd-ink);
  background: #fff;
}

.wd-button,
.wd-search button,
.wd-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  color: #fff;
  background: var(--wd-primary);
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.wd-button:hover,
.wd-search button:hover,
.wd-card-button:hover {
  color: #fff;
  background: var(--wd-primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.wd-button-accent {
  color: #10231d;
  background: #d6a42b;
  box-shadow: 0 12px 28px rgba(214, 164, 43, 0.26);
}

.wd-button-accent:hover {
  color: #111827;
  background: #e6b63c;
}

.wd-button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
}

.wd-button-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.wd-button-light {
  color: #0b3b2b;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.wd-button-light:hover {
  color: #0b3b2b;
  background: #f8fafc;
}

.wd-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.wd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
}

.wd-nav-brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  gap: 12px;
  color: #0b3b2b;
}

.wd-nav-brand:hover {
  color: #0b3b2b;
  text-decoration: none;
}

.wd-nav-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.wd-nav-brand strong,
.wd-nav-brand small {
  display: block;
  line-height: 1.15;
}

.wd-nav-brand strong {
  font-size: 1.12rem;
  font-weight: 900;
}

.wd-nav-brand small {
  color: #5b766b;
  font-size: 0.78rem;
  font-weight: 700;
}

.wd-nav-toggle {
  display: none;
  border: 1px solid var(--wd-line);
  border-radius: 6px;
  width: 42px;
  height: 42px;
  background: #fff;
}

.wd-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--wd-ink);
}

.wd-menu,
.wd-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wd-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}

.wd-menu li {
  position: relative;
}

.wd-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--wd-ink);
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.wd-menu a:hover,
.wd-menu li:hover > a {
  color: var(--wd-primary-dark);
  background: #e8f4ee;
  text-decoration: none;
  transform: translateY(-1px);
}

.wd-menu .wd-contact-link {
  padding-inline: 18px;
  color: #fff;
  background: #105c3e;
  box-shadow: 0 10px 24px rgba(16, 92, 62, 0.22);
}

.wd-menu .wd-contact-link:hover {
  color: #fff;
  background: #0b3b2b;
}

.wd-menu .dropdown-menu,
.wd-menu ul {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  display: none;
  padding: 8px;
  border: 1px solid var(--wd-line);
  border-radius: var(--wd-radius);
  background: #fff;
  box-shadow: var(--wd-shadow);
}

.wd-menu li:hover > .dropdown-menu,
.wd-menu li:hover > ul {
  display: block;
}

.wd-menu .dropdown-menu .dropdown-menu,
.wd-menu ul ul {
  left: 100%;
  top: 0;
}

.wd-main {
  padding: 82px 0 64px;
}

.wd-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.wd-feature-tabs {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: -42px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.13);
}

.wd-feature-tabs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 88px;
  padding: 14px 16px;
  border-right: 1px solid rgba(15, 23, 42, 0.1);
  color: #053b2e;
  font-weight: 900;
  text-align: center;
}

.wd-feature-tabs i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #105c3e;
  background: #eef7f2;
}

.wd-feature-tabs a:last-child {
  border-right: 0;
}

.wd-feature-tabs a:hover {
  color: #0b3b2b;
  background: #f2f8f5;
  text-decoration: none;
}

.wd-feature-tabs a:hover i {
  color: #fff;
  background: #105c3e;
}

.wd-welcome {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
  padding: 26px;
  border: 1px solid rgba(16, 92, 62, 0.1);
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #f3faf6 100%);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07);
}

.wd-welcome-photo {
  padding: 22px;
  border: 1px solid rgba(16, 92, 62, 0.16);
  border-radius: 8px;
  background: #eef7f2;
}

.wd-welcome-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.wd-welcome-copy .wd-kicker {
  color: #c08a16;
}

.wd-welcome-copy h2 {
  max-width: 780px;
  margin: 0 0 16px;
  color: #071712;
  font-size: 2.72rem;
  line-height: 1.14;
}

.wd-welcome-copy p {
  max-width: 680px;
  color: #475569;
}

.wd-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 6px;
}

.wd-mini-stats div {
  padding: 14px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
}

.wd-mini-stats strong,
.wd-mini-stats span {
  display: block;
}

.wd-mini-stats strong {
  color: #0b3b2b;
  font-size: 1.05rem;
}

.wd-mini-stats span {
  color: var(--wd-muted);
  font-size: 0.86rem;
}

.wd-content,
.wd-sidebar-section,
.wd-empty,
.wd-widget {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: var(--wd-paper);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
}

.wd-content {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.wd-content-inner {
  padding: 0;
}

.wd-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.wd-section {
  margin: 46px 0;
}

.wd-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.wd-section-head h2 {
  margin: 0;
  color: #071712;
  font-size: 2rem;
  line-height: 1.18;
}

.wd-section-head p {
  margin-bottom: 8px;
}

.wd-section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
  margin-top: 46px;
}

.wd-section-head-small h2 {
  font-size: 1.65rem;
}

.wd-modern-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wd-modern-card {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.wd-modern-card:hover {
  border-color: rgba(16, 92, 62, 0.32);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
  text-decoration: none;
  transform: translateY(-3px);
}

.wd-modern-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  color: #fff;
  background: #105c3e;
}

.wd-modern-card strong,
.wd-modern-card span {
  display: block;
}

.wd-modern-card strong {
  color: #08251b;
  font-size: 1.08rem;
}

.wd-modern-card span {
  color: var(--wd-muted);
  font-size: 0.92rem;
}

.wd-budget-section {
  margin-top: 54px;
}

.wd-budget-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 30px;
  align-items: stretch;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(5, 24, 20, 0.94), rgba(16, 92, 62, 0.9)),
    #105c3e;
  box-shadow: 0 24px 60px rgba(16, 92, 62, 0.2);
}

.wd-budget-card h2 {
  max-width: 620px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 2.15rem;
  line-height: 1.18;
}

.wd-budget-card p {
  max-width: 650px;
  color: #dff7ec;
}

.wd-budget-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
}

.wd-budget-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.wd-budget-panel {
  display: grid;
  gap: 14px;
}

.wd-budget-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wd-budget-metrics div {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.wd-budget-metrics strong,
.wd-budget-metrics span,
.wd-budget-metrics em {
  display: block;
}

.wd-budget-metrics strong {
  margin-top: 7px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.wd-budget-metrics span {
  color: #dff7ec;
  font-size: 0.86rem;
  font-weight: 800;
}

.wd-budget-metrics em {
  margin-top: 7px;
  color: rgba(223, 247, 236, 0.82);
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.4;
}

.wd-budget-progress,
.wd-budget-note {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.wd-budget-progress {
  padding: 16px;
}

.wd-budget-progress > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.wd-budget-progress span,
.wd-budget-progress small {
  color: #dff7ec;
}

.wd-budget-progress strong {
  color: #fff;
}

.wd-budget-progress i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: var(--wd-accent);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.wd-budget-progress small {
  display: block;
  margin-top: 10px;
}

.wd-budget-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: #dff7ec;
  font-size: 0.9rem;
  line-height: 1.5;
}

.wd-gallery-contact {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.wd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--wd-muted);
  font-size: 0.92rem;
}

.wd-module-page {
  margin-bottom: 56px;
}

.wd-module-hero {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 30px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #f3faf6 100%);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07);
}

.wd-module-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  color: #fff;
  background: #105c3e;
  box-shadow: 0 16px 34px rgba(16, 92, 62, 0.22);
}

.wd-module-icon i {
  font-size: 1.7rem;
}

.wd-module-hero h1 {
  margin: 0 0 12px;
  color: #071712;
  font-size: 2.55rem;
  line-height: 1.12;
}

.wd-module-hero p {
  max-width: 760px;
  color: #475569;
}

.wd-module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.wd-module-content,
.wd-module-grid {
  margin-top: 24px;
}

.wd-module-content {
  padding: 24px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.wd-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wd-module-grid div {
  padding: 20px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.wd-module-grid strong,
.wd-module-grid span {
  display: block;
}

.wd-module-grid strong {
  color: #08251b;
  font-size: 1.04rem;
}

.wd-module-grid span {
  margin-top: 6px;
  color: var(--wd-muted);
  font-size: 0.92rem;
}

.wd-breadcrumb a {
  color: #0b3b2b;
  font-weight: 800;
}

.wd-gallery-page {
  margin-bottom: 56px;
}

.wd-gallery-page .wd-section-head h1 {
  margin: 0;
  color: #071712;
  font-size: 2.45rem;
  line-height: 1.12;
}

.wd-gallery-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.wd-gallery-card {
  overflow: hidden;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.wd-gallery-card:hover {
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.wd-gallery-card a {
  display: grid;
  color: #08251b;
}

.wd-gallery-card a:hover {
  text-decoration: none;
}

.wd-gallery-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef7f2;
}

.wd-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.wd-gallery-card:hover .wd-gallery-thumb img {
  transform: scale(1.045);
}

.wd-gallery-caption {
  padding: 16px;
  font-weight: 900;
}

.wd-alert {
  grid-column: 1 / -1;
  padding: 18px;
  border: 1px solid rgba(16, 92, 62, 0.14);
  border-radius: 8px;
  color: #0b3b2b;
  background: #eef7f2;
}

.wd-lapak-page .wd-section-head h1 {
  margin: 0 0 8px;
  color: #071712;
  font-size: 2.45rem;
  line-height: 1.12;
}

.wd-lapak-page .wd-section-head p:not(.wd-kicker) {
  max-width: 680px;
  color: #475569;
}

.wd-lapak-filter {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(220px, 1fr) auto auto;
  gap: 10px;
  margin: 24px 0;
  padding: 14px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.055);
}

.wd-lapak-filter select,
.wd-lapak-filter input {
  min-width: 0;
  border: 1px solid rgba(16, 92, 62, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--wd-ink);
  background: #fff;
}

.wd-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.wd-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.wd-product-card:hover {
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.wd-product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef7f2;
}

.wd-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.wd-product-body h2 {
  margin: 0;
  color: #08251b;
  font-size: 1.08rem;
  line-height: 1.32;
}

.wd-product-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.wd-product-price strong {
  color: #105c3e;
  font-size: 1.18rem;
}

.wd-product-price s,
.wd-product-price span {
  color: var(--wd-muted);
  font-size: 0.86rem;
}

.wd-product-body p {
  margin: 0;
  color: #475569;
  font-size: 0.92rem;
}

.wd-product-seller {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #0b3b2b;
  font-size: 0.9rem;
  font-weight: 800;
}

.wd-product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.wd-product-actions .wd-button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.9rem;
}

.wd-api-page .wd-section-head h1 {
  margin: 0 0 8px;
  color: #071712;
  font-size: 2.45rem;
  line-height: 1.12;
}

.wd-api-page .wd-section-head p:not(.wd-kicker) {
  color: #475569;
}

.wd-api-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.wd-api-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.wd-api-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef7f2;
}

.wd-api-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-api-card.pemerintah .wd-api-image {
  aspect-ratio: 4 / 3;
  background: #eef7f2;
}

.wd-api-card.pemerintah .wd-api-image img {
  object-fit: contain;
  object-position: center top;
}

.wd-api-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
}

.wd-api-body h2 {
  margin: 0;
  color: #08251b;
  font-size: 1.2rem;
  line-height: 1.28;
}

.wd-api-body p {
  color: #475569;
}

.wd-document-list,
.wd-ticket-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.wd-document-card,
.wd-ticket-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.wd-document-icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #105c3e;
  background: #eaf6f0;
  font-size: 1.35rem;
}

.wd-document-body h2,
.wd-ticket-card h2 {
  margin: 0 0 8px;
  color: #08251b;
  font-size: 1.08rem;
  line-height: 1.3;
}

.wd-document-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wd-document-actions .wd-button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

.wd-ticket-card {
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wd-ticket-card:hover,
.wd-ticket-card:focus {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.1);
}

.wd-ticket-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}

.wd-ticket-card p {
  margin: 12px 0 0;
  color: #475569;
}

.wd-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.wd-status-danger {
  background: #b42318;
}

.wd-status-info {
  background: #0b75a6;
}

.wd-status-success {
  background: #108047;
}

.wd-sdgs-page {
  display: grid;
  gap: 24px;
}

.wd-sdgs-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(16, 92, 62, 0.96), rgba(9, 45, 35, 0.96)),
    var(--wd-primary);
  color: #fff;
  box-shadow: 0 22px 58px rgba(16, 92, 62, 0.18);
}

.wd-sdgs-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--wd-accent);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wd-sdgs-summary strong {
  display: block;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 1;
}

.wd-sdgs-summary p {
  margin: 10px 0 0;
  color: #dff7ec;
}

.wd-sdgs-ring {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  justify-self: end;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0d3d2d 0 55%, transparent 56%),
    conic-gradient(var(--wd-accent) var(--wd-sdgs-score, 0%), rgba(255, 255, 255, 0.18) 0);
}

.wd-sdgs-ring b {
  color: #fff;
  font-size: 2rem;
}

.wd-sdgs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wd-sdgs-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  min-height: 148px;
  padding: 18px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.wd-sdgs-badge {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--wd-sdgs-color);
  font-size: 1.35rem;
  font-weight: 900;
}

.wd-sdgs-body {
  display: grid;
  min-width: 0;
  align-content: space-between;
  gap: 14px;
}

.wd-sdgs-body h2 {
  margin: 0;
  color: var(--wd-ink);
  font-size: 1rem;
  line-height: 1.35;
}

.wd-sdgs-score {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.wd-sdgs-score strong {
  color: var(--wd-ink);
  font-size: 1.45rem;
  line-height: 1;
}

.wd-sdgs-score span {
  color: var(--wd-muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.wd-sdgs-body i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7f2ec;
}

.wd-sdgs-body i b {
  display: block;
  width: var(--wd-sdgs-width);
  height: 100%;
  border-radius: inherit;
  background: var(--wd-sdgs-color);
}

.wd-idm-page {
  display: grid;
  gap: 24px;
}

.wd-idm-years {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wd-idm-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 18px;
}

.wd-idm-summary > div {
  padding: 24px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.wd-idm-summary > div:first-child {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(16, 92, 62, 0.96), rgba(9, 45, 35, 0.96)),
    var(--wd-primary);
}

.wd-idm-summary span,
.wd-idm-status-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--wd-accent);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wd-idm-summary strong {
  display: block;
  color: inherit;
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  line-height: 1;
}

.wd-idm-summary p {
  margin: 10px 0 0;
  color: #dff7ec;
}

.wd-idm-status-card {
  display: grid;
  align-content: center;
}

.wd-idm-status-card strong {
  color: var(--wd-primary);
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  line-height: 1.12;
}

.wd-idm-dimensions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wd-idm-dimension,
.wd-idm-help {
  padding: 20px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.wd-idm-dimension span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--wd-primary);
  font-weight: 900;
}

.wd-idm-dimension h2 {
  min-height: 48px;
  margin: 14px 0 12px;
  color: var(--wd-ink);
  font-size: 1.05rem;
  line-height: 1.35;
}

.wd-idm-dimension strong {
  display: block;
  margin-bottom: 12px;
  color: var(--wd-ink);
  font-size: 1.65rem;
  line-height: 1;
}

.wd-idm-dimension i {
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7f2ec;
}

.wd-idm-dimension i b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--wd-accent);
}

.wd-idm-help strong {
  color: var(--wd-ink);
  font-size: 1.05rem;
}

.wd-idm-help p {
  margin: 8px 0 0;
  color: var(--wd-muted);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(7, 24, 18, 0.48);
}

.modal.in,
.modal.show {
  display: block;
}

.modal-open {
  overflow: hidden;
}

.modal-dialog {
  width: min(720px, calc(100% - 32px));
  margin: 42px auto;
}

.modal-lg {
  width: min(860px, calc(100% - 32px));
}

.modal-content {
  position: relative;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
}

.modal-header,
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  justify-content: flex-end;
}

.modal-title {
  margin: 0;
}

.modal .close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wd-line);
  border-radius: 999px;
  color: var(--wd-ink);
  background: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.modal-backdrop {
  display: none !important;
}

.wd-modal-content {
  border: 0;
  border-radius: 8px;
  overflow: hidden;
}

.wd-complaint-form .modal-header,
.wd-complaint-form .modal-footer {
  border-color: var(--wd-line);
}

.wd-complaint-form .modal-title {
  color: var(--wd-ink);
  font-weight: 900;
}

.wd-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.wd-form-grid label,
.wd-captcha-wrap {
  display: grid;
  gap: 7px;
  margin: 0;
}

.wd-form-grid span {
  color: var(--wd-ink);
  font-weight: 800;
}

.wd-form-grid input,
.wd-form-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(16, 92, 62, 0.18);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--wd-ink);
  background: #fff;
  font: inherit;
}

.wd-form-grid textarea {
  resize: vertical;
}

.wd-form-wide {
  grid-column: 1 / -1;
}

.wd-captcha-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.wd-captcha-row a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(16, 92, 62, 0.18);
  border-radius: 8px;
  background: #f8fafc;
}

.wd-captcha-row img {
  max-width: 100%;
  height: auto;
}

.wd-ticket-detail p {
  color: #334155;
}

.wd-ticket-detail h5 {
  margin: 18px 0 10px;
  color: #08251b;
  font-weight: 900;
}

.wd-ticket-photo {
  display: block;
  max-width: 100%;
  margin-top: 12px;
  border-radius: 8px;
}

.wd-ticket-comment {
  padding: 12px;
  border-radius: 8px;
  background: #f0f8f4;
}

.wd-ticket-comment strong,
.wd-ticket-comment span {
  display: block;
}

.wd-ticket-comment span {
  color: #64748b;
  font-size: 0.85rem;
}

.wd-data-table {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
}

.wd-data-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.wd-data-table th,
.wd-data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  color: #334155;
  font-size: 0.92rem;
  vertical-align: top;
}

.wd-data-table th {
  color: #08251b;
  background: #f0f8f4;
  font-weight: 900;
  text-align: left;
}

.wd-data-table tbody tr:hover td {
  background: #fbfdfb;
}

.wd-wilayah-page {
  display: grid;
  gap: 24px;
}

.wd-summary-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.wd-summary-card {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f1faf5 100%);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.wd-summary-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #105c3e;
  background: #dff3e8;
}

.wd-summary-card strong {
  display: block;
  color: #08251b;
  font-size: 1.65rem;
  line-height: 1.1;
}

.wd-summary-card p {
  margin: 5px 0 0;
  color: #64748b;
  font-size: 0.88rem;
  font-weight: 800;
}

.wd-wilayah-list {
  display: grid;
  gap: 18px;
}

.wd-wilayah-card {
  overflow: hidden;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.wd-wilayah-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: linear-gradient(135deg, #f6fbf8 0%, #ffffff 65%);
}

.wd-wilayah-label {
  display: inline-flex;
  margin-bottom: 8px;
  color: #c79211;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wd-wilayah-head h2 {
  margin: 0;
  color: #08251b;
  font-size: 1.55rem;
}

.wd-wilayah-head p {
  margin: 8px 0 0;
  color: #475569;
}

.wd-wilayah-head i {
  color: #105c3e;
}

.wd-wilayah-total {
  min-width: 132px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  background: #105c3e;
}

.wd-wilayah-total strong,
.wd-wilayah-total span {
  display: block;
}

.wd-wilayah-total strong {
  font-size: 1.8rem;
  line-height: 1;
}

.wd-wilayah-total span {
  margin-top: 5px;
  font-size: 0.82rem;
  font-weight: 800;
}

.wd-wilayah-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 92, 62, 0.12);
  border-top: 1px solid rgba(16, 92, 62, 0.12);
  border-bottom: 1px solid rgba(16, 92, 62, 0.12);
}

.wd-wilayah-stats span {
  padding: 14px 16px;
  color: #475569;
  background: #fbfdfb;
  font-size: 0.9rem;
  font-weight: 800;
}

.wd-wilayah-stats strong {
  display: block;
  color: #08251b;
  font-size: 1.15rem;
}

.wd-wilayah-card .wd-data-table {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.wd-subsection-head {
  margin-top: 28px;
  margin-bottom: 12px;
}

.wd-subsection-head h2 {
  margin: 0;
  color: #08251b;
  font-size: 1.35rem;
}

.wd-group-detail {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.wd-group-logo {
  display: flex;
  min-height: 220px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.06);
}

.wd-group-logo img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.wd-stat-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-block: 34px 58px;
}

.wd-stat-full-layout {
  padding-block: 34px 58px;
}

.wd-stat-sidebar {
  position: sticky;
  top: 18px;
}

.wd-stat-main,
.wd-stat-panel,
.wd-stat-nav {
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
}

.wd-stat-main {
  padding: 22px;
}

.wd-stat-main-full {
  width: 100%;
}

.wd-stat-panel {
  padding: 22px;
}

.wd-stat-nav {
  overflow: hidden;
}

.wd-stat-nav h2 {
  margin: 0;
  padding: 18px 20px;
  color: #fff;
  background: #105c3e;
  font-size: 1.1rem;
}

.wd-stat-nav-group {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.wd-stat-nav-group h3 {
  margin: 0;
  padding: 14px 18px;
  color: #08251b;
  background: #f0f8f4;
  font-size: 0.98rem;
}

.wd-stat-nav-group h3 i {
  margin-right: 8px;
  color: #105c3e;
}

.wd-stat-nav-links {
  display: grid;
  gap: 2px;
  padding: 8px;
}

.wd-stat-nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #334155;
  font-weight: 750;
}

.wd-stat-nav-links a:hover,
.wd-stat-nav-links a.is-active {
  color: #fff;
  background: #105c3e;
}

.wd-stat-actions,
.wd-stat-table-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wd-stat-actions .wd-button,
.wd-stat-table-actions .wd-button {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 0.88rem;
}

.wd-stat-actions .button-switch.is-active {
  color: #fff;
  background: #105c3e;
}

.wd-stat-filter {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 18px 0;
}

.wd-stat-filter label {
  color: #08251b;
  font-weight: 900;
}

.wd-stat-filter select {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 92, 62, 0.16);
  border-radius: 8px;
  background: #fff;
}

.wd-stat-chart {
  min-height: 360px;
  margin: 20px 0;
  padding: 12px;
  border: 1px solid rgba(16, 92, 62, 0.1);
  border-radius: 8px;
  background: #f8fcfa;
}

.wd-sotk-wrap {
  margin-top: 22px;
}

.wd-sotk-tree {
  display: grid;
  gap: 22px;
  position: relative;
}

.wd-sotk-root,
.wd-sotk-single {
  display: flex;
  justify-content: center;
}

.wd-sotk-connector {
  width: 2px;
  height: 26px;
  margin: -8px auto -8px;
  background: rgba(16, 92, 62, 0.34);
}

.wd-sotk-section {
  display: grid;
  gap: 14px;
  position: relative;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #f8fcfa;
}

.wd-sotk-section::before {
  position: absolute;
  top: -38px;
  left: 50%;
  width: 2px;
  height: 38px;
  content: "";
  background: rgba(16, 92, 62, 0.34);
  transform: translateX(-50%);
}

.wd-sotk-section h2 {
  margin: 0;
  color: #08251b;
  font-size: 1.15rem;
}

.wd-sotk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  position: relative;
  padding-top: 24px;
}

.wd-sotk-grid::before {
  position: absolute;
  top: 0;
  right: calc(12.5% - 7px);
  left: calc(12.5% - 7px);
  height: 2px;
  content: "";
  background: rgba(16, 92, 62, 0.28);
}

.wd-sotk-card {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.wd-sotk-grid .wd-sotk-card::before {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 2px;
  height: 24px;
  content: "";
  background: rgba(16, 92, 62, 0.28);
  transform: translateX(-50%);
}

.wd-sotk-card.is-root,
.wd-sotk-card.is-second {
  width: min(100%, 340px);
}

.wd-sotk-card.is-second::before {
  position: absolute;
  top: -26px;
  left: 50%;
  width: 2px;
  height: 26px;
  content: "";
  background: rgba(16, 92, 62, 0.34);
  transform: translateX(-50%);
}

.wd-sotk-card.is-root {
  border-color: rgba(16, 92, 62, 0.34);
  box-shadow: 0 20px 48px rgba(16, 92, 62, 0.14);
}

.wd-sotk-photo {
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  background: #eef7f2;
}

.wd-sotk-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.wd-sotk-body {
  padding: 14px;
  text-align: center;
}

.wd-sotk-body span,
.wd-sotk-body strong {
  display: block;
}

.wd-sotk-body span {
  color: #c79211;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wd-sotk-body strong {
  margin-top: 6px;
  color: #08251b;
  font-size: 1rem;
  line-height: 1.25;
}

.wd-stat-updated {
  margin: 12px 0 0;
  color: #b42318;
  font-weight: 800;
}

.wd-stat-table-actions {
  justify-content: flex-start;
  margin-top: 16px;
}

.is-hidden {
  display: none;
}

.wd-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 22px;
  align-items: start;
}

.wd-detail-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
  background: #eef7f2;
}

.wd-progress-grid {
  display: grid;
  gap: 12px;
}

.wd-progress-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
}

.wd-progress-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.wd-progress-grid figcaption {
  padding: 10px 12px;
  color: #08251b;
  font-weight: 900;
}

.wd-map-box {
  height: 340px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #eef7f2;
}

.wd-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wd-gallery-grid a {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(5, 24, 20, 0), rgba(5, 24, 20, 0.74)),
    url("../images/gallery-1.svg") center / cover;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.wd-gallery-grid a:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(5, 24, 20, 0), rgba(5, 24, 20, 0.74)),
    url("../images/gallery-2.svg") center / cover;
}

.wd-gallery-grid a:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(5, 24, 20, 0), rgba(5, 24, 20, 0.74)),
    url("../images/gallery-3.svg") center / cover;
}

.wd-gallery-grid span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-weight: 900;
}

.wd-contact-card {
  padding: 28px;
  border: 1px solid rgba(16, 92, 62, 0.14);
  border-radius: 8px;
  background: #eef7f2;
}

.wd-contact-card h2 {
  margin: 0 0 10px;
  color: #071712;
  font-size: 1.85rem;
}

.wd-contact-card p {
  color: #475569;
}

.wd-section-title::before {
  content: "";
  width: 6px;
  height: 28px;
  border-radius: 99px;
  background: var(--wd-accent);
}

.wd-marquee {
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  color: #064e3b;
  background: #ecfdf5;
}

.wd-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}

.wd-service-item {
  display: grid;
  gap: 6px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 16px;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.wd-service-item:hover {
  border-color: rgba(22, 101, 52, 0.34);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  text-decoration: none;
  transform: translateY(-2px);
}

.wd-service-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #fff;
  background: var(--wd-primary);
}

.wd-service-item strong {
  color: #0f172a;
  font-size: 1rem;
}

.wd-service-item small {
  color: var(--wd-muted);
  line-height: 1.45;
}

.wd-slider {
  position: relative;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 16px;
  background: #0f172a;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.14);
}

.wd-slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.wd-slide {
  position: relative;
  min-height: 360px;
  scroll-snap-align: start;
  color: #fff;
  cursor: pointer;
}

.wd-slide img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.wd-slide-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.wd-article-list {
  display: grid;
  gap: 16px;
}

.wd-article-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.wd-article-card:hover {
  border-color: rgba(22, 101, 52, 0.34);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.11);
  transform: translateY(-2px);
}

.wd-article-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--wd-soft);
}

.wd-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.wd-article-card:hover .wd-article-image img {
  transform: scale(1.04);
}

.wd-article-content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wd-article-title {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.32;
}

.wd-article-title a {
  color: #0f172a;
}

.wd-article-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 10px;
  color: var(--wd-muted);
  font-size: 0.88rem;
}

.wd-article-excerpt {
  margin: 0;
  color: #334155;
}

.wd-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 14px;
  color: var(--wd-primary-dark);
  font-weight: 800;
}

.wd-detail-title {
  margin: 0 0 10px;
  font-size: 2.55rem;
  line-height: 1.12;
}

.wd-detail-image {
  margin: 20px 0;
  overflow: hidden;
  border-radius: 18px;
}

.wd-detail-body {
  font-size: 1.03rem;
}

.wd-share-box {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: center;
  margin: 30px 0 24px;
  padding: 18px;
  border: 1px solid rgba(16, 92, 62, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.wd-share-box span,
.wd-share-box strong {
  display: block;
}

.wd-share-box > div:first-child span {
  margin-bottom: 5px;
  color: var(--wd-accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wd-share-box > div:first-child strong {
  color: var(--wd-ink);
  line-height: 1.35;
}

.wd-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: flex-end;
}

.wd-share-actions a,
.wd-share-actions button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.wd-share-facebook {
  background: #1877f2;
}

.wd-share-whatsapp {
  background: #128c7e;
}

.wd-share-telegram {
  background: #229ed9;
}

.wd-share-x {
  background: #111827;
}

.wd-share-copy {
  background: var(--wd-primary);
}

.wd-detail-body table {
  width: 100%;
  border-collapse: collapse;
}

.wd-detail-body th,
.wd-detail-body td {
  padding: 10px;
  border: 1px solid var(--wd-line);
}

.wd-sidebar {
  display: grid;
  gap: 18px;
}

.wd-sidebar-section,
.wd-widget {
  padding: 20px;
  border-radius: 8px;
}

.wd-sidebar-section h2,
.wd-widget h2,
.wd-widget h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.wd-login-actions {
  display: grid;
  gap: 8px;
}

.wd-clock {
  color: #064e3b;
  border-color: #bbf7d0;
  background: #ecfdf5;
}

.wd-sidebar-section:first-child {
  border-top: 4px solid var(--wd-primary);
}

.wd-footer {
  color: #dff7ec;
  background:
    linear-gradient(180deg, #0d3327 0%, #061712 100%);
}

.wd-footer a {
  color: #bfdbfe;
}

.wd-footer-top {
  padding: 52px 0 42px;
}

.wd-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1fr 1fr;
  gap: 34px;
}

.wd-footer h2,
.wd-footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.wd-footer p {
  color: #c9e8dc;
}

.wd-footer-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  margin-bottom: 14px;
}

.wd-footer-links p {
  margin: 8px 0;
}

.wd-footer-links a:hover {
  color: #fff;
}

.wd-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 0;
  color: #cbd5e1;
  font-size: 0.92rem;
}

.wd-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wd-pagination-container {
  margin-top: 28px;
  text-align: center;
}

.wd-pagination-container p {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 12px;
  padding: 7px 12px;
  border: 1px solid var(--wd-line);
  border-radius: 999px;
  color: var(--wd-muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.wd-pagination-container .pagination {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--wd-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  justify-content: center;
  box-shadow: 0 16px 38px rgba(16, 92, 62, 0.08);
}

.wd-pagination-container .btn-page {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid rgba(16, 92, 62, 0.18);
  border-radius: 6px;
  padding: 8px 12px;
  color: #0b3b2b;
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}

.wd-pagination-container .btn-page:hover,
.wd-pagination-container .btn-page.is-active {
  color: #fff;
  background: #105c3e;
}

.wd-pagination-container .btn-page.is-dots {
  border-color: transparent;
  color: var(--wd-muted);
  background: transparent;
  cursor: default;
}

.wd-empty {
  padding: 28px;
  color: var(--wd-muted);
}

.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--wd-line);
  border-radius: 6px;
  background: #fff;
}

.pagination .active span {
  color: #fff;
  border-color: var(--wd-primary);
  background: var(--wd-primary);
}

.wd-pagination {
  display: block;
  margin: 28px 0 0;
}

.wd-pagination nav {
  display: flex;
  justify-content: center;
}

.wd-pagination nav > div:first-child {
  display: none !important;
}

.wd-pagination nav > div:last-child {
  display: flex !important;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--wd-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 38px rgba(16, 92, 62, 0.08);
}

.wd-pagination nav > div:last-child > div:first-child {
  min-width: 190px;
}

.wd-pagination p {
  margin: 0;
  color: var(--wd-muted);
  font-size: 0.9rem;
}

.wd-pagination p span {
  display: inline;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-weight: 800;
}

.wd-pagination nav > div:last-child > div:last-child > span,
.wd-pagination nav > div:last-child > div:last-child > div,
.wd-pagination nav > div:last-child > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
}

.wd-pagination a,
.wd-pagination nav > div:last-child > div:last-child span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(16, 92, 62, 0.18);
  border-radius: 6px;
  color: #0b3b2b;
  background: #fff;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.wd-pagination nav > div:last-child > div:last-child span span {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.wd-pagination a:hover,
.wd-pagination [aria-current="page"],
.wd-pagination [aria-current="page"] span,
.wd-pagination .active span {
  color: #fff !important;
  border-color: var(--wd-primary) !important;
  background: var(--wd-primary) !important;
}

.wd-pagination [aria-disabled="true"] span,
.wd-pagination span[aria-disabled="true"] {
  color: #94a3b8 !important;
  background: #f8fafc !important;
  cursor: not-allowed;
}

.wd-pagination [aria-current="page"] > span,
.wd-pagination [aria-disabled="true"] > span {
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0 !important;
  color: inherit !important;
  background: transparent !important;
}

.wd-pagination svg {
  width: 16px;
  height: 16px;
}

.scrollToTop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--wd-primary);
  box-shadow: var(--wd-shadow);
}

.scrollToTop.is-visible {
  display: flex;
}

@media (max-width: 900px) {
  .wd-hero-inner,
  .wd-layout,
  .wd-footer-grid {
    grid-template-columns: 1fr;
  }

  .wd-hero-inner {
    min-height: 300px;
    padding-block: 42px 76px;
  }

  .wd-title {
    font-size: 2.35rem;
  }

  .wd-search {
    max-width: 100%;
  }

  .wd-nav-toggle {
    display: block;
  }

  .wd-menu {
    display: none;
    width: 100%;
    align-items: stretch;
    padding: 0 0 12px;
  }

  .wd-nav {
    flex-wrap: wrap;
  }

  .wd-nav-brand {
    min-width: 0;
  }

  .wd-feature-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-welcome {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .wd-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-sdgs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-idm-summary,
  .wd-idm-dimensions {
    grid-template-columns: 1fr;
  }

  .wd-modern-grid,
  .wd-budget-card,
  .wd-gallery-contact,
  .wd-footer-grid {
    grid-template-columns: 1fr;
  }

  .wd-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-gallery-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-api-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-sotk-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-wilayah-head {
    flex-direction: column;
  }

  .wd-wilayah-total {
    width: 100%;
  }

  .wd-wilayah-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wd-stat-layout,
  .wd-group-detail,
  .wd-detail-grid {
    grid-template-columns: 1fr;
  }

  .wd-stat-sidebar {
    position: static;
  }

  .wd-document-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .wd-document-actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .wd-lapak-filter {
    grid-template-columns: 1fr 1fr;
  }

  .wd-module-grid {
    grid-template-columns: 1fr;
  }

  .wd-section-head-row,
  .wd-footer-bottom-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .wd-menu.is-open {
    display: grid;
  }

  .wd-menu .dropdown-menu,
  .wd-menu ul,
  .wd-menu .dropdown-menu .dropdown-menu,
  .wd-menu ul ul {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
  }

  .wd-menu li:hover > .dropdown-menu,
  .wd-menu li:hover > ul {
    display: block;
  }
}

@media (max-width: 640px) {
  .wd-container {
    width: min(100% - 22px, 1160px);
  }

  .wd-topbar-inner,
  .wd-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .wd-logo {
    width: 60px;
    height: 60px;
    flex-basis: 60px;
  }

  .wd-title {
    font-size: 1.95rem;
  }

  .wd-search {
    flex-direction: column;
  }

  .wd-panel-links,
  .wd-hero-facts,
  .wd-footer-grid {
    grid-template-columns: 1fr;
  }

  .wd-service-grid {
    grid-template-columns: 1fr;
  }

  .wd-feature-tabs {
    grid-template-columns: 1fr;
  }

  .wd-feature-tabs a {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  }

  .wd-welcome-copy h2 {
    font-size: 2rem;
  }

  .wd-mini-stats {
    grid-template-columns: 1fr;
  }

  .wd-modern-grid,
  .wd-gallery-grid,
  .wd-gallery-list,
  .wd-product-grid,
  .wd-api-grid,
  .wd-summary-grid,
  .wd-lapak-filter {
    grid-template-columns: 1fr;
  }

  .wd-wilayah-stats {
    grid-template-columns: 1fr;
  }

  .wd-sotk-section {
    padding: 14px;
  }

  .wd-sotk-grid {
    grid-template-columns: 1fr;
  }

  .wd-sotk-grid::before {
    display: none;
  }

  .wd-document-card {
    grid-template-columns: 1fr;
  }

  .wd-ticket-head {
    flex-direction: column;
  }

  .wd-stat-main,
  .wd-stat-panel {
    padding: 16px;
  }

  .wd-stat-actions {
    justify-content: flex-start;
  }

  .wd-budget-card {
    padding: 24px;
  }

  .wd-sdgs-summary {
    grid-template-columns: 1fr;
  }

  .wd-sdgs-ring {
    justify-self: start;
  }

  .wd-sdgs-grid {
    grid-template-columns: 1fr;
  }

  .wd-budget-metrics {
    grid-template-columns: 1fr;
  }

  .wd-budget-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wd-share-box {
    grid-template-columns: 1fr;
  }

  .wd-share-actions {
    justify-content: flex-start;
  }

  .wd-form-grid,
  .wd-captcha-row {
    grid-template-columns: 1fr;
  }

  .wd-pagination nav > div:last-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .wd-pagination nav > div:last-child > div:last-child > span,
  .wd-pagination nav > div:last-child > div:last-child > div,
  .wd-pagination nav > div:last-child > div:last-child {
    justify-content: flex-start;
  }

  .wd-budget-card h2,
  .wd-section-head h2,
  .wd-module-hero h1 {
    font-size: 1.65rem;
  }

  .wd-module-hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .wd-article-card {
    grid-template-columns: 1fr;
  }

  .wd-slide,
  .wd-slide img {
    min-height: 240px;
    height: 240px;
  }

  .wd-content-inner {
    padding: 0;
  }

  .wd-detail-title {
    font-size: 2rem;
  }
}
