/* =========================
   LIA DEPOK - STYLE.CSS
   (No JS, HTML + CSS + Bootstrap)
   Struktur:
   - DESKTOP / BASE (atas)
   - RESPONSIVE (bawah)
========================= */

/* =========================================================
   0) ROOT VARIABLES (DESKTOP/BASE)
========================================================= */
:root{
  --homeBg: #f5f5fa;
  --ink: #182840;
  --muted: #6b7280;
  --accent: #f09030;
  --wa: #4d9c4b;
  --navH: 110px;

  --dot: rgba(194, 198, 215, .65);
  --dotSoft: rgba(214, 216, 232, .90);
  --cardBg: #f3f4f6;

  --galBg: #fbfbfe;

  --testiLink: #6b6df0;
  --testiShadow: 0 22px 44px rgba(24,40,64,.10);
  --testiInk: rgba(24, 40, 64, .92);
  --testiMuted: rgba(24, 40, 64, .62);
  --testiLine: rgba(24, 40, 64, .14);
  --testiLineDark: #122a4a;

  --successCardW: 257.09px;
  --successCardH: 344px;
}

/* =========================================================
   1) RESET + GLOBAL (DESKTOP/BASE)
========================================================= */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: #ffffff;
  color: var(--ink);
  overflow-x: hidden;
  padding-top: var(--navH);
}

section{ scroll-margin-top: calc(var(--navH) + 10px); }

/* =========================================================
   2) NAVBAR (DESKTOP/BASE)
========================================================= */
.brand-logo{ height: 85px; width: auto; }

.navbar{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  width: 100%;
  background: rgba(245,245,250,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.nav-toggle-btn{
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  text-decoration: none;
}
.nav-toggle-btn:focus{ outline: none; box-shadow: none; }

.nav-toggle-icon{
  width: 1.6em;
  height: 1.6em;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(24, 40, 64, 0.85)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M3 7h24M3 15h24M3 23h24'/%3e%3c/svg%3e");
}

/* Link style + "tanda" (indicator) */
.navbar .nav-link{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .70);
  font-weight: 600;
  padding: .55rem .7rem;
  border-radius: 999px;
  position: relative;
  transition: color .18s ease, background-color .18s ease;
}

/* underline indicator (default hidden) */
.navbar .nav-link::after{
  content:"";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  opacity: .95;
}

/* hover */
.navbar .nav-link:hover{
  color: rgba(24, 40, 64, 1);
  background: rgba(240,144,48,.10);
}
.navbar .nav-link:hover::after{ transform: scaleX(1); }

/* fallback kalau pakai class .active / .is-active */
.navbar .nav-link.active,
.navbar .nav-link.is-active{
  color: rgba(24, 40, 64, 1);
  font-weight: 800;
  background: rgba(240,144,48,.14);
}
.navbar .nav-link.active::after,
.navbar .nav-link.is-active::after{
  transform: scaleX(1);
}

/* =========================================================
   AUTO ACTIVE (CSS ONLY) - FIX "NYANGKUT HOME"
   Pastikan href="#about" cocok dengan <section id="about">
========================================================= */
@supports selector(body:has(:target)){

  /* 1) Kalau sedang target section lain, paksa HOME kembali normal
        (meskipun Home masih punya class .active di HTML) */
  body:has(#about:target) .navbar .nav-link[href="#home"],
  body:has(#program:target) .navbar .nav-link[href="#home"],
  body:has(#metode:target) .navbar .nav-link[href="#home"],
  body:has(#pendaftaran:target) .navbar .nav-link[href="#home"],
  body:has(#galery:target) .navbar .nav-link[href="#home"],
  body:has(#testi:target) .navbar .nav-link[href="#home"],
  body:has(#konsul:target) .navbar .nav-link[href="#home"]{
    color: rgba(24, 40, 64, .70);
    font-weight: 600;
    background: transparent;
  }
  body:has(#about:target) .navbar .nav-link[href="#home"]::after,
  body:has(#program:target) .navbar .nav-link[href="#home"]::after,
  body:has(#metode:target) .navbar .nav-link[href="#home"]::after,
  body:has(#pendaftaran:target) .navbar .nav-link[href="#home"]::after,
  body:has(#galery:target) .navbar .nav-link[href="#home"]::after,
  body:has(#testi:target) .navbar .nav-link[href="#home"]::after,
  body:has(#konsul:target) .navbar .nav-link[href="#home"]::after{
    transform: scaleX(0);
  }

  /* 2) Default aktif = HOME kalau belum ada target */
  body:not(:has(:target)) .navbar .nav-link[href="#home"]{
    color: rgba(24, 40, 64, 1);
    font-weight: 800;
    background: rgba(240,144,48,.14);
  }
  body:not(:has(:target)) .navbar .nav-link[href="#home"]::after{
    transform: scaleX(1);
  }

  /* 3) Aktif sesuai target */
  body:has(#home:target) .navbar .nav-link[href="#home"],
  body:has(#about:target) .navbar .nav-link[href="#about"],
  body:has(#program:target) .navbar .nav-link[href="#program"],
  body:has(#metode:target) .navbar .nav-link[href="#metode"],
  body:has(#pendaftaran:target) .navbar .nav-link[href="#pendaftaran"],
  body:has(#galery:target) .navbar .nav-link[href="#galery"],
  body:has(#testi:target) .navbar .nav-link[href="#testi"],
  body:has(#konsul:target) .navbar .nav-link[href="#konsul"]{
    color: rgba(24, 40, 64, 1);
    font-weight: 800;
    background: rgba(240,144,48,.14);
  }

  body:has(#home:target) .navbar .nav-link[href="#home"]::after,
  body:has(#about:target) .navbar .nav-link[href="#about"]::after,
  body:has(#program:target) .navbar .nav-link[href="#program"]::after,
  body:has(#metode:target) .navbar .nav-link[href="#metode"]::after,
  body:has(#pendaftaran:target) .navbar .nav-link[href="#pendaftaran"]::after,
  body:has(#galery:target) .navbar .nav-link[href="#galery"]::after,
  body:has(#testi:target) .navbar .nav-link[href="#testi"]::after,
  body:has(#konsul:target) .navbar .nav-link[href="#konsul"]::after{
    transform: scaleX(1);
  }
}

.nav-spacer{ width: 54px; }

/* =========================================================
   MENU WITHOUT JS (:target)
========================================================= */
.nav-panel{
  display: flex;
  align-items: center;
}
.menu-backdrop{ display: none; }
.nav-close-link{ color: var(--ink); }

/* =========================================================
   DESKTOP SHIFT (>= 992px)
========================================================= */
@media (min-width: 992px){
  .navbar .navbar-nav{ transform: translateX(240px); }
}

/* =========================================================
   MOBILE MENU (<= 991.98px)
========================================================= */
@media (max-width: 991.98px){
  .nav-panel{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245,245,250,.98);
    backdrop-filter: blur(10px);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 30px rgba(24,40,64,.12);
    padding: 12px 16px 16px;
    max-height: calc(100vh - var(--navH));
    overflow: auto;
    z-index: 1051;
  }

  #menu:target{ display: block; }

  #menu:target .navbar-nav{
    gap: 6px !important;
    transform: none !important;
  }

  #menu:target ~ .menu-backdrop{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: transparent;
  }

  .navbar .nav-link{
    border-radius: 14px;
    padding: .7rem .85rem;
  }
  .navbar .nav-link::after{
    left: 14px;
    right: 14px;
    bottom: 8px;
  }
}


/* =========================================================
   3) HERO (DESKTOP/BASE)
========================================================= */
.hero-wrap{
  position: relative;
  padding: 3px 0 3px;
  background: var(--homeBg);
  overflow: hidden;
}

.hero-title{
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: .92;
  letter-spacing: -1.1px;
}

.hero-line-top{
  display: block;
  font-weight: 600;
  white-space: nowrap;
  font-size: clamp(44px, 4.0vw, 64px);
  letter-spacing: -1px;
}
.hero-line-top .accent{
  color: var(--accent);
  font-weight: inherit;
}

.hero-title-strong{
  display: block;
  font-weight: 600;
  white-space: nowrap;
  font-size: clamp(64px, 5.8vw, 96px);
  margin-top: 6px;
  letter-spacing: -1.7px;
}

.hero-desc{
  font-family: "Montserrat", sans-serif;
  max-width: 610px;
  color: var(--muted);
  font-size: 13.3px;
  line-height: 1.7;
  font-weight: 500;
}

.btn-cta{
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(240, 144, 48, .25);
}
.btn-cta:hover{ background: #ea8622; color: #fff; }

.hero-visual{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-stack{
  position: relative;
  margin-left: 110px;
  display: inline-block;
  isolation: isolate;
}
.hero-dots{
  position: absolute;
  right: -20px;
  top: 40px;
  width: 260px;
  height: 520px;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(168, 175, 192, .45) 0 12px, transparent 13px);
  background-size: 86px 86px;
  background-position: 18px 22px;
}
.hero-vector-bg{
  position: absolute;
  height: 476px;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 476px;
  z-index: 1;
  pointer-events: none;
}
.hero-person{
  position: relative;
  z-index: 3;
  max-height: 690px;
  width: auto;
  display: block;
}

@keyframes floatLeft { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-15px)} }
@keyframes floatRight { 0%,100%{transform:translateY(-50%)} 50%{transform:translateY(calc(-50% - 15px))} }

.hero-icon-left{
  position: absolute;
  width: 230px;
  height: 230px;
  left: -100px;
  top: 80px;
  z-index: 2;
  animation: floatLeft 3s ease-in-out infinite;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.12));
}
.hero-icon-right{
  position: absolute;
  width: 230px;
  height: 230px;
  right: -70px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  animation: floatRight 3.5s ease-in-out infinite;
  animation-delay: 0.5s;
  filter: drop-shadow(0 8px 14px rgba(0,0,0,.12));
}

.hero-icon-mobile{ display: none; }

/* =========================================================
   4) ABOUT V1 (DESKTOP/BASE)
========================================================= */
.about-wrap{
  padding: 70px 0 60px;
  background: #ffffff;
}

.about-eyebrow{
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .8px;
  margin-bottom: 10px;
  font-size: 24px;
}

.about-title{
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.05;
  margin: 0 0 46px;
}

.about-card{
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(24,40,64,.08);
  padding: 22px 22px 26px;
  height: 100%;
}

.about-img{
  border-radius: 22px;
  overflow: hidden;
  background: #f3f4f6;
  margin-bottom: 18px;
}

.about-img img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.about-card h3{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin: 8px auto 12px;
  width: min(387px, 100%);
  text-align: center;
  color: rgba(24, 40, 64, .92);
}

.about-card p{
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  width: min(323px, 100%);
  margin: 0 auto;
  color: rgba(24, 40, 64, .70);

  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;

  word-spacing: normal;
  letter-spacing: 0;

  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
}

.about-dots{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.about-dots span{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(107,114,128,.25);
}

.about-dots span.active{
  width: 22px;
  height: 22px;
  background: rgba(107,114,128,.35);
}

/* =========================================================
   5) PROGRAM V1 (DESKTOP/BASE)
========================================================= */
.program-wrap{
  padding: 70px 0 70px;
  background: #ffffff;
}

.program-title{
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .8px;
  margin: 0 0 28px;
  font-size: 40px;
}

.program-card{
  position: relative;
  height: 356px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(24,40,64,.12);
  background: #111;
}

.program-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.program-card::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,.62) 100%);
  z-index: 1;
}

.program-content{
  position:absolute;
  inset:0;
  z-index: 2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 18px 20px;
  color:#fff;
}

.program-name{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 10px;
  text-shadow: 0 8px 18px rgba(0,0,0,.35);
}

.program-sub{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  opacity: .92;
  margin-bottom: 14px;
}

.program-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1.7px solid rgba(255,255,255,.92);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .7px;
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(6px);
}
.program-btn:hover{
  color:#fff;
  background: rgba(0,0,0,.26);
}

/* =========================================================
   6) METODE (DESKTOP/BASE)
========================================================= */
.metode-wrap{
  padding: 92px 0;
  background: #ffffff;
}

.metode-wrap .metode-row{
  align-items: flex-start;
  --bs-gutter-x: 5rem;
}

.metode-left{
  padding-right: 28px;
  text-align: left;
}

.metode-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .9px;
  font-size: 24px;
  margin-bottom: 10px;
  text-align: left;
}

.metode-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.06;
  margin: 0;
  font-size: 40px;
  color: rgba(24, 40, 64, .92);
  text-align: left;
}

.metode-dotrow{
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 22px 0 28px;
  justify-content: flex-start;
}
.metode-dotrow span{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--dot);
}

.metode-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .70);
  font-size: 21px;
  line-height: 1.85;
  max-width: 640px;
  margin: 0;
  font-weight: 400;

  text-align: justify;
  text-justify: auto;
}

.metode-media{
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-top: 6px;
  padding-left: 26px;
}

.metode-photo-wrap{
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  height: auto;
  overflow: visible;
  background: transparent;
}

.metode-photo{
  width: 100%;
  height: auto;
  display: block;
}

/* =========================================================
   ICON OVERLAY -> LABEL (NO JS)
========================================================= */
.metode-icon-btn{
  position: absolute;
  left: -94px;
  top: 50%;
  transform: translateY(-50%);
  width: 192px;
  height: 192px;
  z-index: 2;

  background: transparent;
  cursor: pointer;
  display: block;

  filter: drop-shadow(0 14px 22px rgba(0,0,0,.16));
  -webkit-tap-highlight-color: transparent;
}

.metode-icon-btn:active{
  transform: translateY(-50%) scale(.98);
}

.metode-icon{
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* =========================================================
   POPUP VIDEO (NO JS) - CHECKBOX TRIGGER
========================================================= */
.vid-toggle{
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  left: -9999px;
  top: -9999px;
}

.vid-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

/* ✅ INI YANG MEMUNCULKAN MODAL */
.vid-toggle:checked ~ .vid-modal{
  display: block;
}

.vid-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  cursor: pointer;
}

.vid-box{
  position: relative;
  width: min(1120px, 92vw);
  height: min(80vh, 740px);
  margin: 6vh auto 0;

  border: 12px solid #fff;
  background: #0b1220;
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
}

.vid-close{
  position: absolute;
  right: -26px;
  top: -26px;

  width: 52px;
  height: 52px;
  border-radius: 999px;

  background: #111;
  border: 3px solid #fff;
  cursor: pointer;

  box-shadow: 0 10px 22px rgba(0,0,0,.35);
  -webkit-tap-highlight-color: transparent;
}

.vid-close::before,
.vid-close::after{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 3px;
  background:#fff;
  border-radius: 4px;
  transform-origin: center;
}
.vid-close::before{ transform: translate(-50%,-50%) rotate(45deg); }
.vid-close::after { transform: translate(-50%,-50%) rotate(-45deg); }

.vid-inner{
  width: 100%;
  height: 100%;
}

.vid-player{
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #0b1220;
}

/* =========================================================
   RESPONSIVE (OPSIONAL)
========================================================= */
@media (max-width: 575.98px){
  .metode-wrap{ padding: 64px 0; }

  /* ✅ rapihin posisi & area klik icon-1 di mobile */
  .metode-media{
    padding-left: 0;              /* biar frame gak “ketarik” */
    justify-content: center;      /* biar foto center */
  }

  /* ✅ icon masuk frame + aman safe-area iOS */
  .metode-icon-btn{
    left: calc(12px + env(safe-area-inset-left));
    top: 12px;                   /* <-- penting: stop di tengah */
    transform: none;             /* <-- hilangkan translateY */
    width: 76px;
    height: 76px;
    z-index: 3;                  /* pastikan di atas foto */
    display: grid;               /* klik lebih presisi & icon center */
    place-items: center;
    touch-action: manipulation;  /* tap responsif */
  }

  /* ✅ jangan loncat saat ditekan (override :active desktop) */
  .metode-icon-btn:active{
    transform: scale(.98);
  }

  .vid-box{
    width: 92vw;
    height: 60vh;
    margin: 14vh auto 0;
    border-width: 10px;
  }

  .vid-close{
    right: -18px;
    top: -18px;
    width: 44px;
    height: 44px;
  }

  .vid-close::before,
  .vid-close::after{
    width: 18px;
  }
}


/* =========================================================
   RESPONSIVE OPTIONAL (biar frame enak di HP)
========================================================= */
@media (max-width: 575.98px){
  .metode-wrap{ padding: 64px 0; }

  /* icon jangan terlalu keluar layar di HP */
  .metode-icon-btn{
    left: calc(-75px + env(safe-area-inset-left));
    top: 30px;                   /* <-- penting: rapih */
    transform: none;             /* <-- hilangkan translateY */
    width: 170px;
    height: 170px;
    z-index: 3;
    display: grid;
    place-items: center;
    touch-action: manipulation;
  }

  /* ✅ jangan loncat saat ditekan (override :active desktop) */
  .metode-icon-btn:active{
    transform: scale(.98);
  }

  .vid-box{
    width: 92vw;
    height: 60vh;
    margin: 14vh auto 0;
    border-width: 10px;
  }

  .vid-close{
    right: -18px;
    top: -18px;
    width: 44px;
    height: 44px;
  }

  .vid-close::before,
  .vid-close::after{
    width: 18px;
    height: 3px;
  }
}




/* =========================================================
   7) PENDAFTARAN (DESKTOP/BASE)
========================================================= */
.pendaftaran-wrap{
  padding: 92px 0;
  background: #ffffff;
}

.pendaftaran-left{
  padding-right: 20px;
  text-align: left;
}

.pendaftaran-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  font-size: 24px;
  margin-bottom: 10px;
}

.pendaftaran-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: .95;
  letter-spacing: -1.2px;
  margin: 0;
  color: #0b0b0b;
  font-size: 40px;
}

.pendaftaran-dotrow{
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 28px 0 44px;
  justify-content: flex-start;
}
.pendaftaran-dotrow span{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--dotSoft);
}

.pendaftaran-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .70);
  font-size: 20px;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 0 34px;
  font-weight: 500;

  letter-spacing: 0;
  word-spacing: normal;

  text-align: justify;
  text-justify: auto;
  text-align-last: auto;

  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.pendaftaran-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  padding: 18px 42px;
  border-radius: 14px;
  box-shadow: 0 16px 28px rgba(240,144,48,.25);
}
.pendaftaran-btn:hover{ background:#ea8622; color:#fff; }

.pendaftaran-grid{
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 18px;
  align-items: stretch;
}

.step-card{
  background: var(--cardBg);
  border-radius: 20px;
  padding: 28px 26px;
  min-height: 190px;
}

.step-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin: 0 0 14px;
  color: #0b0b0b;
}

.step-text{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(24, 40, 64, .70);
  max-width: 260px;
}

.step-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.step-arrow img{
  width: 22px;
  height: auto;
  display: block;
}

/* =========================================================
   8) GALERY (DESKTOP/BASE)
========================================================= */
.galery-wrap{
  padding: 74px 0 92px;
  background: var(--galBg);
}

.galery-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 26px;
  align-items: stretch;
}

.galery-item{
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  background: #e9edf7;
  box-shadow: 0 18px 34px rgba(24,40,64,.08);
}

.galery-link{
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  outline: none;
}

.galery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform .28s ease, filter .28s ease;
}

.galery-link:hover img{
  transform: scale(1.05);
  filter: saturate(1.06);
}

.galery-item--a{ grid-column: 1; grid-row: 1 / span 2; }
.galery-item--b{ grid-column: 2; grid-row: 1; }
.galery-item--c{ grid-column: 3; grid-row: 1; }
.galery-item--d{ grid-column: 2 / span 2; grid-row: 2; }

/* =========================================================
   GALERY POPUP (CSS-only :target)
========================================================= */
.galery-popup{
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

/* tampil saat diklik */
.galery-popup:target{
  opacity: 1;
  pointer-events: auto;
}

.galery-popup-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 24, .66);
  backdrop-filter: blur(6px);
}

.galery-popup-card{
  position: relative;
  width: min(980px, 92vw);
  height: min(82vh, 720px);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
  transform: translateY(10px) scale(.98);
  transition: transform .22s ease;
}

.galery-popup:target .galery-popup-card{
  transform: translateY(0) scale(1);
}

.galery-popup-card img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ biar gambar tidak kepotong */
  display: block;
  background: rgba(0,0,0,.35);
}

.galery-popup-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 26px;
  line-height: 1;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.18);
}

/* =========================================================
   9) TESTIMONIAL (DESKTOP/BASE)
========================================================= */
.testi-wrap{
  padding: 92px 0 78px;
  background: #ffffff;
  position: relative;
}

.testi-eyebrow{
  text-align: center;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
}

.testi-title{
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.06;
  margin: 0 0 48px;
  color: var(--testiInk);
  font-family: "Montserrat", sans-serif;
}

.testi-scroller{
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding: 12px 8px 26px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-scroller::-webkit-scrollbar{ display:none; }

.testi-card{
  flex: 0 0 auto;
  width: 467px;
  height: 334px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--testiShadow);
  border: 1px solid rgba(24,40,64,.06);
  padding: 24px 26px 24px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}
.testi-card:target{ outline: none; }

.testi-head{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testi-avatar{
  width: 62px;
  height: 62px;
  border-radius: 16px;
  object-fit: cover;
  background: #eef1f7;
  flex: 0 0 auto;
}

.testi-name{
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: var(--testiInk);
  font-family: "Montserrat", sans-serif;
  line-height: 1.1;
}

.testi-meta{
  margin-top: 6px;
  font-weight: 600;
  color: var(--testiLink);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

.testi-stars{
  font-size: 18px;
  letter-spacing: 6px;
  color: var(--accent);
  margin: 2px 0 12px;
}

.testi-text{
  margin: 0;
  color: var(--testiMuted);
  font-size: 14.5px;
  line-height: 1.85;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;

  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;

  letter-spacing: 0;
  word-spacing: normal;

  hyphens: auto;
  -webkit-hyphens: auto;

  overflow-wrap: normal;
  word-break: normal;

  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.testi-ui{ margin-top: 26px; }

.testi-controls{
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.testi-wrap .controls-1{ display:flex; }

.testi-wrap:has(#testi-2:target) .testi-controls{ display:none; }
.testi-wrap:has(#testi-2:target) .controls-2{ display:flex; }

.testi-wrap:has(#testi-3:target) .testi-controls{ display:none; }
.testi-wrap:has(#testi-3:target) .controls-3{ display:flex; }

.testi-progress{
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--testiLine);
  overflow: hidden;
  max-width: 760px;
}

.testi-progress-fill{
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--fill, 33%);
  background: var(--testiLineDark);
}

.testi-arrows{
  display: inline-flex;
  gap: 14px;
  flex: 0 0 auto;
}

.testi-btn{
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  color: #0b1d33;
  background: #e9edf7;
  box-shadow: 0 12px 22px rgba(24,40,64,.10);
}

.testi-btn.is-primary{
  background: #0b1d33;
  color: #fff;
}

.testi-btn.is-disabled{
  opacity: .55;
  pointer-events: none;
}

/* =========================================================
   10) KONSULTASI (DESKTOP/BASE)
========================================================= */
.konsul-wrap{
  padding: 84px 0 96px;
  background: #ffffff;
  text-align: center;
}

.konsul-eyebrow{
  font-family: "Montserrat", sans-serif;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 24px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.konsul-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: rgba(24, 40, 64, .92);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  font-size: 40px;
  line-height: 1.05;
}

.konsul-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .60);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.65;
  max-width: 920px;
  margin: 0 auto 38px;
}

.konsul-form{
  max-width: 1180px;
  margin: 0 auto;
}

.konsul-row-1{
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 0.95fr;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.konsul-row-2{
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: stretch;
}

.konsul-field{ width: 100%; }

.konsul-input{
  width: 100%;
  height: 68px;
  border-radius: 22px;
  border: 1.8px solid var(--accent);
  padding: 0 26px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: #fff;
  outline: none;
}

.konsul-input::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.konsul-input:focus{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.konsul-phone{
  width: 100%;
  height: 68px;
  display: grid;
  grid-template-columns: 96px 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1.8px solid var(--accent);
  background: #fff;
  position: relative;
}

.konsul-phone::after{
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 96px;
  width: 1.8px;
  background: var(--accent);
}

.konsul-phone:focus-within{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.konsul-phone-prefix{
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.konsul-phone-input{
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  padding: 0 22px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: transparent;
}

.konsul-phone-input::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.konsul-btn{
  height: 68px;
  border-radius: 22px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .2px;
  box-shadow: 0 18px 32px rgba(240,144,48,.20);
}
.konsul-btn:hover{ filter: brightness(0.98); }

/* =========================================================
   11) FOOTER (DESKTOP/BASE)
========================================================= */
.footer-wrap{
  background: var(--homeBg);
  padding: 92px 0 84px;
}

.footer-row{
  --bs-gutter-x: 5.2rem;
  --bs-gutter-y: 2.6rem;
  align-items: start;
}

.footer-left{
  height: 100%;
  display: flex;
  flex-direction: column;
}

.footer-title,
.footer-col-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0b0b0b;
  margin: 0 0 18px;
  font-size: 25px;
  letter-spacing: -0.4px;
}

.footer-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .52);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
  max-width: 720px;

  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;

  letter-spacing: 0;
  word-spacing: normal;

  hyphens: auto;
  -webkit-hyphens: auto;

  overflow-wrap: normal;
  word-break: normal;
}

.footer-nav{
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 22px;
}

.footer-nav a{
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  color: rgba(24, 40, 64, .62);
  font-weight: 500;
  font-size: 15px;
}
.footer-nav a:hover{ color: rgba(24, 40, 64, .92); }

.footer-map{
  margin-top: 8px;
  border-radius: 16px;
  overflow: hidden;
  background: #e9edf7;
  box-shadow: 0 16px 30px rgba(24,40,64,.08);
}

.footer-map iframe{
  display: block;
  width: 100%;
  height: 230px;
  border: 0;
}

.footer-contact{
  margin-top: 16px;
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .58);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.55;
}

.footer-address{
  max-width: 520px;
  font-size: 15px;
}

/* =========================================================
   SOCIAL
========================================================= */
.footer-social{
  margin-top: auto;
  padding-top: 58px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--accent);
  width: 60px;          /* ✅ dibuat konsisten ring */
  height: 60px;
  border-radius: 999px; /* ✅ semua jadi lingkaran */
  border: 1.8px solid rgba(240,144,48,.85);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.social-link svg{
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ✅ class ring tetap ada, tapi sekarang default social-link sudah ring */
.social-link--ring{
  border: 1.8px solid rgba(240,144,48,.85);
}

/* (opsional) kalau masih ada class plain di tempat lain, bikin plain benar2 tanpa ring */
.social-link--plain{
  width: auto;
  height: auto;
  padding: 6px;
  border: 0;
  border-radius: 12px;
}

/* hover/focus */
.social-link:hover{
  transform: translateY(-2px);
  background: rgba(240,144,48,.08);
  box-shadow: 0 18px 34px rgba(24,40,64,.10);
}

.social-link:focus{
  outline: none;
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

/* =========================================================
   12) WA FLOAT (DESKTOP/BASE)
========================================================= */
.wa-float{
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 1100;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--wa);
  color: #fff;
  padding: 16px 22px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 30px rgba(0,0,0,.18);
}
.wa-float:hover{ color: #fff; filter: brightness(0.98); }

.wa-icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.95);
  border-radius: 999px;
}
.wa-text{ letter-spacing: .6px; }

/* =========================================================
   13) POPUP FORM (:target) (DESKTOP/BASE)
========================================================= */
.wa-popup{
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.wa-popup:target{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wa-popup-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .35);
  backdrop-filter: blur(3px);
}

.wa-popup-card{
  position: relative;
  width: min(1220px, 100%);
  background: #fff;
  border-radius: 34px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
  padding: 54px 54px 40px;
  z-index: 1;
  transform: translateY(10px) scale(.985);
  transition: transform .22s ease;
}

.wa-popup:target .wa-popup-card{
  transform: translateY(0) scale(1);
}

.wa-popup-close{
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 32px rgba(240,144,48,.22);
}
.wa-popup-close:hover{ color:#fff; filter: brightness(.98); }

.wa-popup-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.wa-popup-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 10px;
}

.wa-popup-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: rgba(24, 40, 64, .92);
  margin: 0 0 14px;
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 1.08;
}

.wa-popup-desc{
  font-family: "Montserrat", sans-serif;
  color: rgba(24, 40, 64, .60);
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.wa-popup-row{
  display: grid;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.wa-popup-row-1{ grid-template-columns: 1.35fr 1.05fr 0.9fr; }
.wa-popup-row-2{ grid-template-columns: 1fr 1fr; }
.wa-popup-row-3{
  grid-template-columns: 1fr 360px;
  margin-bottom: 0;
}

.wa-popup-control{
  width: 100%;
  height: 72px;
  border-radius: 22px;
  border: 1.8px solid var(--accent);
  padding: 0 26px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: #fff;
  outline: none;
}

.wa-popup-control::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.wa-popup-control:focus{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.wa-popup-select{
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(24,40,64,.55) 50%),
    linear-gradient(135deg, rgba(24,40,64,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.wa-popup-phone{
  width: 100%;
  height: 72px;
  display: grid;
  grid-template-columns: 96px 1fr;
  border-radius: 22px;
  overflow: hidden;
  border: 1.8px solid var(--accent);
  background: #fff;
  position: relative;
}

.wa-popup-phone::after{
  content:"";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 96px;
  width: 1.8px;
  background: var(--accent);
}

.wa-popup-phone:focus-within{
  box-shadow: 0 0 0 6px rgba(240,144,48,.14);
}

.wa-popup-phone-prefix{
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.wa-popup-phone-input{
  width: 100%;
  border: 0;
  outline: none;
  padding: 0 22px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(24, 40, 64, .85);
  background: transparent;
}

.wa-popup-phone-input::placeholder{
  color: rgba(24, 40, 64, .42);
  font-weight: 600;
}

.wa-popup-submit{
  height: 72px;
  border-radius: 22px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .2px;
  box-shadow: 0 18px 32px rgba(240,144,48,.20);
}
.wa-popup-submit:hover{ filter: brightness(.98); }

/* =========================================================
   14) DETAIL PAGE (DESKTOP/BASE) [DUPLIKAT DIPERTAHANKAN]
========================================================= */
body.detail-page{
  padding-top: 0 !important;
  margin: 0 !important;
  background: #fff;
  overflow-x: hidden;
}

body.detail-page #close{
  display:block;
  width:0;
  height:0;
  overflow:hidden;
}

body.detail-page .detail-hero{
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 86px 0 78px;
  margin: 0 !important;
  background: #0b1d33;
}

body.detail-page .detail-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.06);
  z-index: 0;
}

body.detail-page .detail-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255,138,0,.70) 0%,
    rgba(255,94,4,.70) 100%
  );
}

body.detail-page .detail-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
}

body.detail-page .detail-hero-title{
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  font-size: clamp(44px, 5.2vw, 78px);
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

body.detail-page .detail-hero-sub{
  margin: 0 0 34px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
}

body.detail-page .detail-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 14px;
  background: #0b1d33;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 16px 28px rgba(11,29,51,.25);
}
body.detail-page .detail-hero-btn:hover{
  color:#fff;
  background:#081528;
}

body.detail-page .detail-hero-badge{
  width: 298px;
  height: 372px;
  object-fit: contain;
  max-width: none;
  margin-left: auto;
  margin-top: 90px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

body.detail-page .detail-body{
  background:#fff;
  padding: 92px 0 86px !important;
}

body.detail-page .detail-photo{
  border-radius: 46px;
  overflow: hidden;
  background: #eef1f7;
  box-shadow: 0 20px 40px rgba(24,40,64,.10);
}
body.detail-page .detail-photo img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

body.detail-page .detail-h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px;
  line-height: 1.12;
  font-size: clamp(28px, 2.5vw, 44px);
}

body.detail-page .detail-section-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(17,24,39,.78);
  margin: 18px 0 10px;
  font-size: 18px;
}

body.detail-page .detail-lead{
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.75;
  margin: 0 0 18px;
  font-size: 16px;
}

body.detail-page .detail-list{
  margin: 0 0 18px;
  padding-left: 22px;
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 16px;
}
body.detail-page .detail-list li{ margin: 6px 0; }

body.detail-page .detail-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

body.detail-page .detail-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  background: var(--accent, #f09030);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(240,144,48,.20);
}
body.detail-page .detail-btn-primary:hover{ color:#fff; filter: brightness(.98); }

body.detail-page .detail-btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  border: 2px solid rgba(240,144,48,.85);
  color: var(--accent, #f09030);
  text-decoration: none;
  font-weight: 800;
  background: #fff;
}
body.detail-page .detail-btn-outline:hover{ background: rgba(240,144,48,.08); }

/* =========================================================
   14B) DETAIL PAGE (DESKTOP/BASE) [DUPLIKAT DIPERTAHANKAN]
========================================================= */
body.detail-page{
  padding-top: 0 !important;
  margin: 0 !important;
  background: #fff;
  overflow-x: hidden;
}

body.detail-page #close{
  display:block;
  width:0;
  height:0;
  overflow:hidden;
}

body.detail-page .detail-hero{
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 86px 0 78px;
  margin: 0 !important;
  background: #0b1d33;
}

body.detail-page .detail-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(.95) contrast(1.06);
  z-index: 0;
}

body.detail-page .detail-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255,138,0,.70) 0%,
    rgba(255,94,4,.70) 100%
  );
}

body.detail-page .detail-hero-inner{
  position: relative;
  z-index: 2;
  width: 100%;
}

body.detail-page .detail-hero-title{
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -1.2px;
  margin: 0 0 18px;
  font-size: clamp(44px, 5.2vw, 78px);
  text-shadow: 0 10px 24px rgba(0,0,0,.18);
}

body.detail-page .detail-hero-sub{
  margin: 0 0 26px;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
}

body.detail-page .detail-hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 12px;
  background: #0b1d33;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 16px 28px rgba(11,29,51,.25);
}
body.detail-page .detail-hero-btn:hover{ color:#fff; background:#081528; }

body.detail-page .detail-hero-badge{
  width: 298px;
  height: 372px;
  object-fit: contain;
  max-width: none;
  margin-left: auto;
  margin-top: 90px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.18));
}

body.detail-page .detail-hero-wa{
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #3f8d46;
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 18px 30px rgba(0,0,0,.22);
}
body.detail-page .detail-hero-wa:hover{ color:#fff; filter: brightness(.98); }

body.detail-page .detail-hero-wa-ic{
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 10px;
}

body.detail-page .detail-hero-wa-tx{ font-size: 12px; }

body.detail-page .detail-body{
  background:#fff;
  padding: 92px 0 86px !important;
}

body.detail-page .detail-photo{
  border-radius: 46px;
  overflow: hidden;
  background: #eef1f7;
  box-shadow: 0 20px 40px rgba(24,40,64,.10);
}
body.detail-page .detail-photo img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

body.detail-page .detail-h2{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111827;
  margin: 0 0 18px;
  line-height: 1.12;
  font-size: clamp(28px, 2.5vw, 44px);
}

body.detail-page .detail-section-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: rgba(17,24,39,.78);
  margin: 18px 0 10px;
  font-size: 18px;
}

body.detail-page .detail-lead{
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.75;
  margin: 0 0 18px;
  font-size: 16px;
}

body.detail-page .detail-list{
  margin: 0 0 18px;
  padding-left: 22px;
  color: rgba(17,24,39,.68);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.8;
  font-size: 16px;
}
body.detail-page .detail-list li{ margin: 6px 0; }

body.detail-page .detail-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

body.detail-page .detail-btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  background: var(--accent, #f09030);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(240,144,48,.20);
}
body.detail-page .detail-btn-primary:hover{ color:#fff; filter: brightness(.98); }

body.detail-page .detail-btn-outline{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 18px;
  border: 2px solid rgba(240,144,48,.85);
  color: var(--accent, #f09030);
  text-decoration: none;
  font-weight: 800;
  background: #fff;
}
body.detail-page .detail-btn-outline:hover{ background: rgba(240,144,48,.08); }

/* =========================================================
   15) ONLINE REGISTRATION POPUP (:target) (DESKTOP/BASE)
========================================================= */
body.detail-page .reg-modal{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}
body.detail-page .reg-modal:target{ display: block; }

body.detail-page .reg-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
}

body.detail-page:has(.reg-modal:target){ overflow: hidden; }

body.detail-page .reg-page{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 0 0 3px rgba(71,116,184,.65);
}

body.detail-page .reg-shell{
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 22px;
}

body.detail-page .reg-top{
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

body.detail-page .reg-shell--top{
  height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

body.detail-page .reg-logo img{
  height: 44px;
  width: auto;
  display: block;
}

body.detail-page .reg-home-link{
  justify-self: end;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(17,24,39,.80);
  text-decoration: none;
}
body.detail-page .reg-home-link:hover{ text-decoration: underline; }

body.detail-page .reg-band{
  background: #4774b8;
  padding: 26px 16px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

body.detail-page .reg-band h2{
  margin: 0;
  text-align: center;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  font-size: clamp(26px, 2.1vw, 40px);
  text-shadow: 0 3px 0 rgba(0,0,0,.18);
}

body.detail-page .reg-body{
  flex: 1;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 44px 16px;
}

body.detail-page .reg-card{
  width: min(520px, 92vw);
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
  padding: 22px 22px 18px;
}

body.detail-page .reg-card-title{
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: rgba(17,24,39,.78);
}

body.detail-page .reg-select,
body.detail-page .reg-input{
  height: 44px;
  border-radius: 2px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: rgba(17,24,39,.85);
  margin-bottom: 10px;
  box-shadow: none !important;
}

body.detail-page .reg-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 6px;
}

body.detail-page .reg-note{
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(17,24,39,.80);
}

body.detail-page .reg-note a{
  color: #4774b8;
  font-weight: 500;
  text-decoration: none;
}
body.detail-page .reg-note a:hover{ text-decoration: underline; }

body.detail-page .reg-ok{
  width: 58px;
  height: 44px;
  border: 0;
  border-radius: 2px;
  background: #4774b8;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}
body.detail-page .reg-ok:hover{ filter: brightness(.95); }

body.detail-page .reg-footer{
  background: #343434;
  color: rgba(255,255,255,.55);
  text-align: center;
  font-size: 12px;
  padding: 22px 14px;
}
body.detail-page .reg-footer b{ color: rgba(255,255,255,.85); }

/* =========================================================
   16) DETAIL-2 CONSULT (DESKTOP/BASE)
========================================================= */
body.detail-page.detail-consult .consult-wrap{
  background: #fff;
  padding: 78px 0 86px;
}

body.detail-page.detail-consult .consult-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

body.detail-page.detail-consult .consult-eyebrow{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  color: #f09030;
  font-size: 14px;
  margin-bottom: 6px;
}

body.detail-page.detail-consult .consult-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111827;
  letter-spacing: .02em;
  margin: 0 0 10px;
  font-size: clamp(26px, 2.2vw, 34px);
}

body.detail-page.detail-consult .consult-desc{
  color: rgba(17,24,39,.62);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
  font-size: 13.5px;
}

body.detail-page.detail-consult .consult-card{
  max-width: 980px;
  margin: 22px auto 0;
  background: #fff;
  border-radius: 22px;
  padding: 18px 18px 22px;
}

body.detail-page.detail-consult .consult-form{
  max-width: 920px;
  margin: 0 auto;
}

body.detail-page.detail-consult .consult-program{
  width: 100%;
  height: 52px;
  border-radius: 12px;
  border: 1.6px solid rgba(240,144,48,.75);
  background: rgba(240,144,48,.18);
  color: #f09030;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-align: center;
  outline: none;
  margin-bottom: 16px;
}

body.detail-page.detail-consult .consult-grid{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px 16px;
}

body.detail-page.detail-consult .consult-control{
  height: 52px;
  border-radius: 12px;
  border: 1.6px solid rgba(240,144,48,.75);
  padding: 0 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: rgba(17,24,39,.72);
  outline: none;
  background: #fff;
}

body.detail-page.detail-consult .consult-control::placeholder{
  color: rgba(17,24,39,.50);
  font-weight: 600;
}

body.detail-page.detail-consult .consult-grid > input:nth-child(1){ grid-column: span 4; }
body.detail-page.detail-consult .consult-grid > input:nth-child(2){ grid-column: span 4; }

body.detail-page.detail-consult .consult-phone{
  grid-column: span 4;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
}

body.detail-page.detail-consult .consult-prefix{
  height: 52px;
  border-radius: 12px 0 0 12px;
  border: 1.6px solid rgba(240,144,48,.75);
  background: #f09030;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  display: grid;
  place-items: center;
}

body.detail-page.detail-consult .consult-phone-input{
  border-radius: 0 12px 12px 0;
  border-left: 0;
}

body.detail-page.detail-consult .consult-grid > input:nth-child(4){
  grid-column: span 4;
}

body.detail-page.detail-consult .consult-btn{
  height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
  border: 0;
}

body.detail-page.detail-consult .consult-btn-cancel{
  grid-column: span 4;
  background: #8b5e2a;
  color: #fff;
}

body.detail-page.detail-consult .consult-btn-send{
  grid-column: span 4;
  background: #f09030;
  color: #fff;
}

body.detail-page.detail-consult .consult-btn:hover{
  filter: brightness(.98);
  color: #fff;
}

body.detail-page.detail-consult .consult-fab{
  position: fixed;
  right: 24px;
  top: 56%;
  transform: translateY(-50%);
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: #7aa043;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(0,0,0,.24);
  z-index: 9999;
}

/* =========================================================
   17) SUCCESS POPUP (:target) (DESKTOP/BASE)
========================================================= */
.success-popup{
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.success-popup:target{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.success-popup-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(24,40,64,.18);
  backdrop-filter: blur(2px);
}

body:has(.success-popup:target){
  overflow: hidden;
}

.success-card{
  position: relative;
  z-index: 1;
  width: var(--successCardW);
  height: var(--successCardH);
  border-radius: 44px;
  background: #ffffff;
  box-shadow: 0 22px 52px rgba(24,40,64,.18);

  padding: 62px 22px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;

  overflow: hidden;
}

.success-close{
  position: absolute;
  top: 16px;
  right: 16px;

  width: 38px;
  height: 38px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  text-decoration: none;
  background: var(--accent);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;

  box-shadow: 0 14px 28px rgba(240,144,48,.22);
}
.success-close:hover{ color:#fff; filter: brightness(.98); }

.success-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  margin: 0;
}

.success-visual{
  width: 190px;
  height: 190px;
  background: var(--successImg) center / contain no-repeat;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.10));
}

.success-text{
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: .02em;
  font-size: 17px;
  line-height: 1.15;
  margin: 0;
}

.success-card--berhasil-1{ --successImg: url("image/berhasil/berhasil-1.png"); }
.success-card--berhasil-2{ --successImg: url("image/berhasil/berhasil-2.png"); }

/* =========================================================
   18) ABOUT V2 BASE (DESKTOP/BASE) [DUPLIKAT DIPERTAHANKAN]
========================================================= */
.about-wrap {
  padding: 80px 0;
  background: #f9fafb;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #f09030;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin: 0 0 12px;
}

.about-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 42px;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.5px;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  gap: 0;
}

.about-col {
  padding: 0 15px;
  margin-bottom: 30px;
}

.about-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 24px 24px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #e5e7eb;
}

.about-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.about-card h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.3;
  text-align: center;
}

.about-card p {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  color: rgba(24, 40, 64, 0.62);
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

.about-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.about-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-dot.active {
  width: 32px;
  border-radius: 5px;
  background: #f09030;
}

.about-dot:hover {
  background: #f09030;
  opacity: 0.7;
}

/* =========================================================
   19) WA FLOAT (BASE DUPLIKAT DIPERTAHANKAN)
========================================================= */
.wa-float{
  position: fixed;
  z-index: 999;
  right: 34px;
  bottom: 34px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 18px;
  border-radius: 14px;

  background: #3f8d46;
  color: #fff;
  text-decoration: none;

  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: .02em;

  box-shadow: 0 18px 30px rgba(0,0,0,.22);
  box-sizing: border-box;
}

.wa-float:hover{ color:#fff; filter: brightness(.98); }

.wa-icon{
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.18);
  border-radius: 10px;

  flex: 0 0 auto;
}

.wa-text{
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

/* =========================================================
   20) SWITCH (BASE)
========================================================= */
.pendaftaran-mobile{ display: none; }

/* =========================================================
   21) FOOTER MOBILE ICON DEFAULT HIDE (BASE)
========================================================= */
.footer-social--mobile{ display: none !important; }

/* =========================================================
   22) PROGRAM V2 BASE (DESKTOP/BASE) [DUPLIKAT DIPERTAHANKAN]
========================================================= */
.program-wrap{
  padding: 80px 0;
}

.program-header{
  text-align: center;
  margin-bottom: 34px;
}

.program-title{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  margin: 0;
}

.program-card{
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  height: 520px;
  background: #111;
  box-shadow: 0 22px 44px rgba(24,40,64,.12);
}

.program-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.program-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.55));
}

.program-content{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 26px;
  text-align: center;
  color: #fff;
}

.program-name{
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 14px;
  text-shadow: 0 10px 22px rgba(0,0,0,.35);
  font-size: 34px;
}

.program-sub{
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  opacity: .95;
  margin-bottom: 24px;
  font-size: 18px;
}

.program-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 26px;
  border-radius: 14px;
  border: 2px solid rgba(255,255,255,.85);
  color: #fff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: .06em;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(2px);
}
.program-btn:hover{ color:#fff; background: rgba(255,255,255,.12); }

.program-dots{
  display: none;
  margin-top: 18px;
  justify-content: center;
  gap: 12px;
}
.program-dots span{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.14);
}
.program-dots span.active{
  width: 22px;
  background: rgba(0,0,0,.22);
}

/* =========================================================
   RESPONSIVE (MOBILE/TABLET) - SEMUA DI BAWAH
========================================================= */

/* ---------------------------------------------------------
   HERO MOBILE (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .hero-wrap{
    padding: 22px 0 40px;
  }

  .hero-col-visual{ display: none; }

  .hero-icon-mobile{
    display: block;
    position: absolute;
    right: -22px;
    top: 30px;
    width: 150px;
    height: 150px;
    transform: rotate(-14deg);
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
    z-index: 5;
    pointer-events: none;
  }

  .hero-wrap::after{
    content:"";
    position: absolute;
    right: -130px;
    top: 10px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 40% 45%,
      rgba(168,175,192,.35) 0%,
      rgba(245,245,250,0) 65%);
    pointer-events: none;
    z-index: 1;
  }

  .hero-title{
    line-height: .98;
    letter-spacing: -1.2px;
    position: relative;
    z-index: 2;
  }

  .hero-line-top{
    white-space: normal;
    font-size: 54px;
  }

  .hero-line-top .accent{
    display: block;
    margin-top: 6px;
    font-size: 54px;
  }

  .hero-title-strong{
    white-space: normal;
    font-size: 64px;
    margin-top: 10px;
  }

  .hero-desc{
    max-width: 100%;
    font-size: 16.5px;
    line-height: 1.85;
    position: relative;
    z-index: 2;
  }
  .hero-desc br{ display: none; }

  .btn-cta{
    border-radius: 26px;
    padding: 18px 44px !important;
    font-size: 22px;
    font-weight: 800;
  }
}

/* ---------------------------------------------------------
   DESKTOP SHIFT (>= 992px)
--------------------------------------------------------- */
@media (min-width: 992px){
  .navbar .navbar-nav{ transform: translateX(240px); }
}

/* ---------------------------------------------------------
   MOBILE MENU (<= 991.98px)
--------------------------------------------------------- */
@media (max-width: 991.98px){
  .nav-panel{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(245,245,250,.98);
    backdrop-filter: blur(10px);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 30px rgba(24,40,64,.12);
    padding: 12px 16px 16px;
    max-height: calc(100vh - var(--navH));
    overflow: auto;
    z-index: 1051;
  }

  #menu:target{ display: block; }

  #menu:target .navbar-nav{
    gap: 6px !important;
    transform: none !important;
  }

  #menu:target ~ .menu-backdrop{
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: transparent;
  }
}

/* ---------------------------------------------------------
   KONSULTASI MOBILE (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .konsul-wrap{
    padding: 56px 0 60px;
    background: #fff;
  }

  .konsul-eyebrow{
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    letter-spacing: .18em;
    color: var(--accent);
    font-size: 14px;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .konsul-title{
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: var(--ink);
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin: 0 0 14px;
  }

  .konsul-desc{
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgba(24,40,64,.62);
    font-size: 14.5px;
    line-height: 1.8;
    max-width: 340px;
    margin: 0 auto 26px;
  }

  .konsul-form{
    max-width: 430px;
    margin: 0 auto;
  }

  .konsul-row-1,
  .konsul-row-2{
    display: grid;
    gap: 18px;
  }

  .konsul-field{ width: 100%; }

  .konsul-input,
  .konsul-phone-input{
    width: 100%;
    border: 2px solid var(--accent);
    border-radius: 22px;
    background: #fff;
    padding: 18px 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--ink);
    outline: none;
    box-shadow: none;
  }

  .konsul-input::placeholder,
  .konsul-phone-input::placeholder{
    color: rgba(24,40,64,.55);
    font-weight: 600;
  }

  .konsul-input:focus,
  .konsul-phone-input:focus{
    border-color: #ea8622;
  }

  .konsul-phone{
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: stretch;
    border-radius: 22px;
    overflow: hidden;
  }

  .konsul-phone-prefix{
    background: var(--accent);
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .konsul-phone-input{
    border: 2px solid var(--accent);
    border-left: 0;
    border-radius: 0;
    padding-left: 18px;
  }

  .konsul-row-2 .konsul-field .konsul-input{
    height: 210px;
    padding-top: 22px;
    padding-bottom: 22px;
    display: flex;
    align-items: flex-start;
    text-align: center;
  }

  .konsul-btn{
    width: 100%;
    border: 0;
    border-radius: 18px;
    background: var(--accent);
    color: #fff;
    padding: 18px 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: .02em;
    box-shadow: 0 18px 34px rgba(240,144,48,.22);
  }

  .konsul-btn:active{ transform: translateY(1px); }
}

@media (max-width: 374.98px){
  .konsul-title{ font-size: 26px; }
  .konsul-desc{ font-size: 14px; }
  .konsul-phone{ grid-template-columns: 86px 1fr; }
  .konsul-btn{ font-size: 21px; }
}

/* ---------------------------------------------------------
   WA FLOAT MOBILE SMALL (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    width: 150px;
    height: 45px;
    padding: 0 10px;
    gap: 6px;
    border-radius: 10px;
    box-shadow: 0 10px 18px rgba(0,0,0,.18);
    justify-content: center;
    overflow: hidden;
  }

  .wa-icon{
    width: 18px;
    height: 18px;
    border-radius: 6px;
  }

  .wa-icon svg{
    width: 12px;
    height: 12px;
    display: block;
  }

  .wa-text{
    font-size: 9.8px;
    line-height: 1;
    letter-spacing: .01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 374.98px){
  .wa-float{
    width: 88px;
    right: 12px;
    bottom: 12px;
  }
  .wa-text{ font-size: 9.4px; }
}

/* ---------------------------------------------------------
   METODE MOBILE (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .metode-wrap{
    padding: 54px 0 40px;
    overflow: hidden;
  }

  .metode-wrap .metode-row{
    --bs-gutter-x: 0rem;
    margin-left: 0;
    margin-right: 0;
  }

  .metode-wrap .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .metode-left{
    padding-right: 0;
    text-align: center;
  }

  .metode-eyebrow{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 10px;
  }

  .metode-title{
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto 18px;
    max-width: 620px;
  }

  .metode-desc{ max-width: 100%; }

  .metode-media{ padding-left: 12px; }
}

/* ---------------------------------------------------------
   FOOTER MOBILE (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .footer-wrap{
    background: var(--homeBg);
    padding: 56px 0 44px;
  }

  .footer-wrap .row{
    --bs-gutter-y: 1.6rem;
  }

  .footer-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 12px;
  }

  .footer-desc{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgba(24,40,64,.55);
    font-size: 13.6px;
    line-height: 1.75;
    max-width: 520px;
    margin: 0;
  }

  .footer-nav{
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 10px;
  }
  .footer-nav a{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(24,40,64,.68);
    text-decoration: none;
  }

  .footer-map{
    border-radius: 14px;
    overflow: hidden;
    margin-top: 10px;
  }
  .footer-map iframe{
    width: 100%;
    height: 220px;
    display: block;
  }

  .footer-contact{
    margin-top: 14px;
  }
  .footer-contact-line{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 1.7;
    color: rgba(24,40,64,.55);
    margin: 10px 0 0;
  }

  .footer-wrap .col-lg-5 .footer-social{
    display: none !important;
  }

  .footer-phonebar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
  }

  .footer-contact-line--phone{
    margin: 0 !important;
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer-social--mobile{
    display: flex !important;
    gap: 12px;
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-social--mobile .social-link{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    background: transparent;
  }

  .footer-social--mobile .social-link svg{
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
  }
}

@media (max-width: 374.98px){
  .footer-map iframe{ height: 210px; }

  .footer-social--mobile .social-link{
    width: 38px;
    height: 38px;
  }
  .footer-social--mobile .social-link svg{
    width: 16px;
    height: 16px;
  }
}

/* ---------------------------------------------------------
   RESPONSIVE UMUM (<= 991.98px)
--------------------------------------------------------- */
@media (max-width: 991.98px){
  .nav-spacer{ display:none; }

  .hero-visual{ min-height: 420px; }
  .hero-stack{ margin-left: 0; }
  .hero-person{ max-height: 520px; }
  .hero-vector-bg{ width: 300px; height: auto; }

  .hero-dots{
    right: -30px;
    top: 10px;
    width: 180px;
    height: 420px;
    background-size: 72px 72px;
    background-position: 12px 18px;
  }

  .hero-icon-left{
    width: 120px;
    height: 120px;
    left: -30px;
    top: 60px;
  }
  .hero-icon-right{
    width: 120px;
    height: 120px;
    right: -20px;
  }

  .metode-left{ padding-right: 0; }

  .metode-dotgrid-top,
  .metode-dotgrid-right{ display: none; }

  .metode-photo-wrap{
    border-radius: 34px;
    height: 280px;
  }
  .metode-play{
    left: 16px;
    width: 84px;
    height: 78px;
    border-radius: 20px;
  }

  .metode-dotrow{ gap: 18px; }
  .metode-dotrow span{ width: 22px; height: 22px; }

  .step-arrow{ display: none; }
  .step-text{ max-width: 100%; }

  .testi-title{
    margin-bottom: 30px;
    font-size: 25px;
  }

  .testi-card{
    width: 86vw;
    height: auto;
    min-height: 320px;
    padding: 22px 22px 22px;
    border-radius: 22px;
  }

  .testi-text{ -webkit-line-clamp: 8; }
  .testi-progress{ max-width: none; }

  .testi-btn{
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .konsul-wrap{ padding: 64px 0 76px; }
  .konsul-eyebrow{ font-size: 18px; }
  .konsul-desc{ font-size: 15px; margin-bottom: 22px; }

  .konsul-row-1{
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .konsul-row-2{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .konsul-input,
  .konsul-phone,
  .konsul-btn{
    height: 64px;
    border-radius: 20px;
    font-size: 16px;
  }

  .konsul-phone{ grid-template-columns: 82px 1fr; }
  .konsul-phone::after{ left: 82px; width: 1.8px; }
  .konsul-phone-prefix{ font-size: 16px; }

  .konsul-btn{
    width: 100%;
    font-size: 18px;
  }

  .footer-wrap{ padding: 64px 0 58px; }
  .footer-desc{ font-size: 15.6px; line-height: 1.8; }
  .footer-nav{ gap: 14px; }
  .footer-nav a{ font-size: 18px; }
  .footer-map iframe{ height: 220px; }
  .footer-social{ gap: 18px; margin-top: 26px; }
  .social-link--ring{ width: 56px; height: 56px; }
}

/* ---------------------------------------------------------
   PENDAFTARAN MOBILE SWITCH (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .pendaftaran-desktop{ display:none !important; }
  .pendaftaran-mobile{ display:block !important; }

  .pendaftaran-wrap{
    padding: 56px 0 54px;
    background:#fff;
    overflow:hidden;
  }

  .pendaftaran-mobile .pendaftaran-left{
    padding: 0 22px;
    text-align:center;
    margin-bottom: 18px;
  }

  .pendaftaran-mobile .pendaftaran-eyebrow{
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2.6px;
    color: #f09030;
    margin: 0 0 8px;
    font-family: "Montserrat", sans-serif;
  }

  .pendaftaran-mobile .pendaftaran-title{
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: #0b0b0f;
  }

  .pendaftaran-mobile .pendaftaran-dotrow{ display:none !important; }

  .pendaftaran-mobile .pendaftaran-desc{
    font-size: 16px;
    line-height: 1.95;
    max-width: 420px;
    margin: 0 auto;
    color: rgba(24,40,64,.62);

    text-align: justify;
    text-justify: inter-word;
    text-align-last: left;

    word-spacing: .10em;
    letter-spacing: .01em;
    hyphens: auto;

    font-family: "Montserrat", sans-serif;
    font-weight: 500;
  }

  .pendaftaran-mobile .pendaftaran-grid{
    --gridGap: 18px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gridGap);
    padding: 0 22px;
    margin-top: 26px;
  }

  .pendaftaran-mobile .step-card{
    background:#f3f4f6;
    border-radius:22px;
    padding:22px;
    min-height:152px;
    position:relative;
    overflow: visible;
  }

  .pendaftaran-mobile .step-title{
    margin: 0 0 10px;
    font-size: 30px;
    font-weight: 800;
    color:#0b0b0f;
    line-height:1.05;
    font-family:"Montserrat", sans-serif;
  }

  .pendaftaran-mobile .step-text{
    margin:0;
    font-size:12.6px;
    line-height:1.55;
    color: rgba(24,40,64,.68);
    font-family:"Montserrat", sans-serif;
    font-weight:500;
  }

  .pendaftaran-mobile .step-card:nth-child(odd)::after{
    content:"";
    position:absolute;
    top:50%;
    right: calc(var(--gridGap) * -0.5);
    transform: translate(50%, -50%);
    width: 26px;
    height: 26px;
    background: url("../image/pendaftaran/arrow.png") center/contain no-repeat;
    z-index:3;
    pointer-events:none;
  }

  .pendaftaran-mobile .pendaftaran-btn{
    display:block;
    width: calc(100% - 44px);
    margin: 34px auto 0;
    padding: 18px 18px;
    border-radius: 14px;
    background:#f09030;
    color:#fff;
    text-decoration:none;
    text-align:center;
    font-family:"Montserrat", sans-serif;
    font-weight:800;
    font-size:22px;
    line-height:1.1;
    box-shadow: 0 14px 26px rgba(240,144,48,.22);
  }
}

@media (max-width: 374.98px){
  .pendaftaran-mobile .pendaftaran-title{ font-size:24px; }
  .pendaftaran-mobile .pendaftaran-grid{ --gridGap:16px; padding:0 18px; }
  .pendaftaran-mobile .step-card{ padding:20px; min-height:146px; }
  .pendaftaran-mobile .step-title{ font-size:28px; }
  .pendaftaran-mobile .pendaftaran-btn{ width: calc(100% - 36px); font-size:21px; }
  .pendaftaran-mobile .step-card:nth-child(odd)::after{ width:24px; height:24px; }
}

/* ---------------------------------------------------------
   FOOTER MOBILE (DUPLIKAT) (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .footer-wrap{
    background: var(--homeBg);
    padding: 56px 0 44px;
  }

  .footer-wrap .row{ --bs-gutter-y: 1.6rem; }

  .footer-title{
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.15;
    margin: 0 0 12px;
  }

  .footer-desc{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgba(24,40,64,.55);
    font-size: 13.6px;
    line-height: 1.75;
    max-width: 520px;
    margin: 0;
  }

  .footer-nav{
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: grid;
    gap: 10px;
  }
  .footer-nav a{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: rgba(24,40,64,.68);
    text-decoration: none;
  }

  .footer-map{
    border-radius: 14px;
    overflow: hidden;
    margin-top: 10px;
  }
  .footer-map iframe{
    width: 100%;
    height: 220px;
    display: block;
  }

  .footer-contact{ margin-top: 14px; }

  .footer-contact-line{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1.7;
    color: rgba(24,40,64,.55);
    margin: 10px 0 0;
  }

  .footer-social--desktop{ display: none !important; }

  .footer-phonebar{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .footer-contact-line--phone{
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: 11px;
  }

  .footer-social--mobile{
    display: flex !important;
    gap: 12px;
    flex: 0 0 auto;
  }

  .footer-social--mobile .social-link{
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 2px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
    background: transparent;
  }

  .footer-social--mobile .social-link svg{
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
  }
}

@media (max-width: 374.98px){
  .footer-social--mobile{ gap: 10px; }
  .footer-social--mobile .social-link{ width: 38px; height: 38px; }
  .footer-social--mobile .social-link svg{ width: 16px; height: 16px; }
  .footer-contact-line--phone{ font-size: 10.5px; }
}

/* ---------------------------------------------------------
   GALERY MOBILE (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .galery-wrap{ padding: 52px 0 64px; }

  .galery-grid{
    --gGap: 14px;
    padding: 0 18px;

    grid-template-columns: 1.05fr 1fr 1fr;
    grid-template-rows:
      clamp(150px, 30vw, 195px)
      clamp(185px, 38vw, 240px);
  }

  .galery-item{ border-radius: 30px; }
}

@media (max-width: 374.98px){
  .galery-grid{
    grid-template-rows:
      145px
      215px;
  }
  .galery-item{ border-radius: 26px; }
}

/* ---------------------------------------------------------
   WA POPUP MOBILE (<= 575.98px) + TABLET (576-991.98)
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .wa-popup{
    padding: 16px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wa-popup-card{
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 22px 16px 16px;
    border-radius: 22px;
  }

  .wa-popup-close{
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }

  .wa-popup-head{ text-align: center; }

  .wa-popup-eyebrow{
    font-size: 16px;
    letter-spacing: .22em;
    margin-bottom: 8px;
  }

  .wa-popup-title{
    font-size: 20px;
    line-height: 1.18;
    margin: 0 0 10px;
  }

  .wa-popup-desc{
    font-size: 13.2px;
    line-height: 1.7;
    margin: 0 auto 14px;
    max-width: 32ch;
  }

  .wa-popup-form{ margin-top: 10px; }

  .wa-popup-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .wa-popup-control,
  .wa-popup-phone,
  .wa-popup-submit{
    width: 100%;
    height: 58px;
    border-radius: 18px;
    font-size: 15px;
  }

  .wa-popup-control{ padding: 0 16px; }
  .wa-popup-select{ padding-right: 44px; }

  .wa-popup-phone{
    display: grid;
    grid-template-columns: 78px 1fr;
    overflow: hidden;
  }

  .wa-popup-phone-prefix{
    display: grid;
    place-items: center;
    font-weight: 800;
  }

  .wa-popup-phone-input{
    width: 100%;
    height: 58px;
    border: 0;
    outline: 0;
    padding: 0 16px;
    font-size: 15px;
    background: transparent;
  }

  .wa-popup-phone::after{ left: 78px; }

  .wa-popup-submit{
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
  }

  @supports (-webkit-touch-callout: none){
    .wa-popup-control,
    .wa-popup-phone-input{
      font-size: 16px;
    }
  }
}

@media (min-width: 576px) and (max-width: 991.98px){
  .wa-popup{
    padding: 22px;
    overflow: auto;
  }

  .wa-popup-card{
    width: min(100%, 620px);
    padding: 26px 22px 20px;
    border-radius: 26px;
  }

  .wa-popup-row{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .wa-popup-control,
  .wa-popup-phone,
  .wa-popup-submit{
    height: 64px;
    border-radius: 20px;
    font-size: 16px;
  }

  .wa-popup-phone{ grid-template-columns: 82px 1fr; }
  .wa-popup-phone::after{ left: 82px; }

  .wa-popup-submit{
    width: 100%;
    font-size: 18px;
  }
}

/* ---------------------------------------------------------
   DETAIL HERO MOBILE FIX (<= 991.98px) + SMALL (<= 575.98px)
--------------------------------------------------------- */
body.detail-page .detail-hero{ position: relative; overflow: hidden; }
body.detail-page .detail-hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 991.98px){
  body.detail-page .detail-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(240,144,48,.82);
    z-index: 1;
  }

  body.detail-page .detail-hero-inner{
    position: relative;
    z-index: 2;
  }

  body.detail-page .detail-hero{
    min-height: 100svh !important;
    padding: 92px 0 120px !important;
    display: flex;
    align-items: center;
  }

  body.detail-page .detail-hero-badge{
    width: 180px !important;
    height: auto;
    max-width: 100%;
    margin: 0 auto 10px !important;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(0,0,0,.15));
  }

  body.detail-page .detail-hero-title{
    margin: 0 !important;
    color: #fff !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.3px;
    font-size: clamp(28px, 7.2vw, 44px) !important;
    text-shadow: 0 10px 22px rgba(0,0,0,.18);
  }

  body.detail-page .detail-hero-sub{
    margin: 10px 0 0 !important;
    color: #fff !important;
    font-weight: 900 !important;
    font-size: clamp(18px, 4.8vw, 26px) !important;
    text-shadow: 0 10px 22px rgba(0,0,0,.16);
  }

  body.detail-page .detail-hero-btn{
    margin: 34px auto 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: min(360px, 88%) !important;
    padding: 16px 22px !important;
    border-radius: 18px !important;
    background: #132c4f !important;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
  }
}

@media (max-width: 575.98px){
  body.detail-page .detail-hero-badge{ width: 170px !important; }
  body.detail-page .detail-hero-btn{ width: min(340px, 86%) !important; }
}

/* ---------------------------------------------------------
   DETAIL-2 CONSULT MOBILE TIDY (<= 991.98px) + SMALL
--------------------------------------------------------- */
@media (max-width: 991.98px){
  body.detail-page.detail-consult .consult-wrap{
    padding: 46px 0 110px !important;
  }

  body.detail-page.detail-consult .consult-head{
    text-align: left;
  }

  body.detail-page.detail-consult .consult-title{
    line-height: 1.15;
  }

  body.detail-page.detail-consult .consult-desc{
    line-height: 1.8;
  }

  body.detail-page.detail-consult .consult-card{
    border-radius: 18px;
    overflow: hidden;
  }

  body.detail-page.detail-consult .consult-program{
    width: 100%;
    white-space: normal;
    line-height: 1.5;
  }

  body.detail-page.detail-consult .consult-grid{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.detail-page.detail-consult .consult-grid > *,
  body.detail-page.detail-consult .consult-phone{
    grid-column: auto !important;
    width: 100%;
  }

  body.detail-page.detail-consult .consult-phone{
    display: flex;
    align-items: stretch;
  }

  body.detail-page.detail-consult .consult-prefix{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 14px 0 0 14px;
  }

  body.detail-page.detail-consult .consult-phone-input{
    border-radius: 0 14px 14px 0;
    width: 100%;
  }

  body.detail-page.detail-consult .consult-btn{
    width: 100% !important;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 16px !important;
    border-radius: 14px !important;
    font-weight: 800;
  }

  body.detail-page.detail-consult .consult-btn-cancel{ order: 10; }
  body.detail-page.detail-consult .consult-btn-send{ order: 11; }
}

@media (max-width: 575.98px){
  body.detail-page.detail-consult .consult-wrap{
    padding: 40px 0 105px !important;
  }
}

/* ---------------------------------------------------------
   SUCCESS CARD RESPONSIVE (<= 991.98px) + (<= 575.98px)
--------------------------------------------------------- */
@media (max-width: 991.98px){
  .success-card{
    width: min(var(--successCardW), calc(100vw - 44px));
    height: min(var(--successCardH), calc(100vh - 44px));
  }
}

@media (max-width: 575.98px){
  .success-card{
    border-radius: 38px;
    padding: 58px 20px 46px;
  }

  .success-title{ font-size: 32px; }
  .success-visual{ width: 176px; height: 176px; }
  .success-text{ font-size: 16px; }

  .success-close{
    width: 36px;
    height: 36px;
    font-size: 21px;
  }
}

/* DUPLIKAT HOOK DIPERTAHANKAN */
@media (max-width: 991.98px){
  .success-card{
    width: min(var(--successCardW), calc(100vw - 44px));
    height: min(var(--successCardH), calc(100vh - 44px));
  }
}

/* ---------------------------------------------------------
   ABOUT V2 - MOBILE SLIDER (<= 575.98px) + SMALL + TABLET
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .about-wrap{ padding: 54px 0 50px; }

  .about-header{ margin-bottom: 26px; padding: 0 16px; }
  .about-title{ font-size: 28px; }

  .about-row{
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;

    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;

    overflow-x: auto !important;
    overflow-y: visible;
    gap: 0 !important;

    margin: 0 -16px !important;
    padding: 0 !important;

    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }
  .about-row::-webkit-scrollbar{ display:none; }

  .about-col{
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 16px !important;
    scroll-snap-align: start;
  }

  .about-card{
    padding: 20px 20px 26px;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(24,40,64,.14);
  }

  .about-img{ border-radius: 18px; overflow:hidden; margin-bottom: 18px; }
  .about-img img{ width:100%; height:240px; object-fit:cover; display:block; }

  .about-card h3{ font-size: 22px; margin-bottom: 12px; text-align:center; }
  .about-card p{ font-size: 14.5px; line-height: 1.65; }

  .about-dots{ display:flex; justify-content:center; gap:12px; margin-top:18px; }
}

@media (max-width: 374.98px){
  .about-title{ font-size: 24px; }
  .about-img img{ height: 220px; }
  .about-card h3{ font-size: 20px; }
  .about-card p{ font-size: 14px; }
}

@media (min-width: 576px) and (max-width: 991.98px){
  .about-title{ font-size: 36px; }
  .about-img img{ height: 260px; }
  .about-card h3{ font-size: 24px; }
}

/* ---------------------------------------------------------
   PROGRAM - MOBILE SLIDER (<= 575.98px) + EXTRA SMALL
--------------------------------------------------------- */
@media (max-width: 575.98px){
  .program-wrap{ padding: 54px 0 50px; }

  .program-header{ padding: 0 16px; margin-bottom: 22px; }
  .program-title{ font-size: 32px; }

  .program-row{
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;

    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;

    overflow-x: auto !important;
    overflow-y: visible;

    gap: 0 !important;

    margin: 0 -16px !important;
    padding: 0 !important;

    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
    -webkit-overflow-scrolling: touch;

    scrollbar-width: none;
  }
  .program-row::-webkit-scrollbar{ display:none; }

  .program-col{
    flex: 0 0 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 0 16px !important;
    scroll-snap-align: start;
  }

  .program-card{
    height: 520px;
    border-radius: 36px;
  }

  .program-name{ font-size: 38px; }
  .program-sub{ font-size: 18px; margin-bottom: 26px; }

  .program-btn{
    height: 54px;
    padding: 0 28px;
    border-radius: 16px;
    font-size: 14px;
  }

  .program-dots{ display:flex; }
}

@media (max-width: 374.98px){
  .program-card{ height: 500px; }
  .program-name{ font-size: 34px; }
}

/* ---------------------------------------------------------
   HERO MOBILE ONLY (<= 575.98px) - BLOCK TERAKHIR
--------------------------------------------------------- */
@media (max-width: 575.98px){
  :root{ --navH: 92px; }
  body{ padding-top: var(--navH); }

  .navbar{
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .brand-logo{ height: 62px; }

  .nav-toggle-icon{
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(24, 40, 64, 0.25)' stroke-width='2.4' stroke-linecap='round' stroke-miterlimit='10' d='M3 7h24M3 15h18M3 23h24'/%3e%3c/svg%3e");
  }

  .hero-wrap{
    padding: 18px 0 18px;
    min-height: calc(100svh - var(--navH));
    position: relative;
  }

  .hero-wrap .col-lg-6:nth-child(2){ display: none; }

  .hero-wrap .col-lg-6:nth-child(1){
    padding-top: 78px;
  }

  .hero-visual{ display: none; }

  .hero-icon-left{
    position: absolute;
    right: 24px;
    top: calc(var(--navH) + 155px);
    left: auto;
    width: 92px;
    height: 92px;
    z-index: 3;
    transform: rotate(-14deg);
    animation: none;
    filter: drop-shadow(0 14px 22px rgba(0,0,0,.12));
  }

  .hero-icon-left::before{
    content:"";
    position: absolute;
    inset: -70px;
    background: radial-gradient(circle at 45% 45%, rgba(168,175,192,.35) 0%, rgba(245,245,250,0) 62%);
    z-index: -1;
  }

  .hero-title{
    line-height: .98;
    letter-spacing: -1.2px;
    margin-bottom: 14px !important;
  }

  .hero-line-top{
    white-space: normal;
    font-weight: 600;
    font-size: 43px;
    letter-spacing: -1.2px;
    color: #182840;
  }

  .hero-line-top .accent{
    display: block;
    margin-top: 6px;
    font-weight: 600;
    font-size: 43px;
    letter-spacing: -1.4px;
    color: var(--accent);
  }

  .hero-title-strong{
    white-space: normal;
    margin-top: 10px;
    font-weight: 600;
    font-size: 43px;
    letter-spacing: -1.3px;
    color: #182840;
  }

  .hero-desc{
    max-width: 360px;
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(24,40,64,.60);
    margin-bottom: 16px !important;
  }
  .hero-desc br{ display: none; }

  .btn-cta{
    height: 56px;
    padding: 0 28px !important;
    border-radius: 22px;
    font-size: 22px;
    font-weight: 600;
    width: min(320px, 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 32px rgba(240,144,48,.20);
    margin-bottom: 0 !important;
  }
}
