@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --green:#4b9fa9;
  --green-dark:#2f7f89;
  --navy:#0d2b33;
  --orange:#f47a20;
  --cream:#f4f0e8;
  --paper:#faf8f3;
  --ink:#16383d;
  --muted:#6f7d7e;
  --line:rgba(22, 56, 61, .16);
  --max:1240px;
  --ease:cubic-bezier(.16, 1, .3, 1);
  --font-display:'Space Grotesk', sans-serif;
  --font-body:'Inter', sans-serif;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:auto;
}
body {
  margin:0;
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-body);
  overflow-x:hidden;
}
a {
  color:inherit;
  text-decoration:none;
}
img {
  display:block;
  max-width:100%;
}
button, input, textarea {
  font:inherit;
}
.container {
  width:min(calc(100% - 72px), var(--max));
  margin-inline:auto;
}

/* NAVBAR — transparent like the reference */
.site-header {
  position:fixed;
  inset:0 0 auto;
  z-index:1000;
  height:88px;
  background:transparent;
  border-bottom:1px solid rgba(255, 255, 255, .22);
  color:#fff;
  transition:background-color .55s var(--ease), border-color .55s ease, backdrop-filter .55s ease;
}
.site-header.is-scrolled {
  background:rgba(75, 159, 169, .94);
  border-bottom-color:rgba(255, 255, 255, .18);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.nav-wrap {
  height:88px;
  display:grid;
  grid-template-columns:auto 1fr;
  align-items:center;
  gap:28px;
}
.brand {
  display:flex;
  align-items:center;
  justify-content:flex-start;
  color:#fff;
  position:relative;
  z-index:2;
}
.brand-mark {
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  overflow:hidden;
  transition:transform .4s var(--ease);
}
.brand:hover .brand-mark {
  transform:scale(1.05);
}
.brand-tap-hint {
  display:none;
}
.brand-mark img {
  width:100%;
  height:100%;
  object-fit:contain;
}
.logo-outline {
  filter:
    drop-shadow(1.5px 0 0 #fff)
    drop-shadow(-1.5px 0 0 #fff)
    drop-shadow(0 1.5px 0 #fff)
    drop-shadow(0 -1.5px 0 #fff)
    drop-shadow(1.5px 1.5px 0 #fff)
    drop-shadow(-1.5px -1.5px 0 #fff)
    drop-shadow(1.5px -1.5px 0 #fff)
    drop-shadow(-1.5px 1.5px 0 #fff);
}
.nav-links {
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
}
.nav-links a, .nav-explore {
  position:relative;
  color:#fff;
  font-family:var(--font-display);
  font-size:12px;
  font-weight:700;
  white-space:nowrap;
}
.nav-links a {
  padding:30px 0;
}
.nav-links a::after {
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:19px;
  height:1px;
  background:var(--orange);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .45s var(--ease);
}
.nav-links a:hover::after, .nav-links a.is-active::after {
  transform:scaleX(1);
}
.nav-explore {
  padding:30px 0 30px 34px;
  border-left:1px solid rgba(255, 255, 255, .22);
}

/* Mobile dropdown menu (triggered by tapping the logo) */
.mobile-menu {
  display:none;
  flex-direction:column;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  background:var(--green);
  border-top:1px solid rgba(255, 255, 255, .18);
  box-shadow:0 24px 40px -20px rgba(13, 43, 51, .5);
  padding:6px 24px 22px;
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height .5s var(--ease), opacity .35s ease;
}
.mobile-menu a {
  color:#fff;
  font-size:14px;
  font-weight:500;
  padding:15px 0;
  border-bottom:1px solid rgba(255, 255, 255, .12);
}
.mobile-menu a:last-child {
  border-bottom:0;
}
.mobile-menu a.is-active {
  color:var(--orange);
}
.mobile-menu-explore {
  margin-top:6px;
  text-align:center;
  background:var(--orange);
  border-radius:999px;
  padding:13px 0 !important;
  font-weight:600 !important;
}
body.menu-is-open {
  overflow:hidden;
}

/* HERO */
.hero {
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:var(--green);
  color:#fff;
}
.hero-home .hero-media {
  position:absolute;
  inset:0;
  z-index:0;
}
.hero-home .hero-media img {
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.045);
  will-change:transform;
  animation: hero-kenburns 14s var(--ease) forwards;
}
@keyframes hero-kenburns {
  from { transform:scale(1.12); }
  to { transform:scale(1.045); }
}
.hero-home .hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(8, 40, 44, .42) 0%, rgba(8, 40, 44, .12) 32%, rgba(8, 40, 44, .12) 60%, rgba(8, 40, 44, .58) 100%);
  z-index:1;
}
.hero:not(.hero-home) {
  min-height:68vh;
  background:var(--green);
}
.hero-content {
  position:relative;
  z-index:2;
  text-align:center;
  width:min(100%, 700px);
  padding-top:36px;
}
.hero h1 {
  margin:0 auto;
  font-family:var(--font-display);
  font-size:clamp(24px, 2.5vw, 38px);
  line-height:1.15;
  letter-spacing:-.03em;
  font-weight:500;
  color:#fff;
  max-width:580px;
}
.hero-subtitle {
  max-width:430px;
  margin:18px auto 0;
  color:rgba(255, 255, 255, .9);
  font-size:12px;
  line-height:1.65;
}
.hero-link {
  display:inline-flex;
  align-items:center;
  color:#fff;
  background:rgba(255, 255, 255, .14);
  border:1px solid rgba(255, 255, 255, .45);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  padding:12px 22px;
  border-radius:999px;
  font-size:11px;
  transition:transform .45s var(--ease), background .3s ease, border-color .3s ease;
}
.hero-home .hero-link {
  position:absolute;
  z-index:2;
  right:clamp(20px, 4vw, 56px);
  bottom:clamp(20px, 4vw, 56px);
  margin-top:0;
}
.hero-link:hover {
  transform:translateY(-3px);
  background:rgba(255, 255, 255, .24);
  border-color:rgba(255, 255, 255, .7);
}

/* word-by-word scroll motion */
.word-reveal .word {
  display:inline-block;
  opacity:0;
  transform:translate3d(0, 34px, 0);
  filter:blur(6px);
  transition:opacity 1.15s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
  transition-delay:calc(var(--i) * 165ms + 120ms);
}
.word-reveal.is-visible .word {
  opacity:1;
  transform:none;
  filter:none;
}
.word-reveal-sub {
  opacity:0;
  transform:translateY(18px);
  filter:blur(4px);
  transition:opacity 1.2s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
  transition-delay:1.05s;
}
.word-reveal-sub.is-visible {
  opacity:1;
  transform:none;
  filter:none;
}
.hero-cta-reveal {
  opacity:0;
  transform:translateY(18px);
  filter:blur(4px);
  transition:opacity 1s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
  transition-delay:.3s;
}
.hero-cta-reveal.is-visible {
  opacity:1;
  transform:none;
  filter:none;
}
section {
  padding:120px 0;
  background:var(--cream);
}
section.bg-soft {
  background:var(--paper);
}
section.bg-navy {
  background:radial-gradient(circle at 25% 15%, var(--green-dark), var(--navy) 65%);
  color:#fff;
}
section.bg-navy .section-head h2 {
  color:#fff;
}
body.page-home section.bg-navy .why-grid {
  border-top-color:rgba(255, 255, 255, .16);
}
section.bg-navy .why-item {
  border-bottom-color:rgba(255, 255, 255, .16);
}
section.bg-navy .why-item:nth-child(even) {
  border-left-color:rgba(255, 255, 255, .16);
}
section.bg-navy .why-item h3 {
  color:#fff;
}
body.page-home section.bg-navy .why-item p {
  color:rgba(255, 255, 255, .68);
}
.section-head {
  max-width:820px;
  margin-bottom:62px;
}
.section-head h2 {
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(36px, 5vw, 68px);
  line-height:.97;
  letter-spacing:-.045em;
  font-weight:500;
}
.section-head-sm h2 {
  font-size:clamp(24px, 2.6vw, 34px);
  line-height:1.1;
  letter-spacing:-.03em;
}
.section-link {
  text-align:right;
  margin-top:34px;
}
.section-link a, .cta-link {
  font-size:12px;
  border-bottom:1px solid currentColor;
  padding-bottom:5px;
}

/* PRODUCTS */
.produk-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:56px 34px;
}
.produk-card {
  display:block;
}
.produk-thumb {
  position:relative;
  aspect-ratio:4/4.7;
  overflow:hidden;
  background:#e7e2d8;
}
.produk-video-badge {
  position:absolute;
  top:12px;
  right:12px;
  z-index:2;
  background:rgba(13, 43, 51, .78);
  color:#fff;
  font-size:9px;
  letter-spacing:.1em;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:999px;
}
.produk-bestseller-badge {
  position:absolute;
  top:12px;
  left:12px;
  z-index:2;
  background:var(--orange);
  color:#fff;
  font-size:9px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:5px 10px;
  border-radius:999px;
  box-shadow:0 4px 12px rgba(244, 122, 32, .35);
}
.produk-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1.1s var(--ease);
}
.produk-card:hover .produk-thumb img {
  transform:scale(1.035);
}
.produk-flip-hint {
  position:absolute;
  left:12px;
  bottom:12px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(13, 43, 51, .78);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  color:#fff;
  font-size:10px;
  letter-spacing:.04em;
  padding:7px 12px;
  border-radius:999px;
  opacity:0;
  transform:translateY(6px);
  transition:opacity .4s var(--ease), transform .4s var(--ease);
}
.produk-flip-hint .icon {
  width:11px;
  height:11px;
}
.produk-card-flip:hover .produk-flip-hint,
.produk-card-flip:focus-visible .produk-flip-hint {
  opacity:1;
  transform:translateY(0);
}
.produk-card-flip {
  transition:transform .5s var(--ease);
}
.produk-card-flip:hover,
.produk-card-flip:focus-visible {
  transform:translateY(-4px);
}
.produk-card-flip:focus-visible {
  outline:2px solid var(--orange);
  outline-offset:6px;
}
.produk-body {
  padding-top:20px;
}
.produk-kategori {
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--muted);
  margin-bottom:9px;
}
.produk-body h3, .blog-body h3 {
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:-.035em;
  line-height:1.02;
  margin:0 0 10px;
  font-size:25px;
}
.produk-body p, .blog-body p {
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
  max-width:390px;
}
.produk-satuan {
  display:block;
  margin-top:10px;
  font-size:10px;
  color:var(--muted);
}

/* FLIP CARD — featured products on the homepage */
.produk-card-flip {
  cursor:pointer;
  perspective:1600px;
  outline:none;
}
.produk-card-inner {
  position:relative;
  width:100%;
  height:100%;
  transition:transform .8s cubic-bezier(.2, .7, .2, 1);
  transform-style:preserve-3d;
}
.produk-card-flip {
  height:100%;
}
.produk-card-front {
  height:100%;
}
.produk-card-flip.is-flipped .produk-card-inner {
  transform:rotateY(180deg);
}
.produk-card-face {
  backface-visibility:hidden;
  -webkit-backface-visibility:hidden;
}
.produk-card-front {
  position:relative;
}
.produk-card-back {
  position:absolute;
  inset:0;
  transform:rotateY(180deg);
  background:var(--navy);
  color:#fff;
  border-radius:6px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.produk-card-close {
  display:none;
  position:absolute;
  top:10px;
  right:10px;
  z-index:3;
  width:28px;
  height:28px;
  align-items:center;
  justify-content:center;
  background:rgba(255, 255, 255, .12);
  border-radius:50%;
  color:#fff;
}
.produk-card-close .icon {
  width:14px;
  height:14px;
}
.produk-card-back-body {
  padding:26px 24px;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.produk-card-back .produk-kategori {
  color:rgba(255, 255, 255, .58);
}
.produk-card-back h3 {
  font-family:var(--font-display);
  font-weight:600;
  letter-spacing:-.035em;
  line-height:1.05;
  margin:0 0 10px;
  font-size:22px;
  color:#fff;
}
.produk-card-back p {
  margin:0 0 18px;
  font-size:12px;
  line-height:1.7;
  color:rgba(255, 255, 255, .72);
  max-width:32ch;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.produk-card-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-size:11px;
  color:#fff;
  border-bottom:1px solid rgba(255, 255, 255, .5);
  padding-bottom:4px;
  transition:gap .3s var(--ease), border-color .3s ease;
}
.produk-card-cta:hover {
  gap:12px;
  border-color:#fff;
}
.icon-sm {
  width:13px;
  height:13px;
}

/* CATEGORY — equal width to the end */
.produk-search-wrap {
  display:flex;
  justify-content:center;
  margin-bottom:28px;
}
.produk-search {
  position:relative;
  width:100%;
  max-width:420px;
}
.produk-search .icon {
  position:absolute;
  left:16px;
  top:50%;
  transform:translateY(-50%);
  width:16px;
  height:16px;
  color:var(--muted);
  pointer-events:none;
}
.produk-search input {
  width:100%;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--paper);
  padding:12px 16px 12px 42px;
  font-size:13px;
  color:var(--ink);
  transition:border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.produk-search input::placeholder {
  color:var(--muted);
}
.produk-search input:focus {
  outline:none;
  border-color:var(--orange);
  box-shadow:0 0 0 3px rgba(244, 122, 32, .14);
}
.produk-search input::-webkit-search-cancel-button {
  cursor:pointer;
}
.produk-empty {
  text-align:center;
  color:var(--muted);
  font-size:13px;
  padding:50px 0;
}
.kategori-tabs {
  display:flex;
  width:100%;
  border-bottom:1px solid var(--line);
  margin-bottom:58px;
  overflow-x:auto;
  scrollbar-width:none;
}
.kategori-tabs::-webkit-scrollbar {
  display:none;
}
.kategori-tab {
  flex:1 1 0;
  min-width:130px;
  border:0;
  border-bottom:2px solid transparent;
  background:transparent;
  color:var(--ink);
  padding:17px 12px 15px;
  font-size:10px;
  letter-spacing:.08em;
  white-space:nowrap;
  cursor:pointer;
  transition:color .3s ease, border-color .3s ease;
}
.kategori-tab:hover, .kategori-tab.is-active {
  color:var(--orange);
  border-bottom-color:var(--orange);
}

/* WHY */
.why-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  border-top:1px solid var(--line);
}
.why-item {
  padding:32px 30px 34px 0;
  border-bottom:1px solid var(--line);
  display:flex;
  align-items:flex-start;
  gap:18px;
}
.why-item:nth-child(even) {
  padding-left:30px;
  border-left:1px solid var(--line);
}
.why-icon {
  flex:none;
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(244, 122, 32, .12);
  color:var(--orange);
  transition:transform .5s var(--ease), background .5s var(--ease);
}
.why-icon .icon {
  width:20px;
  height:20px;
}
.why-item:hover .why-icon {
  transform:translateY(-3px) scale(1.05);
  background:rgba(244, 122, 32, .2);
}
body.page-home section.bg-navy .why-icon {
  background:rgba(255, 255, 255, .1);
  color:#fff;
}
.why-item h3 {
  font-family:var(--font-display);
  font-size:22px;
  letter-spacing:-.035em;
  margin:0 0 8px;
}
.misi-list {
  list-style:none;
  padding-left:0;
}
.misi-list li {
  position:relative;
  padding-left:22px;
  margin-bottom:6px;
}
.misi-list li::before {
  content:'+';
  position:absolute;
  left:0;
  color:var(--orange);
  font-weight:600;
}
.why-item p {
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.75;
  max-width:430px;
}

/* BLOG */
.blog-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:56px 34px;
}
.blog-thumb {
  aspect-ratio:4/3;
  overflow:hidden;
  background:#e7e2d8;
}
.blog-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s var(--ease);
}
.blog-card:hover .blog-thumb img {
  transform:scale(1.03);
}
.blog-body {
  padding-top:19px;
}
.blog-meta {
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:10px;
}

/* CTA */
.cta-band {
  position:relative;
  background:var(--orange);
  color:#fff;
  padding:48px 56px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
}
.cta-band::before, .cta-band::after {
  content:'+';
  position:absolute;
  color:rgba(255, 255, 255, .35);
  font-size:22px;
  line-height:1;
  pointer-events:none;
}
.cta-band::before { top:20px; left:38%; }
.cta-band::after { bottom:18px; left:52%; }
.cta-band h2 {
  margin:0;
  font-family:var(--font-display);
  font-size:clamp(25px, 2.8vw, 40px);
  font-weight:500;
  letter-spacing:-.045em;
  line-height:1;
}
.cta-link {
  border-color:rgba(255, 255, 255, .7);
  color:#fff;
  white-space:nowrap;
}

/* MARQUEE */
.mitra-marquee-section {
  padding:42px 0 55px;
}
.mitra-marquee-head {
  font-size:10px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:22px;
}
.mitra-marquee {
  overflow:hidden;
}
.mitra-marquee-track {
  display:flex;
  width:max-content;
  gap:46px;
  animation:marquee linear infinite;
}
.mitra-logo-item {
  height:48px;
  min-width:120px;
  display:grid;
  place-items:center;
  opacity:.7;
}
.mitra-logo-item img {
  max-height:40px;
  max-width:130px;
  object-fit:contain;
}
@keyframes marquee {
  to {
    transform:translateX(-50%);
  }
}

/* DETAIL / ARTICLE */
.article-header {
  padding:150px 0 70px;
  background:var(--green);
  color:#fff;
  text-align:center;
}
.article-header h1 {
  max-width:880px;
  margin:0 auto;
  font-family:var(--font-display);
  font-size:clamp(38px, 5.4vw, 70px);
  line-height:.96;
  letter-spacing:-.045em;
  font-weight:500;
}
.article-back {
  display:inline-block;
  margin-bottom:30px;
  font-size:10px;
  color:rgba(255, 255, 255, .82);
}
.article-meta {
  display:flex;
  justify-content:center;
  gap:18px;
  margin-top:22px;
  font-size:10px;
  color:rgba(255, 255, 255, .8);
}
.article-cover {
  width:min(calc(100% - 72px), 1120px);
  margin:70px auto 90px;
  aspect-ratio:16/8.7;
  overflow:hidden;
}
.article-cover img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.article-body {
  max-width:760px;
  margin:0 auto;
  padding-bottom:110px;
}
.article-content {
  font-size:16px;
  line-height:1.9;
}
.article-content p {
  margin:0 0 26px;
}
.article-gallery {
  margin-top:80px;
}
.article-gallery-title {
  font-family:var(--font-display);
  font-size:32px;
  letter-spacing:-.04em;
}
/* Photo slider (replaces the old 3-col grid, which looked crowded
   once an article had more than 3-4 photos). One photo at a time,
   prev/next arrows, dots and a "Foto x dari y" caption. */
.article-slider {
  position:relative;
  overflow:hidden;
  border-radius:6px;
  background:#111;
}
.article-slider-track {
  display:flex;
  touch-action:pan-y;
  transition:transform .5s var(--ease);
}
.article-slide {
  flex:0 0 100%;
  width:100%;
  aspect-ratio:16/10;
}
.article-gallery-item {
  display:block;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background:none;
  overflow:hidden;
}
.article-gallery-item img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.article-slider-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:0;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  cursor:pointer;
  box-shadow:0 10px 26px rgba(8,44,51,.22);
  transition:transform .25s var(--ease), background .25s var(--ease), opacity .25s var(--ease);
  z-index:2;
}
.article-slider-nav .icon {
  width:18px;
  height:18px;
}
.article-slider-nav:hover {
  background:#fff;
  transform:translateY(-50%) scale(1.08);
}
.article-slider-nav:disabled {
  opacity:.35;
  cursor:default;
  pointer-events:none;
}
.article-slider-prev {
  left:14px;
}
.article-slider-prev .icon {
  transform:rotate(180deg);
}
.article-slider-next {
  right:14px;
}
.article-slider-footer {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-top:14px;
}
.article-slider-caption {
  font-size:12px;
  color:var(--muted);
}
.article-slider-dots {
  display:flex;
  gap:7px;
}
.article-slider-dot {
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:50%;
  background:var(--line);
  cursor:pointer;
  transition:background .25s var(--ease), transform .25s var(--ease);
}
.article-slider-dot.is-active {
  background:var(--orange);
  transform:scale(1.35);
}
@media (max-width:640px) {
  .article-slide {
    aspect-ratio:4/3;
  }
  .article-slider-nav {
    width:36px;
    height:36px;
  }
  .article-slider-prev {
    left:10px;
  }
  .article-slider-next {
    right:10px;
  }
}
.produk-detail-grid {
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(320px, .85fr);
  gap:80px;
  align-items:start;
}
.produk-detail-section {
  background:linear-gradient(200deg, rgba(75, 159, 169, .14) 0%, var(--cream) 42%, var(--cream) 100%);
  position:relative;
}
.produk-detail-section::before {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 85% 0%, rgba(244, 122, 32, .1), transparent 55%);
  pointer-events:none;
}
.produk-detail-section .container {
  position:relative;
  z-index:1;
}
.produk-detail-media {
  aspect-ratio:4/5;
  background:#e7e2d8;
  overflow:hidden;
}
.produk-detail-media img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.produk-detail-info {
  padding-top:28px;
}
.produk-detail-info h2 {
  font-family:var(--font-display);
  font-size:clamp(32px, 4.2vw, 56px);
  line-height:.97;
  letter-spacing:-.045em;
  margin:0 0 18px;
}
.produk-detail-info .lede {
  font-size:14px;
  line-height:1.8;
  color:var(--muted);
}
.produk-detail-satuan {
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line);
  font-size:11px;
  color:var(--muted);
}
.produk-detail-full {
  max-width:760px;
  margin:90px auto 0;
  border-top:1px solid var(--line);
  padding-top:35px;
}
.produk-detail-full h3 {
  font-family:var(--font-display);
  font-size:30px;
  letter-spacing:-.04em;
}
.produk-detail-full .article-content {
  font-size:15px;
}

/* ABOUT / CONTACT */
.tentang-profile {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}
.tentang-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.tentang-profile-media {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #e7e2d8;
}

.tentang-profile-media img {
  display: block;
  width: 100%;
  height: auto;
}
.tentang-profile-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);

}
.tentang-profile-text p {
  margin:0 0 22px;
}
.visi-misi-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  background:var(--line);
}
.visi-misi-card {
  background:var(--green);
  color:#fff;
  padding:52px 48px 48px;
  position:relative;
  overflow:hidden;
}
.visi-misi-card.is-accent {
  background:var(--orange);
}
.visi-misi-icon {
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(255, 255, 255, .16);
  box-shadow:inset 0 0 0 1px rgba(255, 255, 255, .3);
  color:#fff;
  margin-bottom:24px;
}
.visi-misi-icon .icon {
  width:26px;
  height:26px;
}
.visi-misi-card.is-accent .visi-misi-icon {
  background:rgba(255, 255, 255, .18);
  box-shadow:inset 0 0 0 1px rgba(255, 255, 255, .34);
  color:#fff;
}
.visi-misi-card h3 {
  font-family:var(--font-display);
  font-size:31px;
  letter-spacing:-.04em;
  margin:0 0 15px;
  color:#fff;
}
.visi-misi-card p, .misi-list {
  font-size:12px;
  line-height:1.75;
  color:rgba(255, 255, 255, .82);
}
.misi-list {
  padding-left:18px;
}
.kontak-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
}
.kontak-info-card, .form-card {
  background:var(--paper);
  padding:42px;
}
.kontak-info-card h3, .form-card h3 {
  font-family:var(--font-display);
  font-size:28px;
  letter-spacing:-.04em;
  margin:0 0 28px;
}
.kontak-info-item {
  padding:18px 0;
  border-top:1px solid var(--line);
}
.kontak-info-item b {
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:6px;
}
.kontak-info-item span:last-child {
  font-size:13px;
  color:var(--muted);
  line-height:1.6;
}
.form-two {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.form-row {
  margin-bottom:18px;
}
.form-row label {
  display:block;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:8px;
}
.form-row input, .form-row textarea {
  width:100%;
  border:0;
  border-bottom:1px solid var(--line);
  background:transparent;
  padding:10px 0;
  color:var(--ink);
  outline:none;
}
.form-row textarea {
  min-height:130px;
  resize:vertical;
}
.btn-block {
  width:100%;
}
.maps-wrap {
  background:#e7e2d8;
  min-height:420px;
  overflow:hidden;
}
.maps-wrap iframe {
  width:100%;
  min-height:420px;
  border:0;
}
.media-placeholder {
  height:100%;
  min-height:240px;
  display:grid;
  place-items:center;
  padding:30px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
  background:#e7e2d8;
}
.media-placeholder.sm {
  min-height:0;
  height:100%;
}

/* BUTTONS */
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border:1px solid transparent;
  font-size:10px;
  cursor:pointer;
}
.btn-primary {
  background:var(--green);
  color:#fff;
}
.btn-outline {
  background:transparent;
  color:inherit;
  border-color:currentColor;
}
.btn:hover {
  transform:translateY(-2px);
}

/* FOOTER */
.site-footer {
  background:radial-gradient(circle at 12% 0%, var(--green-dark), var(--navy) 70%);
  color:#fff;
  padding:88px 0 28px;
}
.foot-top {
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:70px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(255, 255, 255, .14);
}
.foot-brand-col p {
  max-width:380px;
  margin-top:16px;
}
.foot-tagline {
  display:flex;
  flex-direction:column;
  gap:4px;
}
.foot-contact-list a {
  color:inherit;
  text-decoration:none;
  word-break:break-word;
}
.foot-contact-list a:hover {
  color:var(--orange);
  padding-left:4px;
}
.foot-brand {
  display:flex;
  align-items:center;
  gap:12px;
  font-family:var(--font-display);
  font-size:22px;
  letter-spacing:-.03em;
  color:#fff;
}
.foot-brand-mark {
  width:72px;
  height:72px;
}
.foot-social {
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:26px;
}
.foot-social a {
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid rgba(255, 255, 255, .22);
  color:#fff;
  transition:background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.foot-social a .icon {
  width:16px;
  height:16px;
}
.foot-social a:hover {
  background:var(--orange);
  border-color:var(--orange);
  transform:translateY(-3px);
}
.foot-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.site-footer p, .site-footer li {
  font-size:11px;
  line-height:1.8;
  color:rgba(255, 255, 255, .72);
}
.site-footer ul {
  list-style:none;
  padding:0;
  margin:15px 0 0;
}
.site-footer li {
  margin:7px 0;
}
.site-footer li a {
  transition:color .3s ease, padding-left .3s ease;
}
.site-footer li a:hover {
  color:var(--orange);
  padding-left:4px;
}
.site-footer h4 {
  margin:0;
  font-size:10px;
  color:#fff;
  text-transform:uppercase;
  letter-spacing:.13em;
}
.foot-bottom {
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid rgba(255, 255, 255, .18);
  margin-top:36px;
  padding-top:20px;
  font-size:9px;
  color:rgba(255, 255, 255, .62);
}

/* reveal */
.reveal {
  opacity:0;
  transform:translateY(46px) scale(.965);
  transition:opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible {
  opacity:1;
  transform:none;
}
/* Once a flip-card has entered, hand transform transitions back to the
   card's own (faster) hover-lift timing — otherwise the entrance's 1s
   transition (which also targets `transform`) keeps overriding it and
   hover feels sluggish. Higher specificity wins regardless of source order. */
.produk-card-flip.reveal.is-visible {
  transition:transform .5s var(--ease);
}
/* Staggered entrance for grid items — each card is delayed a little
   more than the one before it, so the grid fills in sequentially. */
.produk-grid .reveal:nth-child(1), .blog-grid .reveal:nth-child(1), .why-grid .reveal:nth-child(1) { transition-delay:0s; }
.produk-grid .reveal:nth-child(2), .blog-grid .reveal:nth-child(2), .why-grid .reveal:nth-child(2) { transition-delay:.08s; }
.produk-grid .reveal:nth-child(3), .blog-grid .reveal:nth-child(3), .why-grid .reveal:nth-child(3) { transition-delay:.16s; }
.produk-grid .reveal:nth-child(4), .blog-grid .reveal:nth-child(4), .why-grid .reveal:nth-child(4) { transition-delay:.24s; }
.produk-grid .reveal:nth-child(5) { transition-delay:.32s; }
.produk-grid .reveal:nth-child(6) { transition-delay:.4s; }

/* Cascading grid reveal — cards in a grid appear one after another
   instead of all at once, like an editorial magazine layout. */
.produk-grid > .reveal:nth-child(1), .blog-grid > .reveal:nth-child(1), .why-grid > .reveal:nth-child(1) { transition-delay:0ms; }
.produk-grid > .reveal:nth-child(2), .blog-grid > .reveal:nth-child(2), .why-grid > .reveal:nth-child(2) { transition-delay:100ms; }
.produk-grid > .reveal:nth-child(3), .blog-grid > .reveal:nth-child(3), .why-grid > .reveal:nth-child(3) { transition-delay:200ms; }
.produk-grid > .reveal:nth-child(4), .blog-grid > .reveal:nth-child(4), .why-grid > .reveal:nth-child(4) { transition-delay:300ms; }
.produk-grid > .reveal:nth-child(5), .blog-grid > .reveal:nth-child(5), .why-grid > .reveal:nth-child(5) { transition-delay:400ms; }
.produk-grid > .reveal:nth-child(6), .blog-grid > .reveal:nth-child(6), .why-grid > .reveal:nth-child(6) { transition-delay:500ms; }
.produk-grid > .reveal:nth-child(n+7), .blog-grid > .reveal:nth-child(n+7), .why-grid > .reveal:nth-child(n+7) { transition-delay:600ms; }
.produk-grid > .reveal, .blog-grid > .reveal, .why-grid > .reveal {
  transition-duration:.8s;
}
.image-reveal.produk-thumb, .image-reveal.blog-thumb { transition-duration:1s; }

.lightbox-overlay {
  position:fixed;
  inset:0;
  background:rgba(0, 0, 0, .82);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition:.35s;
  z-index:2000;
}
.lightbox-overlay.is-open {
  opacity:1;
  visibility:visible;
}
.lightbox-overlay img {
  max-width:90vw;
  max-height:88vh;
}
.lightbox-close {
  position:absolute;
  top:24px;
  right:28px;
  background:none;
  border:0;
  color:#fff;
  font-size:30px;
}
@media(max-width:900px) {
  .container {
    width:min(calc(100% - 40px), var(--max));
  }
  .nav-wrap {
    grid-template-columns:1fr;
    position:relative;
    justify-items:center;
  }
  .nav-links {
    display:none;
  }
  .brand {
    position:relative;
    padding:6px;
  }
  .brand::after {
    content:'';
    position:absolute;
    inset:-6px;
    border-radius:999px;
    border:1px solid rgba(255, 255, 255, .35);
    opacity:.75;
    transition:opacity .3s ease, transform .3s ease;
  }
  .brand[aria-expanded="true"]::after {
    opacity:1;
    transform:scale(1.06);
  }
  .brand-tap-hint {
    position:absolute;
    right:-4px;
    bottom:2px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--orange);
    display:grid;
    place-items:center;
    pointer-events:none;
    box-shadow:0 0 0 2px var(--green);
  }
  .brand-tap-hint span, .brand-tap-hint span::before, .brand-tap-hint span::after {
    content:'';
    position:absolute;
    width:9px;
    height:1.5px;
    background:#fff;
    border-radius:2px;
    transition:transform .35s var(--ease), opacity .2s ease;
  }
  .brand-tap-hint span::before {
    transform:translateY(-3px);
  }
  .brand-tap-hint span::after {
    transform:translateY(3px);
  }
  .brand[aria-expanded="true"] .brand-tap-hint span {
    background:transparent;
  }
  .brand[aria-expanded="true"] .brand-tap-hint span::before {
    transform:rotate(45deg);
  }
  .brand[aria-expanded="true"] .brand-tap-hint span::after {
    transform:rotate(-45deg);
  }
  .mobile-menu {
    display:flex;
  }
  .mobile-menu.is-open {
    max-height:520px;
    opacity:1;
  }
  .brand-mark {
    width:64px;
    height:64px;
  }
  .section-head {
    margin-bottom:38px;
  }
  section {
    padding:70px 0;
  }
  .produk-grid, .blog-grid {
    grid-template-columns:repeat(2, 1fr);
  }
  .kontak-grid, .tentang-profile, .produk-detail-grid {
    grid-template-columns:1fr;
    gap:40px;
  }
  .foot-top {
    grid-template-columns:1fr;
    gap:36px;
  }
  .foot-grid {
    grid-template-columns:1fr 1fr;
  }
  .cta-band {
    padding:38px 32px;
  }
}
@media(max-width:620px) {
  .container {
    width:calc(100% - 30px);
  }
  .site-header, .nav-wrap {
    height:72px;
  }
  .brand-mark {
    width:48px;
    height:48px;
  }
  .mobile-menu {
    padding:4px 20px 18px;
  }
  .hero-content {
    padding-top:20px;
    width:calc(100% - 40px);
  }
  .hero h1 {
    font-size:clamp(21px, 6.5vw, 26px);
    max-width:280px;
    line-height:1.2;
  }
  .hero-subtitle {
    font-size:11px;
    max-width:300px;
    margin-top:12px;
  }
  .hero-link {
    font-size:10px;
    padding:11px 18px;
  }
  .hero-home .hero-link {
    right:16px;
    bottom:16px;
  }
  .hero:not(.hero-home) {
    min-height:48vh;
  }
  .hero-home {
    min-height:75svh;
  }
  section {
    padding:52px 0;
  }
  .section-head {
    margin-bottom:26px;
  }
  .section-head h2 {
    font-size:clamp(26px, 8vw, 32px);
    letter-spacing:-.03em;
    line-height:1.05;
  }
  .section-head-sm h2 {
    font-size:clamp(20px, 6vw, 24px);
  }
  .why-grid, .visi-misi-grid, .foot-grid {
    grid-template-columns:1fr;
  }
  .produk-grid, .blog-grid {
    grid-template-columns:repeat(2, 1fr);
    gap:24px 14px;
  }
  .produk-body {
    padding-top:12px;
  }
  .produk-body h3, .blog-body h3 {
    font-size:15px;
    letter-spacing:-.02em;
    margin-bottom:5px;
  }
  .produk-body p, .blog-body p {
    font-size:10.5px;
    line-height:1.5;
    max-width:none;
  }
  .produk-kategori {
    font-size:8px;
    margin-bottom:5px;
  }
  .produk-satuan {
    font-size:9px;
    margin-top:5px;
  }
  .produk-video-badge, .produk-bestseller-badge {
    font-size:7.5px;
    padding:4px 8px;
    top:8px;
  }
  .produk-video-badge {
    right:8px;
  }
  .produk-bestseller-badge {
    left:8px;
  }
  .produk-flip-hint {
    opacity:1;
    transform:translateY(0);
  }
  .produk-card-close {
    display:flex;
  }
  .why-item:nth-child(even) {
    padding-left:0;
    border-left:0;
  }
  .kategori-tab {
    min-width:110px;
    font-size:9px;
  }
  .cta-band {
    display:block;
    padding:30px;
  }
  .cta-band h2 {
    margin-bottom:22px;
  }
  .article-cover {
    width:calc(100% - 30px);
    margin:50px auto 60px;
  }
  .article-body {
    padding-inline:15px;
  }
  .form-two {
    grid-template-columns:1fr;
  }
  .kontak-info-card, .form-card {
    padding:28px;
  }
  .foot-bottom {
    display:block;
  }
  .foot-bottom span {
    display:block;
    margin-top:6px;
  }
}
@media(prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
  }
  .reveal, .word-reveal .word, .word-reveal-sub {
    opacity:1!important;
    transform:none!important;
    filter:none!important;
  }
}

/* Safety net: produk/artikel photos & cards must always render,
   even if the scroll-reveal JS above never fires. */
.produk-thumb img, .blog-thumb img, .produk-detail-media img,
.article-cover img, .article-gallery-item img, .tentang-profile-media img {
  display:block!important;
  opacity:1!important;
  visibility:visible!important;
}
.produk-thumb, .blog-thumb, .produk-detail-media,
.article-cover, .article-gallery-item, .tentang-profile-media {
  clip-path:none!important;
  -webkit-clip-path:none!important;
}
.produk-card, .blog-card {
  opacity:1!important;
  transform:none!important;
}

/* CLICK-TO-ZOOM PHOTO ANIMATION
   Applies to every photo that opens the lightbox (.js-lightbox on
   produk/artikel detail pages, .article-gallery-item thumbnails). */
.js-lightbox, .article-gallery-item {
  cursor: zoom-in;
  transition: transform .25s var(--ease), filter .25s var(--ease);
}
.js-lightbox:hover, .article-gallery-item:hover img {
  filter: brightness(1.04);
}
.js-lightbox:active, .article-gallery-item:active {
  transform: scale(.96);
}

/* Lightbox image itself: zoom + fade in when opened, instead of
   popping in instantly. */
.lightbox-overlay img {
  transform: scale(.88);
  opacity: 0;
  transition: transform .45s var(--ease), opacity .4s var(--ease);
}
.lightbox-overlay.is-open img {
  transform: scale(1);
  opacity: 1;
}

/* =========================================================
   WMI — PREMIUM VISUAL DESIGN OVERRIDES
   IMPORTANT:
   - Visual design only.
   - Existing scroll/reveal/word-by-word animations are untouched.
   - Do NOT add or replace animation/keyframe rules here.
   ========================================================= */

/* ---------- PREMIUM COLOR SYSTEM ---------- */
:root {
  --green:#3f8f99;
  --green-dark:#286f79;
  --navy:#082c33;
  --orange:#e87527;

  --cream:#f5f2eb;
  --paper:#fbfaf7;
  --ink:#12373d;
  --muted:#687a7d;
  --line:rgba(18,55,61,.12);

  --premium-shadow:0 28px 80px rgba(8,44,51,.10);
  --premium-shadow-soft:0 16px 50px rgba(8,44,51,.07);
}

/* ---------- BASE / EDITORIAL FEEL ---------- */
body {
  background:
    radial-gradient(circle at 85% 8%, rgba(63,143,153,.055), transparent 28%),
    var(--cream);
  color:var(--ink);
}

::selection {
  background:var(--orange);
  color:#fff;
}

.container {
  width:min(calc(100% - 80px), var(--max));
}

/* ---------- NAVBAR ---------- */
.site-header {
  background:transparent;
  border-bottom:1px solid rgba(255,255,255,.18);
}

.site-header.is-scrolled {
  background:rgba(8,44,51,.86);
  border-bottom-color:rgba(255,255,255,.12);
  backdrop-filter:blur(20px) saturate(125%);
  -webkit-backdrop-filter:blur(20px) saturate(125%);
}

.nav-wrap {
  gap:42px;
}

.nav-links a,
.nav-explore {
  font-size:11px;
  letter-spacing:.02em;
}

.nav-explore {
  border-left-color:rgba(255,255,255,.16);
}

/* ---------- HERO ---------- */
.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(96,185,193,.24), transparent 34%),
    linear-gradient(135deg,#276f79 0%,#174d57 54%,#082c33 100%);
}

.hero-home .hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(5,31,37,.30) 0%,
      rgba(5,31,37,.08) 38%,
      rgba(5,31,37,.18) 62%,
      rgba(5,31,37,.70) 100%
    );
}

.hero h1 {
  font-size:clamp(28px,3.1vw,46px);
  letter-spacing:-.055em;
  font-weight:500;
}

.hero-subtitle {
  font-size:12.5px;
  color:rgba(255,255,255,.78);
}

/* ---------- HERO VIDEO ---------- */
.hero-home .hero-media video {
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.045);
  will-change:transform;
  animation:hero-kenburns-video 20s ease-in-out infinite alternate;
}
@keyframes hero-kenburns-video {
  from { transform:scale(1.02); }
  to   { transform:scale(1.09); }
}
@media(prefers-reduced-motion:reduce) {
  .hero-home .hero-media video { animation:none; }
}

/* ---------- SECTIONS ---------- */
section {
  background:var(--cream);
}

section.bg-soft {
  background:
    linear-gradient(180deg,#fbfaf7 0%,#f5f2eb 100%);
}

section.bg-navy {
  background:
    radial-gradient(circle at 12% 0%,rgba(63,143,153,.30),transparent 34%),
    radial-gradient(circle at 88% 100%,rgba(232,117,39,.08),transparent 30%),
    linear-gradient(135deg,#174c56 0%,#082c33 72%);
}

.section-head {
  max-width:900px;
  margin-bottom:72px;
}

.section-head h2 {
  font-size:clamp(42px,5.5vw,76px);
  font-weight:500;
  letter-spacing:-.06em;
}

/* .section-head-sm must win over .section-head above: same
   specificity, so it has to come after in source order or the
   "kecil" heading (Kunjungi Kantor & Gudang Kami, Produk Lain di
   Kategori yang Sama, Baca Juga, dst) renders at the big 76px size. */
.section-head-sm h2 {
  font-size:clamp(24px, 2.6vw, 34px) !important;
  line-height:1.15;
  letter-spacing:-.03em;
}

.section-link a,
.cta-link {
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.12em;
  padding-bottom:7px;
}

/* ---------- PRODUCTS ---------- */
.produk-grid {
  gap:70px 38px;
}

.produk-thumb {
  background:#e8e3d9;
  box-shadow:var(--premium-shadow-soft);
}

.produk-body {
  padding-top:22px;
}

.produk-kategori,
.blog-meta {
  letter-spacing:.18em;
  font-size:8px;
  font-weight:600;
}

.produk-body h3,
.blog-body h3 {
  font-size:27px;
  letter-spacing:-.045em;
}

.produk-body p,
.blog-body p {
  font-size:12.5px;
  line-height:1.8;
}

/* ---------- CATEGORY TABS ---------- */
.kategori-tabs {
  border-bottom-color:rgba(18,55,61,.10);
  margin-bottom:64px;
}

.kategori-tab {
  font-size:9px;
  letter-spacing:.14em;
}

/* ---------- WHY WMI ---------- */
.why-grid {
  border-top-color:rgba(18,55,61,.12);
}

.why-item {
  padding-top:38px;
  padding-bottom:38px;
}

.why-icon {
  width:48px;
  height:48px;
  background:rgba(63,143,153,.10);
  color:var(--green-dark);
}

.why-item h3 {
  font-size:24px;
  letter-spacing:-.045em;
}

.why-item p {
  font-size:12.5px;
  line-height:1.85;
}

/* ---------- ABOUT ---------- */
.tentang-profile {
  grid-template-columns:minmax(0,.92fr) minmax(0,1fr);
  gap:clamp(55px,7vw,115px);
}

.tentang-profile-media {
  background:#e6e1d7;
  box-shadow:var(--premium-shadow);
}

.tentang-profile-media img {
  width:100%;
  height:auto;
}

.tentang-profile-text {
  max-width:650px;
  font-size:19px;
  line-height:1.85;
  color:#657679;
}

.tentang-profile-text p {
  margin:0 0 28px;
}

/* ---------- VISION / MISSION ---------- */
.visi-misi-grid {
  background:rgba(255,255,255,.12);
  gap:1px;
}

.visi-misi-card {
  min-height:390px;
  padding:64px 58px 58px;
  background:
    radial-gradient(circle at 100% 0%,rgba(255,255,255,.14),transparent 34%),
    linear-gradient(145deg,#438f98,#286b75);
}

.visi-misi-card.is-accent {
  background:
    radial-gradient(circle at 100% 0%,rgba(255,255,255,.14),transparent 34%),
    linear-gradient(145deg,#e87527,#c75b18);
}

.visi-misi-icon {
  width:54px;
  height:54px;
  border-radius:50%;
  margin-bottom:34px;
  background:rgba(255,255,255,.11);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.26);
}

.visi-misi-card h3 {
  font-size:clamp(34px,4vw,50px);
  letter-spacing:-.055em;
  margin-bottom:20px;
}

.visi-misi-card p,
.visi-misi-card .misi-list {
  font-size:13px;
  line-height:1.9;
}

/* ---------- BLOG ---------- */
.blog-grid {
  gap:70px 38px;
}

.blog-thumb {
  background:#e8e3d9;
  box-shadow:var(--premium-shadow-soft);
}

.blog-body {
  padding-top:22px;
}

.blog-body h3 {
  font-size:25px;
}

/* =========================================================
   CTA — REDESIGNED AS A PREMIUM EDITORIAL PANEL
   ========================================================= */
.cta-band {
  min-height:270px;
  padding:58px 64px;
  border:1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 88% 12%,rgba(104,190,196,.22),transparent 32%),
    radial-gradient(circle at 12% 100%,rgba(232,117,39,.10),transparent 28%),
    linear-gradient(135deg,#174f59 0%,#0b323a 72%);
  box-shadow:0 30px 90px rgba(8,44,51,.16);
}

.cta-band::before,
.cta-band::after {
  color:rgba(255,255,255,.20);
}

.cta-band h2 {
  max-width:720px;
  font-size:clamp(34px,4.5vw,62px);
  letter-spacing:-.06em;
  line-height:.98;
}

.cta-band h2::before {
  content:'LET’S WORK TOGETHER';
  display:block;
  margin-bottom:18px;
  font-family:var(--font-body);
  font-size:9px;
  font-weight:600;
  letter-spacing:.20em;
  color:rgba(255,255,255,.48);
}

.cta-link {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:150px;
  padding:14px 22px 13px;
  border:1px solid rgba(255,255,255,.36);
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.045);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.cta-link:hover {
  border-color:var(--orange);
  background:var(--orange);
}

/* ---------- CONTACT ---------- */
.kontak-grid {
  gap:80px;
}

.kontak-info-card,
.form-card {
  background:rgba(251,250,247,.82);
  padding:52px;
  border:1px solid rgba(18,55,61,.08);
  box-shadow:var(--premium-shadow-soft);
}

.kontak-info-card h3,
.form-card h3 {
  font-size:32px;
  letter-spacing:-.05em;
}

.kontak-info-item {
  padding:20px 0;
}

.form-row input,
.form-row textarea {
  border-bottom-color:rgba(18,55,61,.16);
}

.maps-wrap {
  box-shadow:var(--premium-shadow-soft);
}

/* ---------- BUTTONS ---------- */
.btn {
  min-height:44px;
  padding:13px 22px;
  border-radius:999px;
  font-size:9px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.btn-primary {
  background:var(--green-dark);
}

.btn-outline {
  border-color:rgba(18,55,61,.22);
}

/* ---------- DETAIL PAGE ---------- */
.produk-detail-section {
  background:
    radial-gradient(circle at 88% 0%,rgba(232,117,39,.08),transparent 30%),
    linear-gradient(180deg,#fbfaf7 0%,#f5f2eb 100%);
}

.produk-detail-media {
  box-shadow:var(--premium-shadow);
}

.produk-detail-info h2 {
  letter-spacing:-.06em;
}

.produk-detail-full {
  border-top-color:rgba(18,55,61,.10);
}

/* ---------- ARTICLE ---------- */
.article-header {
  background:
    radial-gradient(circle at 82% 10%,rgba(91,180,188,.24),transparent 32%),
    linear-gradient(135deg,#286f79,#082c33);
}

.article-cover {
  box-shadow:var(--premium-shadow);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background:
    radial-gradient(circle at 8% 0%,rgba(65,145,155,.42),transparent 34%),
    radial-gradient(circle at 90% 100%,rgba(232,117,39,.08),transparent 28%),
    linear-gradient(125deg,#174d57 0%,#082c33 72%);
  padding:104px 0 32px;
}

.foot-top {
  gap:90px;
  padding-bottom:64px;
  border-bottom-color:rgba(255,255,255,.12);
}

.foot-brand {
  font-size:24px;
}

.site-footer p,
.site-footer li {
  font-size:11.5px;
  color:rgba(255,255,255,.64);
}

.site-footer h4 {
  font-size:9px;
  letter-spacing:.18em;
}

.foot-bottom {
  border-top-color:rgba(255,255,255,.12);
}

/* ---------- MOBILE VISUAL REFINEMENT ONLY ---------- */
@media(max-width:900px) {
  .container {
    width:min(calc(100% - 40px),var(--max));
  }

  .section-head {
    margin-bottom:46px;
  }

  .section-head h2 {
    font-size:clamp(38px,8vw,58px);
  }

  .tentang-profile {
    grid-template-columns:1fr;
    gap:42px;
  }

  .visi-misi-card {
    min-height:340px;
    padding:48px 36px;
  }

  .kontak-info-card,
  .form-card {
    padding:38px;
  }

  .cta-band {
    min-height:240px;
    padding:46px 38px;
  }
}

@media(max-width:620px) {
  .container {
    width:calc(100% - 30px);
  }

  .section-head h2 {
    font-size:clamp(32px,9vw,44px);
  }

  .tentang-profile-text {
    font-size:17px;
    line-height:1.8;
  }

  .visi-misi-card {
    min-height:auto;
    padding:42px 28px;
  }

  .visi-misi-card h3 {
    font-size:36px;
  }

  .kontak-info-card,
  .form-card {
    padding:30px 24px;
  }

  .cta-band {
    min-height:0;
    padding:38px 26px;
  }

  .cta-band h2 {
    font-size:clamp(31px,9vw,42px);
  }

  .cta-band h2::before {
    font-size:8px;
    margin-bottom:14px;
  }

  .cta-link {
    margin-top:8px;
  }

  .site-footer {
    padding-top:76px;
  }
}

/* ===== KEGIATAN & TESTIMONI ===== */
.kegiatan-grid {
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px;
  margin-top:36px;
}
.kegiatan-card {
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.kegiatan-card:hover {
  transform:translateY(-4px);
  box-shadow:0 18px 40px -20px rgba(13,43,51,.25);
}
.kegiatan-thumb {
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#e7e2d8;
}
.kegiatan-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform 1s var(--ease);
}
.kegiatan-card:hover .kegiatan-thumb img { transform:scale(1.04); }
.kegiatan-badge {
  position:absolute;
  top:12px;
  left:12px;
  background:var(--navy);
  color:#fff;
  font-size:10.5px;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:5px 11px;
  border-radius:999px;
}
.kegiatan-body { padding:20px 20px 24px; }
.kegiatan-tanggal {
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:8px;
}
.kegiatan-body h3 {
  font-family:var(--font-display);
  font-size:18px;
  line-height:1.3;
  margin-bottom:8px;
}
.kegiatan-body p {
  font-size:13px;
  color:var(--muted);
  line-height:1.65;
}

.testimoni-card {
  background:var(--navy);
  color:#fff;
  border-radius:14px;
  padding:32px 28px 26px;
  display:flex;
  flex-direction:column;
  gap:18px;
  position:relative;
}
.testimoni-quote-icon {
  font-family:var(--font-display);
  font-size:48px;
  line-height:1;
  color:var(--orange);
  opacity:.85;
}
.testimoni-text {
  font-size:14px;
  line-height:1.75;
  color:rgba(255,255,255,.88);
  flex:1;
}
.testimoni-author {
  display:flex;
  align-items:center;
  gap:12px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
}
.testimoni-author img, .testimoni-avatar {
  width:42px;
  height:42px;
  border-radius:999px;
  object-fit:cover;
  flex-shrink:0;
}
.testimoni-avatar {
  background:var(--green);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-display);
  font-weight:600;
  font-size:16px;
}
.testimoni-author b {
  display:block;
  font-size:13.5px;
  font-weight:600;
}
.testimoni-author span {
  display:block;
  font-size:11.5px;
  color:rgba(255,255,255,.6);
  margin-top:2px;
}

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

/* WhatsApp CTA button di halaman kontak */
.whatsapp-cta {
  margin-top:22px;
  width:100%;
  justify-content:center;
  background:#25D366;
  border-color:#25D366;
}
.whatsapp-cta:hover { background:#1ebe5a; border-color:#1ebe5a; }
.whatsapp-cta .icon { width:18px; height:18px; }

/* ---------- WHY-ICON BADGES: real emblem, not a flat circle ----------
   Gradient fill + inset shadow (gives it depth like a stamped medal),
   a thin solid ring plus a slow-spinning dashed ring around it, and
   its own two-tone color per badge — works the same on light and
   dark (.bg-navy) sections since the badge is now a solid emblem,
   not a translucent tint. */
.why-grid .why-item:nth-child(4n+1) .why-icon { --badge-a:#f47a20; --badge-b:#ffb877; }
.why-grid .why-item:nth-child(4n+2) .why-icon { --badge-a:#2f7f89; --badge-b:#79cdd6; }
.why-grid .why-item:nth-child(4n+3) .why-icon { --badge-a:#0d2b33; --badge-b:#2f7f89; }
.why-grid .why-item:nth-child(4n+4) .why-icon { --badge-a:#e8752e; --badge-b:#0d2b33; }

.why-icon {
  position:relative;
  overflow:visible;
  background:linear-gradient(135deg, var(--badge-a, var(--orange)), var(--badge-b, #ffb877));
  color:#fff;
  box-shadow:
    0 10px 20px -8px rgba(8,44,51,.45),
    inset 0 1px 1px rgba(255,255,255,.55),
    inset 0 -4px 7px rgba(0,0,0,.18);
  transform:rotate(var(--tilt, 0deg));
  transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-icon .icon {
  color:#fff;
}
/* Old rule elsewhere (section.bg-navy .why-icon) set a flat
   translucent-white fill for every navy-section badge — same
   specificity, so re-declaring it here (later in the file) makes
   the gradient above win on the dark homepage section too. */
body.page-home section.bg-navy .why-icon {
  background:linear-gradient(135deg, var(--badge-a, var(--orange)), var(--badge-b, #ffb877));
  color:#fff;
}
.why-icon::before {
  content:'';
  position:absolute;
  inset:-5px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,.55);
  opacity:.7;
}
.why-icon::after {
  content:'';
  position:absolute;
  inset:-10px;
  border-radius:50%;
  border:1px dashed var(--badge-a, currentColor);
  opacity:.4;
  animation:why-icon-spin 18s linear infinite;
}
@keyframes why-icon-spin {
  to { transform:rotate(360deg); }
}
.why-item:nth-child(4n+1) .why-icon { --tilt:-4deg; }
.why-item:nth-child(4n+2) .why-icon { --tilt:3deg; }
.why-item:nth-child(4n+3) .why-icon { --tilt:-3deg; }
.why-item:nth-child(4n+4) .why-icon { --tilt:4deg; }

.why-item.is-visible .why-icon {
  animation:why-icon-pop .6s var(--ease) both;
  animation-delay:.15s;
}
@keyframes why-icon-pop {
  0% { transform:scale(.4) rotate(-25deg); opacity:0; }
  60% { transform:scale(1.12) rotate(8deg); opacity:1; }
  100% { transform:scale(1) rotate(var(--tilt, 0deg)); }
}
.why-item:hover .why-icon {
  transform:translateY(-4px) scale(1.1) rotate(-8deg) !important;
  background:linear-gradient(135deg, var(--badge-a, var(--orange)), var(--badge-b, #ffb877));
  box-shadow:
    0 16px 28px -8px rgba(8,44,51,.5),
    inset 0 1px 1px rgba(255,255,255,.55),
    inset 0 -4px 7px rgba(0,0,0,.18);
}
.why-item:hover .why-icon::after {
  animation-duration:3s;
  opacity:.7;
}
@media(prefers-reduced-motion:reduce) {
  .why-icon::after,
  .why-item.is-visible .why-icon {
    animation:none;
  }
}

/* ---------- VISI-MISI ICON: same emblem treatment ----------
   Lives on a solid color card, so it keeps the glassy look, but
   gets the same pop-in + hover lift + rotating ring as why-icon. */
.visi-misi-icon {
  position:relative;
  overflow:visible;
  --tilt:-4deg;
  transform:rotate(var(--tilt));
  transition:transform .4s var(--ease), background .4s var(--ease);
}
.visi-misi-card.is-accent .visi-misi-icon {
  --tilt:4deg;
}
.visi-misi-icon::after {
  content:'';
  position:absolute;
  inset:-7px;
  border-radius:22px;
  border:1px dashed rgba(255,255,255,.5);
  opacity:.5;
  animation:why-icon-spin 20s linear infinite;
}
.visi-misi-card.reveal.is-visible .visi-misi-icon {
  animation:why-icon-pop .6s var(--ease) both;
  animation-delay:.2s;
}
.visi-misi-card:hover .visi-misi-icon {
  transform:translateY(-3px) scale(1.08) rotate(0deg) !important;
  background:rgba(255, 255, 255, .26);
}
.visi-misi-card:hover .visi-misi-icon::after {
  animation-duration:4s;
  opacity:.8;
}
@media(prefers-reduced-motion:reduce) {
  .visi-misi-icon::after,
  .visi-misi-card.reveal.is-visible .visi-misi-icon {
    animation:none;
  }
}
/* =========================================================
   FINAL VISUAL PATCH — clean white pages + route-aware header
   Design only. Does not change application logic/CRUD.
   ========================================================= */

/* Clean white canvas everywhere except intentionally dark sections. */
body {
  background:#fff;
  color:var(--ink);
}
section:not(.bg-navy) {
  background:#fff;
}
section.bg-soft {
  background:#fff;
}

/* Home keeps the transparent/light header over the hero.
   Inner pages use the original dark teal header so nav text remains visible. */
.page-inner .site-header {
  background:#294f57;
  border-bottom-color:rgba(255,255,255,.14);
}
.page-inner .site-header.is-scrolled {
  background:rgba(41,79,87,.96);
  border-bottom-color:rgba(255,255,255,.14);
}

/* Smaller, calmer section headings. */
.section-head {
  max-width:820px;
  margin-bottom:48px;
}
.section-head h2 {
  font-size:clamp(30px,4vw,52px) !important;
  line-height:1.02;
  letter-spacing:-.05em;
}

/* Product/news cards stay editorial and lighter. */
.produk-grid,
.blog-grid,
.kegiatan-grid {
  gap:52px 32px;
}
.produk-body h3,
.blog-body h3,
.kegiatan-body h3 {
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.035em;
}

/* Premium photo hover: subtle dark veil + deeper zoom. */
.produk-thumb,
.blog-thumb,
.kegiatan-thumb {
  position:relative;
  overflow:hidden;
  isolation:isolate;
}
.produk-thumb::after,
.blog-thumb::after,
.kegiatan-thumb::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:linear-gradient(180deg,rgba(8,44,51,0) 35%,rgba(8,44,51,.34) 100%);
  opacity:0;
  transition:opacity .65s var(--ease);
}
.produk-thumb img,
.blog-thumb img,
.kegiatan-thumb img {
  position:relative;
  z-index:0;
  transform:scale(1);
  transition:transform 1.05s var(--ease), filter .7s ease;
}
.produk-card:hover .produk-thumb img,
.blog-card:hover .blog-thumb img,
.kegiatan-card:hover .kegiatan-thumb img {
  transform:scale(1.085);
  filter:saturate(.92) brightness(.88);
}
.produk-card:hover .produk-thumb::after,
.blog-card:hover .blog-thumb::after,
.kegiatan-card:hover .kegiatan-thumb::after {
  opacity:1;
}

/* Directional image entrance. JS chooses the direction from the image's
   actual position in the viewport, so it naturally comes from left/right/top/bottom. */
.image-reveal {
  clip-path:inset(0);
  opacity:0;
  transform:translate3d(0,0,0) scale(.985);
  transition:opacity .85s var(--ease), transform 1s var(--ease), filter 1s var(--ease);
  filter:blur(7px);
}
.image-reveal.reveal-from-left { transform:translate3d(-70px,0,0) scale(.985); }
.image-reveal.reveal-from-right { transform:translate3d(70px,0,0) scale(.985); }
.image-reveal.reveal-from-top { transform:translate3d(0,-70px,0) scale(.985); }
.image-reveal.reveal-from-bottom { transform:translate3d(0,70px,0) scale(.985); }
.image-reveal.image-visible {
  opacity:1;
  transform:none;
  filter:none;
}

/* Mobile: shorter travel distance + slightly faster timing so the
   reveal feels snappy instead of sluggish on smaller/slower screens. */
@media(max-width:900px) {
  .reveal {
    transform:translateY(28px) scale(.975);
    transition:opacity .7s var(--ease), transform .7s var(--ease);
  }
  .image-reveal {
    transition:opacity .6s var(--ease), transform .75s var(--ease), filter .75s var(--ease);
    filter:blur(5px);
  }
}

/* Minimal CTA — no rectangle/card. */
.cta-band {
  min-height:240px;
  padding:56px 0 62px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  align-items:end;
  gap:40px;
  background:transparent !important;
  color:var(--ink);
  border:0 !important;
  border-top:1px solid var(--line) !important;
  border-bottom:1px solid var(--line) !important;
  box-shadow:none !important;
  overflow:visible;
}
.cta-band::before,
.cta-band::after {
  color:rgba(75,159,169,.45);
  font-size:16px;
}
.cta-band::before { top:26px; left:42%; }
.cta-band::after { bottom:26px; left:66%; }
.cta-band h2 {
  max-width:620px;
  margin:0;
  color:var(--ink);
  font-size:clamp(28px,3.6vw,46px) !important;
  line-height:1;
  letter-spacing:-.055em;
}
.cta-band h2::before {
  content:'BERSAMA WINAKA';
  margin-bottom:14px;
  color:var(--green-dark);
  font-size:8px;
  letter-spacing:.20em;
}
.cta-link {
  display:inline-flex;
  align-items:center;
  gap:14px;
  min-width:auto;
  padding:0 0 8px;
  border:0;
  border-bottom:1px solid var(--ink);
  border-radius:0;
  color:var(--ink) !important;
  background:transparent !important;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
  font-size:10px;
  font-weight:600;
  letter-spacing:.14em;
  transition:color .35s ease, border-color .35s ease, transform .45s var(--ease);
}
.cta-link::after {
  content:'→';
  font-size:18px;
  line-height:.7;
  transition:transform .45s var(--ease);
}
.cta-link:hover {
  color:var(--green-dark) !important;
  border-color:var(--green-dark);
  transform:translateX(3px);
}
.cta-link:hover::after { transform:translateX(6px); }

@media(max-width:900px) {
  .section-head h2 { font-size:clamp(28px,6vw,44px) !important; }
  .cta-band {
    min-height:210px;
    grid-template-columns:1fr;
    align-items:start;
    gap:28px;
    padding:48px 0 54px;
  }
}
@media(max-width:620px) {
  .section-head { margin-bottom:36px; }
  .section-head h2 { font-size:clamp(27px,8vw,38px) !important; }
  .produk-body h3,
  .blog-body h3,
  .kegiatan-body h3 { font-size:18px; }
  .cta-band h2 { font-size:clamp(27px,8vw,38px) !important; }
  .image-reveal.reveal-from-left { transform:translate3d(-38px,0,0) scale(.985); }
  .image-reveal.reveal-from-right { transform:translate3d(38px,0,0) scale(.985); }
  .image-reveal.reveal-from-top { transform:translate3d(0,-38px,0) scale(.985); }
  .image-reveal.reveal-from-bottom { transform:translate3d(0,38px,0) scale(.985); }
}
@media(prefers-reduced-motion:reduce) {
  .image-reveal,
  .produk-thumb img,
  .blog-thumb img,
  .kegiatan-thumb img,
  .cta-link,
  .cta-link::after { transition:none !important; }
}

/* =========================================================
   HOME — WHY WMI: clean white section
   Keep the inner-page/header treatment untouched.
   ========================================================= */
body.page-home section.bg-navy {
  background:#fff !important;
  color:var(--ink) !important;
}

body.page-home section.bg-navy .section-head h2,
body.page-home section.bg-navy .why-item h3 {
  color:var(--ink) !important;
}

body.page-home section.bg-navy .why-item p {
  color:rgba(18,55,61,.68) !important;
}

body.page-home section.bg-navy .why-grid {
  border-top-color:rgba(18,55,61,.14) !important;
}

body.page-home section.bg-navy .why-item,
body.page-home section.bg-navy .why-item:nth-child(even) {
  border-bottom-color:rgba(18,55,61,.14) !important;
  border-left-color:rgba(18,55,61,.14) !important;
}

body.page-home section.bg-navy .why-icon {
  color:var(--green-dark) !important;
  background:rgba(63,143,153,.10) !important;
}

/* Keep the section CTA readable on white. */
body.page-home section.bg-navy a,
body.page-home section.bg-navy .cta-link {
  color:var(--ink) !important;
}

/* FINAL: Why Us badges — satu warna hijau WMI, jangan ubah elemen lain */
.why-grid .why-icon {
  --badge-a:#3f8f99;
  --badge-b:#286f79;
}
.why-grid .why-item:nth-child(4n+1) .why-icon,
.why-grid .why-item:nth-child(4n+2) .why-icon,
.why-grid .why-item:nth-child(4n+3) .why-icon,
.why-grid .why-item:nth-child(4n+4) .why-icon {
  --badge-a:#3f8f99;
  --badge-b:#286f79;
}


/* FINAL PATCH — Tentang Kami: Why Us badges use the same WMI green */
body.page-tentang .why-grid .why-icon,
body.page-tentang .why-grid .why-item:nth-child(4n+1) .why-icon,
body.page-tentang .why-grid .why-item:nth-child(4n+2) .why-icon,
body.page-tentang .why-grid .why-item:nth-child(4n+3) .why-icon,
body.page-tentang .why-grid .why-item:nth-child(4n+4) .why-icon {
  --badge-a:#3f8f99 !important;
  --badge-b:#286f79 !important;
  background:linear-gradient(135deg,#3f8f99,#286f79) !important;
  color:#fff !important;
}

body.page-tentang .why-grid .why-icon .icon {
  color:#fff !important;
}

/* FINAL BADGE COLOR — WMI GREEN ONLY */
.why-grid .why-item .why-icon,
body.page-home .why-grid .why-item .why-icon {
  --badge-a:#0f8f83 !important;
  --badge-b:#38b7a8 !important;
  background:linear-gradient(135deg,#0f8f83,#38b7a8) !important;
  color:#fff !important;
  opacity:1 !important;
  filter:none !important;
  box-shadow:0 10px 20px -8px rgba(8,44,51,.35), inset 0 1px 1px rgba(255,255,255,.45), inset 0 -4px 7px rgba(0,0,0,.14) !important;
}
.why-grid .why-item .why-icon .icon,
body.page-home .why-grid .why-item .why-icon .icon {
  color:#fff !important;
  opacity:1 !important;
}
.why-grid .why-item .why-icon::before {
  border-color:rgba(15,143,131,.35) !important;
  opacity:1 !important;
}
.why-grid .why-item .why-icon::after {
  border-color:#0f8f83 !important;
  opacity:.55 !important;
}

/* ---------- HERO MOBILE FIX: show full video without cropping ---------- */
@media(max-width:620px) {
  .hero-home .hero-media img,
  .hero-home .hero-media video {
    object-fit:contain !important;
    transform:none !important;
    animation:none !important;
  }
}
