.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 36px; 
  width: auto;
  display: block;
}
.brand .logo-light { opacity: 1; transition: opacity .2s ease; }
.brand .logo-dark  { opacity: 0; transition: opacity .2s ease; position:absolute; inset:0 auto auto 0; }
.header-solid .logo-light { opacity: 0; }
.header-solid .logo-dark  { opacity: 1; }
:root{
  --np-navy:#0E1A2A;   
  --np-blue:#153E75;   
  --mnav-brand-solid: #17304A;
  --np-red:#C0392B;
  --ink:#0E1116;
  --muted:#6B7280;
}
.mega-trigger{
  display:flex; align-items:center; gap:6px;
}
.mega{
  position:fixed; left:0; right:0; top:64px;
  z-index:49;
  opacity:0; visibility:hidden; pointer-events:none;
  transform:translateY(-8px); 
  transition:
    opacity .22s ease,
    transform .24s cubic-bezier(.2,.6,.2,1),
    visibility 0s linear .22s;
  will-change: opacity, transform;
}
.header-solid .mega{ top:64px; }                   
.mega.is-open{
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translateY(0);
  transition:
    opacity .22s ease,
    transform .28s cubic-bezier(.2,.6,.2,1),
    visibility 0s;
}
.mega-bar{
  background:rgba(14,26,42,.97);                   
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
}
.mega-inner{
  max-width:72rem; margin:0 auto;                  
  padding:20px 1rem 22px;
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:24px;
  color:#fff;
}
.mega-head{
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(255,255,255,.75);
  margin-bottom:10px; position:relative; padding-bottom:8px;
}
.mega-head::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1px;
  background:linear-gradient(to right, rgba(255,255,255,.18), rgba(255,255,255,.06));
}
.mega-list{ display:grid; gap:8px; }
.mega-item{
  display:flex; align-items:flex-start; gap:12px;
  padding:12px; border-radius:10px;
  color:#fff; text-decoration:none;
  background:transparent;
  transition: background .15s ease, transform .15s ease;
  position:relative;
}
.mega-item:hover{ background:rgba(255,255,255,.06); transform:translateY(-1px); }
.mega-ico{
  height:30px; width:30px; border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.1);
  font-size:12px; font-weight:700;
}
.mega-ico--img,
.mnav-ico--img {
  background: transparent !important;
  padding: 0 !important;
}
.mega-ico--img img {
  display:block;
  width: 22px; height: 22px;   
}
.mnav-ico--img img {
  display:block;
  width: 24px; height: 24px;   
}
.mega-ico--img, .mnav-ico--img { flex: 0 0 auto; }
.mega-title{ font-weight:700; font-size:14px; line-height:1.1; }
.mega-sub{ font-size:12.5px; color:rgba(255,255,255,.75); margin-top:2px; }
.mega-item.is-active{
  background: linear-gradient(90deg, var(--np-blue), rgba(21,62,117,.86));
  box-shadow: inset 4px 0 0 0 rgba(255,255,255,.15);
}
.mega-item.is-active .mega-sub{ color:rgba(255,255,255,.9); }
.mega-fly-wrap{ position:relative; }
.mega-fly {
  position:absolute; left:calc(100% + 14px); top:0;
  min-width:260px; max-width:360px;
  background:rgba(14,26,42,.98);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px; padding:12px 10px 10px; 
  box-shadow:0 18px 60px rgba(0,0,0,.22);
  z-index:3; isolation:isolate;
  opacity:0; visibility:hidden; pointer-events:none;
  transform:translateY(6px) scale(.98);
  transform-origin: top left;
  transition:
    opacity .18s ease,
    transform .22s cubic-bezier(.2,.6,.2,1),
    visibility 0s linear .18s; 
  max-height: min(420px, calc(100vh - 140px));
  overflow:auto;
}
.mega-fly-wrap.is-on > .mega-fly{
  opacity:1; visibility:visible; pointer-events:auto;
  transform:translateY(0) scale(1);
}
.mega-fly a{
  display:block; padding:10px 10px; border-radius:8px;
  color:#fff; text-decoration:none; font-size:13px; line-height:1.25;
}
.mega-fly a small{ display:block; font-size:12px; color:rgba(255,255,255,.7); margin-top:2px; }
.mega-fly a:hover{ background:rgba(255,255,255,.06); }
.mega-item.has-fly::after {
  content: "›"; 
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-left: auto;
  transition: transform .15s ease;
}
.mega-fly-wrap.is-on > .mega-item.has-fly::after {
  transform: translateX(2px);
  color: #fff;
}
.mega-fly { top: 0; }
@media (max-height:760px){
  .mega-inner{ gap:18px; }
}
@media (max-width: 767px){
  .mega{ display:none !important; }
}
.mega-item > a { display:flex; align-items:flex-start; gap:12px; flex:1 1 auto; min-width:0; }
.mega-item .mega-caret{
  display:inline-flex; align-items:center; justify-content:center;
  height:30px; width:30px; border-radius:8px; margin-left:8px;
  background:rgba(255,255,255,.10); color:#fff; border:0; cursor:pointer;
  transition: background .15s ease, transform .15s ease;
}
.mega-item .mega-caret:hover{ background:rgba(255,255,255,.16); transform:translateY(-1px); }
.mega-item.has-fly::after { content:none; }
#mobile-nav { z-index: 49; }
#mobile-nav {
  position: fixed;
  left: 0; right: 0; top: 64px;
  width: 100vw;
  max-width: 100vw;
  z-index: 49;
  transform: translateY(-8px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition:
    opacity .28s ease,
    transform .30s cubic-bezier(.2,.6,.2,1),
    visibility 0s linear 0s;
  will-change: opacity, transform;
  height: auto;
  max-height: calc(100dvh - 64px);
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch; 
  background: transparent;
}
@supports (width: 100dvw) {
  #mobile-nav { width: 100dvw; max-width: 100dvw; }
}
#mobile-nav .mnav-surface {
  position: absolute;
  inset: 0;
  z-index: 0;                 
  pointer-events: none;
  opacity: 0;                 
  transition: opacity .24s ease;
}
#mobile-nav .mnav-surface--glass {
  background: var(--mnav-brand-solid, #17304A);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(255,255,255,.08);
}
#mobile-nav .mnav-surface--solid {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(15,23,42,.08);
}
#mobile-nav.show-glass .mnav-surface--glass { opacity: 1; }
#mobile-nav.show-solid .mnav-surface--solid { opacity: 1; }
#mobile-nav { overflow-x: clip; } 
#mobile-nav .mnav-surface {
  transform: translateZ(0);            
  inset: 0 -1px 0 0;                   
}
#mobile-nav > .mnav-inner {
  position: relative;
  z-index: 1;
}
#mobile-nav.no-scroll {
  overflow: hidden !important;
}
#mobile-nav.is-open:not(.is-glass):not(.is-solid){
  background: var(--mnav-brand-solid, #17304A);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(255,255,255,.08);
  color:#fff;
}
#mobile-nav.is-open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
  animation: mobileNavIn 0.32s cubic-bezier(.2,.6,.2,1);
}
#mobile-nav .mnav-inner {
  padding: .75rem 1rem 1rem; 
}
#mobile-nav.is-glass {
  background: var(--mnav-brand-solid, #17304A);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #fff;
}
#mobile-nav.is-solid {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(15,23,42,.08); 
  color: var(--ink);
}
.mnav-link {
  display: block;
  padding: .875rem .25rem;
  font-weight: 500;
  border-radius: 10px;
  transition: background .16s ease, transform .16s ease;
}
#mobile-nav.is-glass .mnav-link:hover  { background: rgba(255,255,255,.08); transform: translateY(-1px); }
#mobile-nav.is-solid .mnav-link:hover  { background: rgba(15,23,42,.04);    transform: translateY(-1px); }
#mobile-layanan {
  position: absolute; inset: 0;
  z-index: 2;
  background: #0E1A2A;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  color:#fff;
  border-top: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
  transform: translateX(8px);
  opacity: 0; visibility: hidden; pointer-events: none; 
  will-change: transform, opacity;
  contain: paint;
  backface-visibility: hidden;
}
#mobile-layanan.is-open {
  transform: translateX(0); opacity: 1; visibility: visible; pointer-events: auto;
}
.mnav-subitem {
  display:flex; align-items:flex-start; gap:12px;
  padding:12px; border-radius:12px; text-decoration:none; color:#fff;
  transition: background .15s ease, transform .15s ease;
}
.mnav-subitem:hover { background: rgba(255,255,255,.08); transform: translateY(-1px); }
.mnav-ico {
  height:30px; width:30px; border-radius:8px; display:flex; align-items:center; justify-content:center;
  background: rgba(255,255,255,.12); font-size:12px; font-weight:700;
}
.mnav-subhead {
  display:flex; align-items:center; gap:10px; padding:.5rem 0  .5rem;
}
.mnav-back {
  display:inline-flex; align-items:center; justify-content:center;
  height:36px; width:36px; border-radius:10px;
  background: rgba(255,255,255,.10);
}
#mobile-nav.full-height {
  height: calc(100dvh - 64px) !important; 
  max-height: none !important;            
}
#mobile-layanan {
  max-height: 100%;
  overflow: auto;                 
  -webkit-overflow-scrolling: touch;
}
@keyframes mobileNavIn {
  0%   { opacity: 0; transform: translateY(-12px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes mobileNavOut {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-12px); }
}
#mobile-nav.is-leaving {
  visibility: visible !important;
  pointer-events: none; 
  animation: mobileNavOut 0.26s cubic-bezier(.2,.6,.2,1);
}
@keyframes layananIn {
  0%   { opacity: 0; transform: translateX(8px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes layananOut {
  0%   { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(8px); }
}
#mobile-layanan.is-open    { animation: layananIn .26s cubic-bezier(.2,.6,.2,1) forwards; }
#mobile-layanan.is-closing { animation: layananOut .22s cubic-bezier(.2,.6,.2,1) forwards; }
html, body { overflow-x: clip; }
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}
#mnav-accordions .mnav-acc .mnav-acc-body a { color:#fff; text-decoration:none; }
#mnav-accordions .mnav-acc .mnav-acc-body a:hover { background: rgba(255,255,255,.08); }
@media (max-width: 767px) {
  
  #mobile-layanan .mnav-subitem {
    padding-block: 14px;           
    border-radius: 14px;           
  }
  #mobile-layanan .mnav-ico {
    width: 36px; height: 36px;     
    border-radius: 10px;
  }
  #mobile-layanan .acc-caret {
    transition: transform .28s cubic-bezier(.2,.6,.2,1);
  }
  #mobile-layanan .mnav-acc-body a {
    padding: 12px 12px !important; 
    border-radius: 10px;
    line-height: 1.3;              
    font-size: 14px;               
  }
  #mobile-layanan .mnav-acc-body ul { row-gap: 6px; }
  #mnav-accordions .mnav-acc-body { 
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-2px);
    transition:
      height .32s cubic-bezier(.2,.6,.2,1),
      opacity .28s ease,
      transform .32s cubic-bezier(.2,.6,.2,1);
    will-change: height, opacity, transform;
  }
  #mnav-accordions .mnav-acc-body.is-open {
    opacity: 1;
    transform: translateY(0);
  } 
  @media (prefers-reduced-motion: reduce) {
    #mnav-accordions .mnav-acc-body {
      transition: none !important;
      height: auto !important;
      opacity: 1 !important;
      transform: none !important;
    }
  }
}
#mobile-layanan .mnav-acc-body {
  display: block;           
}
@media (max-width: 767px) {
  #mnav-accordions .mnav-acc-body {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-2px);
    transition:
      height .32s cubic-bezier(.2,.6,.2,1),
      opacity .28s ease,
      transform .32s cubic-bezier(.2,.6,.2,1);
    will-change: height, opacity, transform;
  }
  #mnav-accordions .mnav-acc-body.is-open {   
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --hero-url: url('images/hero-nusantara.jpg'); 
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 1ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
#hero-slides { position:absolute; inset:0; overflow:hidden; background-color:#476786 }
.hero-slide { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 1800ms ease; }
.hero-slide.is-active { opacity:1; }
.ip-panel { transition: opacity .35s ease, transform .35s ease; }
.ip-panel.is-active { opacity: 1 !important; transform: translateY(0) !important; }
.hero-rotator {
  display: grid;            
  contain: layout paint;    
}
.rot-layer {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(10px) scale(0.995);
  filter: blur(4px);
  transition:
    opacity 1000ms ease,
    transform 1100ms cubic-bezier(.2,.6,.2,1),
    filter 1100ms ease;
  will-change: opacity, transform, filter;
  backface-visibility: hidden;
}
.rot-layer.is-on {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
@media (prefers-reduced-motion: reduce) {
  .rot-layer { transition: none !important; filter: none !important; transform: none !important; }
}
#hero-slides,
#hero-slides .hero-slide {
  -webkit-touch-callout: none; 
  -webkit-user-drag: none;     
  user-select: none;           
  pointer-events: none;        
}
.hero-slide {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
    transition:
      opacity .8s ease,
      transform .9s cubic-bezier(.2,.6,.2,1),
      filter .9s ease;
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform, filter;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .mask-reveal {
    overflow: hidden;
  }
  .mask-reveal > * {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity .85s ease,
      transform 1s cubic-bezier(.2,.6,.2,1);
    transition-delay: var(--d, 0ms);
    will-change: opacity, transform;
  }
  .mask-reveal.is-in > * {
    opacity: 1;
    transform: none;
  } 
  .collage-reveal use {
    opacity: 0;
    transform: translateY(18px) scale(.985);
    transition:
      opacity .9s ease,
      transform 1s cubic-bezier(.2,.6,.2,1);
    transform-box: fill-box;       
    transform-origin: 50% 50%;
  }
  .collage-reveal.is-in use       { opacity: 1; transform: none; }
  .collage-reveal.is-in use:nth-of-type(1) { transition-delay: .05s; }
  .collage-reveal.is-in use:nth-of-type(2) { transition-delay: .12s; }
  .collage-reveal.is-in use:nth-of-type(3) { transition-delay: .19s; }
  .collage-reveal.is-in use:nth-of-type(4) { transition-delay: .26s; }
  .collage-reveal.is-in use:nth-of-type(5) { transition-delay: .33s; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .mask-reveal, .collage-reveal,
  .reveal > *, .mask-reveal > *, .collage-reveal use {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
#ip-products { background-color:#fff; }
#ip-products-bg{
  position:absolute; inset:0; z-index:-1;
  background-repeat:repeat;   
  background-position:center;
  background-size:auto;       
  opacity:.08;                
  pointer-events:none;
}
#ip-products .ip-tab{
  border-radius:9999px;
  border:1px solid rgb(203 213 225);
  background:#fff;
  color:#0E1116;
  box-shadow:0 6px 24px rgba(0,0,0,.06);
  transition:all .2s ease;
}
#ip-products .ip-tab[aria-selected="true"]{
  background:var(--np-red, #C0392B) !important;
  border-color:var(--np-red, #C0392B) !important;
  color:#fff !important;
}
#ip-products .ip-tab img.ico--on{ display:none; }
#ip-products .ip-tab[aria-selected="true"] img.ico--on{ display:inline; }
#ip-products .ip-tab[aria-selected="true"] img.ico--off{ display:none; }
#ip-products .ip-tab .chip{ display:none !important; }
#ip-products [role="tablist"]{
  display:flex;               
  flex-wrap:wrap;
  align-items:center;
  gap:.5rem;
}
#ip-products .ip-tab{
  --btn: 48px;
  --radius: 14px;
  border-radius: var(--radius) !important;
  min-height: var(--btn);
  height: var(--btn);
  width: var(--btn);                 
  display: inline-flex;
  align-items: center;
  justify-content: center;           
  padding-inline: 0;                 
  gap: 0;                            
  flex: 0 0 auto;
  white-space: nowrap;
  overflow: visible;
  transition:
    padding-inline .30s cubic-bezier(.2,.6,.2,1),
    gap            .30s cubic-bezier(.2,.6,.2,1),
    box-shadow     .28s ease,
    transform      .28s cubic-bezier(.2,.6,.2,1);
}
@media (min-width:768px){
  #ip-products .ip-tab{ --btn: 52px; --radius: 16px; }
}
#ip-products .ip-tab img{ width:20px; height:20px; flex:0 0 auto; }
#ip-products .ip-tab .ip-label{
  display:inline-block;
  white-space:nowrap;
  overflow:hidden;
  max-width:0;                 
  opacity:0;
  transform:translateX(-4px);
  transition:
    max-width .30s cubic-bezier(.2,.6,.2,1),
    opacity   .22s ease,
    transform .30s cubic-bezier(.2,.6,.2,1);
}
#ip-products .ip-tab img { transition: transform .28s cubic-bezier(.2,.6,.2,1), opacity .22s ease; }
@keyframes tab-expand { 0% { transform: scale(.94) } 60% { transform: scale(1.02) } 100% { transform: scale(1) } }
@keyframes tab-retract{ 0% { transform: scale(1.02) } 100% { transform: scale(1) } }
#ip-products .ip-tab.is-activating   { animation: tab-expand .36s cubic-bezier(.2,.7,.2,1); }
#ip-products .ip-tab.is-deactivating { animation: tab-retract .26s ease; }
#ip-products .ip-tab[aria-selected="true"] .ip-label{
  max-width: none;              
  opacity:1;
  transform:none;
}
#ip-products .ip-tab[aria-selected="true"]{
  box-shadow:0 10px 28px rgba(0,0,0,.10);
  width: auto;                       
  justify-content: flex-start;       
  padding-inline: 14px;              
  gap: 8px;                          
}
@media (prefers-reduced-motion: reduce){
  #ip-products .ip-tab .ip-label{
    transition:none !important;
    max-width:18ch !important;
    opacity:1 !important;
    transform:none !important;
  }
}
#ip-products .ip-ico{
  width: 18px; height: 18px;
  object-fit: contain;
  flex: 0 0 18px;         
  margin-top: 2px;        
  image-rendering: auto;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.06));
}
@media (min-width:768px){
  #ip-products .ip-ico{ width:20px; height:20px; margin-top:1px; }
}
#services .svc-card{
  position:relative; border-radius:14px; border:1px solid rgba(15,23,42,.08); background:#fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  padding:16px 14px 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow:hidden;
}
#services .svc-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background: linear-gradient(90deg, #153E75, #0E1A2A);
  opacity:.9;
}
#services .svc-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  border-color: rgba(15,23,42,.14);
}
#services .svc-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:10px;
  font-weight:800; font-size:14px; letter-spacing:-.01em; color:#fff;
  background:linear-gradient(135deg,#153E75,#0E1A2A);
  box-shadow: 0 6px 16px rgba(21,62,117,.22);
  user-select:none;
}
#services .svc-title{ margin-top:10px; font-weight:700; font-size:16px; line-height:1.2; color:#0E1116; }
#services .svc-sub{
  margin-top:10px;             
  font-size:13px;
  color:#6B7280;
  line-height:1.55;
}
:root{
  --wa-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  --wa-right:  max(16px, env(safe-area-inset-right, 0px));
}
.wa-fixed{ position: fixed; bottom: var(--wa-bottom); right: var(--wa-right); z-index: 60; }
.wa-pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:9999px;
  background:var(--np-navy, #0E1A2A); color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.wa-pill:hover{ transform: translateY(-1px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.wa-ico{ width:16px; height:16px; display:block; object-fit:contain; }
.wa-num{ font-weight:300; letter-spacing:.02em; font-size:14px; }
@media (min-width:768px){ .wa-num{ font-size:15px; } }
@keyframes waPulse { 0%{opacity:.55; transform:scale(.92)} 70%{opacity:0; transform:scale(1.18)} 100%{opacity:0; transform:scale(1.18)} }
.wa-pill::after{
  content:""; position:absolute; inset:-6px; border-radius:inherit;
  border:1px solid rgba(21,62,117,.22); opacity:0; transform:scale(.92);
  animation: waPulse 2.8s ease-out infinite; pointer-events:none;
}
@media (prefers-reduced-motion:reduce){ .wa-pill::after{ animation:none !important; opacity:0 !important; } }
#classify .nice-tab{
  border:1px solid rgba(255,255,255,.28);
  border-radius:9999px;
  background:transparent;
  color:#fff; opacity:.92;
  transition: all .18s ease;
}
#classify .nice-tab[aria-selected="true"]{
  background:#C0392B; border-color:#C0392B; box-shadow:0 8px 28px rgba(0,0,0,.18);
}
#classify .nice-list{ 
  height: var(--nice-h, 320px);
  max-height: none;
  overflow: auto;
  scrollbar-gutter: stable both-edges;
  overscroll-behavior-y: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
#classify .nice-list { 
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.38) transparent;
}
#classify .nice-list::-webkit-scrollbar {
  width: 10px;                
  height: 10px;               
}
#classify .nice-list::-webkit-scrollbar-track {
  background: transparent;    
}
#classify .nice-list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.28));
  border-radius: 9999px;
  border: 2px solid transparent;          
  background-clip: padding-box;
}
#classify .nice-list:hover::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(255,255,255,.6), rgba(255,255,255,.4));
}
#classify .nice-list::-webkit-scrollbar-corner {
  background: transparent;
}
#classify .nice-item{
  display:flex; align-items:center; gap:10px;
  padding:6px 10px;
  border-radius:12px;
  color:#fff; background:transparent;
  font-size:13.5px; line-height:1.35;
  transition: background .15s ease, transform .15s ease;
}
#classify .nice-item:hover{ background:rgba(255,255,255,.08); transform: translateY(-1px); }
#classify .nice-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:26px; height:26px; border-radius:8px; flex:0 0 26px;
  font-weight:800; font-size:12.5px; color:#fff;
  background:linear-gradient(135deg,#153E75,#0E1A2A);
  box-shadow:0 6px 16px rgba(0,0,0,.22);
  margin-top:2px;
}
#classify [role="tabpanel"]{
  position: relative;
  will-change: opacity, transform;
}
#classify [role="tabpanel"][aria-hidden="true"]{
  visibility: hidden;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#classify [role="tabpanel"][aria-hidden="false"]{
  visibility: visible;
  position: relative;
}
#nice-classes{ contain: layout paint; }
@media (max-width: 767px){
  #classify .nice-list{
    
    height: var(--nice-h, 220px);
    max-height: none;
  }
}
#reach .world-mask{
  width:100%;
  max-width:1200px;
  aspect-ratio: 2 / 1;                         
  -webkit-mask: url('world-mask.svg') center / contain no-repeat;
          mask: url('world-mask.svg') center / contain no-repeat;
  background:#0E1A2A;                          
  position:relative;
}
#reach .world-wrap{
  position: relative;
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 2 / 1;
  isolation: isolate;
  overflow: visible;
}
#reach .world-wrap .world-mask{
  position: absolute;
  inset: 0;
  z-index: 1; 
}
#reach .map-pin{
  position: absolute;
  left: var(--pin-x, 50%);
  top:  var(--pin-y, 50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 9999px;
  background: #C0392B;            
  box-shadow:
    0 0 0 6px rgba(240,90,42,.18), 
    0 8px 18px rgba(0,0,0,.20);    
  z-index: 3;                      
  border: 0;
  appearance: none;
  cursor: pointer;
}
#reach .map-pin:hover,
#reach .map-pin:focus,
#reach .map-pin:focus-visible,
#reach .map-pin:active{
  z-index: 50;  
  transform: translate(-50%, -50%) scale(1.08);
  outline: none;
}
#reach .map-tip{
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) scale(.98);
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  color: #0E1116;
  font-size: 12.5px;
  line-height: 1.25;
  white-space: nowrap;
  box-shadow: 0 12px 36px rgba(0,0,0,.18);
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  z-index: 60;
}
#reach .map-tip::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.10);
}
#reach .map-pin:hover .map-tip,
#reach .map-pin:focus-visible .map-tip{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
  transition: opacity .18s ease, transform .18s ease, visibility 0s;
}
#reach .world-mask::after{
  content:"";
  position:absolute; inset:0;
  -webkit-mask: inherit; mask: inherit;
  background: radial-gradient(18rem 18rem at var(--mx,50%) var(--my,50%),
                              #C0392B 0%, #C0392B 30%, transparent 55%);
  opacity: var(--mop, 0);
  transition: opacity .18s ease;
  pointer-events:none;
}
@media (max-width:640px){
  #reach .world-mask::after{
    background: radial-gradient(12rem 12rem at var(--mx,50%) var(--my,50%),
                                #C0392B 0%, #C0392B 28%, transparent 52%);
  }
}
@media (prefers-reduced-motion: reduce){
  #reach .world-mask::after{ transition:none; }
}
#reach .map-arcs{
  position:absolute; inset:0;
  z-index:2;                 
  pointer-events:none;       
}
#reach .map-arcs path{
  fill:none;
  stroke:#C0392B;            
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  filter: drop-shadow(0 6px 18px rgba(192,57,43,.35));
  opacity:0;                 
  transition: opacity .18s ease;
}
#reach .map-arcs path.is-on{ opacity:1; }
@keyframes npDrawArc {
  from { stroke-dashoffset: var(--len, 0); }
  to   { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce){
  #reach .map-arcs path{ transition:none; animation:none !important; }
}
#np-quote{
  --q: 0;
  --q-bg:  #E5E7EB; 
  --q-mid: #6B7280; 
  --q-ink: #0E1116; 
}
#np-quote .q-word{ transition: color .18s ease; }
#np-quote [data-q-target]{ color: var(--q-bg); }
#np-quote .q-underline{
  width: calc(7rem * var(--q));
  opacity: calc(.28 + .72 * var(--q));
  transition: opacity .2s ease;
}
@media (prefers-reduced-motion: reduce){
  #np-quote { --q: 1 !important; }
}
#np-quote .q-cite{
  display:flex;
  flex-direction:column;
  gap:2px;
  color: var(--q-mid);
}
#np-quote .q-name{
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--q-ink);
}
#np-quote .q-title{
  font-weight: 500;
  color: var(--q-mid);
}
#np-quote .npq-batik{
  width: min(44vw, 560px);                         
  background: url('/images/batik-accent1.png') right center / contain no-repeat;
  opacity: .45;                                    
  transform: translateZ(0);                         
  -webkit-mask-image: linear-gradient(to left, black 62%, transparent 95%);
          mask-image: linear-gradient(to left, black 62%, transparent 95%);
}
@media (max-width: 768px){
  #np-quote .npq-batik{
    width: min(68vw, 420px);                       
    opacity: .3;
    -webkit-mask-image: linear-gradient(to left, black 50%, transparent 88%);
            mask-image: linear-gradient(to left, black 50%, transparent 88%);
  }
}
#news .news-card{
  position:relative; overflow:hidden; border-radius:16px;
  background:#111; color:#fff; isolation:isolate;
  box-shadow: 0 12px 36px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}
#news .news-card:hover{ transform: translateY(-3px); box-shadow: 0 18px 54px rgba(0,0,0,.16); }
#news .news-img{ position:absolute; inset:0; background-size:cover; background-position:center; transform: scale(1.02); transition: transform .6s cubic-bezier(.2,.6,.2,1); }
#news .news-card:hover .news-img{ transform: scale(1.07); }
#news .news-grad{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.0) 20%, rgba(0,0,0,.55) 68%, rgba(0,0,0,.75) 100%); }
#news .news-body{
  position:relative; z-index:1;
  padding:18px 16px 16px;
  display:grid; grid-template-rows:1fr auto auto auto; 
  row-gap:10px; align-content:end; height:100%;
}
#news .news-hero .news-body{ padding:24px 22px 20px; }
#news .chip{ display:inline-flex; align-items:center; gap:6px; padding:6px 10px; border-radius:999px; font-size:12px; line-height:1; border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.08); backdrop-filter: blur(6px); }
#news .chip[data-tag="Merek"]{ background:rgba(21,62,117,.12); border-color:rgba(255,255,255,.22); }
#news .chip[data-tag="Paten"]{ background:rgba(192,57,43,.14);  border-color:rgba(255,255,255,.22); }
#news .chip[data-tag="Hak Cipta"]{ background:rgba(14,26,42,.18); border-color:rgba(255,255,255,.22); }
#news .chip[data-tag="Hukum"]{ background:rgba(0,0,0,.18); border-color:rgba(255,255,255,.22); }
#news .title{ font-weight:700; letter-spacing:-.01em; }
#news .title--hero{ font-size:clamp(1.05rem, 1.8vw, 1.5rem); line-height:1.25; }
#news .title--sm{ font-size:clamp(0.98rem, 1.4vw, 1.1rem); line-height:1.25; }
#news .line-clamp-2{ display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
#news .meta{ font-size:14px; font-weight:600; letter-spacing:.01em; color:rgba(255,255,255,.95); }
#news .cta{
  display:inline-flex; align-items:center; gap:8px;
  padding:0; border-radius:0; background:transparent;
  color:#fff; font-weight:600;                 
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,.45);
  text-underline-offset: 4px;
  transition: opacity .2s ease, text-decoration-color .2s ease;
}
#news .cta:hover{
  text-decoration-color: rgba(255,255,255,1);
  opacity:.95;
  transform:none;
}
#news .cta-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:.55rem .9rem; border-radius:9999px;
  background:#153E75; color:#fff; font-weight:600;
  transition: transform .2s ease, background .2s ease;
}
#news .cta-pill:hover{ background:#0E1A2A; transform: translateY(-1px); }
@media (min-width:1024px){
  #news #news-grid > .flatten{ display: contents; }
}
#news #news-grid{ grid-auto-flow: row; }
#news .news-card::after{
  content:"";
  position:absolute;
  top:50%; left:50%;
  width:220%; height:260%;              
  transform: translate(-50%,-50%) rotate(18deg) translateX(-62%);
  background: linear-gradient(90deg,
              rgba(255,255,255,0)   44%,
              rgba(255,255,255,.26) 50%,
              rgba(255,255,255,0)   56%);
  filter: blur(20px);                    
  mix-blend-mode: screen;                
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
  transition:
    transform 1.1s cubic-bezier(.2,.6,.2,1),
    opacity   .5s ease;
}
#news .news-card:hover::after{
  transform: translate(-50%,-50%) rotate(18deg) translateX(62%);
  opacity:.85;
}
@media (prefers-reduced-motion: reduce){
  #news .news-card, #news .news-card::after, #news .news-img, #news .cta{ transition:none !important; }
}
.marquee-fade {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
@keyframes np-marquee-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track {
  width: max-content;
  animation: np-marquee-x 38s linear infinite;
  will-change: transform;
}
.marquee-track .marquee-chunk { white-space: nowrap; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}
.reveal{opacity:0; transform:translateY(18px)}
.reveal.is-visible{opacity:1; transform:none}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1; transform:none}
}
#clients .clients-mask{
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
#clients .clients-track{
  width: max-content;
  animation: clients-left var(--spd, 48s) linear infinite;
  will-change: transform;
}
#clients .clients-right .clients-track{ animation-name: clients-right; }
@keyframes clients-left  { from { transform: translate3d(0,0,0);     } to { transform: translate3d(-50%,0,0);} }
@keyframes clients-right { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0);    } }
#clients .clients-row:hover .clients-track{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){
  #clients .clients-track{ animation: none !important; }
}
#clients:not(.is-ready) .clients-track{ animation-play-state: paused !important; }
#clients{
  --tile-h: 110px;   
  --min-w: 200px;    
  --max-w: 360px;    
  --pad:   32px;     
  --img-scale: .55;  
}
#clients .logo-card{
  height: var(--tile-h);                      
  width:  var(--w, var(--min-w));             
  display:flex; align-items:center; justify-content:center;
  background:#fff;
  border-radius: 20px;
  border: 1px solid rgba(15,23,42,.06);
  background-clip: padding-box;
  position: relative; isolation: isolate;
  box-shadow:
    0 1px 3px rgba(0,0,0,.05),
    0 8px 20px -10px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
#clients .logo-card:hover{
  transform: translateY(-3px);
  box-shadow:
    0 3px 8px rgba(0,0,0,.06),
    0 10px 22px -10px rgba(0,0,0,.14);
}
#clients .logo-card img{
  display:block;
  width:auto; height:auto; object-fit: contain; 
  max-height: calc(var(--tile-h) * var(--img-scale));
  max-width:  calc(var(--w, var(--min-w)) - var(--pad));
  filter: grayscale(0); opacity:.95;
  transition: transform .25s ease, opacity .25s ease;
}
#clients .logo-card:hover img{ transform: scale(1.04); opacity:1; }
#clients .clients-row{ overflow: visible; }  
@media (max-width: 640px){
  
  #clients{
    --tile-h: 82px;
    --min-w: 150px;
    --max-w: 240px;
    --pad:   24px;
    --img-scale: .58;
  }
  #clients .logo-card{ border-radius:18px; }
}
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
#services-slider {
  overscroll-behavior-x: contain; 
  -webkit-overflow-scrolling: touch; 
}
#mobile-related.is-open { pointer-events: auto; }
#mobile-related .related-overlay { opacity: 0; }
#mobile-related.is-open .related-overlay { opacity: 1; }
#mobile-related .related-panel { translate:-100% 0; transform: translateX(-100%); }
#mobile-related.is-open .related-panel { translate:0 0; transform: translateX(0); }
#mobile-related .related-panel { transition: translate .25s ease, transform .25s ease; }
#mobile-related .mnav-subhead { display:flex; align-items:center; gap:10px; padding:.5rem 0 .5rem; }
#mobile-related .mnav-back{
  display:inline-flex; align-items:center; justify-content:center;
  height:36px; width:36px; border-radius:10px;
  background: rgba(15,23,42,.08);
  transition: background .15s ease, transform .15s ease;
}
#mobile-related .mnav-back:hover{ background: rgba(15,23,42,.12); }
#mobile-related .mnav-back:active{ transform: translateY(1px); }
#related-sticky{
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
  will-change: opacity, transform;
}
#related-sticky.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce){
  #related-sticky{ transition: none; transform: none; }
}
.cta-gradient-text{
  background: linear-gradient(135deg, #153E75 0%, #0E1A2A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.jenis-tab{ transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.jenis-tab:hover{ transform: translateY(-1px); }
@media (hover: none){
  .jenis-tab:hover{ transform: none; }
}
.card-bg{
  background:
    radial-gradient(140% 160% at 100% 0%, rgba(21,62,117,.07), rgba(255,255,255,0) 55%),
    radial-gradient(140% 160% at   0% 100%, rgba(21,62,117,.06), rgba(255,255,255,0) 55%),
    linear-gradient(180deg, #fff, #fff);
}
#jenis .shadow-soft { transition: box-shadow .26s ease; }
#jenis .subpanel.is-opening .shadow-soft,
#jenis .subpanel.is-closing .shadow-soft { transition: none !important; }
.subpanel.is-closing { overflow: hidden !important; }
#jenis .subpanel article { transform: translateZ(0); }
.vtl-center{
  --dot:12px;
  --trackW:8px;
  --rowH:128px;
  --gapX:28px;
  --ring:6px;
  --brand:#153E75;
  position:relative;
}
.vtl-center::before{
  content:"";
  position:absolute; top:0; bottom:0; left:50%;
  width:var(--trackW); transform:translateX(-50%);
  background: linear-gradient(to bottom, rgba(21,62,117,.22), rgba(21,62,117,.10));
  border-radius:99px;
}
.vtl-center .vtl-item{
  position:relative;
  display:grid; 
  grid-template-columns: minmax(0,1fr) var(--trackW) minmax(0,1fr);
  column-gap: var(--gapX);
  min-height: var(--rowH);
  align-items:center;
}
.vtl-center .vtl-dot{
  position:absolute; left:50%; top:50%;
  transform: translate(-50%, -50%);
  width:var(--dot); height:var(--dot); border-radius:999px; background:var(--brand);
  box-shadow: 0 0 0 var(--ring) rgba(21,62,117,.12);
  z-index: 10;
}
.vtl-center .vtl-content {
  background:#fff; border:1px solid rgba(15,23,42,.08);
  border-radius:14px; padding:12px 14px; box-shadow:0 6px 24px rgba(0,0,0,.08);
  font-size:12.5px; color:#6B7280; line-height:1.35;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 64px;
  min-width: 0;               
  overflow-wrap: anywhere;    
}
.vtl-center .vtl-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
  min-width: 0;               
  overflow-wrap: anywhere;    
}
.vtl-center .vtl-text h4 {
  font-weight:700; font-size:13px; line-height:1.35; text-wrap:pretty;
}
.vtl-center .vtl-text .time{
  font-size:12px; color:#475569; margin-top:2px;
}
.vtl-center .vtl-content-odd {
  grid-column: 1 / 2;
  text-align: left;
}
.vtl-center .vtl-text-odd {
  grid-column: 3 / 4;
  text-align: left;
  align-items: flex-start;
}
.vtl-center .vtl-text-even {
  grid-column: 1 / 2;
  text-align: right;
  align-items: flex-end;
}
.vtl-center .vtl-content-even {
  grid-column: 3 / 4;
  text-align: left;
}
@media (max-width: 767px){
  .vtl-center{
    --dot:12px;
    --trackW:8px;
    --rowH:128px;
    --gapX:28px;
    --ring:6px;
    padding: 0 10px;
  }
  .vtl-center::before{
    left:50%;
    transform:translateX(-50%);
  }
  .vtl-center .vtl-item{
    grid-template-columns: minmax(0,1fr) var(--trackW) minmax(0,1fr);
    column-gap: 12px;
    padding: 0 10px;
  }
  .vtl-center .vtl-dot{
    left:50%;
  }
  .vtl-center .vtl-content {
    font-size: 12px;
  }
  .vtl-center .vtl-text {
    font-size: 11px;
  }
}
#alasan .why-grid{
  display:grid; grid-template-columns:1fr; gap:12px; align-items:start;
}
@media (min-width:768px){
  #alasan .why-grid{ grid-template-columns:repeat(3,1fr); gap:16px; }
}
#alasan .why-item{
  position:relative; padding:0 8px 10px 0;
}
#alasan .why-num{
  position:static; display:block; margin:0 0 8px 0; user-select:none; pointer-events:none; text-align:left;
  font-weight:800; letter-spacing:-.02em; line-height:1;
  font-size:clamp(46px, 6.8vw, 82px);
  background:linear-gradient(135deg, #153E75 0%, #0E1A2A 100%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent; -webkit-text-fill-color:transparent;
}
#alasan .why-title{
  position:relative; z-index:1;
  font-weight:600; font-size:16px; line-height:1.25; color:#0E1116;
  margin-bottom:4px;
}
#alasan .why-text{
  position:relative; z-index:1;
  font-size:13.5px; line-height:1.55; color:#6B7280;
}
.vtl{
  --x: 26px;            
  --trackW: 8px;        
  --dot: 12px;          
  --rowH: 110px;        
  --ring: 6px;          
  --brand: #153E75;     
  position: relative;
}
.vtl{ --padL: 1rem; }                    
@media (min-width: 768px){ .vtl{ --padL: 1.5rem; } }   
@media (min-width: 1024px){ .vtl{ --padL: 2.5rem; } }  
.vtl::before{
  content:"";
  position:absolute; top:0; bottom:0;
  left: calc(var(--x) - var(--trackW) / 2);
  width: var(--trackW);
  transform: none;
  background: linear-gradient(to bottom, rgba(21,62,117,.24), rgba(21,62,117,.10));
  border-radius: 999px;
}
.vtl-item{
  position: relative;
  min-height: var(--rowH);
  display: flex; align-items: center;
}
.vtl-dot{
  position: absolute;
  top: 50%; left: calc(var(--x) - var(--dot) / 2 - var(--padL));
  width: var(--dot); height: var(--dot);
  transform: translateY(-50%);
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 0 0 var(--ring) rgba(21,62,117,.12);
}
.vtl-body{
  display:flex; flex-direction:column;
  margin-left: calc(var(--x) + var(--dot)/2 + 16px - var(--padL));
}
.vtl-body h4{ font-weight:700; font-size:14px; line-height:1.3; }
.vtl-body p{ margin-top:6px; font-size:13px; color:#6B7280; line-height:1.5; }
@media (max-width: 767px){
  .vtl{ --x: 22px; --trackW: 6px; --rowH: 96px; }
  .vtl-body{ margin-left: calc(var(--x) + var(--dot)/2 + 14px); }
  .vtl-body h4{ font-size:13.5px; }
  .vtl-body p{ font-size:12.5px; }
}
.vw-slab { width: 100vw; }
@supports (width: 100dvw) { .vw-slab { width: 100dvw; } }
.zz-row{ display:grid; grid-template-columns: 1fr; gap:20px; align-items:center; }
.zz-img{ aspect-ratio: 16 / 10; border-radius: 16px; overflow:hidden; background: #f1f5f9; }
.zz-img img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (min-width: 768px){
  .zz-row{ grid-template-columns: 1.15fr 1fr; gap:28px; }
  .zz-row.swap{ grid-template-columns: 1fr 1.15fr; }
}
#waktu .w-card{
  position:relative; border-radius:14px; background:#fff; overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  padding:16px 14px 14px;
}
#waktu .w-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background: linear-gradient(90deg, #153E75, #0E1A2A); opacity:.9;
}
#waktu .w-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  border-color: rgba(15,23,42,.14);
}
#waktu .w-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:10px; font-weight:800; font-size:14px; letter-spacing:-.01em;
  color:#fff; background:linear-gradient(135deg,#153E75,#0E1A2A);
  box-shadow: 0 6px 16px rgba(21,62,117,.22); user-select:none;
}
#waktu .w-title{ margin-top:10px; font-weight:700; font-size:16px; line-height:1.2; color:#0E1116; }
#waktu .w-sub{ margin-top:4px; font-size:13px; color:#6B7280; line-height:1.55; }
#jenis .j-grid{ display:grid; grid-template-columns:1fr; gap:14px; }
@media (min-width:768px){ #jenis .j-grid{ grid-template-columns: repeat(3, 1fr); gap:16px; } }
#jenis .j-card{
  position:relative; border-radius:14px; border:1px solid rgba(15,23,42,.08); background:#fff;
  box-shadow: 0 6px 24px rgba(0,0,0,.06); padding:16px 14px 14px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow:hidden;
}
#jenis .j-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background: linear-gradient(90deg, #153E75, #0E1A2A);
  opacity:.9;
}
#jenis .j-card:hover{ transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.10); border-color: rgba(15,23,42,.14); }
#jenis .j-num{
  display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:10px;
  font-weight:800; font-size:14px; letter-spacing:-.01em; color:#fff; background:linear-gradient(135deg,#153E75,#0E1A2A);
  box-shadow: 0 6px 16px rgba(21,62,117,.22); user-select:none;
}
#jenis .j-title{ margin-top:10px; font-weight:700; font-size:16px; line-height:1.2; color:#0E1116; }
#jenis .j-sub{ margin-top:4px; font-size:13px; color:#6B7280; line-height:1.55; }
#bahasa .b-card{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 90% 0%, rgba(255,255,255,.10), rgba(255,255,255,0) 55%),
    radial-gradient(120% 140% at 10% 100%, rgba(255,255,255,.08), rgba(255,255,255,0) 52%),
    linear-gradient(135deg, #153E75 0%, #0E1A2A 100%);
  isolation: isolate;
  color: #fff;
  box-shadow: 0 6px 22px rgba(14,26,42,.12);
  transition:
    transform .22s cubic-bezier(.2,.6,.2,1),
    box-shadow .22s cubic-bezier(.2,.6,.2,1),
    filter .22s ease; 
  will-change: transform, box-shadow;
}
#bahasa .b-card:hover::after{ opacity:.9; } 
#bahasa .b-card::before{ content: none; }
#bahasa .b-card p{ color: rgba(255,255,255,.92); }
#bahasa .b-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(14,26,42,.26);
  filter: brightness(1.02);
}
.collage-card img{ transition: transform .35s ease; will-change: transform; }
.collage-card:hover img{ transform: scale(1.05); }
#contact-form textarea#message{
  resize: none !important;
  overflow-y: auto;     
}
.form-req{ color:#9CA3AF; font-weight:700; font-size:.85em; margin-left:.25rem; }
.contact-card{
  position:relative;
  overflow:hidden;
}
.contact-card::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:0;
  height:72px;                 
  background:url("/images/batik-strip.png") center bottom / cover no-repeat;
  opacity:.25;                 
  pointer-events:none;
}
@media (min-width:768px){
  .contact-card::after{ height:84px; }
}
#jenis .w-card{
  position:relative; border-radius:16px; background:#fff; overflow:hidden;
  border:1px solid rgba(15,23,42,.08);
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  padding:16px 14px 14px;
}
#jenis .w-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background: linear-gradient(90deg, #153E75, #0E1A2A); opacity:.9;
}
#jenis .w-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  border-color: rgba(15,23,42,.14);
}
#jenis .w-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:10px; font-weight:800; font-size:14px; letter-spacing:-.01em;
  color:#fff; background:linear-gradient(135deg,#153E75,#0E1A2A);
  box-shadow: 0 6px 16px rgba(21,62,117,.22); user-select:none;
}
#jenis .w-title{ margin-top:10px; font-weight:700; font-size:16px; line-height:1.2; color:#0E1116; }
#jenis .w-sub{ margin-top:4px; font-size:13px; color:#6B7280; line-height:1.55; }
#for-who .why-grid{
  display:grid; grid-template-columns:1fr; gap:12px; align-items:start;
}
@media (min-width:768px){
  #for-who .why-grid{ grid-template-columns:repeat(3,1fr); gap:16px; }
}

#for-who .why-item{
  position:relative; padding:0 8px 10px 0;
}

#for-who .why-num{
  position:static; display:block; margin:0 0 8px 0; user-select:none; pointer-events:none; text-align:left;
  font-weight:800; letter-spacing:-.02em; line-height:1;
  font-size:clamp(46px, 6.8vw, 82px);
  background:linear-gradient(135deg, #153E75 0%, #0E1A2A 100%);
  -webkit-background-clip:text; background-clip:text;
  color:transparent; -webkit-text-fill-color:transparent;
}

#for-who .why-title{
  position:relative; z-index:1;
  font-weight:600; font-size:16px; line-height:1.25; color:#0E1116;
  margin-bottom:4px;
}
#for-who .why-text{
  position:relative; z-index:1;
  font-size:13.5px; line-height:1.55; color:#6B7280;
}
#with-without-consultant .compare-card {
  --white: hsl(0, 0%, 100%);
  --black: hsl(240, 15%, 9%);
  --paragraph: hsl(0, 0%, 83%);
  --line: hsl(215, 16%, 25%);
  --primary: hsl(215, 80%, 60%); 

  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;

  padding: 1.25rem 1.5rem;
  width: 100%;
  height: 100%;

  background-color: hsla(222, 47%, 11%, 1); 
  background-image: radial-gradient(
      at 88% 40%,
      hsla(222, 47%, 11%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(
      at 49% 30%,
      hsla(215, 28%, 18%, 0.9) 0px,
      transparent 85%
    ),
    radial-gradient(
      at 14% 26%,
      hsla(215, 30%, 16%, 0.9) 0px,
      transparent 85%
    ),
    radial-gradient(
      at 0% 64%,
      hsla(215, 80%, 40%, 0.75) 0px,
      transparent 85%
    ),
    radial-gradient(
      at 41% 94%,
      hsla(215, 80%, 48%, 0.65) 0px,
      transparent 85%
    ),
    radial-gradient(
      at 100% 99%,
      hsla(210, 90%, 56%, 0.5) 0px,
      transparent 85%
    );

  border-radius: 1rem;
  box-shadow: 0px -16px 24px 0px rgba(255, 255, 255, 0.25) inset;
}
#with-without-consultant .compare-card .card__border {
  overflow: hidden;
  pointer-events: none;

  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(
    0deg,
    hsl(0, 0%, 100%) -50%,
    hsl(0, 0%, 40%) 100%
  );

  border-radius: inherit;
}

#with-without-consultant .compare-card .card__border::before {
  content: "";
  pointer-events: none;

  position: fixed;
  z-index: 200;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: left;

  width: 200%;
  height: 10rem;
  background-image: linear-gradient(
    0deg,
    hsla(251, 100%, 51%, 0) 0%,
    hsl(232, 75%, 32%) 40%,
    hsl(205, 100%, 51%) 60%,
    hsla(195, 77%, 15%, 0) 100%
  );

  animation: rotate 8s linear infinite;
}
@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}
#with-without-consultant .compare-card .card_title__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
#with-without-consultant .compare-card .card_title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
#with-without-consultant .compare-card .card_paragraph {
  margin-top: 0.25rem;
  max-width: 20rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--paragraph);
}
#with-without-consultant .compare-card .card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: hsla(215, 75%, 54%, 0.507);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9f9f9;
}
#with-without-consultant .compare-card .line {
  width: 100%;
  height: 0.1rem;
  margin: 0.4rem 0 0.6rem;
  background-color: var(--line);
  border: none;
}
#with-without-consultant .compare-card .card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
#with-without-consultant .compare-card .card__list_item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
#with-without-consultant .compare-card .check {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.1rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
#with-without-consultant .compare-card .check_svg {
  width: 0.75rem;
  height: 0.75rem;
  fill: var(--black);
  stroke: var(--black);
}
#with-without-consultant .compare-card .list_text {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--white);
}
#with-without-consultant .compare-card--risk {
  --primary: hsl(0, 84%, 62%);
  background-image: radial-gradient(
      at 88% 40%,
      hsla(240, 15%, 9%, 1) 0px,
      transparent 85%
    ),
    radial-gradient(at 49% 30%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 14% 26%, hsla(240, 15%, 9%, 1) 0px, transparent 85%),
    radial-gradient(at 0% 64%, hsla(0, 84%, 60%, 1) 0px, transparent 85%),
    radial-gradient(at 41% 94%, hsla(14, 90%, 70%, 1) 0px, transparent 85%),
    radial-gradient(at 100% 99%, hsla(0, 84%, 60%, 1) 0px, transparent 85%);
}
#with-without-consultant .compare-card--risk .card__border::before {
  background-image: linear-gradient(
    0deg,
    hsla(0, 0%, 100%, 0) 0%,
    hsl(0, 84%, 62%) 40%,
    hsl(0, 84%, 62%) 60%,
    hsla(0, 0%, 40%, 0) 100%
  );
}
@media (max-width: 767.98px) {
  #with-without-consultant .card_title__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #with-without-consultant .card_title {
    white-space: nowrap;
  } 
  #with-without-consultant .card-badge {
    align-self: flex-start;
    font-size: 0.7rem;
    padding: 0.25rem 0.9rem;
  }
}
@media (max-width: 767px){
  #ads-hero{
    display:block;      
    min-height:auto;    
  }
  #ads-hero .hero-body{
    padding-top:4.5rem;   
    padding-bottom:3.5rem;
  }
}
@media (min-width: 768px){
  #ads-hero{
    min-height:100vh;
  }
}
#mengapa-np .np-features-grid{ 
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1024px){
  #mengapa-np .np-features-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 767px){  
  #mengapa-np .np-intro-photo{
    max-width: 100% !important;
  }
  #mengapa-np .np-features-grid{
    margin-top: 3.5rem; 
  }
}
@media (min-width: 768px){
  #mengapa-np .np-features-grid{
    margin-top: 3rem; 
  }
}
@media (min-width: 1024px){
  #mengapa-np .np-features-grid{
    margin-top: 5.5rem; 
  }
}
.transfer-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .transfer-flow {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
}
.transfer-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.transfer-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.transfer-icon:hover {
  transform: translateY(-4px);
}
.transfer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.transfer-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0E1116;
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
}
.transfer-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}
.arrow-svg {
  width: 30px;
  height: 30px;
  color: #153E75;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .arrow-svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .transfer-flow {
    flex-direction: row;      
    flex-wrap: nowrap;        
    gap: 0.75rem;             
  }
  .transfer-icon {
    width: 44px;
    height: 44px;
  }
  .transfer-label {
    font-size: 0.75rem;
    max-width: 80px;
  }
  .transfer-arrow {
    transform: none;          
  }
  .arrow-svg {
    width: 22px;
    height: 22px;
  }
}
.hero-head-line {
  display: block;          
}
.hero-rotating-wrapper {
  display: inline-block;   
  position: relative;
  margin: 0 0 0 0em;    
  vertical-align: baseline;
}
[data-rotating-term] {
  display: inline-block;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
}
[data-rotating-term].is-leaving {
  opacity: 0;
  transform: translateY(0.4em);
}
[data-rotating-term].is-entering {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 640px) {
  #ads-hero .hero-title {
    font-size: clamp(1.35rem, 7vw, 1.875rem);
  }
}
#ads-hero .bg-cover {
  background-position: 70% center; 
}
@media (min-width: 768px) {
  #ads-hero .bg-cover {
    background-position: 65% center; 
  }
}
.mobile-content-wrapper {
  margin-top: 60px; 
}
@media (min-width: 768px) {
  .mobile-content-wrapper {
    margin-top: 80px; 
  }
}
.np-why-section {
  background-color: #f6f9fe;
  padding: 80px 24px;
}
.np-why-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  gap: 72px;
  align-items: stretch;
}
.np-why-left {
  flex: 0 0 46%;
  max-width: 460px;
}
.np-why-title {
  font-size: 38px;          
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: 0;         
  color: #111827;
  max-width: 440px;          
}
.np-why-subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: #000000;
  margin: 0;
  max-width: 440px;
}
.np-why-subtitle-highlight {
  color: #e34b4b; 
  font-weight: 600;
}
.np-why-points {
  margin-top: 40px; 
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px; 
}
.np-why-point {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 16px;
  align-items: center;
  padding-right: 8px;  
}
.np-why-point-icon img {
  width: 28px;
  height: 28px;
  display: block;
}
.np-why-point-text {
  font-size: 12px;          
  line-height: 1.7;
  color: #6b7280;           
  max-width: 320px;
}
.np-why-right {
  flex: 1;
  display: flex;
  justify-content: flex-start;  
}
.np-why-comparison {
  width: 100%;
  max-width: 640px;   
  position: relative;
}
.np-why-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1.4fr) minmax(0, 1.3fr);
  
}
.np-why-line-cell {
  border-top: 1px solid #d2d7e3;
}
.np-why-row-header .np-why-line-cell {
  border-top: none;
}
.np-why-cell-card {
  background-color: #0e1a2a; 
  color: #ffffff;
}
.np-why-card-header {
  border-radius: 28px 28px 0 0;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  padding: 24px 28px;
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.25);
}
.np-why-row:not(.np-why-row-header):not(.np-why-row-pattern) .np-why-cell-card {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.np-why-cell-card-last {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.np-why-cell-plain {
  background: transparent;
  color: #9ca3af;
}
.np-why-no-header {
  font-weight: 600;
  font-size: 18px; 
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;   
  text-align: center;
}
.np-why-row:not(.np-why-row-header):not(.np-why-row-pattern) .np-why-cell-plain {
  border-top: 1px solid #d2d7e3;
}
.np-why-cell-plain-last {
  border-bottom: 1px solid #d2d7e3;
}
.np-why-cell {
  position: relative;
}
.np-why-cell-content {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  padding: 16px 24px 16px 24px;
}
.np-why-cell-card .np-why-cell-content {
  justify-content: center;   
}
.np-why-cell-plain .np-why-cell-content {
  padding: 16px 24px 16px 40px;
}
.np-why-status-icon img {
  width: 15px;   
  height: 15px;
  display: block;
}
.np-why-status-icon-cross img {
  opacity: 0.7;
}
.np-why-cell-text {
  font-size: 12px;      
  line-height: 1.6;
}
.np-why-cell-plain-last .np-why-cell-content {
  display: flex;              
  align-items: center;        
  justify-content: center;    
  padding: 16px 24px;         
}
.np-why-cell-text-dash {
  font-size: 18px;
  letter-spacing: 0.35em;
  color: #d2d7e3;
  display: inline-block;
}
.np-why-row-pattern {
  grid-template-columns: 48px minmax(0, 1.4fr) minmax(0, 1.3fr);
}
.np-why-card-pattern {
  padding: 0;
  border-radius: 0 0 28px 28px;
  overflow: hidden;
}
.np-why-pattern img {
  display: block;
  width: 100%;
  height: 72px;            
  object-fit: cover;
}
.np-why-no-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.np-why-bottom-dash {
  width: 40px;
  height: 2px;
  background-color: #d2d7e3;
  margin-left: 32px;
}
.np-why-row:nth-of-type(2) .np-why-cell-plain .np-why-cell-content {
  padding-top: 22px;
  padding-bottom: 22px;
}
@media (max-width: 960px) {
  .np-why-inner {
    flex-direction: column;
    gap: 40px;
  }
  .np-why-right {
    justify-content: flex-start;
  }
  .np-why-comparison {
    max-width: 100%;
  }
  .np-why-title {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .np-why-section {
    padding: 40px 8px;                 
  }
  .np-why-left {
    padding-left: 8px;    
  }
  .np-why-inner {
    gap: 28px;
  }
  .np-why-right {
    justify-content: center;           
  }
  .np-why-comparison {
    max-width: 100%;
  }
  .np-why-row {
    grid-template-columns: 12px minmax(0, 1.7fr) minmax(0, 1.7fr);
  }
  .np-why-card-header {
    font-size: 15px;
    padding: 18px 16px;
  }
  .np-why-no-header {
    font-size: 13px;
    padding: 18px 0;
  }
  .np-why-cell-content {
    grid-template-columns: 14px minmax(0, 1fr);
    column-gap: 8px;
    padding: 10px 10px;
  }
  .np-why-cell-plain .np-why-cell-content {
    padding: 10px 10px 10px 22px;
  }
  .np-why-status-icon img {
    width: 12px;
    height: 12px;
  }
  .np-why-cell-text {
    font-size: 10px;
    line-height: 1.45;
  }
  .np-why-row:nth-of-type(2) .np-why-cell-plain .np-why-cell-content {
    padding-top: 16px;
    padding-bottom: 16px;
  }  
  .np-why-cell-card .np-why-cell-content {
    max-width: 260px;   
    margin: 0 auto;     
  }
  .np-why-row:nth-of-type(3) .np-why-cell-plain .np-why-cell-content {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.np-why-section--pengalihan
  .np-why-row:nth-of-type(3) .np-why-cell-plain {
  display: flex;
  align-items: center;
}
.np-why-section--pengalihan
  .np-why-row:nth-of-type(3) .np-why-cell-plain .np-why-cell-content {
  padding-top: 8px;
  padding-bottom: 12px;
}
.np-why-section--pengalihan
  .np-why-row:nth-of-type(4) .np-why-cell-plain,
.np-why-section--pengalihan
  .np-why-row:nth-of-type(5) .np-why-cell-plain {
  display: flex;
  align-items: center;
  justify-content: center;
}
.np-why-section--pengalihan
  .np-why-row:nth-of-type(4) .np-why-cell-plain .np-why-cell-content,
.np-why-section--pengalihan
  .np-why-row:nth-of-type(5) .np-why-cell-plain .np-why-cell-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
}
@media (max-width: 640px) {
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(2) .np-why-cell-card,
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(2) .np-why-cell-plain {
    display: flex;
    align-items: center;
  }
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(2) .np-why-cell-card .np-why-cell-content,
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(2) .np-why-cell-plain .np-why-cell-content {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(3) .np-why-cell-card,
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(3) .np-why-cell-plain {
    display: flex;
    align-items: center;
  }
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(3) .np-why-cell-card .np-why-cell-content,
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(3) .np-why-cell-plain .np-why-cell-content {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(4) .np-why-cell-plain,
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(5) .np-why-cell-plain {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(4) .np-why-cell-plain .np-why-cell-content,
  .np-why-section--pengalihan
    .np-why-row:nth-of-type(5) .np-why-cell-plain .np-why-cell-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
  }
}

#merek-statement .merek-card {
  border-radius:24px;
}
@media (min-width:640px) {
  #merek-statement .merek-card {
    border-radius:36px;
  }
}
#merek-statement .merek-text-desktop { display:none; }
#merek-statement .merek-text-mobile { display:block; }
@media (min-width:640px) {
  #merek-statement .merek-text-desktop { display:block; }
  #merek-statement .merek-text-mobile { display:none; }
}
#pengalihan-flow {
  background-color:#f6f9fe;
}
.pengalihan-flow-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 26px 16px 40px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pengalihan-flow-inner::-webkit-scrollbar {
  display:none;
}
.pengalihan-flow-card {
  position: relative;
  background:#ebebeb;
  border-radius:14px;
  border:1.5px solid rgba(255,255,255,0.95);
  box-shadow:0 0px 40px rgba(15,23,42,0.1);
  padding:14px 18px 12px;
  min-width:190px;
  max-width:190px;
  flex: 0 0 auto;
}
.pengalihan-flow-top {
  display:flex;
  align-items:center;
  gap:12px;
}
.pengalihan-flow-icon {
  width:44px;
  height:44px;
  border-radius:8px;
  background:#0e1a2a;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.pengalihan-flow-icon img {
  max-width:24px;
  max-height:24px;
  display:block;
}
.pengalihan-flow-lines {
  flex:1;
}
.pengalihan-flow-line {
  display:block;
  background:#d7d7d7;
  border-radius:6px;
}
.pengalihan-flow-line--long {
  height:8px;
  width:100%;
  margin-bottom:7px;
}
.pengalihan-flow-line--short {
  height:8px;
  width:70%;
}
.pengalihan-flow-divider {
  height:1px;
  background:#c2c2c2;
  margin:10px 0 8px;
}
.pengalihan-flow-label {
  font-size:12px;
  font-weight:700;
  color:#111827;
}
.pengalihan-flow-accent {
  position:absolute;
  top:-10px;
  right:-8px;
  width:26px;
  height:26px;
}
.pengalihan-flow-arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pengalihan-flow-arrow-circle {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.55);
  background: #f6f9fe;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0px 30px rgba(15,23,42,0.18);
}
.pengalihan-flow-arrow-circle::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0e1a2a;
  border-top: 2px solid #0e1a2a;
  transform: rotate(45deg);
}
@media (max-width:640px) {
  .pengalihan-flow-inner {
    padding: 18px 8px 26px;
    gap: 1.2vw;
    overflow-x: visible;
  }
  .pengalihan-flow-card {
    flex: 0 0 24vw;
    min-width: 0;
    max-width: none;
    padding: 6px 6px 5px;
    border-radius: 8px;
    box-shadow: 0 0 18px rgba(15,23,42,0.08);
  }
  .pengalihan-flow-top {
    gap: 6px;
  }
  .pengalihan-flow-icon {
    width: 7.6vw;
    height: 7.6vw;
    max-width: 28px;
    max-height: 28px;
    border-radius: 5px;
  }
  .pengalihan-flow-icon img {
    max-width: 70%;
    max-height: 70%;
  }
  .pengalihan-flow-line--long {
    height: 4px;
    margin-bottom: 3px;
  }
  .pengalihan-flow-line--short {
    height: 3px;
  }
  .pengalihan-flow-divider {
    margin: 6px 0 4px;
  }
  .pengalihan-flow-label {
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
  }
  .pengalihan-flow-arrow {
    flex: 0 0 5vw;
  }
  .pengalihan-flow-arrow-circle {
    width: 100%;
    height: 100%;
    min-width: 16px;
    min-height: 16px;
    box-shadow: 0 0 14px rgba(15,23,42,0.14);
  }
  /* Arrow between cards */
  .pengalihan-flow-arrow {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pengalihan-flow-arrow-circle {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.55);
    background: #f6f9fe;
    display: flex;                 /* flexbox centers the arrow shape */
    align-items: center;
    justify-content: center;
    box-shadow: 0 0px 30px rgba(15,23,42,0.18);
  }
  .pengalihan-flow-arrow-circle::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-right: 2px solid #0e1a2a;
    border-top: 2px solid #0e1a2a;
    transform: rotate(45deg);
  }
  .pengalihan-flow-accent {
    width: 16px;
    height: 16px;
    top: -6px;
    right: -3px;
  }
}
#cek-merek .cekmerek-visual-wrapper {
  position: relative;
  width: 100%; 
  max-width: clamp(20rem, 38vw, 32rem);
  margin-left: auto;
  margin-right: auto;
}
#cek-merek .cekmerek-main-card {
  position: relative;
  width: 100%;
  max-width: 32rem;  
  margin-left: auto;
  margin-right: auto;
  border-radius: 0;        
  background: transparent; 
  box-shadow: none;        
  overflow: visible;       
}
@media (max-width: 640px) {
  #cek-merek .cekmerek-main-card {
    max-width: 320px;
  }
}
#cek-merek [data-cekmerek-button] {
  padding: 0.8rem 2.25rem; 
  min-width: auto;         
}
#cek-merek .cekmerek-scan-hitbox {
  position: absolute;
  top: 66.5%;
  left: 75%;          
  transform: translate(-50%, -50%);
  width: 50%;         
  height: 19%;
  pointer-events: none;
  overflow: hidden;
}
#cek-merek .cekmerek-scan-hitbox::after {
  content: "";
  position: absolute;
  top: -13%;
  bottom: -13%;
  width: 70px;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.0) 0%,   
    rgba(125, 180, 255, 0.20) 25%, 
    rgba(37, 99, 235, 0.45) 100%    
  );
  filter: blur(1px);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;  
  animation: cekmerek-scan-line 3.5s linear infinite;
}
@keyframes cekmerek-scan-line {
  0% {
    left: 0%;    
    opacity: 0;
  }
  8% {
    left: 8%;    
    opacity: 0.2;
  }
  10% {
    left: 10%;
    opacity: 0.3;    
  }
  50% {
    left: 50%;    
    opacity: 0.7;
  }
  80% {
    left: 80%;    
    opacity: 0.3;
  }
  100% {
    left: 100%;    
    opacity: 0;
  }
}
#cek-merek [data-cekmerek-form] {
  width: 100%;
}
@media (min-width: 768px) {
  #cek-merek [data-cekmerek-form] {
    max-width: 26rem; 
  }
}
@media (min-width: 1024px) {
  .np-why-section {
    padding-bottom: 3rem;  
  } 
  #cek-merek > div {
    padding-top: 3rem;     
  }
}
#cek-merek img {
  pointer-events: none;          
  -webkit-touch-callout: none;   
  -webkit-user-drag: none;       
  user-select: none;
}
.wa-bubble {
  position: fixed;
  bottom: calc(var(--wa-bottom) + 60px);
  right: var(--wa-right);
  z-index: 61;
  animation: bubbleFadeIn 0.4s ease-out;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wa-bubble.closing {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
}
.wa-bubble-content {
  position: relative;
  background: #ffffff;
  color: #1f2937;
  padding: 8px 20px 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  white-space: nowrap;
  text-align: left;
}
@media (min-width: 768px) {
  .wa-bubble-content {
    font-size: 13px;
    padding: 10px 24px 10px 14px;
    white-space: normal;
    max-width: 200px;
  }
}
.wa-bubble-close {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  color: #9ca3af;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.wa-bubble-close:hover {
  background: #f9fafb;
  border-color: rgba(0, 0, 0, 0.1);
  color: #6b7280;
  transform: scale(1.05);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}
.wa-bubble-close:active {
  transform: scale(0.95);
}
.wa-bubble-close svg {
  width: 10px;
  height: 10px;
}
.wa-bubble-close:hover {
  background: rgba(156, 163, 175, 0.1);
  color: #4b5563;
  transform: scale(1.1);
}
.wa-bubble-close:active {
  transform: scale(0.95);
}
.wa-bubble-arrow {
  position: absolute;
  bottom: -6px;
  right: 28px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.06);
}
@keyframes bubbleFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .wa-bubble,
  .wa-bubble-close {
    animation: none !important;
    transition: none !important;
  }
}
