/* Cahaya — desain: forest green #004d40, mint, putih, abu terang */
:root {
  --forest: #004d40;
  --forest-2: #00695c;
  --mint: #26a69a;
  --mint-bright: #4db6ac;
  --bg: #f5f5f5;
  --bg-muted: #eceff1;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --ink-muted: #5c6c6b;
  --line: #cfd8dc;
  --line-dark: #2d4a44;
  --shadow: 0 16px 48px rgba(0, 36, 32, 0.12);
  --radius: 16px;
  --font: "Inter", "Noto Sans", system-ui, -apple-system, sans-serif;
  /* Layout diset 1920×1080; konten melebar di monitor besar, tetap dibaca di sempit */
  --design-w: 1920;
  --design-h: 1080;
  --container: 1200px;
  --header-h: 80px;
  --hero-max-h: 50rem; /* ≈ 800px @16px, blok hero selaras desain 1080p */
  --gutter: clamp(1rem, 4vw, 2.5rem);
  /* Pill bahasa (hijau tua, tombol gaya desain) */
  --lang-pill-bg: #00382a;
  --lang-pill-bg-hover: #004a38;
}

@media (min-width: 1800px) {
  :root {
    --container: 1280px;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Anchor landing di bawah header fixed */
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top, 0px) + 0.5rem);
}

html[lang^="zh"] body {
  font-family: "Noto Sans SC", "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a {
  color: var(--forest-2);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(calc(100% - 2 * var(--gutter)), var(--container));
  margin-inline: auto;
  padding-left: max(0px, env(safe-area-inset-left, 0px));
  padding-right: max(0px, env(safe-area-inset-right, 0px));
}

/* —— Header: fixed di atas hero, default glass (warna “ikut” bawah), putih penuh setelah gulir */
.header {
  --header-solid: 0;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
  overflow: visible;
  padding-top: env(safe-area-inset-top, 0px);
  /* Di atas hero: hampir transparan + blur; --header-solid 0→1 (JS) = menuju putih */
  background: rgba(255, 255, 255, calc(0.03 + 0.95 * var(--header-solid)));
  -webkit-backdrop-filter: blur(calc(4px + 14px * var(--header-solid)));
  backdrop-filter: blur(calc(4px + 14px * var(--header-solid)));
  border-bottom: 1px solid rgba(207, 216, 220, var(--header-solid));
  box-shadow: 0 1px 0 rgba(0, 0, 0, calc(0.05 * var(--header-solid)));
}

body.nav-open .header {
  --header-solid: 1 !important; /* Timpa nilai gulir saat menu mobile terbuka */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 0.75rem 1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.75rem;
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.header__end {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1025px) {
  .header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .logo {
    grid-column: 1;
  }
  .nav {
    grid-column: 2;
    justify-self: center;
  }
  .header__tools {
    grid-column: 3;
    margin-left: 0;
    justify-self: end;
  }
  .nav-toggle {
    display: none !important;
  }
  .nav {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    background: transparent !important;
    overflow: visible !important;
    padding: 0 !important;
  }
}

@media (min-width: 1200px) {
  .nav__list {
    gap: 0.5rem 2.1rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--forest);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.logo:hover {
  text-decoration: none;
  color: var(--forest-2);
}

.logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--forest) 0%, var(--mint) 100%);
  box-shadow: 0 2px 8px rgba(0, 77, 64, 0.35);
  flex-shrink: 0;
}

.logo__name {
  font-size: 1.1rem;
}

/* Logo as raster image (assets/images/logo.png) */
.logo--img {
  gap: 0;
}
.logo__img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 48vw);
  object-fit: contain;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--forest);
  border-radius: 1px;
}

.nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 1.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.2rem;
}

.nav__link:hover {
  color: var(--forest);
  text-decoration: none;
}

/* Nav: Solusi — dropdown (selaras cahayatech) */
.nav__item--has-dropdown {
  position: relative;
}
.nav__link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.2rem;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  line-height: 1.2;
}
.nav__link--dropdown:hover,
.nav__item--has-dropdown.is-open .nav__link--dropdown {
  color: var(--forest);
}
.nav__chev {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1em);
  margin-top: -0.15em;
  opacity: 0.85;
}
.nav__item--has-dropdown.is-open .nav__chev {
  transform: rotate(225deg) translateY(0.05em);
}
.nav__dropdown {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  left: 0;
  /* Tepi atas panel rapat ke tombol: hindari "celah" di antara — mouse tidak keluar dari <li> */
  top: 100%;
  min-width: 15.5rem;
  z-index: 220;
  background: #fff;
  border-top: 2px solid var(--forest);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 12px 32px rgba(0, 36, 32, 0.12);
}
/* Jembatan area hit transparan di atas panel (isi pointer tetap ke ul) */
.nav__item--has-dropdown .nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 14px;
  background: transparent;
}
.nav__dropdown[hidden] {
  display: none !important;
}
.nav__dropdown > li {
  margin: 0;
  padding: 0;
}
.nav__dropdown-link {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  line-height: 1.35;
  transition: background 0.15s, color 0.15s;
}
.nav__dropdown-link:hover {
  background: rgba(0, 77, 64, 0.06);
  color: var(--forest);
  text-decoration: none;
}
.nav__dropdown-link--primary {
  color: var(--forest);
  font-weight: 600;
}
.nav__dropdown-lines {
  display: block;
}
.nav__dropdown-line {
  display: block;
}
.nav__dropdown-line + .nav__dropdown-line {
  margin-top: 0.15em;
}

/* Bahasa: pill hijau tua + bendera bulat, dropdown */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
}

.lang-dropdown__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.4rem;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  margin: 0;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: var(--lang-pill-bg);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

.lang-dropdown__btn:hover {
  background: var(--lang-pill-bg-hover);
}

.lang-dropdown__btn:focus-visible {
  outline: 2px solid var(--mint-bright);
  outline-offset: 2px;
}

.lang-dropdown__btn:active {
  transform: scale(0.98);
}

.lang-dropdown__flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  line-height: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* Bendera SVG/PNG di dalam lingkaran putih; cover = isi penuh lingkaran */
.lang-dropdown__icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  pointer-events: none;
}

.lang-dropdown__flag--sm {
  width: 1.35rem;
  height: 1.35rem;
}

.lang-dropdown__label {
  max-width: 6.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lang-dropdown__chev {
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  margin-left: 0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
  opacity: 0.95;
}

.lang-dropdown.is-open .lang-dropdown__chev {
  transform: rotate(225deg) translateY(2px);
}

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 220;
  min-width: min(11rem, calc(100vw - 1.5rem));
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 36, 32, 0.14);
}

.lang-dropdown__item {
  margin: 0;
  padding: 0;
}

.lang-dropdown__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--ink);
  border-radius: 8px;
  box-sizing: border-box;
}

.lang-dropdown__row--current {
  color: var(--forest);
  font-weight: 600;
  background: #e0f2f1;
  cursor: default;
}

.lang-dropdown__row--link {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.lang-dropdown__row--link:hover {
  background: var(--bg-muted);
  color: var(--forest);
  text-decoration: none;
}

.lang-dropdown__text {
  flex: 1;
  min-width: 0;
}

/* —— Hero: foto terminal, judul 4 warna, CTA, dots (header fixed menindih atas; latar tampil di belakang nav) */
.hero {
  position: relative;
  /* Satu layar penuh (minus header) di ~1080p; svh aman di mobile */
  min-height: clamp(
    24rem,
    min(90svh, calc(100svh - var(--header-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px))),
    var(--hero-max-h)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Padding atas = tinggi area nav + jarak, agar teks tidak tertutup bar */
  padding: calc(env(safe-area-inset-top, 0px) + var(--header-h) + clamp(1.25rem, 3.5vw, 2.75rem)) 0 0;
  overflow: hidden;
  background: #fafafa;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.hero__slide--active {
  opacity: 1;
  pointer-events: auto;
}

/* Latar per slide: hanya gambar, tanpa overlay gradient */
.hero__slide--0 .hero__bg-layer {
  background-color: #eef5f3;
  background-image: url("../images/b1.png");
  background-size: cover;
  background-position: center 40%;
}
.hero__slide--1 .hero__bg-layer {
  background-color: #ecf3f0;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: 58% 38%;
}
.hero__slide--2 .hero__bg-layer {
  background-color: #e8f5f2;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: 42% 50%;
}
.hero__slide--3 .hero__bg-layer {
  background-color: #f2f5f0;
  background-image: url("../images/hero-bg.png");
  background-size: cover;
  background-position: 48% 42%;
}
.hero__bg-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.hero__main {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  min-height: 0;
  width: 100%;
  padding-bottom: 0.5rem;
}
/* Sejajar dengan .value-intro__inner: grid 1fr 1fr, gap — kolom 1 = blok teks 32rem seperti profil */
/* Grid di dalam .container (sama pola dengan section bawah) */
.hero__main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
  justify-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.hero__main-rail {
  min-height: 0;
  width: 100%;
  max-width: 100%;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0;
}

.hero__title {
  /* h1: jangan 800 bawaan — berat font hanya per span, supaya "Business" benar regular */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.12em;
  width: 100%;
  min-width: 0;
  font-size: clamp(1.75rem, 1.1rem + 2.2vw, 3.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.35rem;
  text-align: left;
  text-wrap: initial;
  color: var(--forest);
}
/* Satu .hero__line = satu baris: flex nowrap agar "Simplifying" + "Business" tidak patah jadi 3 baris */
.hero__line {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
  column-gap: 0.28em;
  width: 100%;
  min-width: 0;
  line-height: 1.12;
}
@media (max-width: 360px) {
  .hero__line {
    flex-wrap: wrap;
  }
}
/* Baris 1: Simplifying tebal, Business regular; baris 2: Securing lebih ringan, Payments paling tebal */
.hero__w--h1a {
  color: var(--forest);
  font-weight: 700;
}
.hero__w--h1a-reg {
  color: var(--forest);
  font-weight: 400;
  font-synthesis: none;
}
h1.hero__title .hero__w--h1a-reg {
  font-weight: 400 !important;
}
.hero__w--h1b {
  color: var(--forest);
  font-weight: 500;
  opacity: 0.92;
}
.hero__w--h1c {
  color: var(--forest);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.btn--hero-cta {
  color: #5f6d6a;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08), 0 4px 20px rgba(0, 36, 32, 0.06);
  border-color: #e8ecea;
  padding: 0.7rem 1.55rem;
}
.btn--hero-cta:hover {
  color: #3d4a48;
  background: #fff;
  border-color: #dde5e2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  color: var(--forest);
  box-shadow: 0 2px 12px rgba(0, 77, 64, 0.12);
  border: 1px solid #e0e0e0;
}
.btn--light:hover {
  background: #e0f2f1;
  border-color: var(--mint-bright);
}
.btn--forest {
  background: var(--forest);
  color: #fff;
}
.btn--forest:hover {
  background: var(--forest-2);
  color: #fff;
}
.btn--sm {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

.hero__footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-top: 1.25rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
}

.hero__dot {
  position: relative;
  width: 2.75rem;
  min-height: 2.75rem; /* target sentuhan ~44px; ::after tampil 4px */
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.hero__dot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.5rem;
  height: 4px;
  margin: -2px 0 0 0;
  border-radius: 2px;
  background: #cfd8dc;
  transform: translateX(-50%);
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.hero__dot--active::after,
.hero__dot:hover::after {
  background: var(--forest);
  transform: translateX(-50%) scaleY(1.2);
}

/* Section umum */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.section--tight {
  padding: 2rem 0 2.5rem;
}
.section--white {
  background: var(--surface);
}
.section--muted {
  background: var(--bg-muted);
}
.section--pattern {
  background-color: var(--surface);
  background-image: repeating-linear-gradient(0deg, transparent, transparent 7px, rgba(0, 77, 64, 0.04) 7px, rgba(0, 77, 64, 0.04) 8px);
}

/* Blok ke-4: latar 4_sp + ikon con1…con5 */
.section--fitur-bg {
  background-color: #eef2f1;
  background-image: url("../images/1x/4_sp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section__title {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--forest);
}

.section__title--center {
  text-align: center;
}
.section__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin: 0 0 0.4rem;
  text-align: center;
}
.section__head {
  margin-bottom: 2rem;
  max-width: 640px;
}
.section__subtitle {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1rem;
}

/* Partners */
.partners {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners__strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 2.5rem;
  padding: 0.5rem 0;
}
.partners__slot {
  min-width: 100px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.88;
  filter: grayscale(0.15);
}
.partners__slot img {
  object-fit: contain;
  max-height: 40px;
}
.partners__slot img.is-placeholder {
  min-width: 100px;
  min-height: 32px;
  background: #eceff1;
  border-radius: 6px;
}

/* Value intro dua kolom (blok ke-3: latar page3bg) */
.value-intro {
  border-block: 1px solid var(--line);
  background-color: var(--bg-muted);
  background-image: url("../images/page3bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.value-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: center;
}
/* Kolom teks 32rem — sama di hero (baris 1–2) dan value intro */
.value-intro__copy,
.hero__content {
  max-width: 32rem;
  min-width: 0;
}
@media (max-width: 1024px) {
  .hero__main-grid {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: stretch;
  }
  .hero__main-rail {
    display: none;
  }
  .hero__content {
    max-width: none;
  }
}
.value-intro h2,
.value-intro__headline {
  font-size: clamp(1.75rem, 2.9vw, 2.5rem);
  line-height: 1.2;
  color: var(--forest);
  margin: 0;
  text-wrap: balance;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35em;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.value-intro__headline-line {
  display: block;
  line-height: 1.2;
}
.value-intro__headline-line--strong {
  font-weight: 800;
}
.value-intro__headline-line--mid {
  font-weight: 400;
  color: var(--forest);
  letter-spacing: -0.01em;
}
@media (min-width: 900px) {
  .value-intro h2,
  .value-intro__headline {
    gap: 0.4em;
  }
}
.value-intro p {
  color: var(--ink-muted);
  margin: 0;
}
/* Kartu tampilan “video” (bukan video sungguhan) + gambar 3_sp */
.value-intro__mock {
  position: relative;
  overflow: visible;
  background: transparent;
  max-width: min(100%, 32rem);
  margin-left: auto;
  margin-right: 0;
  filter: drop-shadow(0 12px 36px rgba(0, 36, 32, 0.12));
}
.value-intro__media {
  position: relative;
  margin: 0;
  line-height: 0;
  background: #b0bfc4;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1.65rem 1.65rem 0 0;
  z-index: 1;
}
.value-intro__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.value-intro__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 4.25rem;
  height: 4.25rem;
  border: 0;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.46);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}
.value-intro__play:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: translate(-50%, -50%) scale(1.04);
}
.value-intro__play:focus {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}
.value-intro__play-triangle {
  display: block;
  width: 0;
  height: 0;
  margin-left: 0.2rem;
  border-style: solid;
  border-width: 0.6rem 0 0.6rem 0.95rem;
  border-color: transparent transparent transparent #fff;
}
.value-intro__play:active {
  transform: translate(-50%, -50%) scale(0.98);
}
.value-intro__caption {
  position: relative;
  z-index: 3;
  margin-top: -4.1rem;
  margin-left: 0;
  margin-right: 0;
  padding: 1.75rem 1.45rem 1.9rem;
  min-height: 6.5rem;
  background: #fff;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 -2px 20px rgba(0, 36, 32, 0.06);
}
.value-intro__caption-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.value-intro__caption-text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.4;
  font-weight: 500;
}

/* Icon features 3 + 2 */
.feature-icon-row {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.25rem;
  max-width: 1000px;
  margin-inline: auto;
}
.feature-icon-row--2 {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
  margin-bottom: 0;
}
.feature-icon {
  text-align: center;
  padding: 1.25rem 0.75rem;
}
.feature-icon__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.9rem;
  color: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.feature-icon__icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
  stroke: currentColor;
}
.feature-icon__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.4;
  margin: 0;
}

/* Keunggulan: hanya entri terakhir pakai .feature-icon__title--stack (dua baris) */
.section--fitur-bg .feature-icon-row {
  gap: 1.75rem 1.5rem;
  max-width: 1080px;
}
.section--fitur-bg .feature-icon {
  padding: 1.4rem 0.9rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.section--fitur-bg .feature-icon__icon {
  width: 5.25rem;
  height: 5.25rem;
  margin: 0 auto 1.15rem;
}
.section--fitur-bg .feature-icon__icon img {
  width: 4.75rem;
  height: 4.75rem;
}
.section--fitur-bg .feature-icon__title {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.01em;
  max-width: 13.5em;
  margin: 0 auto;
  color: var(--forest);
}
/* Baris terakhir: tepat 2 baris (elak pemutusan di tengah lantaran max-width) */
.section--fitur-bg .feature-icon__title--stack {
  max-width: min(20em, 100%);
  line-height: 1.4;
}
.section--fitur-bg .feature-icon__title--stack .feature-icon__line {
  display: block;
  text-align: center;
  color: var(--forest);
  white-space: nowrap;
}
.section--fitur-bg .feature-icon__title--stack .feature-icon__line + .feature-icon__line {
  margin-top: 0.25em;
}
@media (max-width: 400px) {
  .section--fitur-bg .feature-icon__title--stack {
    font-size: 0.95rem;
    max-width: 100%;
  }
}

/* Produk — latar hutan */
.section--dark {
  background: var(--forest);
  color: #e0f2f1;
}
.section--dark .section__title,
.section--dark h2,
.section--dark h3 {
  color: #fff;
}
.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.85);
}
.section--dark a {
  color: #b2dfdb;
}

.section--dark .section__head {
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
}

.carousel {
  position: relative;
  padding: 0 2.75rem;
}
.carousel__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -0.5rem;
}
.carousel__viewport::-webkit-scrollbar {
  display: none;
}
.carousel__track {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 0.5rem 1rem;
}
.carousel__slide {
  flex: 0 0 min(100%, 320px);
  scroll-snap-align: start;
}
@media (min-width: 900px) {
  .carousel__slide {
    flex: 0 0 calc(33.333% - 0.9rem);
  }
}

/* Produk: 3 kartu lebar sama, tinggi sama (isi menyesuaikan) */
#produk .carousel__track {
  align-items: stretch;
}
#produk .carousel__slide {
  display: flex;
  min-width: 0;
}
@media (min-width: 900px) {
  #produk .carousel__slide {
    flex: 1 1 0;
    max-width: none;
  }
}

.pcard {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.pcard__media {
  aspect-ratio: 4 / 3;
  background: #eceff1;
}
.pcard__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
}
.pcard__body {
  padding: 1rem 1.15rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pcard__name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 0.4rem;
}
.pcard__desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
  flex: 1;
  line-height: 1.45;
}
.pcard .btn--forest {
  align-self: flex-start;
}

/* Produk horizontal: gambar 1x/prduck + kartu abu di bawah */
#produk .pcard--prd {
  width: 100%;
  min-height: 100%;
  flex: 1 1 auto;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#produk .pcard--prd .pcard__media {
  /* Kotak hijau 360px (isi gambar 320×320 + padding 20px), sudut membulat, jarak 20px dari tepi kartu */
  width: 360px;
  max-width: calc(100% - 40px);
  aspect-ratio: 1 / 1;
  margin: 20px auto 0;
  background: var(--forest);
  padding: 20px;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex-shrink: 0;
  min-width: 0;
}
#produk .pcard--prd .pcard__media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  flex: 0 1 auto;
}
#produk .pcard--prd .pcard__body {
  background: #eceff1;
  padding: 1.2rem 1.25rem 1.45rem;
  text-align: left;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 9.5rem;
}
#produk .pcard--prd .pcard__label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.4rem;
}
#produk .pcard--prd .pcard__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
#produk .pcard--prd .pcard__model {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 1.1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
#produk .pcard--prd .pcard__btn {
  align-self: center;
  margin-top: auto;
  border-radius: 999px;
  padding: 0.5rem 1.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
#produk .pcard--prd .pcard__btn:hover {
  color: #fff;
  text-decoration: none;
}

.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}
.carousel__arrow--prev {
  left: 0;
}
.carousel__arrow--next {
  right: 0;
}
.carousel__arrow span {
  display: block;
  margin-top: -2px;
}

.pcard__media img.is-placeholder {
  background: #cfd8dc;
  min-height: 100%;
}

/* Profil singkat */
.section--doc {
  padding: 2.5rem 0;
}
.card-simple {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.card-simple h2 {
  margin: 0 0 0.5rem;
  color: var(--forest);
  font-size: 1.25rem;
}

/* SAAS tabs — latar 6_sp */
.saas {
  border-block: 1px solid var(--line);
  background-color: var(--bg-muted);
  background-image: url("../images/1x/6_sp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.saas__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.saas__tabs-track {
  display: inline-flex;
  align-items: stretch;
  padding: 4px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 36, 32, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.saas-tabs__btn {
  padding: 0.6rem 1.6rem;
  min-width: 10.5rem;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #003d2b;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  text-align: center;
}
.saas-tabs__btn--active {
  background: #003d2b;
  color: #fff;
}
.saas-tabs__btn--active:hover {
  background: #002a1f;
  color: #fff;
}
.saas-tabs__btn:not(.saas-tabs__btn--active):hover {
  background: rgba(0, 61, 43, 0.08);
  color: #003d2b;
}
.saas__panel {
  max-width: min(100%, 52rem);
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e0e0e0;
  border-top: 2px solid var(--forest-2);
  border-left: 2px solid var(--forest-2);
  overflow: hidden;
  min-height: 0;
}
.saas__panel-inner {
  padding: 1.35rem 1.4rem 1.5rem;
  text-align: left;
}
.saas__panel h3 {
  margin: 0 0 1rem;
  font-size: 1.15rem;
  color: var(--forest);
  font-weight: 800;
  line-height: 1.35;
  max-width: none;
  margin-left: 0;
  margin-right: auto;
}
/* Gambar polos; bingkai hanya di .saas__panel */
.saas__illus {
  margin: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  border-radius: 0.65rem;
  background: transparent;
  border: none;
}
.saas__illus img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
  object-position: center;
}
.saas__illus .is-placeholder {
  width: 100%;
  min-height: 200px;
  background: #eceff1;
  border-radius: 0;
  opacity: 0.5;
}

/* Mitra sertifikat */
.section--dark .carousel__arrow {
  border-color: rgba(255, 255, 255, 0.25);
}
.cert-card {
  flex: 0 0 min(100%, 300px);
  background: #fff;
  border-radius: 10px;
  padding: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
}
.cert-card__frame {
  aspect-ratio: 3 / 4;
  background: #eceff1;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.cert-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cert-card__frame .is-placeholder {
  background: #b0bec5;
  min-height: 100%;
}

/* Part 7 — Mitra: 7_blz (glass) di atas, attestation1–5 di bawah, carousel 3-up desktop */
#tentang .carousel--attest .carousel__track {
  align-items: stretch;
}
#tentang .cert-card--glass {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  scroll-snap-align: start;
  display: flex;
  min-width: 0;
  flex: 0 0 min(100%, 300px);
}
@media (min-width: 900px) {
  #tentang .cert-card--glass {
    flex: 0 0 calc(33.333% - 0.85rem);
  }
}
#tentang .cert-card__shell {
  position: relative;
  width: 100%;
  flex: 1;
  aspect-ratio: 3 / 4;
  border-radius: 1.35rem;
  overflow: hidden;
  isolation: isolate;
}
#tentang .cert-card__attest {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.1) 100%);
}
/* Lebar gambar sertifikat sedikit lebih sempit dari area kaca, tetap di tengah */
#tentang .cert-card__attest img {
  display: block;
  width: 64%;
  max-width: 100%;
  height: auto;
  max-height: 86%;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}
#tentang .cert-card__attest img.is-placeholder {
  min-height: 40%;
  width: 50%;
  max-height: 50%;
  object-fit: cover;
  background: #b0bec5;
  border-radius: 4px;
  opacity: 0.5;
}
#tentang .cert-card__glass {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.28));
}

/* Part 8 — Latest Update: latar 6_sp, dua kolom, teks semi-transparan di dalam gambar */
.blog {
  border-block: 1px solid var(--line);
  background-color: var(--bg-muted);
  background-image: url("../images/1x/6_sp.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.blog .section__head .section__subtitle {
  color: var(--forest);
  opacity: 0.9;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.blog-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 36, 32, 0.12);
  border: 1px solid rgba(0, 77, 64, 0.1);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-tile:hover {
  box-shadow: 0 12px 36px rgba(0, 36, 32, 0.16);
}
.blog-tile__link {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
}
.blog-tile__link:hover {
  text-decoration: none;
}
.blog-tile__img {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #cfd8dc;
  overflow: hidden;
}
.blog-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-tile__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 32%;
  max-height: 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.9rem 1.1rem 1rem;
  background: rgba(0, 77, 64, 0.62);
  color: #fff;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
}
.blog-tile__bar h3 {
  margin: 0;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 800;
  line-height: 1.3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.blog-tile__excerpt {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Halaman artikel (Solusi katering / ritel) + Produk */
.content-page {
  padding-top: var(--header-h);
}
.content-page__hero {
  position: relative;
  background: linear-gradient(160deg, #e4efeb 0%, #ebf1ef 45%, #eceff1 100%);
  border-bottom: 1px solid rgba(0, 77, 64, 0.12);
  padding: clamp(1.75rem, 3.5vw, 2.6rem) 0 2.25rem;
  overflow: hidden;
}
.content-page__hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--forest-2) 45%, var(--mint) 100%);
  opacity: 0.95;
}
.content-page__breadcrumb {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin: 0 0 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.content-page__breadcrumb a {
  color: var(--forest-2);
  text-decoration: none;
  transition: color 0.15s;
}
.content-page__breadcrumb a:hover {
  text-decoration: none;
  color: var(--forest);
}
.content-page__title {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 800;
  color: var(--forest);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: 46rem;
}
.content-page__hero-figure {
  margin: 1.35rem 0 0;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 45, 40, 0.1), 0 2px 0 rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(0, 77, 64, 0.1);
  background: linear-gradient(165deg, #f8fbfb 0%, #e8f0ed 100%);
}
.content-page__hero-figure--contain {
  max-height: none;
  padding: clamp(0.5rem, 1.5vw, 1.25rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
}
.content-page__hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(40vh, 24rem);
  object-fit: cover;
}
.content-page__hero-figure--contain img {
  max-height: min(50vh, 28rem);
  object-fit: contain;
  border-radius: 8px;
}
.content-article {
  padding: clamp(1.75rem, 3vw, 2.75rem) 0 clamp(3rem, 5vw, 4rem);
}
.content-article__inner {
  max-width: 44rem;
  margin: 0 auto;
}
.content-article__inner h2 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  margin: 2rem 0 0.75rem;
  line-height: 1.35;
  padding-left: 0.65rem;
  border-left: 3px solid var(--mint);
}
.content-article__inner h2:first-child {
  margin-top: 0;
}
/* Halaman lebar: kartu isi + latar subtle */
.content-article--wide.section {
  padding: clamp(1.5rem, 2.5vw, 2rem) 0 clamp(2.5rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, #dde8e3 0%, #e4eae8 24%, #eceff1 100%);
}
.content-article--wide .content-article__inner {
  max-width: 56rem;
  background: var(--surface);
  border-radius: 20px;
  padding: clamp(1.35rem, 2.2vw, 2rem) clamp(1.2rem, 2.5vw, 2.25rem) clamp(1.75rem, 2.5vw, 2.5rem);
  box-shadow: 0 4px 6px rgba(0, 36, 32, 0.04), 0 20px 50px rgba(0, 45, 40, 0.08);
  border: 1px solid rgba(0, 77, 64, 0.08);
}
.content-article--wide .content-article__inner h2 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--forest);
  border: none;
  padding: 0 0 0.5rem 0;
  border-bottom: 2px solid rgba(0, 105, 92, 0.22);
  border-radius: 0;
  margin: 1.75rem 0 1rem;
  line-height: 1.3;
}
.content-article--wide .content-article__inner > h2:first-of-type {
  margin-top: 1.35rem;
}
.produk-page__disclaimer + .content-article__lead {
  margin-top: 0;
}
.content-article--wide .content-article__inner h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--forest);
  margin: 1.5rem 0 0.4rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.content-article--wide .content-article__inner h3 + p {
  margin-top: 0;
}
.content-article__inner p {
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.7;
}
.content-article__inner ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  color: var(--ink);
  line-height: 1.65;
}
.content-article__inner li {
  margin-bottom: 0.4rem;
}
.content-article__lead {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

/* Galeri (folder assets/images/katering & solusi-ritel-cerdas) */
.solusi-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0 0 1.5rem;
}
@media (min-width: 600px) {
  .solusi-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
}
.solusi-gallery__cell {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-muted);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}
.solusi-gallery__cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Kategori produk (hanya info; tanpa toko) */
.produk-page__img-note {
  margin: -0.25rem 0 0.75rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.produk-page__disclaimer {
  margin: 0 0 1.35rem;
  padding: 0.9rem 1.05rem 0.9rem 1.15rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
  background: linear-gradient(90deg, rgba(0, 77, 64, 0.07) 0%, rgba(0, 77, 64, 0.03) 100%);
  border: 1px solid rgba(0, 105, 92, 0.18);
  border-radius: 12px;
  border-left: 4px solid var(--forest-2);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: 1.35rem;
  margin: 0.5rem 0 0.25rem;
}
.produk-tile {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 77, 64, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fafcfb 100%);
  box-shadow: 0 2px 8px rgba(0, 36, 32, 0.05), 0 12px 32px rgba(0, 45, 40, 0.07);
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.2s ease;
}
.produk-tile:hover {
  border-color: rgba(0, 105, 92, 0.28);
  box-shadow: 0 4px 16px rgba(0, 45, 40, 0.1), 0 20px 40px rgba(0, 45, 40, 0.1);
  transform: translateY(-2px);
}
.produk-tile__media {
  position: relative;
  aspect-ratio: 1.02;
  background: linear-gradient(160deg, #eef5f2 0%, #e0ece8 55%, #dbe6e1 100%);
  border-bottom: 1px solid rgba(0, 77, 64, 0.06);
}
.produk-tile__media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 77, 64, 0.12), transparent);
  pointer-events: none;
}
.produk-tile__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem 0.6rem 0.85rem;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
}
.produk-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.15rem 1.25rem;
  gap: 0.2rem;
}
.produk-tile__label {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest-2);
  opacity: 0.9;
}
.produk-tile__title {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.produk-tile__model {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--mint);
}
.produk-tile__desc {
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--ink-muted);
  flex: 1;
}
.produk-tile__action {
  margin-top: auto;
  padding-top: 0.35rem;
}
.produk-tile__action .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.55rem 0.8rem;
}
.produk-tile__action--stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
}
.produk-tile__contact {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--forest-2);
  text-decoration: none;
  padding: 0.4rem 0;
  border-radius: 8px;
  transition: background 0.15s;
}
.produk-tile__contact:hover {
  text-decoration: none;
  background: rgba(0, 105, 92, 0.08);
}

/* Galeri di halaman produk lebar */
.content-article--wide .solusi-gallery {
  gap: 0.75rem;
  margin: 0.5rem 0 1.75rem;
}
@media (min-width: 600px) {
  .content-article--wide .solusi-gallery {
    gap: 0.9rem;
  }
}
.content-article--wide .solusi-gallery__cell {
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0, 36, 32, 0.06);
  border: 1px solid rgba(0, 77, 64, 0.1);
  background: #f0f4f2;
  transition: box-shadow 0.2s, transform 0.2s;
}
.content-article--wide .solusi-gallery__cell:hover {
  box-shadow: 0 6px 20px rgba(0, 45, 40, 0.1);
  transform: translateY(-1px);
}

/* Detail produk (subhalaman) */
.produk-detail__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0 0 1.4rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(135deg, #f2f6f4 0%, #e8f0ed 100%);
  border: 1px solid rgba(0, 77, 64, 0.1);
  border-radius: 14px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}
.produk-detail__bar a:not(.btn) {
  color: var(--forest-2);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}
.produk-detail__bar a:not(.btn):hover {
  text-decoration: none;
  color: var(--forest);
}
.produk-detail__bar .btn {
  flex-shrink: 0;
}
.produk-detail__extra-figure {
  margin: 1rem 0 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-muted);
}
.produk-detail__extra-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.produk-detail__related {
  margin-top: 1.75rem;
  padding: 1.15rem 1.2rem;
  background: linear-gradient(180deg, #f0f5f3 0%, #e8f0ed 100%);
  border: 1px solid rgba(0, 77, 64, 0.1);
  border-radius: 14px;
  border-top: 3px solid var(--forest-2);
}
.content-article--wide .content-article__inner .produk-detail__related h2 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest-2);
  border: none;
  border-bottom: none;
  padding: 0;
  font-weight: 800;
  line-height: 1.35;
}
.produk-detail__related p {
  margin: 0;
}
.produk-detail__related a {
  color: var(--forest-2);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
}
.produk-detail__related a:hover {
  text-decoration: none;
  color: var(--forest);
}

/* Footer: abu terang */
.footer {
  background: var(--bg-muted);
  color: var(--ink-muted);
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(200px, 240px);
  gap: 2rem 1.5rem;
  padding: 3rem 0 2rem;
  align-items: start;
}
.footer__heading {
  color: var(--forest);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  margin: 0 0 0.9rem;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links a {
  color: #455a64;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer__links a:hover {
  color: var(--forest);
  text-decoration: none;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__app {
  text-align: right;
}
.footer__app-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--forest);
  margin: 0 0 0.5rem;
}
.footer__qr {
  display: inline-block;
  width: 150px;
  height: 150px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
.footer__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
.footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 800;
  transition: transform 0.15s, background 0.2s;
}
.footer__social a:hover {
  background: var(--forest-2);
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff;
}

/* TikTok + saluran belanja (gaya cahayatech: ikon hijau di atas putih) */
.footer__social--channels {
  margin-top: 0.75rem;
  gap: 0.5rem 0.7rem;
  align-items: center;
}
.footer__social--channels a.footer__channel {
  width: 2.25rem;
  height: 2.25rem;
  min-width: 2.25rem;
  min-height: 2.25rem;
  border-radius: 6px;
  background: transparent;
  color: var(--forest);
  padding: 0.25rem;
  box-sizing: border-box;
}
.footer__social--channels a.footer__channel:hover {
  background: rgba(0, 77, 64, 0.08);
  color: var(--forest-2);
  text-decoration: none;
  transform: translateY(-1px);
}
.footer__icon {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.footer__icon path {
  fill: currentColor;
}
.footer__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #78909c;
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 0.15rem;
  font-weight: 700;
}
.footer__col--contact p,
.footer__col--contact address {
  margin: 0 0 0.4rem;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #455a64;
}
.footer__col--contact a {
  color: var(--forest-2);
  font-weight: 600;
}
.footer__col--contact a:hover {
  color: var(--forest);
}
.footer__bottom {
  border-top: 1px solid var(--line);
  background: #e0e0e0;
  padding: 0.9rem 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__copy {
  margin: 0;
  font-size: 0.82rem;
  color: #546e7a;
}
.footer__to-top {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
}
.footer__to-top:hover {
  text-decoration: underline;
}
.picCenter {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0;
}

.xinxiIcon {
  margin:0 0 -20px auto;
}

.xinxiIcon img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.photo_img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0.4rem 0.5rem;
  border-radius: 12px;
  transition: background 0.28s ease;
}
.partners .photo_img img {
  box-sizing: border-box;
  max-height: 86px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 0;
  opacity: 0.9;
  filter: grayscale(0.06);
  transition:
    transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    opacity 0.28s ease,
    filter 0.28s ease,
    box-shadow 0.32s ease;
}
.partners .photo_img:hover,
.partners .photo_img:focus-within {
  background: rgba(0, 77, 64, 0.07);
  background: color-mix(in srgb, var(--forest) 7%, var(--surface));
}
.partners .photo_img:hover img,
.partners .photo_img:focus-within img {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 22px rgba(0, 36, 32, 0.1);
}
.partners .photo_img img.is-placeholder {
  min-width: 100px;
  min-height: 48px;
  background: #eceff1;
  border-radius: 6px;
  box-shadow: none;
  filter: none;
  opacity: 1;
  transform: none;
}
.partners .photo_img:hover img.is-placeholder,
.partners .photo_img:focus-within img.is-placeholder {
  transform: none;
  box-shadow: none;
}
@media (prefers-reduced-motion: reduce) {
  .partners .photo_img img {
    transition: none;
  }
  .partners .photo_img:hover img,
  .partners .photo_img:focus-within img {
    transform: none;
  }
}

.photo_nr {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  box-sizing: border-box;
}

.informationText {
  width: 888px;
  margin: 15px auto;
  text-align: center;
}

.informationText span {

  background: #ffffff;
  color: #1C1F86;
}

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

.photo_nr ul li {
  float: left;
  margin: 0 1.25rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 640px) {
  .photo_nr ul li {
    margin: 0 0.7rem;
  }
  .partners .photo_img {
    min-height: 76px;
    padding: 0.3rem 0.35rem;
  }
  .partners .photo_img img {
    max-height: 64px;
    max-width: 150px;
  }
}

#LeftArr,
#RightArr {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  min-width: 1.5rem;
  height: 2.5rem;
  align-self: center;
  text-decoration: none;
  color: #546e7a;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.65;
  transition: opacity 0.2s ease;
  user-select: none;
  font-weight: 300;
}
#LeftArr::before {
  content: "‹";
}
#RightArr::before {
  content: "›";
}
#LeftArr {
  margin-right: 0.1rem;
}
#RightArr {
  margin-left: 0.1rem;
}
#LeftArr:hover,
#RightArr:hover {
  opacity: 1;
}
.partners .photo_nr #picList1 {
  flex: 1 1 auto;
  min-width: 0;
}

.photo_nr p {
  padding: 0;
  margin: 0;
}




@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .value-intro__mock {
    max-width: none;
    margin-left: 0;
  }
  .value-intro__caption {
    margin-top: -3.1rem;
    padding: 1.45rem 1.2rem 1.55rem;
    min-height: 5.75rem;
  }
  .section__head {
    margin-bottom: 1.5rem;
  }
}

.is-placeholder,
img.is-placeholder {
  object-fit: cover;
  background: #eceff1;
}

/* Mobile nav */
body.nav-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer__app {
    grid-column: 1 / -1;
    text-align: left;
  }
  .footer__social {
    justify-content: flex-start;
  }
  .feature-icon-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-icon-row--2 {
    grid-template-columns: 1fr;
  }
  .value-intro__inner {
    grid-template-columns: 1fr;
  }
  .value-intro__mock {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .header__inner {
    flex-wrap: nowrap;
  }
  .nav {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 2rem;
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px) + 1.25rem);
    transform: translateX(100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
  }
  .carousel {
    padding: 0 0.5rem;
  }
  .hero {
    min-height: clamp(22rem, min(80svh, calc(100svh - var(--header-h) - env(safe-area-inset-top, 0px) - env(safe-area-inset-bottom, 0px))), var(--hero-max-h));
  }
  body.nav-open .nav {
    transform: translateX(0);
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.25rem 0;
  }
  .nav__link {
    font-size: 1.05rem;
    padding: 0.5rem 0;
  }
  .nav__item--has-dropdown {
    width: 100%;
  }
  .nav__link--dropdown {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    padding: 0.4rem 0;
  }
  .nav__dropdown {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    margin: 0.35rem 0 0.75rem 0.25rem;
    padding: 0.35rem 0;
    border-radius: 10px;
    border: 1px solid var(--line);
    border-top: 2px solid var(--forest);
    box-shadow: none;
    background: var(--bg-muted);
  }
  .nav__item--has-dropdown .nav__dropdown::before {
    display: none;
  }
}

/* —— Blog: arsip & artikel (data: assets/data/blog-posts.json) */
.blog-page__hero {
  text-align: center;
}
.blog-page__hero .content-page__breadcrumb {
  text-align: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.blog-page__kicker {
  margin: 0.35rem 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  opacity: 0.9;
}
.blog-page__intro {
  max-width: 40rem;
  margin: 0.65rem auto 0;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.65;
  color: var(--ink-muted);
  text-align: center;
}
/* Daftar: kartu (bukan overlay) */
.blog--archive {
  padding-top: clamp(0.75rem, 2.5vw, 1.5rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
  background-image: none;
  background: linear-gradient(180deg, #f7faf8 0%, #eef3f0 45%, #eceff1 100%);
  border: none;
  border-top: 1px solid rgba(0, 77, 64, 0.08);
}
.blog-page__list-wrap {
  min-height: 8rem;
}
.blog-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem 1.5rem;
  align-items: stretch;
  max-width: min(1120px, 100%);
  margin: 0 auto;
}
@media (min-width: 640px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.75rem;
  }
}
/* Kartu arsip: gambar di atas, teks di bawah */
.blog--archive .blog-tile--card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 36, 32, 0.05), 0 12px 32px rgba(0, 45, 40, 0.08);
  border: 1px solid rgba(0, 77, 64, 0.09);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.2s ease;
}
.blog--archive .blog-tile--card:hover {
  box-shadow: 0 8px 24px rgba(0, 36, 32, 0.1), 0 20px 48px rgba(0, 45, 40, 0.1);
  transform: translateY(-4px);
  border-color: rgba(0, 105, 92, 0.22);
}
.blog--archive .blog-tile__link--card {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog--archive .blog-tile__link--card:hover {
  text-decoration: none;
  color: inherit;
}
.blog--archive .blog-tile__img--card {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(155deg, #e8f0ed 0%, #d9e2dd 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.blog--archive .blog-tile__img--card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 36, 32, 0.07) 100%);
  pointer-events: none;
}
.blog--archive .blog-tile__img--card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.blog--archive .blog-tile--card:hover .blog-tile__img--card img {
  transform: scale(1.05);
}
.blog--archive .blog-tile__content {
  position: static;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  padding: 1.15rem 1.25rem 1.3rem;
  background: #fff;
  color: var(--ink);
  gap: 0.45rem;
  box-shadow: inset 3px 0 0 0 var(--mint);
  border: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  max-height: none;
  min-height: 0;
  border-top: 1px solid rgba(0, 77, 64, 0.06);
}
.blog--archive .blog-tile__time {
  align-self: flex-start;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--forest-2);
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: rgba(0, 105, 92, 0.09);
}
.blog--archive .blog-tile__title--card {
  margin: 0.1rem 0 0;
  font-size: clamp(1.02rem, 1.9vw, 1.12rem);
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: -0.02em;
  color: var(--forest);
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}
.blog--archive .blog-tile--card:hover .blog-tile__title--card {
  color: var(--forest-2);
}
.blog--archive .blog-tile__excerpt--card {
  margin: 0.15rem 0 0;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-muted);
  text-shadow: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 0;
}
.blog--archive .blog-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--forest-2);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.blog--archive .blog-tile--card:hover .blog-tile__cta {
  color: var(--forest);
}
.blog--archive .blog-tile__cta-ic {
  display: inline-block;
  transition: transform 0.2s ease;
}
.blog--archive .blog-tile--card:hover .blog-tile__cta-ic {
  transform: translateX(4px);
}
.blog--archive .blog-tile__link--card:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: var(--radius);
}
@media (prefers-reduced-motion: reduce) {
  .blog--archive .blog-tile--card,
  .blog--archive .blog-tile__img--card img,
  .blog--archive .blog-tile__cta-ic {
    transition: none;
  }
  .blog--archive .blog-tile--card:hover {
    transform: none;
  }
  .blog--archive .blog-tile--card:hover .blog-tile__img--card img,
  .blog--archive .blog-tile--card:hover .blog-tile__cta-ic {
    transform: none;
  }
}
.blog-tile__ph {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  background: linear-gradient(145deg, #cfd8dc 0%, #eceff1 100%);
}
.blog-page__loading,
.blog-page__err,
.blog-page__empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ink-muted);
}
.blog-page__err {
  color: #b71c1c;
}
.blog-article-page {
  padding-bottom: 3rem;
}
.blog-article {
  padding-top: 0;
}
.blog-article__inner {
  max-width: 46rem;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: 2rem;
}
.blog-article__back {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}
.blog-article__back a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
}
.blog-article__back a:hover {
  text-decoration: underline;
}
.blog-article__title {
  font-size: clamp(1.5rem, 3.2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.blog-article__meta {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.blog-article__meta time {
  font-weight: 600;
}
.blog-article__hero-fig {
  margin: 0 0 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 77, 64, 0.1);
  box-shadow: 0 8px 28px rgba(0, 36, 32, 0.1);
}
.blog-article__hero-fig img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.blog-article__body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink);
}
.blog-article__body > *:first-child {
  margin-top: 0;
}
.blog-article__body p {
  margin: 0 0 1.1rem;
}
.blog-article__body h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--forest);
  margin: 1.75rem 0 0.65rem;
  line-height: 1.35;
}
.blog-article__body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 1.5rem 0 0.5rem;
}
.blog-article__body ul,
.blog-article__body ol {
  margin: 0 0 1.1rem 1.25rem;
  padding: 0;
}
.blog-article__body li {
  margin-bottom: 0.35rem;
}
.blog-article__body a {
  color: var(--forest);
  font-weight: 600;
}
.blog-article__body blockquote {
  margin: 1.25rem 0;
  padding: 0.75rem 1rem 0.75rem 1rem;
  border-left: 4px solid var(--forest);
  background: rgba(0, 77, 64, 0.06);
  border-radius: 0 8px 8px 0;
}
.blog-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}
.blog-article__body .alignwide,
.blog-article__body .wp-block-image {
  margin: 1.25rem 0;
}

/* —— Tentang kami (tentang-kami.html) */
.about-page__hero {
  padding-bottom: clamp(1.35rem, 3vw, 2.1rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 77, 64, 0.1);
  background: linear-gradient(165deg, #e6f0ec 0%, #ebf1ef 38%, #eef0f1 100%);
}
.about-page__hero .container {
  max-width: 48rem;
}
.about-page__crumb {
  margin-bottom: 0.5rem;
}
.about-page__h1 {
  margin-bottom: 0.5rem;
}
.about-page__lead {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  padding-bottom: 0.15rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: var(--ink-muted);
  text-align: center;
}
.about-page__em {
  color: var(--forest);
  font-weight: 700;
}
.about-page__hero::after {
  content: "";
  display: block;
  width: min(5.5rem, 44%);
  height: 3px;
  margin: clamp(0.9rem, 2.2vw, 1.45rem) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 77, 64, 0.25) 20%, var(--forest) 50%, rgba(0, 77, 64, 0.25) 80%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}
.about-page__body {
  background: #fafbfa;
  border-top: none;
  padding: 0 0 3rem;
}
.about-page__narrow {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem) 0 0;
}
.about-page__mission p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--ink);
  margin: 0 0 1.15rem;
}
.about-page__mission p:last-child {
  margin-bottom: 0;
}
.about-page__section {
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  padding: 0 0.5rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.about-page__h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 800;
  color: var(--forest);
  margin: 0 0 1.25rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.about-page__h2--light {
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.about-team {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}
@media (min-width: 700px) {
  .about-team {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.5rem;
  }
}
@media (min-width: 1000px) {
  .about-team {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.75rem;
  }
}
.about-person {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 77, 64, 0.12);
  box-shadow: 0 4px 22px rgba(0, 36, 32, 0.06);
  padding: 1.35rem 1.35rem 1.45rem;
  transition: box-shadow 0.25s ease, border-color 0.2s ease, transform 0.2s ease;
}
.about-person:hover {
  box-shadow: 0 10px 36px rgba(0, 36, 32, 0.1);
  border-color: rgba(0, 77, 64, 0.2);
  transform: translateY(-2px);
}
.about-person__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.about-person__n {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgba(0, 77, 64, 0.15);
  line-height: 1;
  user-select: none;
}
.about-person__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(145deg, var(--forest) 0%, #00695c 100%);
  box-shadow: 0 2px 10px rgba(0, 77, 64, 0.3);
  flex-shrink: 0;
}
.about-person__role {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0.25rem 0 0.15rem;
  opacity: 0.9;
}
.about-person__name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.about-person__aka {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-top: 0.2rem;
}
.about-person__p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin: 0 0 0.5rem;
}
.about-person__ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--ink);
}
.about-person__ul--tight li {
  margin-bottom: 0.35rem;
}
.about-person__ul li {
  margin-bottom: 0.5rem;
}
.about-person__ul li::marker {
  color: var(--forest);
}
.about-person__edu {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--ink-muted);
  margin: 0.6rem 0 0;
  font-style: italic;
}
.about-page__illu {
  margin-top: 2.5rem;
  padding: clamp(2.25rem, 4.5vw, 3.5rem) 0;
}
.about-page__illu--lite {
  background: linear-gradient(160deg, #0d4a3e 0%, #004d40 50%, #1a5b4f 100%);
  color: #fff;
  border: none;
}
.about-page__illu-inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.about-page__fig {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.15);
}
.about-page__illu--lite .about-page__fig {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.about-page__fig img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}
.about-page__fig--border {
  border: 1px solid rgba(0, 77, 64, 0.12);
  box-shadow: 0 8px 32px rgba(0, 36, 32, 0.08);
  background: #fff;
}
@media (min-width: 1025px) {
  .content-page__hero.about-page__hero {
    padding-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
  }
}

/* —— Hubungi kami (hubungi-kami.html) */
.contact-page__hero {
  position: relative;
  padding-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
  background: linear-gradient(165deg, #e6f0ec 0%, #ebf1ef 38%, #eef0f1 100%);
  border-bottom: 1px solid rgba(0, 77, 64, 0.1);
  overflow: hidden;
}
.contact-page__hero::after {
  content: "";
  display: block;
  width: min(5.5rem, 44%);
  height: 3px;
  margin: clamp(0.85rem, 2vw, 1.2rem) auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 77, 64, 0.25) 20%, var(--forest) 50%, rgba(0, 77, 64, 0.25) 80%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}
.contact-page__hero-inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.contact-page__crumb {
  text-align: left;
  margin-bottom: 0.45rem;
}
.contact-page__h1 {
  margin-bottom: 0.75rem;
}
.contact-page__sub {
  margin: 0;
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 600;
  color: var(--ink-muted);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.contact-page__body {
  background: #fafbfa;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 4vw, 3.5rem);
}
.contact-page__container {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.contact-page__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
@media (min-width: 700px) {
  .contact-page__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 1.25rem;
  }
  .contact-page__list li:last-child {
    grid-column: 1 / -1;
  }
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0, 77, 64, 0.12);
  box-shadow: 0 4px 22px rgba(0, 36, 32, 0.06);
  padding: 1.2rem 1.25rem 1.3rem;
  height: 100%;
  box-sizing: border-box;
  transition: box-shadow 0.22s ease, border-color 0.2s ease;
}
.contact-card:hover {
  box-shadow: 0 10px 32px rgba(0, 36, 32, 0.09);
  border-color: rgba(0, 77, 64, 0.18);
}
.contact-card__title {
  margin: 0 0 0.55rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-2);
}
.contact-card__value {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  font-style: normal;
  word-break: break-word;
}
.contact-card__value a {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.contact-card__value a:hover {
  color: var(--forest-2);
  text-decoration: underline;
}
.contact-card__value--addr {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--ink-muted);
}
.contact-page__map-wrap {
  margin: 1.5rem 0 0;
  text-align: center;
}
.contact-page__map-btn {
  display: inline-flex;
}
