/* PT. KALTIM ADHIGUNA DERMAGA — Dynamic Modern */

:root {
  --blue: #0ea5e9;
  --blue-bright: #38bdf8;
  --blue-deep: #0369a1;
  --turquoise: #2dd4bf;
  --turquoise-dark: #0d9488;
  --orange: #fb923c;
  --yellow: #fbbf24;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #f0fdfa;
  --surface-2: #ecfeff;
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 20px 50px rgba(14, 165, 233, 0.18);
  --shadow-hover: 0 28px 60px rgba(14, 165, 233, 0.28);
  --space-section-x: clamp(1rem, 4vw, 1.5rem);
  --header-h: 3.75rem;
  --touch-min: 44px;
  --nav-drawer: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: clip;
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

a {
  color: var(--blue-deep);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

/* —— Scroll progress —— */
.dm-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.06);
  pointer-events: none;
}

.dm-scroll-progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--turquoise), var(--blue-bright), var(--orange));
  border-radius: 0 4px 4px 0;
  transition: width 0.12s ease-out;
}

/* —— Header —— */
.dm-header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem var(--space-section-x);
  padding-top: max(0.75rem, env(safe-area-inset-top, 0));
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.dm-header--scrolled {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.12);
}

.dm-header.is-nav-open {
  /* Di atas FAB (948) agar drawer & backdrop tidak tertutup floating button */
  z-index: 970;
  background: rgba(15, 23, 42, 0.96);
  /* backdrop-filter membuat containing block: fixed .dm-nav jadi terpotong setinggi header */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/*
 * Di layar sempit: blur pada header membuat position:fixed anak (.dm-nav)
 * terikat ke header (~60px), bukan viewport — drawer menu jadi strip pendek.
 * Tanpa blur di mobile, drawer full-height.
 */
@media (max-width: 960px) {
  .dm-header.dm-header--scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
  }
}

.dm-header.is-nav-open .dm-header__logo {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.dm-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.dm-header__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 0.9rem + 0.4vw, 1.05rem);
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 920;
}

.dm-header--scrolled .dm-header__logo {
  color: var(--ink);
  text-shadow: none;
}

.dm-header__logo span {
  color: var(--yellow);
}

.dm-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: var(--touch-min);
  height: var(--touch-min);
  padding: 0;
  margin: 0;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  z-index: 920;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dm-header--scrolled .dm-nav-toggle {
  border-color: rgba(15, 23, 42, 0.2);
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink);
}

.dm-header.is-nav-open .dm-nav-toggle {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.dm-nav-toggle:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.dm-nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.dm-header.is-nav-open .dm-nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.dm-header.is-nav-open .dm-nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.dm-header.is-nav-open .dm-nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.dm-nav-backdrop {
  display: none;
}

.dm-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  justify-content: flex-end;
}

.dm-nav a {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0;
}

.dm-header--scrolled .dm-nav a {
  color: var(--ink);
}

.dm-header.is-nav-open .dm-nav a {
  color: rgba(255, 255, 255, 0.95);
}

.dm-nav a:hover {
  color: var(--orange);
}

@media (max-width: 960px) {
  .dm-header__logo,
  .dm-nav-toggle {
    z-index: 960;
  }

  .dm-nav-toggle {
    display: flex;
  }

  .dm-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 940;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .dm-nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .dm-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    /* Di atas header & FAB; di bawah logo/toggle (960) */
    z-index: 952;
    width: min(100%, 20rem);
    max-width: 100vw;
    margin: 0;
    /* Satu baris dengan logo + tombol tutup; safe area + tinggi bar */
    padding: calc(4px + env(safe-area-inset-top, 0px) + var(--header-h) + 0.5rem) 1.25rem max(1.5rem, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--ink);
    border-left: 1px solid rgba(45, 212, 191, 0.25);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.35);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dm-header.is-nav-open .dm-nav {
    transform: translateX(0);
  }

  .dm-nav a {
    padding: 0.75rem 0;
    min-height: var(--touch-min);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
  }

  .dm-nav a:hover {
    color: var(--orange);
  }

  .dm-nav > a.dm-nav__cta {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dm-nav__dropdown li:last-child a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
}

/* —— Nav: dropdown & CTA —— */
.dm-nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.dm-nav__parent {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0.4rem 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
  border-radius: 0;
}

.dm-header--scrolled .dm-nav__parent {
  color: var(--ink);
}

.dm-header.is-nav-open .dm-nav__parent {
  color: rgba(255, 255, 255, 0.95);
}

.dm-nav__parent:hover {
  color: var(--orange);
}

.dm-nav__caret {
  display: inline-block;
  margin-left: 0.35rem;
  font-size: 0.55rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.dm-nav__item.is-open .dm-nav__caret {
  transform: rotate(-180deg);
}

.dm-nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dm-nav__dropdown a {
  font-weight: 500;
}

.dm-nav__cta {
  padding: 0.35rem 0.85rem !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--turquoise), var(--blue));
  color: var(--white) !important;
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.35);
}

.dm-header--scrolled .dm-nav__cta {
  color: var(--white) !important;
}

.dm-header.is-nav-open .dm-nav__cta {
  background: linear-gradient(135deg, var(--turquoise), var(--blue));
  color: var(--white) !important;
}

.dm-nav__cta:hover {
  color: var(--white) !important;
  filter: brightness(1.05);
}

@media (min-width: 961px) {
  .dm-nav__parent {
    display: inline-flex;
    width: auto;
    padding: 0.4rem 0;
  }

  .dm-nav__dropdown {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    min-width: 13.5rem;
    padding: 0.4rem 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(14, 165, 233, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0, 6px, 0);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 930;
  }

  .dm-nav__dropdown a {
    display: block;
    padding: 0.5rem 1rem !important;
    color: var(--ink) !important;
    font-size: 0.8125rem;
    border-radius: 0;
  }

  .dm-nav__dropdown a:hover {
    background: rgba(45, 212, 191, 0.12);
    color: var(--blue-deep) !important;
  }

  .dm-nav__item:hover .dm-nav__dropdown,
  .dm-nav__item:focus-within .dm-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }

  .dm-header--scrolled .dm-nav__dropdown a {
    color: var(--ink) !important;
  }
}

@media (max-width: 960px) {
  .dm-nav__parent {
    display: flex;
    padding: 0.75rem 0;
    min-height: var(--touch-min);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
  }

  .dm-nav__dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .dm-nav__item.is-open .dm-nav__dropdown {
    max-height: 22rem;
  }

  .dm-nav__dropdown a {
    padding: 0.55rem 0 0.55rem 0.75rem !important;
    font-size: 0.8rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88) !important;
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .dm-nav__dropdown li:last-child a {
    border-bottom: none;
  }

  .dm-nav__cta {
    margin-top: 0.25rem;
    text-align: center;
    justify-content: center;
  }
}

/* —— Halaman dalam (inner pages) —— */
html.dm-page-inner,
body.dm-page-inner {
  background: var(--surface);
}

.dm-page-hero {
  position: relative;
  padding: calc(4px + env(safe-area-inset-top, 0px) + var(--header-h) + 1.5rem) var(--space-section-x) 2.5rem;
  overflow: hidden;
}

.dm-page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--turquoise-dark) 50%, var(--ink) 100%);
  z-index: 0;
}

.dm-page-hero__bg--photo {
  background:
    linear-gradient(135deg, rgba(8, 32, 58, 0.88) 0%, rgba(5, 20, 40, 0.82) 100%),
    var(--dm-inner-hero-bg) center / cover no-repeat;
}

/* Gambar bagan struktur organisasi — desktop / mobile (@picture) */
.dm-struktur-bagan-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-section-x) 64px;
}
.dm-struktur-bagan {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.dm-struktur-bagan picture {
  display: block;
  width: 100%;
  line-height: 0;
}
.dm-struktur-bagan img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.dm-struktur-bagan-placeholder {
  text-align: center;
  padding: 56px 24px;
  color: rgba(8, 32, 58, 0.45);
  font-size: 0.95rem;
}

.dm-page-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.dm-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
}

.dm-breadcrumbs {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}

.dm-breadcrumbs a {
  color: rgba(255, 255, 255, 0.95);
}

.dm-breadcrumbs a:hover {
  color: var(--yellow);
}

.dm-breadcrumbs__sep {
  margin: 0 0.35rem;
  opacity: 0.55;
}

.dm-page-hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}

.dm-page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  color: var(--white);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.dm-page-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dm-meta-pill {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.95);
}

.dm-btn-primary--compact {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.dm-page-shell {
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--space-section-x) clamp(3rem, 6vw, 4rem);
}

/* —— Halaman error 404 —— */
.dm-error-404 {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 920px);
  padding: calc(4px + env(safe-area-inset-top, 0px) + var(--header-h) + 2rem) var(--space-section-x)
    clamp(2.5rem, 6vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dm-error-404__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(145deg, var(--blue-deep) 0%, #0c4a6e 38%, var(--turquoise-dark) 72%, var(--ink) 100%);
}

.dm-error-404__noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.dm-error-404__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  margin: 0;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-size: clamp(11rem, 42vw, 22rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
}

.dm-error-404__main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.dm-error-404__card {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 4px 24px rgba(8, 32, 58, 0.08),
    0 24px 64px rgba(8, 32, 58, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dm-error-404__crumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  margin: 0 0 1.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.dm-error-404__crumb a {
  color: var(--blue-deep);
  font-weight: 600;
}

.dm-error-404__crumb a:hover {
  color: var(--turquoise-dark);
}

.dm-error-404__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--blue-deep);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(45, 212, 191, 0.18));
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.dm-error-404__badge {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.3rem 0.85rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
}

.dm-error-404__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

.dm-error-404__lead {
  margin: 0 auto 1.5rem;
  max-width: 26rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.dm-error-404__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
}

.dm-error-404__actions .dm-btn-primary {
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.92rem;
}

.dm-error-404__divider {
  height: 1px;
  margin: 1.5rem 0 1.15rem;
  background: linear-gradient(90deg, transparent, rgba(8, 32, 58, 0.12), transparent);
}

.dm-error-404__hint {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.dm-error-404__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.dm-error-404__chips a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-deep);
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.dm-error-404__chips a:hover {
  background: rgba(45, 212, 191, 0.15);
  border-color: var(--turquoise);
  transform: translateY(-1px);
}

.dm-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  min-height: var(--touch-min);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-deep);
  background: transparent;
  border: 2px solid rgba(3, 105, 161, 0.35);
  border-radius: 999px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.dm-btn-outline:hover {
  background: rgba(14, 165, 233, 0.08);
  border-color: var(--blue-deep);
  transform: translateY(-2px);
}

.dm-btn-outline--on-light {
  font-size: 0.92rem;
  padding: 0.85rem 1.35rem;
}

@media (max-width: 480px) {
  .dm-error-404__actions {
    flex-direction: column;
    width: 100%;
  }

  .dm-error-404__actions .dm-btn-primary,
  .dm-error-404__actions .dm-btn-outline--on-light {
    width: 100%;
    max-width: 20rem;
  }
}

.dm-page-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
}

@media (min-width: 960px) {
  .dm-page-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    align-items: start;
  }
}

.dm-page-main {
  min-width: 0;
}

.dm-page-banner {
  margin: 0 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.15);
}

.dm-page-banner img {
  width: 100%;
  height: auto;
}

.dm-page-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.75rem;
}

.dm-section-label-inline {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin: 0 0 0.35rem;
}

.dm-about-split {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .dm-about-split {
    grid-template-columns: 1fr 1fr;
  }
}

.dm-about-split h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.dm-about-split ul {
  padding-left: 1.15rem;
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.dm-carousel-placeholder {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}

.dm-dots {
  display: flex;
  gap: 0.35rem;
  justify-content: center;
  padding: 0.65rem;
  background: rgba(15, 23, 42, 0.04);
}

.dm-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.2);
}

.dm-dots span.is-active {
  background: var(--blue);
}

.dm-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dm-side-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.08);
}

.dm-side-title {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 1rem;
}

.dm-side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-side-list li {
  border-bottom: 1px solid #e2e8f0;
}

.dm-side-list li:last-child {
  border-bottom: none;
}

.dm-side-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.875rem;
}

.dm-side-list a[aria-current="page"] {
  color: var(--blue-deep);
}

.dm-side-thumb {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--turquoise), var(--blue));
  opacity: 0.9;
}

.dm-side-list__sub {
  display: block;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.dm-side-cats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-side-cats li {
  margin-bottom: 0.45rem;
}

.dm-side-cats a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-deep);
}

.dm-post-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dm-post-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

@media (max-width: 560px) {
  .dm-post-item {
    grid-template-columns: 1fr;
  }
}

.dm-post-thumb {
  min-height: 88px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.35), rgba(14, 165, 233, 0.35));
}

.dm-post-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.dm-post-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: var(--surface);
  color: var(--muted);
}

.dm-post-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.dm-post-excerpt {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.dm-footer__grid--wide {
  max-width: 1280px;
}

.dm-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dm-footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.dm-footer-socials a:hover {
  background: rgba(251, 191, 36, 0.2);
  color: var(--yellow);
}

/* —— Hero full-screen + video —— */
.dm-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(5rem, env(safe-area-inset-top, 0)) var(--space-section-x) max(4rem, env(safe-area-inset-bottom, 0));
  overflow: hidden;
}

.dm-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dm-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dm-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 105, 161, 0.82) 0%,
    rgba(13, 148, 136, 0.55) 45%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 1;
}

.dm-hero__noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Titik-titik animasi di hero (canvas via JS) */
.dm-hero-dots {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.dm-page-hero .dm-hero-dots {
  z-index: 1;
}
.dm-hero-dots canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.dm-hero__content {
  position: relative;
  z-index: 3;
  max-width: min(960px, 100%);
  width: 100%;
  text-align: left;
}

@media (min-width: 900px) {
  .dm-hero__content {
    margin-left: 4vw;
  }
}

.dm-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.dm-hero__badge .dm-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  animation: dmPulse 1.8s ease-in-out infinite;
}

@keyframes dmPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.75;
  }
}

.dm-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 1rem;
}

.dm-hero__lead {
  font-size: clamp(0.95rem, 0.9rem + 0.35vw, 1.1rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: min(560px, 100%);
  margin: 0 0 2rem;
  font-weight: 400;
}

.dm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.dm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  min-height: var(--touch-min);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(251, 146, 60, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dm-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(251, 146, 60, 0.55);
}

.dm-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.25rem;
  min-height: var(--touch-min);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.dm-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.dm-hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: dmBounce 2.2s ease-in-out infinite;
}

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

/* —— Section shell —— */
.dm-section {
  padding: clamp(3.5rem, 8vw, 6rem) var(--space-section-x);
}

.dm-section--tight-top {
  padding-top: 0;
}

.dm-wrap--block {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.dm-section--surface {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.dm-section--dark {
  background: linear-gradient(145deg, #0c4a6e 0%, var(--ink) 55%, #134e4a 100%);
  color: rgba(255, 255, 255, 0.9);
}

.dm-wrap {
  max-width: min(1200px, 100%);
  margin: 0 auto;
  padding-inline: 0;
  min-width: 0;
}

.dm-lead--after-title {
  margin-top: 0.75rem;
}

.dm-section__head {
  margin-bottom: 2.5rem;
}

.dm-section__head--split {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .dm-section__head--split {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.dm-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--turquoise-dark);
  margin: 0 0 0.5rem;
}

.dm-section--dark .dm-eyebrow {
  color: var(--turquoise);
}

.dm-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
  color: var(--ink);
}

.dm-section--dark h2 {
  color: var(--white);
}

.dm-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.dm-section--dark .dm-lead {
  color: rgba(255, 255, 255, 0.75);
}

/* —— Asymmetric about —— */
.dm-about {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .dm-about {
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 3rem;
  }

  .dm-about__text {
    padding-right: 2rem;
  }
}

.dm-about__figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.dm-about__figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dm-about__figure::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 60%;
  height: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.35), transparent 70%);
  pointer-events: none;
}

/* —— Card stack —— */
.dm-stack-zone {
  padding: 2rem 1.5rem 6rem;
  max-width: 900px;
  margin: 0 auto;
}

.dm-stack-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--ink);
}

.dm-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dm-stack-card {
  position: sticky;
  top: clamp(4.5rem, 12vw, 6.25rem);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform-origin: center top;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.dm-stack-card:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-hover);
}

.dm-stack-card:nth-child(1) {
  background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 100%);
  z-index: 1;
}

.dm-stack-card:nth-child(2) {
  background: linear-gradient(135deg, #cffafe 0%, #fef3c7 100%);
  z-index: 2;
}

.dm-stack-card:nth-child(3) {
  background: linear-gradient(135deg, #f0fdfa 0%, #fed7aa 100%);
  z-index: 3;
}

.dm-stack-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.dm-stack-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dm-stack-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  animation: dmIconPulse 2.5s ease-in-out infinite;
}

.dm-stack-card:nth-child(2) .dm-stack-card__icon {
  animation-delay: 0.4s;
  background: rgba(45, 212, 191, 0.25);
}

.dm-stack-card:nth-child(3) .dm-stack-card__icon {
  animation-delay: 0.8s;
  background: rgba(251, 146, 60, 0.25);
}

@keyframes dmIconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

/* —— Services grid asymmetric —— */
.dm-services {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 600px) {
  .dm-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .dm-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
  }

  .dm-services .dm-svc:nth-child(1) {
    grid-column: span 2;
  }

  .dm-services .dm-svc:nth-child(4) {
    grid-column: span 2;
  }
}

.dm-svc {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.12);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.dm-svc:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: var(--shadow-hover);
}

.dm-svc__img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.dm-svc__body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.dm-svc h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}

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

/* —— Team —— */
.dm-team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.25rem);
}

.dm-team-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(45, 212, 191, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dm-team-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}

.dm-team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--turquoise);
}

.dm-team-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.25rem;
}

.dm-team-card span {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
}

/* —— News —— */
.dm-news {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 601px) and (max-width: 1024px) {
  .dm-news {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1025px) {
  .dm-news {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dm-home-pub-group {
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.dm-home-pub-group:last-of-type {
  margin-bottom: 0;
}
.dm-home-pub-group__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: var(--ink);
}
.dm-home-pub-group--pinned .dm-home-pub-group__title {
  color: var(--orange-dark, #c2410c);
}
.dm-news-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease;
}
.dm-news-card--pinned {
  box-shadow: 0 10px 34px rgba(234, 88, 12, 0.12);
}
.dm-news-card__pin-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dm-news-card__excerpt {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.dm-news-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.dm-news-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.dm-news-card__body {
  padding: 1.1rem 1.2rem 1.35rem;
}

.dm-news-card time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
}

.dm-news-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0.4rem 0;
  line-height: 1.35;
}

.dm-news-card a {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--orange);
}

/* —— Media strip —— */
.dm-media {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1rem);
}

@media (min-width: 481px) and (max-width: 900px) {
  .dm-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) {
  .dm-media {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dm-media a {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.dm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dm-media a:hover img {
  transform: scale(1.06);
}

.dm-media span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(15, 23, 42, 0.85));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
}

/* —— Partners —— */
.dm-partners {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(120px, 100%), 1fr));
  gap: clamp(0.65rem, 1.5vw, 0.75rem);
}

.dm-partner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.25s ease, transform 0.25s ease;
}

.dm-partner:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* —— Testimonials —— */
.dm-quote-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 600px) and (max-width: 899px) {
  .dm-quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .dm-quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.dm-quote {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.dm-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 212, 191, 0.4);
}

.dm-quote blockquote {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.dm-quote__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dm-quote__meta img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--turquoise);
}

.dm-quote strong {
  display: block;
  font-size: 0.9rem;
}

.dm-quote span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

/* —— Stats —— */
.dm-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 1.5rem);
  text-align: center;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .dm-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .dm-stats {
    grid-template-columns: 1fr;
  }
}

.dm-stat__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--yellow);
  margin: 0 0 0.25rem;
}

.dm-stat__label {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* —— CTA band —— */
.dm-cta-band {
  padding: clamp(2rem, 5vw, 3rem) var(--space-section-x);
  background: linear-gradient(110deg, var(--blue) 0%, var(--turquoise) 50%, var(--orange) 100%);
  text-align: center;
}

.dm-cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  max-width: min(42rem, 100%);
  margin-left: auto;
  margin-right: auto;
}

.dm-cta-band .dm-btn-primary {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 600px) {
  .dm-cta-band .dm-btn-primary {
    width: 100%;
    max-width: 22rem;
  }
}

/* —— Contact —— */
.dm-contact {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

@media (min-width: 800px) {
  .dm-contact {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: start;
  }
}

.dm-form {
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(14, 165, 233, 0.15);
  min-width: 0;
}

.dm-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.dm-form input,
.dm-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: max(16px, 1rem);
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dm-form input:focus,
.dm-form textarea:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25);
}

.dm-form textarea {
  min-height: 130px;
  resize: vertical;
}

.dm-form button[type="submit"] {
  padding: 0.85rem 2rem;
  min-height: var(--touch-min);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blue-bright), var(--turquoise));
  color: var(--white);
  transition: transform 0.2s ease;
}

.dm-form button[type="submit"]:hover {
  transform: scale(1.03);
}

.dm-info {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid rgba(45, 212, 191, 0.25);
}

.dm-info h3 {
  font-family: var(--font-display);
  margin-top: 0;
}

.dm-info dt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-top: 1rem;
}

.dm-info dt:first-child {
  margin-top: 0;
}

.dm-info dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* —— Table —— */
.dm-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.1);
}

.dm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.dm-table th,
.dm-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.dm-table th {
  background: linear-gradient(135deg, var(--blue-deep), var(--turquoise-dark));
  color: var(--white);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dm-table tbody tr:hover {
  background: rgba(45, 212, 191, 0.08);
}

/* —— Footer —— */
.dm-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  padding: 3rem var(--space-section-x) max(2rem, env(safe-area-inset-bottom, 0));
}

.dm-footer__grid {
  max-width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.dm-footer__brand-text {
  margin: 0;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .dm-footer__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  }

  .dm-footer__grid.dm-footer__grid--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.dm-footer h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 1rem;
}

.dm-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.dm-footer a:hover {
  color: var(--yellow);
}

.dm-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dm-footer li {
  margin-bottom: 0.5rem;
}

.dm-footer iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 12px;
}

.dm-footer__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dm-footer__certs span {
  font-size: 0.65rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.4);
  color: var(--yellow);
}

.dm-footer__bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

/* —— FAB —— */
.dm-fab {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0));
  z-index: 948;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--orange), #ea580c);
  color: var(--white);
  box-shadow: 0 10px 35px rgba(251, 146, 60, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: dmFabPulse 2.2s ease-in-out infinite;
}

.dm-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 44px rgba(251, 146, 60, 0.65);
}

.dm-fab svg {
  width: 26px;
  height: 26px;
}

@keyframes dmFabPulse {
  0%,
  100% {
    box-shadow: 0 10px 35px rgba(251, 146, 60, 0.55);
  }
  50% {
    box-shadow: 0 10px 45px rgba(251, 146, 60, 0.85);
  }
}

/* —— Konten selaras situs ref. (blok tambahan) —— */
.dm-post-phase {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dm-page-visi {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.dm-page-visi h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0.5rem 0 0.75rem;
}

.dm-placeholder-box {
  margin: 1.25rem 0;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px dashed rgba(14, 165, 233, 0.35);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.dm-shareholder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}

.dm-shareholder-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.12);
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.08);
}

.dm-shareholder-card strong {
  color: var(--ink);
}

.dm-shareholder-logo {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-deep), var(--turquoise-dark));
}

.dm-award-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.dm-award-card {
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.12);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.08);
}

.dm-award-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0.35rem 0 0.5rem;
}

.dm-award-year {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-deep);
}

.dm-award-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.dm-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.dm-gallery-tile {
  aspect-ratio: 4/3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.2), rgba(45, 212, 191, 0.25));
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.dm-gallery-cap {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  line-height: 1.45;
}

.dm-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.dm-video-tile {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ink) 0%, #1e3a5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  opacity: 0.95;
}

.dm-video-cap {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  margin: 0.5rem 0 0.2rem;
}

.dm-video-meta {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.dm-faq-list details {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 0.65rem;
  padding: 0.65rem 1rem;
  background: var(--white);
}

.dm-faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  list-style: none;
}

.dm-faq-list summary::-webkit-details-marker {
  display: none;
}

.dm-faq-list details[open] summary {
  color: var(--blue-deep);
}

.dm-faq-body {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.dm-faq-side-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.dm-k3-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}

.dm-k3-pillar {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(45, 212, 191, 0.25);
}

.dm-k3-pillar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--blue-deep);
  margin-bottom: 0.35rem;
}

.dm-k3-pillar__text {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.dm-layanan-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dm-form select {
  width: 100%;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: max(16px, 1rem);
  background: var(--white);
  cursor: pointer;
  box-sizing: border-box;
}

.dm-form select:focus {
  outline: none;
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.25);
}

.dm-kontak-intro {
  margin-top: 0.75rem;
}

.dm-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 560px) {
  .dm-form-row {
    grid-template-columns: 1fr;
  }
}

.dm-kontak-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dm-kontak-info-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.dm-kontak-info-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.dm-kontak-info-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 0.2rem;
}

.dm-kontak-info-value {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* —— Reveal & motion —— */
@keyframes dm-fade-up {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes dm-fade-scale {
  from {
    opacity: 0;
    transform: scale(0.94) translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}

.dm-hero__content > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

body.dm-js-ready .dm-hero__content.dm-hero__content--in > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

body.dm-js-ready .dm-hero__content.dm-hero__content--in > *:nth-child(1) {
  transition-delay: 0.05s;
}
body.dm-js-ready .dm-hero__content.dm-hero__content--in > *:nth-child(2) {
  transition-delay: 0.14s;
}
body.dm-js-ready .dm-hero__content.dm-hero__content--in > *:nth-child(3) {
  transition-delay: 0.23s;
}
body.dm-js-ready .dm-hero__content.dm-hero__content--in > *:nth-child(4) {
  transition-delay: 0.32s;
}

.dm-page-hero__inner > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

body.dm-js-ready .dm-page-hero__inner.dm-page-hero__inner--in > * {
  opacity: 1;
  transform: none;
  animation: dm-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

body.dm-js-ready .dm-page-hero__inner.dm-page-hero__inner--in > *:nth-child(1) {
  animation-delay: 0.06s;
}
body.dm-js-ready .dm-page-hero__inner.dm-page-hero__inner--in > *:nth-child(2) {
  animation-delay: 0.14s;
}
body.dm-js-ready .dm-page-hero__inner.dm-page-hero__inner--in > *:nth-child(3) {
  animation-delay: 0.22s;
}

.dm-error-404__card {
  opacity: 0;
  transform: scale(0.96) translate3d(0, 20px, 0);
}

.dm-error-404.dm-error-404--in .dm-error-404__card.dm-reveal--visible,
.dm-error-404.dm-error-404--in .dm-error-404__card {
  animation: dm-fade-scale 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dm-error-404__watermark {
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.dm-error-404.dm-error-404--in .dm-error-404__watermark {
  transform: translate(-50%, -52%) scale(1.03);
}

.dm-reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.dm-reveal--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.dm-fab {
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    box-shadow 0.25s ease;
}

.dm-fab.dm-fab--hidden {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.92);
  pointer-events: none;
}

.dm-fab.dm-fab--near-footer {
  box-shadow: 0 8px 28px rgba(251, 146, 60, 0.35);
}

.dm-faq-item .dm-faq-item__toggle {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.dm-faq-item.dm-faq-item--open .dm-faq-item__toggle {
  transform: rotate(45deg);
}

.dm-faq-item__answer {
  animation: dm-fade-up 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.kad-home-service-card--d2,
.dm-news-card,
.dm-penghargaan-card,
.kad-post-item {
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.dm-card--hover.kad-home-service-card--d2,
.dm-card--hover.dm-news-card,
.dm-card--hover.dm-penghargaan-card,
.dm-card--hover.kad-post-item {
  transform: translateY(-5px);
}

.kad-pub-filter__pill {
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.kad-pub-filter__pill:active {
  transform: scale(0.97);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: 0.5rem 1rem;
  background: var(--yellow);
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  .dm-scroll-progress__fill {
    transition: none;
  }

  .dm-nav {
    transition: none !important;
  }

  .dm-nav-backdrop {
    transition: none !important;
  }

  .dm-hero__badge .dm-pulse,
  .dm-stack-card__icon,
  .dm-fab,
  .dm-hero__scroll-hint {
    animation: none;
  }

  .dm-hero__content > *,
  .dm-page-hero__inner > * {
    opacity: 1;
    transform: none;
    animation: none !important;
    transition: none !important;
  }

  .dm-error-404__card {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .dm-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .dm-fab.dm-fab--hidden {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .kad-home-service-card--d2,
  .dm-news-card,
  .dm-penghargaan-card,
  .kad-post-item {
    transition: none;
  }
}


/* Team Cards - Struktur Organisasi (foto atas ~2/3, teks bawah ~1/3; crop seragam) */
.team-card-d2.kad-team-card-vertical {
  display: grid;
  grid-template-rows: 2fr 1fr;
  min-height: 320px;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(10px);
}
.team-card-d2.kad-team-card-vertical:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(14, 165, 233, 0.18);
}
.team-card-d2.kad-team-card-vertical .kad-team-card-vertical__photo {
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(14, 165, 233, 0.14) 0%,
    rgba(15, 23, 42, 0.38) 100%
  );
}
.team-card-d2.kad-team-card-vertical .kad-team-card-vertical__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.team-card-d2.kad-team-card-vertical .kad-team-card-vertical__placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  background: rgba(15, 23, 42, 0.28);
  color: rgba(255, 255, 255, 0.35);
}
.team-card-d2.kad-team-card-vertical .kad-team-card-vertical__meta {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1.25rem 1.2rem;
  gap: 0.2rem;
}
.team-card-d2.kad-team-card-vertical h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
  color: #fff;
}
.team-card-d2.kad-team-card-vertical .role {
  color: var(--turquoise-dark);
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0;
}
.team-card-d2.kad-team-card-vertical .division {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  margin: 0.15rem 0 0;
  line-height: 1.35;
}

/* Kartu tim di latar terang (beranda / halaman struktur) */
.dm-section.dm-section--surface .team-card-d2.kad-team-card-vertical,
.dm-page-shell .team-card-d2.kad-team-card-vertical {
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  backdrop-filter: none;
}
.dm-section.dm-section--surface .team-card-d2.kad-team-card-vertical .kad-team-card-vertical__photo,
.dm-page-shell .team-card-d2.kad-team-card-vertical .kad-team-card-vertical__photo {
  background: linear-gradient(
    145deg,
    rgba(14, 165, 233, 0.1) 0%,
    rgba(15, 23, 42, 0.07) 100%
  );
}
.dm-section.dm-section--surface .team-card-d2.kad-team-card-vertical h3,
.dm-page-shell .team-card-d2.kad-team-card-vertical h3 {
  color: var(--ink);
}
.dm-section.dm-section--surface .team-card-d2.kad-team-card-vertical .role,
.dm-page-shell .team-card-d2.kad-team-card-vertical .role {
  color: var(--turquoise-dark);
}
.dm-section.dm-section--surface .team-card-d2.kad-team-card-vertical .division,
.dm-page-shell .team-card-d2.kad-team-card-vertical .division {
  color: var(--muted);
}
.dm-section.dm-section--surface .team-card-d2.kad-team-card-vertical .kad-team-card-vertical__placeholder,
.dm-page-shell .team-card-d2.kad-team-card-vertical .kad-team-card-vertical__placeholder {
  background: rgba(14, 165, 233, 0.09);
  color: rgba(15, 23, 42, 0.35);
}

/* —— Tema 2: tepi kartu & field lebih terlihat —— */
.kad-service-card {
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.dm-news-card {
  border: 1px solid rgba(14, 165, 233, 0.22);
}

.dm-stack-card {
  border: 1px solid rgba(14, 165, 233, 0.32);
}

.kad-pub-search__input {
  border-width: 2px;
  border-color: rgba(15, 23, 42, 0.22);
}

.kad-pub-filter__pill {
  border-width: 2px;
  border-color: rgba(15, 23, 42, 0.18);
}

.dm-faq-item {
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  background: var(--surface-2);
  border: 1px solid rgba(14, 165, 233, 0.28);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

.dm-faq-item summary {
  font-weight: 700;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.dm-faq-item summary::-webkit-details-marker {
  display: none;
}

.dm-faq-item__toggle {
  flex-shrink: 0;
  opacity: 0.65;
  font-weight: 600;
}

.dm-faq-item__answer {
  margin: 1rem 0 0;
  line-height: 1.8;
  color: var(--muted);
}

.dm-page-inner .kad-pub-search__input {
  border-color: rgba(255, 255, 255, 0.38);
}

.dm-page-inner .kad-pub-filter__pill {
  border-color: rgba(255, 255, 255, 0.35);
}

/* —— Penghargaan: kartu di konten terang (bukan overlay gelap) —— */
.dm-penghargaan-card {
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.1);
}

.dm-penghargaan-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.dm-penghargaan-card__placeholder {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(135deg, #e0f2fe 0%, #ccfbf1 100%);
}

.dm-penghargaan-card__body {
  padding: 1.15rem 1.25rem 1.35rem;
  color: var(--ink);
}

.dm-penghargaan-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

.dm-penghargaan-card__meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.2rem;
}

.dm-penghargaan-card__meta--muted {
  font-weight: 500;
  color: var(--muted);
}

.dm-penghargaan-card__pemberi {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.dm-penghargaan-card__time {
  font-size: 0.78rem;
  color: var(--muted);
  display: block;
  margin-top: 0.35rem;
}

.dm-penghargaan-card__uraian {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: 0.88;
}

.dm-penghargaan-card__pdf {
  margin: 1rem 0 0;
}

.dm-kontak-map {
  width: 100%;
  height: 220px;
  margin-top: 0.5rem;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 10px;
}

/* —— Halaman Tentang (split + dekor) —— */
.kad-about-page-wrap {
  padding-top: 48px;
  padding-bottom: 64px;
}
.kad-about-grid-d2 {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .kad-about-grid-d2 {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}
.kad-about-grid-d2__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.2;
}
.kad-about-grid-d2__media {
  position: relative;
  min-width: 0;
}
.kad-about-carousel-deco {
  position: absolute;
  z-index: 0;
  width: 72%;
  height: 72%;
  right: -6%;
  bottom: -8%;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.95), rgba(204, 251, 241, 0.85));
  border-radius: 18px;
  pointer-events: none;
}
.kad-about-carousel-deco--home {
  right: -4%;
  bottom: -6%;
  width: 68%;
  height: 65%;
}
.kad-about-grid-d2 .kad-carousel--inline,
.kad-about-grid-d2__media .kad-carousel--inline {
  position: relative;
  z-index: 1;
  box-shadow: 0 22px 55px rgba(14, 165, 233, 0.2);
}
.kad-about-fallback--d2 {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(145deg, #0c4a6e, #0f172a);
  color: rgba(255, 255, 255, 0.35);
}
.dm-k3lh-pill-card {
  background: var(--surface-2);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: var(--ink);
}
.dm-k3lh-pill-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
}
.dm-home-about-figure {
  position: relative;
  min-width: 0;
}
.dm-home-about-figure .kad-carousel--inline {
  box-shadow: 0 16px 48px rgba(14, 165, 233, 0.18);
}
.dm-pemegang-hero .kad-carousel--inline {
  box-shadow: 0 16px 44px rgba(14, 165, 233, 0.15);
}

/* —— Beranda: tentang — teks & carousel sejajar —— */
.dm-home-about-split {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center;
}
@media (min-width: 900px) {
  .dm-home-about-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
}
.dm-home-about-split__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  margin: 0.35rem 0 0.75rem;
  color: var(--ink);
  line-height: 1.2;
}
.dm-home-about-split__lead {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  opacity: 0.95;
}
.dm-home-about-split__link {
  text-decoration: none;
}
.dm-home-about-split__media {
  margin: 0;
  min-width: 0;
}
.dm-home-about-split__media .kad-carousel--inline {
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.14);
}
.dm-stats__num {
  font-size: 2.5rem;
  font-weight: 800;
}

/* —— Hero: foto carousel (ganti video) —— */
.dm-hero .kad-carousel--hero .kad-carousel__btn,
.dm-hero .kad-carousel--hero .kad-carousel__dots {
  display: none;
}

/* —— Beranda: kartu layanan (bukan gaya berita) —— */
.kad-home-layanan-grid--d2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 0;
}
@media (min-width: 768px) {
  .kad-home-layanan-grid--d2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.kad-home-service-card--d2 {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  background: var(--surface-2, #f8fafc);
  border: 1px solid rgba(14, 165, 233, 0.28);
  border-left: 4px solid var(--blue-deep, #0369a1);
  box-shadow: 0 4px 22px rgba(3, 105, 161, 0.09);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
@media (min-width: 640px) {
  .kad-home-service-card--d2 {
    flex-direction: row;
    align-items: stretch;
  }
  .kad-home-service-card--d2 .kad-home-service-card__media {
    flex: 0 0 44%;
    max-width: 44%;
    align-self: stretch;
  }
  .kad-home-service-card--d2 .kad-home-service-card__media .kad-carousel {
    height: 100%;
    min-height: 200px;
    aspect-ratio: auto;
  }
}
.kad-home-service-card--d2:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(3, 105, 161, 0.15);
}
.kad-home-service-card__media {
  min-width: 0;
  background: #0f172a;
}
.kad-home-service-card__body {
  padding: 1.25rem 1.35rem 1.45rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.kad-home-service-card__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.kad-home-service-card__desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}
.kad-home-service-card__action.kad-card-action {
  margin-top: 0.85rem;
  align-self: flex-start;
  color: var(--blue-deep, #0369a1);
}

/* —— Publikasi (Design 2): ganti aksen emas generik ke palet dm- —— */
.dm-page-shell .kad-pub-search__input {
  border-color: rgba(15, 23, 42, 0.14);
  background: var(--white);
}
.dm-page-shell .kad-pub-search__input:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.22);
}
.dm-page-shell .kad-pub-search__btn {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--turquoise-dark) 100%);
  color: var(--white);
}
.dm-page-shell .kad-pub-search__btn:hover {
  filter: brightness(1.07);
}
.dm-page-shell .kad-pub-filter__pill:hover,
.dm-page-shell .kad-pub-filter__pill--active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.dm-page-shell .kad-post-item {
  border: 1px solid rgba(14, 165, 233, 0.22);
  background: var(--white);
  box-shadow: 0 6px 22px rgba(14, 165, 233, 0.07);
}
.dm-page-shell .kad-post-item:hover {
  box-shadow: 0 12px 36px rgba(14, 165, 233, 0.14);
}
.dm-page-shell .kad-post-badge--berita {
  background: rgba(14, 165, 233, 0.14);
  color: var(--blue-deep);
}
.dm-page-shell .kad-post-badge--foto {
  background: rgba(45, 212, 191, 0.16);
  color: var(--turquoise-dark);
}
.dm-page-shell .kad-post-badge--video {
  background: rgba(251, 146, 60, 0.16);
  color: #9a3412;
}
.dm-page-shell .kad-post-thumb--placeholder {
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--ink) 55%, var(--turquoise-dark) 100%);
}
.dm-page-shell .kad-post-title {
  color: var(--ink);
}

/* —— Pemegang saham: pie chart —— */
.kad-pemegang-page .kad-pemeg-pie__empty {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}

.kad-pemeg-pie__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

.kad-pemeg-pie__chart-wrap {
  max-width: 440px;
  margin: 0 auto;
  width: 100%;
}

.kad-pemeg-pie__svg {
  display: block;
  width: 100%;
  height: auto;
}

.kad-pemeg-slice {
  cursor: pointer;
  transition: filter 0.2s ease, opacity 0.2s ease;
  outline: none;
}

.kad-pemeg-slice:hover,
.kad-pemeg-slice.is-active {
  filter: brightness(1.08) saturate(1.05);
}

.kad-pemeg-slice:focus-visible {
  filter: brightness(1.08);
}

.kad-pemeg-pie__slice-text {
  pointer-events: none;
  font-family: var(--font-display);
  fill: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-shadow:
    0 1px 3px rgba(15, 23, 42, 0.5),
    0 0 12px rgba(15, 23, 42, 0.35);
}

.kad-pemeg-pie__slice-name {
  font-size: 11px;
}

.kad-pemeg-pie__slice-pct {
  font-size: 12px;
  font-weight: 800;
  fill: var(--white);
}

.kad-pemeg-pie__panel {
  position: sticky;
  top: calc(var(--header-h, 3.75rem) + 1rem);
}

.kad-pemeg-pie__card {
  background: var(--white);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem 1.5rem;
  display: flex;
  gap: 1.15rem;
  align-items: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kad-pemeg-pie__panel .kad-pemeg-pie__card:hover {
  box-shadow: var(--shadow-hover);
}

.kad-pemeg-pie__card-figure {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid rgba(14, 165, 233, 0.2);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.kad-pemeg-pie__card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.kad-pemeg-pie__card-placeholder {
  font-size: 2.25rem;
  opacity: 0.45;
}

.kad-pemeg-pie__card-pct {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-deep);
  font-family: var(--font-display);
}

.kad-pemeg-pie__card-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}

.kad-pemeg-pie__card-ket {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.kad-pemeg-pie__hint {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.kad-pemeg-pie__legend {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
}

.kad-pemeg-pie__legend li {
  margin: 0;
}

.kad-pemeg-leg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
  background: var(--surface-2);
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.kad-pemeg-leg:hover,
.kad-pemeg-leg.is-active {
  border-color: rgba(14, 165, 233, 0.45);
  background: var(--white);
  box-shadow: 0 4px 18px rgba(14, 165, 233, 0.12);
}

.kad-pemeg-leg:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.kad-pemeg-leg__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.kad-pemeg-leg__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.kad-pemeg-leg__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.kad-pemeg-leg__pct {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-deep);
}

@media (max-width: 900px) {
  .kad-pemeg-pie__layout {
    grid-template-columns: 1fr;
  }

  .kad-pemeg-pie__panel {
    position: static;
    max-width: 420px;
    margin-inline: auto;
  }

  .kad-pemeg-pie__legend {
    justify-content: center;
  }
}

/* —— Halaman Perusahaan Terkait —— */
.kad-pt-page {
  padding-top: 48px;
  padding-bottom: 64px;
}
.kad-pt-section--spaced {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}
.kad-pt-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
.kad-pt-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(14, 165, 233, 0.04),
    0 18px 48px rgba(14, 165, 233, 0.1);
}
.kad-pt-card__body {
  flex: 1 1 auto;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.5rem);
  min-width: 0;
}
.kad-pt-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.kad-pt-card__desc {
  margin: 0;
  font-size: 0.975rem;
  line-height: 1.8;
  color: var(--muted);
  text-align: justify;
  hyphens: auto;
}
.kad-pt-card__desc + .kad-pt-card__link,
.kad-pt-card__title + .kad-pt-card__link {
  margin-top: 1.5rem;
}
.kad-pt-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-deep);
  text-decoration: none;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.kad-pt-card__link:hover {
  background: rgba(14, 165, 233, 0.14);
  border-color: rgba(14, 165, 233, 0.35);
  transform: translateY(-1px);
}
.kad-pt-card__media {
  flex: 0 0 auto;
  background: linear-gradient(145deg, #f0f9ff 0%, #ecfeff 55%, #f0fdf4 100%);
  border-top: 1px solid rgba(14, 165, 233, 0.1);
  min-height: 180px;
}
.kad-pt-card__media-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}
.kad-pt-card__media img {
  display: block;
  max-width: min(100%, 280px);
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.kad-pt-card__placeholder {
  font-size: 3rem;
  opacity: 0.3;
  line-height: 1;
}
@media (min-width: 768px) {
  .kad-pt-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 260px;
  }
  .kad-pt-card--reverse {
    flex-direction: row-reverse;
  }
  .kad-pt-card__body {
    flex: 1 1 58%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 3vw, 2.75rem);
  }
  .kad-pt-card__media {
    flex: 0 0 42%;
    max-width: 42%;
    border-top: none;
    border-left: 1px solid rgba(14, 165, 233, 0.1);
  }
  .kad-pt-card--reverse .kad-pt-card__media {
    border-left: none;
    border-right: 1px solid rgba(14, 165, 233, 0.1);
  }
  .kad-pt-card__media-inner {
    min-height: 100%;
    padding: 2rem;
  }
  .kad-pt-card__media img {
    max-width: min(100%, 240px);
    max-height: 160px;
  }
}
@media (min-width: 1024px) {
  .kad-pt-list {
    gap: 40px;
  }
  .kad-pt-card__body {
    flex-basis: 55%;
  }
  .kad-pt-card__media {
    flex-basis: 45%;
    max-width: 45%;
  }
}

/* —— Design 2: utility frontend pages —— */
.dm-page-shell--surface {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}

.dm-page-wrap {
  padding-top: 40px;
  padding-bottom: 64px;
}

.dm-page-wrap--pt-lg {
  padding-top: 48px;
}

.dm-page-wrap--narrow {
  max-width: 860px;
}

.dm-page-wrap--faq {
  max-width: 800px;
}

.dm-center-actions {
  text-align: center;
  margin-top: 32px;
}

.dm-empty-text {
  opacity: 0.6;
}

.dm-empty-text--grid {
  grid-column: 1 / -1;
}

.dm-empty-text--spaced {
  padding: 40px 0;
}

.dm-empty-state {
  text-align: center;
  padding: 60px 20px;
  opacity: 0.5;
}

.dm-empty-state__icon {
  font-size: 48px;
  margin-bottom: 12px;
  line-height: 1;
}

.dm-reset-link {
  padding: 10px 16px;
  opacity: 0.7;
  font-size: 0.88rem;
  text-decoration: none;
  color: inherit;
}

.dm-reset-link:hover {
  opacity: 1;
}

.dm-about-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #1a1a2e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.dm-news-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.dm-prose {
  line-height: 1.85;
  font-size: 1rem;
}

.dm-page-lead--post {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.dm-post-featured-media {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 32px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.dm-post-featured-media--compact {
  margin-bottom: 24px;
}

.kad-video-frame--ratio {
  aspect-ratio: 16 / 9;
}

.kad-video-frame--spaced {
  margin-bottom: 28px;
}

.kad-video-frame__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 10px;
}

.kad-video-frame__video {
  width: 100%;
  border-radius: 10px;
  max-height: 85vh;
  background: #000;
}

.dm-post-nav-back {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.dm-penghargaan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.dm-penghargaan-card__pdf-link {
  display: inline-flex;
  text-decoration: none;
}

.dm-pt-empty {
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
}

.dm-faq-empty {
  opacity: 0.6;
}

.dm-alert-success {
  background: rgba(0, 200, 100, 0.15);
  border: 1px solid rgba(0, 200, 100, 0.4);
  color: #00c864;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 24px;
}

.dm-field-error {
  display: block;
  color: #dc2626;
  font-size: 0.85rem;
  margin: -0.5rem 0 1rem;
}

.dm-btn-submit-offset {
  margin-top: 10px;
}

.dm-contact-info-block {
  margin-bottom: 24px;
}

.dm-contact-info-block:last-child {
  margin-bottom: 0;
}

.dm-contact-info-icon {
  font-size: 24px;
  margin-bottom: 8px;
  line-height: 1;
}

.dm-contact-info-label {
  font-weight: 700;
  margin-bottom: 4px;
}

.dm-contact-info-value {
  opacity: 0.75;
}

.dm-contact-info-value--preline {
  white-space: pre-line;
}

.dm-struktur-bagan-wrap--top {
  padding-top: 48px;
}

.dm-footer__map {
  width: 100%;
  height: 180px;
  border: 0;
}

.dm-footer__meta {
  font-size: 0.85rem;
  opacity: 0.7;
}

.dm-footer__meta--spaced {
  margin-top: 10px;
}

/* Publikasi foto — selaras palet Design 2 */
.dm-page-shell .kad-pub-gallery-viewer__thumb--active {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.dm-page-shell .kad-pub-gallery-viewer__nav:hover {
  background: rgba(14, 165, 233, 0.15);
}
.dm-page-shell .kad-pub-gallery-viewer__expand:hover {
  background: rgba(45, 212, 191, 0.2);
  border-color: var(--turquoise);
}
