:root {
  --navy: #013365;
  --ink: #231A12;
  --cream: #ffffff;
  --clay: #BD5A2C;
  --wheat: #C79A3A;
  --blue: #d3e4f3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  min-height: 840px;
  color: white;
  background:
    linear-gradient(180deg, rgba(4, 46, 76, .3), rgba(21, 76, 23, .1) 43%, var(--cream) 100%),
    url("../assets/data/images/IMG_0622.JPG") center / cover no-repeat;
}

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}

.nav-wrap.is-scrolled {
  background: var(--cream);
  box-shadow: 0 2px 12px rgba(1, 51, 101, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 6px 0;
}

.navbar.container {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 178px;
  height: 46px;
  overflow: hidden;
}

.logo img {
  display: block;
  width: 178px;
  max-width: none;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  transition: color .3s ease;
}

.nav-links a:hover,
.footer-links a:hover { text-decoration: underline; }

.lang-switcher {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: #fff;
  flex-shrink: 0;
  line-height: 1.3;
  cursor: pointer;
}

.lang-btn {
  display: block;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3px;
  text-align: center;
}

.lang-btn--top {
  color: var(--navy);
}

.lang-btn--bottom {
  color: #9a9186;
  font-weight: 600;
}

.lang-switcher[data-active="en"] .lang-btn--top {
  color: #9a9186;
  font-weight: 600;
}

.lang-switcher[data-active="en"] .lang-btn--bottom {
  color: var(--navy);
  font-weight: 700;
}

.button {
  display: inline-block;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  transition: transform .2s, filter .2s;
}

.button--large {
  padding: 12px 20px;
  font-size: 14px;
}

.button:hover { filter: brightness(.94); transform: translateY(-2px); }
.button--dark { color: #fff; background: var(--navy); white-space: nowrap; }
.button--orange { color: #fff; background: var(--navy); }
.menu-toggle { display: none; }

.hero-content { max-width: 1120px; padding-top: 220px; }
.hero-content > * { max-width: 650px; }

.hero h1 {
  margin: 0 0 14px;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -1.4px;
}

.hero-content p:last-child { font-size: 16px; line-height: 1.5; }

.section { padding: 50px 0; }

.section h2,
.cta-section h2 {
  margin: 0 0 15px;
  font-size: 28px;
  letter-spacing: -1px;
}

.section-lead { max-width: 720px; font-size: 14px; }

.intro {
  display: grid;
  grid-template-columns: 390px 1fr;
  align-items: center;
  gap: 68px;
}

.intro-image {
  display: block;
  width: 100%;
  height: 330px;
  border-radius: 4px;
  object-fit: cover;
  object-position: 32% center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.intro-copy p { max-width: 610px; font-size: 14px; }
.intro-copy .button { margin-top: 7px; }

.ecosystem-content {
  max-width: 1000px;
  margin-inline: auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 27px 0 18px;
}

.ecosystem-grid a,
.stat-grid article,
.partner-grid article {
  border-radius: 5px;
  background: var(--blue);
  box-shadow: 3px 4px 2px #718fa6;
}

.ecosystem-grid a {
  padding: 17px 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

.ecosystem-grid a:hover { color: var(--clay); }

.differences ol { margin: 22px 0 0; padding-left: 20px; }
.differences li { margin: 7px 0; padding-left: 3px; font-size: 14px; }
.differences li strong,
.differences li span { display: block; }
.differences li span { font-size: 14px; }

.differences {
  background: var(--navy);
  color: #fff;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin: 25px 0 20px;
}

.stat-grid article {
  display: grid;
  min-height: 136px;
  padding: 14px;
  place-content: center;
  text-align: center;
}

.stat-grid strong { color: var(--navy); font-size: 36px; }
.stat-grid span { margin-top: 7px; font-size: 13px; }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 25px;
}

.partner-grid article { min-height: 172px; padding: 18px 15px; }
.partner-grid h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.05; }
.partner-grid p { margin: 0; font-size: 12px; line-height: 1.25; }

/* FIX: padding-bottom dikecilin (57px -> 20px) biar gap ke section Logo Mitra rapat lagi */
.cta-section { padding: 40px 24px 20px; text-align: center; }
.cta-section h2 { font-size: 27px; }
.cta-section p { max-width: 530px; margin: 0 auto 13px; font-size: 14px; }

footer { padding: 37px 0; color: #fff; background: var(--navy); }

.about-main { padding-top: 64px; }
.about-hero { padding-top: 24px; }
.about-hero h1 { margin: 0; font-size: 30px; }
.about-hero > p { margin: 8px 0 34px; color: #665d55; font-size: 18px; }
.about-banner { display: block; width: 100%; height: 365px; border-radius: 5px; object-fit: cover; object-position: 32% center; }

.about-description { max-width: 700px; padding: 32px 0 48px; font-size: 14px; }
.about-description p { margin: 0 0 20px; }

.vision-mission { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vision-mission article { min-height: 286px; padding: 25px; border-radius: 5px; color: var(--ink); background: var(--blue); box-shadow: 3px 4px 2px #718fa6; }
.vision-mission h2 { margin: 0 0 58px; font-size: 25px; }
.vision-mission p, .vision-mission ol { margin: 0; font-size: 13px; line-height: 1.35; }
.vision-mission ol { padding-left: 16px; }
.vision-mission article:last-child { display: flex; flex-direction: column; }
.vision-mission article:last-child ol { margin-block: auto; }

.about-section { padding-top: 70px; }
.about-section > h2 { margin: 0 0 23px; font-size: 24px; }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 720px; margin: 0 auto; }
.values-grid article { min-height: 70px; padding: 11px; border-radius: 4px; background: var(--blue); box-shadow: 3px 4px 2px #718fa6; }
.values-grid h3 { margin: 0 0 4px; font-size: 14px; }.values-grid p { margin: 0; font-size: 13px; }

.impact-area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.image-placeholder { width: 100%; aspect-ratio: 1.18; border-radius: 4px; background: #d9d9d9; }
.impact-area-grid h3 { margin: 11px 0 0; font-size: 14px; line-height: 1.35; }

.sdgs-grid { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.sdgs-grid img { display: block; width: 66px; height: 66px; object-fit: cover; }
.sdgs-section { padding-bottom: 72px; }

.service-main { padding-top: 108px; padding-bottom: 92px; }
.service-main > h1 { margin: 0 0 78px; font-size: 40px; letter-spacing: -1.5px; }
.service-group { margin-bottom: 72px; }
.service-group--last { margin-bottom: 0; }
.service-group h2 { margin: 0 0 30px; font-size: 30px; letter-spacing: -.8px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 22px; padding-inline: 40px; }
.service-grid article { min-height: 80px; padding: 11px 12px; border-radius: 7px; background: var(--blue); box-shadow: 3px 5px 2px #718fa6; }
.service-grid h3 { margin: 0 0 2px; font-size: 18px; line-height: 1.2; font-weight: 500; }
.service-grid p { margin: 0; color: #4e4b49; font-size: 12px; line-height: 1.38; }

.partnership-main { padding-top: 106px; padding-bottom: 82px; }
.partners-section h1, .grow-section h2 { margin: 0; font-size: 40px; letter-spacing: -1.5px; }
.partner-logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 38px 60px; max-width: 1080px; margin: 52px auto 104px; padding-inline: 45px; }
.partner-logo-grid img { display: block; width: 100%; height: 112px; object-fit: contain; mix-blend-mode: multiply; }
.partner-logo-grid img:nth-child(n + 4) { height: 124px; }
.grow-section > p { margin: 22px 0 76px; font-size: 21px; }
.grow-card-grid { display: grid; grid-template-columns: repeat(2, 320px); justify-content: center; gap: 40px; }
.grow-card-grid article { min-height: 290px; padding: 28px; border-radius: 12px; background: var(--blue); box-shadow: 3px 5px 2px #718fa6; }
.grow-card-grid h3 { margin: 0 0 20px; font-size: 27px; line-height: 1.1; letter-spacing: -1px; }.grow-card-grid ul { margin: 0; padding-left: 27px; font-size: 17px; line-height: 1.3; }
.partner-cta { margin-top: 50px; text-align: center; font-size: 17px; }.partner-cta .button { margin-left: 8px; font-size: 13px; }

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr auto;
  align-items: start;
  gap: 32px;
  font-size: 11px;
}

.footer-logo { display: block; margin-bottom: 7px; font-size: 18px; }
.footer-content p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; }
.footer-contact { text-align: right; }
.footer-contact a { text-decoration: underline; }

@media (max-width: 800px) {
  .navbar { position: relative; flex-wrap: wrap; }
  .menu-toggle { display: block; margin-left: auto; border: 0; color: var(--navy); background: transparent; font-size: 25px; }
  .navbar > .button--dark { display: none; }
  .nav-links { display: none; flex-basis: 100%; flex-direction: column; align-items: flex-start; gap: 12px; margin: 0; }
  .nav-links.is-open { display: flex; }
  .hero { min-height: 550px; }
  .hero-content { padding-top: 170px; }
  .hero h1 { font-size: 29px; }
  .intro { grid-template-columns: 1fr; gap: 28px; }
  .intro-image { height: 280px; }
  .ecosystem-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid,
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-contact { text-align: left; }
  .about-banner { height: 290px; }
  .vision-mission { grid-template-columns: 1fr; }
  .vision-mission h2 { margin-bottom: 28px; }
  .impact-area-grid { gap: 16px; }
  .sdgs-grid img { width: 56px; height: 56px; }
  .service-main { padding-top: 92px; }
  .service-main > h1 { margin-bottom: 60px; }
  .service-grid { padding-inline: 0; grid-template-columns: repeat(2, 1fr); }
  .partner-logo-grid { gap: 28px 38px; padding-inline: 0; }
  .grow-section > p { font-size: 18px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, 1120px); }
  .hero h1 { font-size: 26px; }
  .hero-content p:last-child { font-size: 14px; }
  .section { padding: 48px 0; }
  .section h2,
  .cta-section h2 { font-size: 24px; }
  .ecosystem-grid,
  .stat-grid,
  .partner-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 55px 16px 28px; }
  .about-main { padding-top: 58px; }
  .about-hero { padding-top: 24px; }
  .about-hero > p { font-size: 15px; }
  .about-banner { height: 230px; }
  .vision-mission, .values-grid, .impact-area-grid { grid-template-columns: 1fr; }
  .about-section { padding-top: 52px; }
  .sdgs-grid { gap: 8px; }
  .sdgs-grid img { width: 48px; height: 48px; }
  .service-main { padding-top: 88px; padding-bottom: 58px; }
  .service-main > h1 { margin-bottom: 44px; font-size: 31px; }
  .service-group { margin-bottom: 52px; }
  .service-group h2 { font-size: 24px; }
  .service-grid { grid-template-columns: 1fr; }
  .partnership-main { padding-top: 88px; padding-bottom: 58px; }
  .partners-section h1, .grow-section h2 { font-size: 31px; }
  .partner-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 35px 0 62px; }
  .partner-logo-grid img, .partner-logo-grid img:nth-child(n + 4) { height: 80px; }
  .grow-section > p { margin: 16px 0 42px; font-size: 16px; }
  .grow-card-grid { grid-template-columns: 1fr; gap: 20px; }
  .grow-card-grid article { min-height: 0; }
}

.ecosystem-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.ecosystem-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecosystem-hero-band {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(1, 51, 101, 0.55);
  padding: 32px 24px;
  text-align: center;
  color: #fff;
}

.ecosystem-hero-band h1 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -1px;
}

.ecosystem-hero-band p {
  margin: 0 auto;
  max-width: 640px;
  font-size: 15px;
  color: rgba(255,255,255,0.9);
}

.ecosystem-main { padding-top: 76px; }

.report-card {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  background: var(--navy);
  border-radius: 6px;
  padding: 18px 20px;
  color: #fff;
}

.report-icon {
  width: 64px;
  height: 76px;
  background: #d9d9d9;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a5a5a;
  font-size: 12px;
  font-weight: 700;
}

.report-info { flex: 1; }
.report-info h3 { margin: 0; font-size: 15px; font-weight: 700; }
.report-info span { font-size: 11px; color: rgba(255,255,255,0.7); }
.report-card .button { flex-shrink: 0; }

.flow-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 8px;
}

.flow-row--reverse {
  flex-direction: row-reverse;
}

.flow-step { text-align: center; flex: 1; }
.flow-step img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 4px;
  background: #d9d9d9;
  display: block;
}
.flow-step span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

.flow-arrow {
  align-self: center;
  font-size: 22px;
  color: var(--ink);
  flex-shrink: 0;
  padding-top: 0;
}

.flow-vertical-arrow {
  text-align: right;
  padding-right: calc(12.5% - 11px);
  font-size: 22px;
  color: var(--ink);
  margin: -4px 0 4px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 960px;
}

.feature-card {
  display: flex;
  align-items: center;
  background: var(--blue);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 3px 4px 2px #718fa6;
}

.feature-card img {
  width: 96px;
  height: 76px;
  object-fit: cover;
  flex-shrink: 0;
}

.feature-card span {
  padding: 0 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.sustain-list {
  margin: 16px 0 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .ecosystem-hero { min-height: 420px; }
  .ecosystem-hero-band h1 { font-size: 24px; }
  .flow-row,
  .flow-row--reverse { flex-wrap: wrap; }
  .flow-step { flex: 1 1 40%; }
  .flow-arrow { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
}

.mitra-main {
  padding-top: 108px;
  padding-bottom: 92px;
}

.mitra-main h1 {
  margin: 0 0 10px;
  font-size: 40px;
  letter-spacing: -1.5px;
}

.mitra-lead {
  max-width: 720px;
  margin: 0 0 44px;
  font-size: 14px;
  color: #4e4b49;
}

#map {
  height: 480px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 3px 4px 2px #718fa6;
  position: relative;
  z-index: 0; 
}

.leaflet-popup-content {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .mitra-main { padding-top: 92px; padding-bottom: 64px; }
  .mitra-main h1 { font-size: 31px; }
  #map { height: 380px; }
}

@media (max-width: 480px) {
  #map { height: 320px; }
}

.dash-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: stretch;
}

.filter-panel { display: flex; flex-direction: column; gap: 6px; }

.filter-group label,
.filter-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
}

.filter-panel select {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 6px;
  background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path d="M1 1l5 5 5-5" stroke="%23013365" stroke-width="2" fill="none"/></svg>') no-repeat right 12px center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  font: inherit;
  font-size: 13px;
  color: #6b6660;
  appearance: none;
  cursor: pointer;
}

.filter-radios {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: 13px;
}
.filter-radios label { display: inline-flex; align-items: center; gap: 5px; margin: 0; }

.clear-filter {
  width: 100%;
  margin-top: 6px;
  text-align: center;
  cursor: pointer;
  border: 0;
}

.dash-top #map { height: 600px; }

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 44px 0;
  padding: 24px 0;
  text-align: center;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 3px 4px 2px #718fa6;
}
.dash-stats article { border-left: 1px solid #56718a; }
.dash-stats article:first-child { border-left: 0; }
.dash-stats h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.dash-stats strong { font-size: 30px; }

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 44px 40px;
  align-items: start;
  margin-bottom: 80px;
}
.dash-col { display: flex; flex-direction: column; gap: 44px; }

.dash-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dash-table th, .dash-table td { padding: 10px 14px; text-align: left; }
.dash-table th {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.dash-table td { 
  background: var(--blue);
  color: var(--ink);
}
.dash-table th:last-child, .dash-table td:last-child { text-align: right; }

.chart-box { position: relative; height: 320px; }

@media (max-width: 900px) {
  .dash-top { grid-template-columns: 1fr; }
  .dash-top #map { height: 420px; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .dash-stats article:nth-child(3) { border-left: 0; }
  .dash-grid { grid-template-columns: 1fr; }
}

.filter-panel input[type="search"] {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  font: inherit;
  font-size: 13px;
  color: var(--ink);
}
.filter-panel input[type="search"]::placeholder { color: #9a9186; }

.cari-info {
  display: block;
  margin-top: 6px;
  min-height: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--clay);
}

.partner-logos-section {
  padding-top: 20px;
  padding-bottom: 65px;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 30px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
}

.logo-marquee-track img {
  height: 56px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

[hidden] { display: none !important; }

.detail-lahan { margin-bottom: 80px; }
#btn-kembali { margin: 0 0 20px; border: 0; cursor: pointer; }

.detail-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  margin-bottom: 28px;
  padding: 26px 0;
  text-align: center;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 3px 4px 2px #718fa6;
}
.detail-top article { border-left: 1px solid #56718a; }
.detail-top article:first-child { border-left: 0; }
.detail-top h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.detail-top strong { font-size: 24px; }

.detail-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.detail-cards article {
  background: var(--blue);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 3px 4px 2px #718fa6;
}
.detail-cards h3 {
  margin: 0;
  padding: 10px 12px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.detail-cards p {
  margin: 0;
  padding: 26px 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
.detail-card--split .split { display: grid; grid-template-columns: 1fr 1fr; }
.detail-card--split .split > div { padding: 14px 8px 18px; }
.detail-card--split .split > div + div { border-left: 1px solid #56718a; }
.detail-card--split .split span { display: block; margin-bottom: 8px; font-size: 12px; }
.detail-card--split .split p { padding: 0; }
.detail-card--split .split > div { text-align: center; }

.detail-dok a { color: var(--navy); text-decoration: underline; word-break: break-all; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 28px;
  align-items: start;
}
.detail-col { display: flex; flex-direction: column; gap: 28px; }

.detail-box {
  background: var(--blue);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 3px 4px 2px #718fa6;
}
.detail-box > h3 {
  margin: 0;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.detail-box .row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  border-top: 1px solid #9db4c8;
  font-size: 13px;
}
.detail-box .row span:last-child { font-weight: 600; text-align: right; }

.leaflet-tooltip {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink);
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(1, 51, 101, 0.25);
  padding: 8px 12px;
}
.leaflet-tooltip-top:before {
  border-top-color: #fff;
}

.mitra-cols { display: grid; grid-template-columns: repeat(4, 1fr); }
.mitra-cols > div {
  padding: 16px 10px;
  text-align: center;
  border-left: 1px solid #9db4c8;
}
.mitra-cols > div:first-child { border-left: 0; }
.mitra-cols span { display: block; margin-bottom: 10px; font-size: 12px; }
.mitra-cols p { margin: 0; font-size: 14px; font-weight: 600; }

.detail-dok {
  margin-top: 28px;
  padding: 14px 18px;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 3px 4px 2px #718fa6;
  font-size: 13px;
}
.detail-dok a { color: var(--navy); text-decoration: underline; }

@media (max-width: 900px) {
  .detail-top { grid-template-columns: 1fr; }
  .detail-top article { border-left: 0; border-top: 1px solid #56718a; }
  .detail-top article:first-child { border-top: 0; }
  .detail-cards { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .mitra-cols { grid-template-columns: 1fr 1fr; }
  .mitra-cols > div { border-left: 0; }
}

.product-main { padding-top: 108px; padding-bottom: 92px; }

.product-head h1 {
  margin: 0 0 18px;
  font-size: 34px;
  letter-spacing: -1px;
}
.product-head p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.product-group {
  position: relative;
  margin-top: 64px;
}

.product-badge {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: var(--wheat);
  color: #fff;
  padding: 12px 42px;
  border-radius: 999px;
  font-size: 17px;
  letter-spacing: .3px;
  white-space: nowrap;
}

.product-box {
  border: 1px solid rgba(35, 26, 18, .55);
  border-radius: 6px;
  padding: 44px 48px 48px;
}

.product-box h3 { margin: 0 0 6px; font-size: 20px; }
.product-box p {
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.6;
}

.product-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product-imgs .image-placeholder { aspect-ratio: 1.55; border-radius: 6px; }

.product-imgs img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.product-imgs--2 {
  grid-template-columns: repeat(2, minmax(0, 330px));
  justify-content: center;
  gap: 40px;
}

@media (max-width: 800px) {
  .product-main { padding-top: 92px; padding-bottom: 64px; }
  .product-head h1 { font-size: 28px; }
  .product-head p { font-size: 15px; }
  .product-badge { font-size: 15px; padding: 10px 28px; }
  .product-box { padding: 34px 22px 30px; }
  .product-imgs,
  .product-imgs--2 { grid-template-columns: 1fr; }
}