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

:root{
  --navy:#1b1a3b;
  --navy-2:#10204c;
  --teal:#18d2b0;
  --teal-dark:#078899;
  --teal-2:#00b7a4;
  --mint:#e5fbf5;
  --white:#ffffff;
  --ink:#181832;
  --muted:#6e7189;
  --red:#f1273d;
  --line:#e7e8ef;
  --shadow:0 18px 42px rgba(23,23,56,.12);
  --radius:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:#eef0f4;
  color:var(--ink);
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}
button,input,select,textarea{font:inherit}
button,a{-webkit-tap-highlight-color:transparent}
button{cursor:pointer}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.page-shell{
  width:min(100%,480px);
  min-height:100vh;
  margin:0 auto;
  overflow-x:clip;
  overflow-y:visible;
  background:#fff;
  box-shadow:0 0 36px rgba(0,0,0,.08);
}

.site-header{
  height:58px;
  padding:0 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:var(--navy);
  position:sticky;
  top:0;
  z-index:80;
  box-shadow:0 7px 18px rgba(15,18,48,.10);
}
.brand img{
  width:115px;
  
}
.menu-toggle{
  width:42px;height:42px;border:0;background:transparent;color:#fff;
  display:grid;place-items:center;font-size:28px;
}
.menu-toggle i{font-size:27px}

.menu-backdrop{
  position:fixed;inset:0;background:rgba(8,10,27,.52);
  z-index:90;
}
.mobile-drawer{
  position:fixed;
  top:0;right:0;
  width:min(88vw,360px);
  height:100dvh;
  padding:22px;
  background:#fff;
  z-index:100;
  transform:translateX(105%);
  transition:transform .25s ease;
  overflow:auto;
  box-shadow:-20px 0 48px rgba(18,20,44,.16);
}
.mobile-drawer.open{transform:translateX(0)}
.drawer-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
.drawer-head img{width:118px;filter: brightness(0) saturate(100%);}
.drawer-close{
  width:40px;height:40px;border-radius:50%;border:1px solid var(--line);
  background:#fff;color:var(--navy);font-size:18px;
}
.drawer-nav,.mentor-links{display:grid;gap:5px}
.drawer-nav a,.mentor-links a{
  min-height:46px;padding:0 12px;border-radius:12px;
  display:flex;align-items:center;gap:12px;color:var(--navy);font-weight:700;font-size:14px;
}
.drawer-nav a:hover,.mentor-links a:hover{background:#f5f7fa}
.drawer-nav i{width:22px;text-align:center;color:var(--teal-dark)}
.mentor-links a{justify-content:space-between;font-weight:600}
.mentor-links i{font-size:11px;color:#a0a4b6}
.drawer-divider{height:1px;background:var(--line);margin:20px 0}
.drawer-label{
  margin:0 10px 8px;color:#8b8fa5;font-size:11px;text-transform:uppercase;
  letter-spacing:.12em;font-weight:800;
}

.hero{
  position:relative;
  background:#fff;
  overflow:hidden;
}
.hero-copy{
  position:relative;
  z-index:12;
  padding:20px 20px 0;
}
.batch-pill{
  display:inline-flex;
  padding:4px 11px;
  border-radius:999px;
  background:linear-gradient(90deg,#1fd5ae,#008a9a);
  color:#fff;
  font-size:16px;
  font-weight:800;
  line-height:1;
}
.hero h1{
  margin:12px 0 8px;
  color:#1ecfb0;
  font-size:26px;
  line-height:0.98;
  letter-spacing:-.048em;
  font-weight:700;
  max-width:400px;
}
.hero-subtitle{
  margin:0;
  color:var(--navy);
  font-size:18px;
  font-weight:400;
}
.schedule-float{
  margin:24px auto 0;
  display:flex;
  justify-content:center;
  gap:16px;
  position:relative;
  z-index:12;
}
.schedule-badge{
  width:140px;
  border-radius:11px;
  overflow:hidden;
  background:var(--navy);
  color:#fff;
  text-align:center;
  box-shadow:0 7px 18px rgba(23,23,56,.17);
  padding:26px 5px 6px;
  position:relative;
}
.schedule-badge strong{
  position:absolute;left:0;right:0;top:0;
  height:17px;
  display:flex;align-items:center;justify-content:center;
  background:#1bd5ae;
  font-size:12px;font-weight:800;
}
.schedule-badge span,.schedule-badge small{display:block;font-weight:700;line-height:1.15}
.schedule-badge span{font-size:14px}
.schedule-badge small{font-size:12px;margin-top:2px}

.hero-visual{
  margin-top:2px;
  height:288px;
  position:relative;
  overflow:hidden;
}
.hero-stage{
  position:relative;
  width:100%;
  height:100%;
  isolation:isolate;
  background:#dff7f1;
}
.hero-stage-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 57%;
}
.hero-stage::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,.06) 27%, rgba(255,255,255,0) 52%),
    linear-gradient(180deg, rgba(4,11,27,0) 48%, rgba(4,11,27,.10) 68%, rgba(4,11,27,.18) 100%);
}
.hero-stage-wave{
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:auto;
  z-index:3;
  display:block;
}
.mentor-layer{
  position:absolute;
  inset:0;
  z-index:4;
}
.mentor-layer::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:30px;
  height:76px;
  background:linear-gradient(180deg, rgba(5,8,24,0) 0%, rgba(5,8,24,.16) 24%, rgba(5,8,24,.48) 58%, rgba(5,8,24,.92) 100%);
  z-index:1;
}
.mentor-slot{
  position:absolute;
  bottom:30px;
  z-index:3;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}
.mentor-slot-1{left:22px;width:74px;}
.mentor-slot-2{left:94px;width:90px;}
.mentor-slot-3{left:164px;width:98px;}
.mentor-slot-4{right:76px;width:84px;}
.mentor-slot-5{right:20px;width:72px;}
.mentor-slot .mentor-person{
  display:block;
  width:100%;
  height:162px;
  object-fit:contain;
  object-position:bottom center;
  filter:drop-shadow(0 10px 18px rgba(10,16,44,.14));
}
.mentor-slot .mentor-meta{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:5px;
  z-index:5;
  text-align:center;
  color:#fff;
  text-shadow:0 1px 1px rgba(0,0,0,.42);
}
.mentor-meta strong{
  display:block;
  font-size:6.5px;
  line-height:1.08;
  font-weight:700;
  letter-spacing:-.02em;
}
.mentor-meta span{
  display:block;
  margin-top:2px;
  font-size:5.6px;
  line-height:1.06;
  font-weight:500;
}
.mentor-meta-left{width:62px;}
.mentor-meta-chandra{width:76px;}
.mentor-meta-center{width:56px;}
.mentor-meta-rizky{width:76px;}
.mentor-meta-regian{width:60px;}
.mentor-base{
  position:absolute;
  left:0;
  right:0;
  bottom:30px;
  height:34px;
  z-index:2;
  background:linear-gradient(180deg, rgba(12,15,28,.82) 0%, rgba(9,12,24,.98) 100%);
}
.mentor-base::before{
  content:"";
  position:absolute;
  left:-8%;
  right:-8%;
  top:-24px;
  height:52px;
  background:rgba(9,12,24,.98);
  border-radius:50% 50% 0 0/100% 100% 0 0;
}
.hero-curve{display:none;}

@media (max-width: 410px){
  .hero-copy{padding:20px 20px 0;}
  .hero h1{font-size:25px; max-width:450px;}
  .hero-subtitle{font-size:17px;}
  .schedule-float{gap:10px;}
  .schedule-badge{width:122px;}
  .hero-visual{height:278px;}
  .mentor-layer::after{bottom:28px;height:70px;}
  .mentor-slot{bottom:28px;}
  .mentor-slot-1{left:18px;width:66px;}
  .mentor-slot-2{left:82px;width:86px;}
  .mentor-slot-3{left:150px;width:92px;}
  .mentor-slot-4{right:69px;width:78px;}
  .mentor-slot-5{right:16px;width:68px;}
  .mentor-slot .mentor-person{height:150px;}
  .mentor-meta strong{font-size:5.9px;}
  .mentor-meta span{font-size:5.0px;}
  .mentor-meta-left{width:54px;}
  .mentor-meta-chandra{width:68px;}
  .mentor-meta-center{width:50px;}
  .mentor-meta-rizky{width:68px;}
  .mentor-meta-regian{width:54px;}
  .mentor-base{bottom:28px;height:32px;}
  .mentor-base::before{top:-20px;height:46px;}
}
.section{padding:10px 15px}
.section-heading.centered{text-align:center}
.section-heading p{
  margin:16px 0 0;font-size:17px;font-weight:400;color:var(--navy)
}
.section-heading h2{
  margin:2px 0 0;
  font-size:23px;
  line-height:1.05;
  letter-spacing:-.035em;
  font-weight:800;
  color:var(--navy)
}
.section-heading.compact h2{font-size:22px}
.section-pill{
  display:inline-flex;align-items:center;justify-content:center;
  padding:5px 11px;border-radius:999px;
  background:#1ed4ae;color:#fff;font-size:16px;font-weight:800;line-height:1;
}

.package-section{padding-top:0px}
.package-mode-tabs{
  width:max-content;
  max-width:100%;
  margin:24px auto 18px;
  display:flex;
  padding:3px;
  border:3px solid var(--navy);
  border-radius:999px;
  background:var(--navy);
}
.mode-tab{
  border:0;
  padding:6px 12px;
  border-radius:999px;
  background:transparent;
  color:#fff;
  font-size:13px;
  font-weight:800;
}
.mode-tab.active{
  background:#2bd1bc;
  color:var(--navy);
}

.package-category-tabs{
  width:100%;
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  margin-bottom:-4px;
  position:relative;
  z-index:6;
}
.category-tab{
  border:0;
  background:var(--navy);
  color:#fff;
  padding:7px 10px;
  font-size:12px;
  font-weight:700;
  border-right:1px dashed #27d7c0;
}
.category-tab:first-child{border-radius:10px 0 0 0}
.category-tab:last-child{border-right:0;border-radius:0 10px 0 0}
.category-tab.active{
  color:var(--navy);
  background:#28d4bb;
}

.package-slider-wrap{position:relative}
.package-slider{overflow:hidden;touch-action:pan-y}
.package-track{
  display:flex;
  will-change:transform;
}
.package-slide{
  flex:0 0 100%;
  padding:0 0 2px;
}
.package-card{
  min-height:408px;
  padding:18px 26px 23px;
  border-radius:22px;
  background:linear-gradient(155deg,#22d7ad 0%,#00a9a8 55%,#087d92 100%);
  color:#fff;
  box-shadow:0 16px 40px rgba(4,134,145,.17);
}
.card-label{
  display:inline-flex;padding:4px 12px;border-radius:999px;background:#fff;color:#46475d;
  font-size:13px;line-height:1;
}
.package-card h3{
  margin:8px 0 4px;font-size:27px;line-height:1;font-weight:800;letter-spacing:-.04em
}
.card-desc{margin:0;font-size:12px;line-height:1.2;font-weight:700;max-width:270px}
.invest-label{display:block;margin-top:12px;font-size:11px;font-weight:700}
.price{font-size:29px;font-weight:800;line-height:1.05;letter-spacing:-.04em}
.old-price-row{
  margin-top:3px;display:flex;align-items:center;gap:8px;flex-wrap:wrap
}
.old-price{font-size:12px;text-decoration:line-through;opacity:.8}
.discount{
  display:inline-flex;padding:3px 7px;border-radius:999px;background:var(--red);
  font-size:11px;font-weight:800
}
.material-label{
  display:inline-flex;margin-top:13px;padding:3px 10px;border-radius:999px;background:#fff;color:#55566a;font-size:12px
}
.material-list{
  margin:7px 0 0;
  padding-left:18px;
  font-size:12px;
  line-height:1.22;
  font-weight:700;
}
.register-btn{
  margin-top:17px;
  min-height:42px;
  padding:0 17px;
  border:0;border-radius:999px;
  background:#f6f6eb;color:var(--navy);
  font-size:15px;font-weight:800;
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
}
.register-btn:active{transform:scale(.98)}
.slider-dots{
  display:flex;justify-content:center;gap:7px;margin:13px 0 0
}
.slider-dot{
  width:8px;height:8px;padding:0;border:0;border-radius:50%;background:#d5d8df;
  transition:.2s
}
.slider-dot.active{width:24px;border-radius:999px;background:#16bda9}

.retry-copy{
  margin-top:25px;color:var(--navy);text-align:center
}
.retry-copy span{display:block;font-size:17px}
.retry-copy strong{display:block;font-size:28px;line-height:1.02;letter-spacing:-.04em}

.benefit-section{position:relative;padding-top:30px}
.benefit-section::after{
  content:"";position:absolute;right:-95px;bottom:-50px;width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle,rgba(35,222,181,.2),rgba(35,222,181,0) 69%);
  pointer-events:none
}
.benefit-grid{
  margin-top:23px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px
}
.benefit-card{
  min-height:168px;
  padding:13px 12px 15px;
  border-radius:11px;
  background:linear-gradient(145deg,#23d9ad,#17cfa9);
  color:#fff;
  position:relative;
  z-index:1
}
.benefit-card.dark{background:linear-gradient(145deg,#12bba6,#057f94)}
.benefit-title{
  display:flex;align-items:flex-start;gap:7px
}
.benefit-title i{
  width:27px;height:27px;border-radius:50%;
  display:grid;place-items:center;
  background:var(--navy);color:#fff;
  flex:0 0 27px;font-size:13px
}
.benefit-title h3{
  margin:2px 0 0;font-size:17px;line-height:1.01;letter-spacing:-.03em
}
.benefit-card p{
  margin:9px 0 0;font-size:11px;line-height:1.18;font-weight:600
}

.schedule-section{
  padding-top:31px;
  padding-bottom:78px;
  position:relative;
  overflow:hidden
}
.schedule-section::after{
  content:"";position:absolute;left:-20%;right:-20%;bottom:-95px;height:190px;
  border-radius:50% 50% 0 0/100% 100% 0 0;
  background:radial-gradient(circle at 50% 0,#2ce9bd 0,#91f4db 42%,rgba(255,255,255,0) 72%);
  opacity:.85;
  pointer-events:none
}
.schedule-panel{
  margin:24px auto 0;
  padding:18px 16px;
  border-radius:18px;
  background:var(--navy);
  color:#fff;
  position:relative;
  z-index:2
}
.schedule-group + .schedule-group{margin-top:21px}
.schedule-group h3{
  margin:0 0 9px;
  font-size:16px;font-weight:800
}
.schedule-group h3 i{font-size:15px;margin-right:3px}
.schedule-row{
  display:grid;
  grid-template-columns:1fr 126px;
  align-items:stretch;
  margin:8px 0 0;
}
.schedule-row strong{
  min-height:52px;
  padding:8px 11px;
  display:flex;align-items:center;
  border-radius:11px 0 0 11px;
  background:linear-gradient(90deg,#0790a2,#20d6af);
  font-size:15px;line-height:1.05
}
.schedule-row span{
  min-height:52px;
  padding:8px 8px;
  display:flex;align-items:center;justify-content:center;
  border-radius:0 11px 11px 0;
  background:#fff;color:#46475d;
  font-size:12px;text-align:center
}

.site-footer{
  padding:22px 28px 28px;
  background:#fff;
  border-top:1px solid #f0f0f4;
  text-align:center;
}
.site-footer img{width:110px;margin:0 auto}
.site-footer p{margin:9px 0 0;color:#8e91a3;font-size:10px}

.modal-backdrop{
  position:fixed;inset:0;
  background:rgba(10,12,31,.68);
  z-index:200;
  padding:16px;
  overflow-y:auto
}
.registration-modal{
  width:min(100%,480px);
  margin:20px auto;
  padding:22px;
  border-radius:22px;
  background:#fff;
  box-shadow:0 30px 70px rgba(0,0,0,.22)
}
.modal-head{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.form-kicker{font-size:11px;color:#0a9c8e;text-transform:uppercase;letter-spacing:.1em;font-weight:800}
.modal-head h2{margin:3px 0 0;color:var(--navy);font-size:24px;letter-spacing:-.04em}
.modal-close{
  width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:#fff;color:var(--navy)
}
.form-intro{
  margin:9px 0 20px;
  font-size:12px;line-height:1.5;color:var(--muted)
}
.field{margin-top:13px}
.field label{
  display:block;margin-bottom:6px;font-size:11px;font-weight:800;color:#3f425d
}
.field label span{color:#e4304a}
.input-wrap{position:relative}
.input-wrap>i{
  position:absolute;left:13px;top:50%;transform:translateY(-50%);
  color:#9095a7;font-size:14px;pointer-events:none
}
.input-wrap input,.input-wrap select,.field textarea{
  width:100%;border:1px solid #d9dce5;background:#fff;color:var(--ink);
  border-radius:12px;outline:none;transition:.15s
}
.input-wrap input,.input-wrap select{
  height:46px;padding:0 39px
}
.input-wrap select{
  appearance:none;
  padding-right:34px
}
.select-wrap::after{
  content:"\f078";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;right:14px;top:50%;transform:translateY(-50%);
  pointer-events:none;color:#8f93a6;font-size:11px
}
.field textarea{padding:12px;resize:vertical}
.input-wrap input:focus,.input-wrap select:focus,.field textarea:focus{
  border-color:#19cdb0;box-shadow:0 0 0 3px rgba(25,205,176,.10)
}
.two-fields{display:grid;grid-template-columns:1fr;gap:0}
.consent{
  margin-top:17px;display:flex;align-items:flex-start;gap:9px;
  font-size:11px;line-height:1.45;color:#64687c
}
.consent input{margin-top:2px;accent-color:#13bfa4}
.form-alert{
  margin-top:14px;padding:11px 12px;border-radius:10px;background:#fff4f4;color:#b12436;font-size:11px;line-height:1.45
}
.form-alert.success{background:#eafbf5;color:#087e6e}
.submit-btn{
  width:100%;min-height:49px;margin-top:17px;border:0;border-radius:13px;
  background:linear-gradient(90deg,#1fd5ae,#08a9a5);color:#fff;
  font-weight:800;display:flex;align-items:center;justify-content:center;gap:9px
}
.submit-btn:disabled{opacity:.6;cursor:wait}

@media (min-width:520px){
  body{padding:24px 0}
  .page-shell{border-radius:24px}
}

/* This V1 intentionally follows the supplied mobile-first design.
   Desktop layout can be expanded after the mobile version is approved. */


/* v1.2.5 - hero memakai 1 gambar komposit dari desain final user */
.hero-visual-composite{
  position:relative;
  width:130%;
  height:auto !important;
  overflow:visible;
  margin-top:-18px;
  line-height:0;
  background:transparent;
  margin-left: -50px;
}
.hero-composite{
  display:block;
  width:100%;
  height:auto;
  margin:0;
  padding:0;
  object-fit:contain;
}
.hero-visual-composite + .hero-curve{display:none !important;}
@media (max-width:410px){
  .hero-visual-composite{margin-top:-14px;}
}

/* =========================================================
   v1.2.6 - package slider, softer CTA, benefit highlight
   Hero final user TIDAK diubah.
   ========================================================= */
.package-card{
  min-height:440px;
  display:flex;
  flex-direction:column;
  padding:20px 24px 22px;
  transition:box-shadow .2s ease,border-color .2s ease,transform .2s ease;
}
.package-card--featured{
  background:linear-gradient(155deg,#25d7ae 0%,#11b9aa 52%,#087e92 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 16px 34px rgba(4,134,145,.16);
}
.package-card--plain{
  background:#fff;
  color:var(--navy);
  border:1.5px solid #20213f;
  box-shadow:0 12px 28px rgba(22,22,56,.06);
}
.package-card--plain .card-label{
  background:#27d4b8;
  color:var(--navy);
}
.package-card--plain .card-desc,
.package-card--plain .invest-label,
.package-card--plain .old-price,
.package-card--plain .material-list{
  color:#2e304d;
}
.package-card--plain .material-label{
  margin-top:16px;
  padding:0;
  background:transparent;
  color:#2e304d;
  font-size:15px;
  font-weight:500;
}
.package-card--plain .price{color:var(--navy)}
.package-card--plain .old-price{opacity:1}
.package-card h3{margin-top:9px}
.material-list{margin-bottom:0}
.register-btn{
  margin-top:auto;
  min-height:46px;
  padding:0 19px;
  border-radius:14px;
  background:#26d2b6;
  color:var(--navy);
  font-size:14px;
  font-weight:800;
  box-shadow:0 8px 18px rgba(20,190,165,.16);
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.package-card--featured .register-btn{
  background:#f4fff9;
  color:var(--navy);
  box-shadow:0 8px 18px rgba(0,72,86,.13);
}
.register-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(20,190,165,.22);
}
.register-btn:active{transform:translateY(0) scale(.985)}

.benefit-card--featured{
  background:linear-gradient(145deg,#11183e 0%,#087f92 100%);
  box-shadow:0 13px 28px rgba(17,24,62,.16);
  outline:2px solid rgba(31,216,178,.24);
  outline-offset:2px;
}
.benefit-badge{
  width:max-content;
  margin:0 0 10px;
  padding:4px 8px;
  border-radius:999px;
  background:#dffbf5;
  color:#087f76;
  font-size:9px;
  line-height:1;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}

@media (max-width:390px){
  .package-card{min-height:426px;padding:18px 20px 20px}
  .package-card h3{font-size:25px}
  .price{font-size:27px}
  .register-btn{width:100%;font-size:13px}
}


/* =========================================================
   v1.2.7 - card polish only
   Hero final user tetap TIDAK diubah.
   - Semua package card tetap hijau
   - Badge Paket & Materi mengikuti panjang teks
   - Benefit GRATIS Simulator lebih menonjol
   ========================================================= */

/* Flex column sebelumnya membuat badge inline ikut stretch penuh.
   Paksa badge kembali proporsional mengikuti isi teks. */
.package-card .card-label,
.package-card .material-label{
  align-self:flex-start;
  width:max-content;
  max-width:100%;
  flex:0 0 auto;
  white-space:nowrap;
}

.package-card .card-label{
  padding:4px 12px;
  border-radius:999px;
  background:#f7fffc;
  color:#4b4d61;
}

.package-card .material-label{
  margin-top:14px;
  padding:4px 11px;
  border-radius:999px;
  background:#f7fffc;
  color:#55566a;
  font-size:12px;
  font-weight:500;
}

/* Semua slide package mempertahankan visual hijau yang sama. */
.package-card--plain,
.package-card--featured{
  background:linear-gradient(155deg,#25d7ae 0%,#11b9aa 52%,#087e92 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 16px 34px rgba(4,134,145,.16);
}
.package-card--plain .card-label,
.package-card--plain .material-label{
  background:#f7fffc;
  color:#4b4d61;
  padding:4px 11px;
}
.package-card--plain .card-desc,
.package-card--plain .invest-label,
.package-card--plain .old-price,
.package-card--plain .material-list,
.package-card--plain .price{
  color:#fff;
}
.package-card--plain .old-price{opacity:.8}
.package-card--plain .register-btn,
.package-card--featured .register-btn{
  background:#f4fff9;
  color:var(--navy);
  box-shadow:0 8px 18px rgba(0,72,86,.13);
}

/* Highlight benefit utama: tetap satu bahasa visual dengan Melajoo,
   tetapi lebih terlihat tanpa mengubah grid benefit lainnya. */
.benefit-card--featured{
  overflow:hidden;
  background:
    radial-gradient(circle at 88% 12%,rgba(255,227,122,.34),transparent 31%),
    linear-gradient(145deg,#082f58 0%,#075d78 48%,#079b99 100%);
  border:2px solid rgba(98,242,213,.78);
  box-shadow:0 16px 32px rgba(4,75,103,.23),0 0 0 3px rgba(30,212,174,.08);
  outline:0;
}
.benefit-card--featured::after{
  content:"";
  position:absolute;
  width:92px;
  height:92px;
  border-radius:50%;
  right:-36px;
  bottom:-40px;
  background:rgba(255,255,255,.10);
  pointer-events:none;
}
.benefit-card--featured .benefit-badge{
  position:relative;
  z-index:1;
  background:#ffe37a;
  color:#133151;
  box-shadow:0 5px 13px rgba(0,0,0,.10);
}
.benefit-card--featured .benefit-title i{
  background:#ffe37a;
  color:#0b3558;
  box-shadow:0 4px 12px rgba(255,227,122,.22);
}
.benefit-card--featured .benefit-title h3{
  color:#fff;
  text-shadow:0 1px 0 rgba(0,0,0,.05);
}
.benefit-card--featured .benefit-title h3 .benefit-free{
  color:#ffe37a;
}
.benefit-card--featured p{color:#f3fffc}

/* =========================================================
   v1.2.9 - course UX refinement
   Hero final user TIDAK diubah.
   ========================================================= */

/* Soft course atmosphere with a static professional asset. */
main{
  background:#fbfffd url('../images/course-soft-pattern.svg') center top/480px 900px repeat-y;
}
.package-section,
.benefit-section,
.schedule-section,
.learning-system-section{
  background:transparent;
}

/* Real CTA only for Daftar Kelas. */
.section-cta{
  appearance:none;
  border:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 13px;
  border-radius:999px;
  background:linear-gradient(90deg,#1fd5ae,#0ebeb2);
  color:#fff;
  font-size:15px;
  font-weight:800;
  line-height:1;
  box-shadow:0 7px 16px rgba(20,190,165,.16);
  transition:transform .18s ease,box-shadow .18s ease;
}
.section-cta:hover{transform:translateY(-1px);box-shadow:0 9px 20px rgba(20,190,165,.22)}
.section-cta:active{transform:scale(.98)}

/* Benefit / Jadwal / Sistem Belajar are labels, not buttons. */
.section-label-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:5px 11px;
  border:1.5px solid #18bda8;
  border-radius:999px;
  background:rgba(255,255,255,.7);
  color:#079a8d;
  font-size:13px;
  font-weight:800;
  line-height:1;
  letter-spacing:.01em;
  box-shadow:0 4px 12px rgba(9,145,132,.06);
}

/* Package cards: remove artificial empty vertical space. */
.package-slider{transition:height .28s ease;}
.package-track{align-items:flex-start;}
.package-card{
  min-height:0 !important;
  height:auto;
}
.register-btn{
  margin-top:18px !important;
  align-self:flex-start;
  width:auto;
  min-width:184px;
  border:1px solid rgba(5,94,96,.07);
  background:#f2fff9 !important;
  box-shadow:0 7px 16px rgba(5,99,104,.11) !important;
}

/* Benefit cards: soft palette inspired by Melajoo program-category cards. */
.benefit-section{padding-top:34px;}
.benefit-grid{
  align-items:start;
  gap:12px;
}
.benefit-card,
.benefit-card.dark,
.benefit-card--featured{
  min-height:0 !important;
  padding:14px 9px 15px;
  border:1px solid #d7e9e8;
  border-radius:16px;
  color:var(--navy);
  box-shadow:0 8px 22px rgba(17,66,82,.055);
  outline:0;
  overflow:hidden;
}
.benefit-card--mint{background:#e9fbf6;}
.benefit-card--ice{background:#eef8fc;}
.benefit-card--aqua{background:#e8f9f7;}
.benefit-card--blue{background:#edf4fb;}
.benefit-card--featured{
  background:linear-gradient(145deg,#ddfbf4 0%,#e9f9fb 100%);
  border:1.5px solid rgba(13,177,160,.45);
  box-shadow:0 10px 25px rgba(7,128,143,.09);
}
.benefit-card--featured::after{display:none;}
.benefit-badge,
.benefit-card--featured .benefit-badge{
  margin:0 0 10px;
  padding:4px 8px;
  background:#fff;
  border:1px solid rgba(15,155,145,.18);
  color:#078b83;
  box-shadow:none;
}
.benefit-title{
  align-items:center;
  gap:8px;
}
.benefit-title .benefit-icon{
  width:34px;
  height:34px;
  border-radius:11px;
  display:grid;
  place-items:center;
  background:#fff;
  color:#0cb6a6;
  flex:0 0 34px;
  box-shadow:0 4px 12px rgba(15,134,134,.07);
}
.benefit-title .benefit-icon i{
  width:auto;
  height:auto;
  display:inline-block;
  background:transparent !important;
  color:inherit !important;
  box-shadow:none !important;
  font-size:15px;
}
.benefit-title h3,
.benefit-card--featured .benefit-title h3{
  margin:0;
  color:#063c68;
  font-size:13px;
  line-height:1.06;
  text-shadow:none;
}
.benefit-card--featured .benefit-title h3 .benefit-free,
.benefit-free{color:#089b8e;}
.benefit-card p,
.benefit-card--featured p{
  margin:9px 0 0;
  color:#60788b;
  font-size:10.5px;
  line-height:1.35;
  font-weight:550;
}
.benefit-card--simulator,
.benefit-card--retry{
  position:relative;
}
.benefit-card--simulator::before,
.benefit-card--retry::before{
  content:"";
  position:absolute;
  width:74px;
  height:74px;
  border-radius:50%;
  right:-28px;
  bottom:-31px;
  background:rgba(20,211,179,.09);
  pointer-events:none;
}

/* Schedule heading / section polish. */
.schedule-section{padding-bottom:50px;}
.schedule-panel{
  box-shadow:0 14px 30px rgba(23,23,56,.12);
}
.schedule-section::after{opacity:.45;}

/* System Belajar accordions. */
.learning-system-section{
  padding-top:16px;
  padding-bottom:42px;
  position:relative;
}
.learning-heading{margin-bottom:20px;}
.learning-heading h2{margin-top:10px;}
.learning-accordion{
  display:grid;
  gap:10px;
}
.learning-item{
  border:1px solid #deece9;
  border-radius:15px;
  background:rgba(255,255,255,.9);
  overflow:hidden;
  box-shadow:0 7px 20px rgba(25,74,82,.045);
}
.learning-item summary{
  list-style:none;
  min-height:50px;
  padding:0 15px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#102b50;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  user-select:none;
}
.learning-item summary::-webkit-details-marker{display:none;}
.learning-item summary i{
  font-size:11px;
  color:#0aa393;
  transition:transform .2s ease;
}
.learning-item[open] summary{
  background:#f4fcf9;
  border-bottom:1px solid #e5f1ef;
}
.learning-item[open] summary i{transform:rotate(45deg);}
.learning-content{
  padding:13px 16px 16px;
  color:#3f5366;
  font-size:12px;
  line-height:1.47;
}
.learning-content ol{
  margin:0;
  padding-left:19px;
}
.learning-content li + li{margin-top:7px;}
.learning-content strong{color:#15385c;}

/* Corporate-style minimal footer: logo + copyright only. */
.site-footer{
  padding:29px 28px 30px;
  background:#1b1a3b;
  border-top:0;
  text-align:center;
}
.site-footer img{
  width:120px;
  margin:0 auto;
}
.site-footer p{
  margin:0px 0 0;
  color:#a9c4d8;
  font-size:9.5px;
  line-height:1.4;
}

@media (max-width:390px){
  .benefit-grid{gap:10px;}
  .benefit-card{padding:12px 11px 13px;}
  .benefit-title h3,.benefit-card--featured .benefit-title h3{font-size:14px;}
  .benefit-card p,.benefit-card--featured p{font-size:10px;}
  .learning-item summary{font-size:13px;}
  .learning-content{font-size:11.5px;}
}

/* Ensure featured benefit icons use the same soft icon treatment. */
.benefit-card--featured .benefit-title .benefit-icon i{
  width:auto;
  height:auto;
  border-radius:0;
  display:inline-block;
  background:transparent !important;
  color:#0b9e91 !important;
  box-shadow:none !important;
  font-size:15px;
}


/* =========================================================
   v1.3.0 - favicon/footer/schedule lock/benefit emphasis polish
   Hero final user TIDAK diubah.
   ========================================================= */

/* Benefit utama dibuat lebih berbeda dari benefit standar,
   tetap soft agar menyatu dengan visual kategori program Melajoo. */
.benefit-card--featured{
  position:relative;
  background:linear-gradient(145deg,#d9fbf3 0%,#e2f5ff 100%) !important;
  border:1.5px solid rgba(8,151,148,.58) !important;
  box-shadow:0 12px 26px rgba(9,106,124,.12) !important;
}
.benefit-card--featured::before{
  content:"";
  position:absolute;
  left:0;right:0;top:0;
  height:4px;
  background:linear-gradient(90deg,#0b4b78 0%,#0aa59d 48%,#25d4b5 100%);
  pointer-events:none;
}
.benefit-card--featured .benefit-badge{
  background:#0b4b78 !important;
  border-color:#0b4b78 !important;
  color:#fff !important;
  box-shadow:0 5px 12px rgba(11,75,120,.10) !important;
}
.benefit-card--featured .benefit-title .benefit-icon{
  background:#f7fffd;
  color:#087f90;
  box-shadow:0 5px 13px rgba(8,127,144,.10);
}
.benefit-card--featured .benefit-free{
  color:#007f74 !important;
}
.benefit-card--featured p{
  color:#4c6f82 !important;
}

/* Jadwal: jam selalu memiliki ruang sendiri dan tidak terpotong. */
.schedule-row{
  grid-template-columns:minmax(0,1fr) minmax(124px,38%);
  width:100%;
}
.schedule-row strong{
  min-width:0;
  padding:8px 10px;
  overflow-wrap:anywhere;
}
.schedule-row span{
  min-width:124px;
  padding:8px 6px;
  font-size:11.5px;
  line-height:1.2;
  white-space:nowrap;
  overflow:visible;
}

/* Jadwal paket bundling menggunakan pilihan tetap sesuai ketentuan program. */
.select-wrap.is-locked select{
  background:#f2f8f7;
  border-color:#cfe5e1;
  color:#274d5e;
  opacity:1;
  cursor:not-allowed;
  -webkit-text-fill-color:#274d5e;
}
.select-wrap.is-locked::after{
  content:"\f274";
  color:#0a988b;
}
.schedule-rule-hint{
  margin-top:7px;
  min-height:16px;
  color:#7d8797;
  font-size:10.5px;
  line-height:1.35;
}
.schedule-rule-hint.is-fixed{
  color:#087d74;
  font-weight:650;
}
.schedule-rule-hint i{
  margin-right:4px;
  font-size:9px;
}

@media (max-width:390px){
  .schedule-row{grid-template-columns:minmax(0,1fr) 118px;}
  .schedule-row strong{font-size:13px;line-height:1.08;}
  .schedule-row span{min-width:118px;font-size:10.5px;padding-left:4px;padding-right:4px;}
  .schedule-rule-hint{font-size:10px;}
}


/* =========================================================
   v1.3.1 - full learning system + CTA visibility + soft course background
   Hero final user TIDAK diubah.
   ========================================================= */

/* Latar course dibuat lebih dekat dengan section "Kategori Program" Melajoo:
   soft blue/mint, tetap ringan, dengan pattern statis yang sudah ada. */
main{
  background-color:#f3f8fc;
  background-image:
    linear-gradient(rgba(243,248,252,.93),rgba(243,248,252,.93)),
    url('../images/course-soft-pattern.svg');
  background-position:center top, center top;
  background-size:auto, 480px 900px;
  background-repeat:repeat, repeat-y;
}
.package-section,
.benefit-section,
.schedule-section,
.learning-system-section{
  background-color:rgba(243,248,252,.74);
}

/* CTA utama: lebih jelas sebagai tombol, namun tetap sesuai brand Melajoo. */
.section-cta{
  min-height:48px;
  padding:0 22px;
  font-size:16px;
  letter-spacing:.01em;
  border:1px solid rgba(255,255,255,.72);
  background:linear-gradient(110deg,#23d9b7 0%,#11c7b5 52%,#10a9b5 100%);
  box-shadow:
    0 10px 24px rgba(7,152,153,.22),
    0 2px 0 rgba(255,255,255,.44) inset;
  position:relative;
  overflow:hidden;
  isolation:isolate;
  animation:melajooCtaBreath 2.8s ease-in-out infinite;
}
.section-cta::after{
  content:"";
  position:absolute;
  top:-40%;
  bottom:-40%;
  left:-35%;
  width:26%;
  transform:skewX(-22deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.54),transparent);
  animation:melajooCtaShine 3.8s ease-in-out infinite;
  pointer-events:none;
}
.section-cta:hover{
  transform:translateY(-2px) scale(1.01);
  box-shadow:0 14px 30px rgba(7,152,153,.28);
}

/* CTA pada setiap card paket dibuat lebih besar, soft, dan terasa clickable. */
.register-btn{
  min-height:50px !important;
  min-width:210px !important;
  padding:0 22px !important;
  border-radius:15px !important;
  font-size:14px !important;
  font-weight:800 !important;
  letter-spacing:.005em;
  box-shadow:
    0 10px 22px rgba(7,136,147,.17),
    0 1px 0 rgba(255,255,255,.48) inset !important;
  animation:melajooRegisterBreath 3.2s ease-in-out infinite;
}
.package-card--featured .register-btn{
  background:linear-gradient(180deg,#f7fff9 0%,#eafff7 100%) !important;
  border:1px solid rgba(11,142,137,.14) !important;
}
.register-btn:hover{
  transform:translateY(-2px) scale(1.01);
  box-shadow:0 14px 26px rgba(7,136,147,.24) !important;
}

@keyframes melajooCtaBreath{
  0%,100%{box-shadow:0 10px 24px rgba(7,152,153,.20),0 2px 0 rgba(255,255,255,.44) inset;}
  50%{box-shadow:0 14px 30px rgba(7,152,153,.31),0 2px 0 rgba(255,255,255,.44) inset;}
}
@keyframes melajooCtaShine{
  0%,58%{left:-38%;opacity:0;}
  66%{opacity:.9;}
  84%{left:118%;opacity:0;}
  100%{left:118%;opacity:0;}
}
@keyframes melajooRegisterBreath{
  0%,100%{filter:saturate(1);}
  50%{filter:saturate(1.08) brightness(1.015);}
}

/* Sistem Belajar: konten lebih nyaman dibaca setelah dibuka. */
.learning-system-section{
  padding-top:24px;
  padding-bottom:46px;
}
.learning-accordion{gap:11px;}
.learning-item{
  border-color:#d4e7e9;
  box-shadow:0 8px 22px rgba(25,74,82,.05);
}
.learning-item summary{
  min-height:54px;
  padding:0 16px;
  font-size:14px;
}
.learning-content{
  padding:15px 17px 18px;
  color:#304b61;
  font-size:12.5px;
  line-height:1.5;
}
.learning-content li + li{margin-top:8px;}

@media (max-width:390px){
  .section-cta{min-height:46px;padding:0 20px;font-size:15px;}
  .register-btn{width:100% !important;min-width:0 !important;min-height:49px !important;}
  .learning-item summary{font-size:13px;min-height:52px;}
  .learning-content{font-size:12px;line-height:1.48;padding:14px 15px 17px;}
}

@media (prefers-reduced-motion:reduce){
  .section-cta,.section-cta::after,.register-btn{animation:none !important;}
}


/* =========================================================
   v1.3.2 - form wording + package slider edge cleanup
   Hero final user TIDAK diubah.
   ========================================================= */

/* Pilihan jadwal bundling tetap otomatis, tetapi tampil natural tanpa istilah "dikunci". */
.select-wrap.is-locked select{
  cursor:default;
}
.select-wrap.is-locked::after{
  content:"\f274";
  color:#0a988b;
}

/* Hilangkan artefak garis/box tipis di sisi bawah slider akibat shadow card
   yang terpotong oleh area overflow slider pada mobile. */
.package-slider-wrap,
.package-slider,
.package-track,
.package-slide{
  background:transparent !important;
}
.package-card--plain,
.package-card--featured{
  box-shadow:none !important;
}
.package-slide{
  padding-bottom:0 !important;
}



/* =========================================================
   v1.3.3 - benefit cleanup, mentor section, WhatsApp redirect notice
   Hero final user TIDAK diubah.
   ========================================================= */

/* Hapus aksen garis di bagian atas card benefit utama. */
.benefit-card--featured::before{
  display:none !important;
  content:none !important;
}

/* Mentor course - mengikuti bahasa visual corporate Melajoo.
   Di mobile dua card terlihat sekaligus dan dapat digeser horizontal. */
.course-mentor-section{
  padding-top:34px;
  padding-bottom:38px;
  background:rgba(239,247,252,.9);
  border-top:1px solid rgba(210,228,237,.65);
  border-bottom:1px solid rgba(210,228,237,.65);
}
.course-mentor-heading{
  text-align: center;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.course-mentor-eyebrow{
  display:block;
  margin-bottom:7px;
  color:#0aa99e;
  font-size:10px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.course-mentor-heading h2{
  margin:0;
  color:#073d68;
  font-size:22px;
  line-height:1.08;
  letter-spacing:-.035em;
}
.course-mentor-heading p{
  margin:7px 0 0;
  max-width:none;
  color:#6c8497;
  font-size:11px;
  line-height:1.45;
}
.course-mentor-all{
  display:inline-flex;
  align-items:center;
  gap:5px;
  flex:0 0 auto;
  padding-bottom:2px;
  color:#0796c5;
  font-size:10.5px;
  font-weight:800;
  white-space:nowrap;
}
.course-mentor-all i{font-size:9px}

.course-mentor-viewport{
  width:100%;
  overflow-x:auto;
  overscroll-behavior-inline:contain;
  scroll-snap-type:x mandatory;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
  outline:0;
}
.course-mentor-viewport::-webkit-scrollbar{display:none}
.course-mentor-track{
  display:flex;
  gap:10px;
  width:100%;
  padding:1px 1px 5px;
}
.course-mentor-card{
  flex:0 0 calc((100% - 9px)/2);
  width:calc((100% - 9px)/2);
  max-width:none;
  min-width:0;
  overflow:hidden;
  border:1px solid #d8e7ef;
  border-radius:15px;
  background:#eef7fc;
  box-shadow:0 7px 18px rgba(15,62,90,.055);
  scroll-snap-align:start;
  transition:transform .18s ease,box-shadow .18s ease;
}
.course-mentor-card:active{transform:scale(.985)}
.course-mentor-photo{
  height:154px;
  overflow:hidden;
  background:linear-gradient(180deg,#dff4f3,#cae9ee);
  position:relative;
}
.course-mentor-photo::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:36%;
  background:linear-gradient(180deg,transparent,rgba(5,50,76,.08));
  pointer-events:none;
}
.course-mentor-photo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center bottom;
}
.course-mentor-copy{
  min-height:70px;
  padding:11px 10px 12px;
}
.course-mentor-copy strong{
  display:block;
  color:#073d68;
  font-size:11.2px;
  line-height:1.24;
  font-weight:800;
}
.course-mentor-copy span{
  display:block;
  margin-top:6px;
  color:#71899b;
  font-size:9.5px;
  line-height:1.35;
}

/* Notifikasi setelah data pendaftaran berhasil disimpan. */
.wa-redirect-notice{
  margin:4px 0 2px;
  padding:20px 17px 18px;
  border:1px solid #bfeae1;
  border-radius:16px;
  background:linear-gradient(145deg,#effcf8,#f5fbff);
  text-align:center;
}
.wa-redirect-notice[hidden]{display:none !important}
.wa-redirect-icon{
  width:48px;
  height:48px;
  margin:0 auto 12px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#d8f8ef;
  color:#0aa287;
  font-size:25px;
}
.wa-redirect-copy strong{
  display:block;
  color:#073d68;
  font-size:17px;
  line-height:1.2;
}
.wa-redirect-copy p{
  margin:8px auto 0;
  max-width:290px;
  color:#647c8f;
  font-size:11.5px;
  line-height:1.48;
}
.wa-redirect-copy small{
  display:block;
  margin-top:8px;
  color:#15917f;
  font-size:10px;
  font-weight:700;
}
.wa-redirect-button{
  min-height:48px;
  margin-top:15px;
  padding:0 16px;
  border-radius:13px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#19cdb4;
  color:#073d68;
  font-size:13px;
  font-weight:800;
  box-shadow:0 9px 20px rgba(15,164,149,.16);
}

/* Kurangi kemungkinan clipping visual di area benefit. */
.benefit-grid{
  overflow:visible;
}
.benefit-card{
  isolation:isolate;
}

@media (max-width:390px){
  .course-mentor-section{padding-top:30px;padding-bottom:34px;}
  .course-mentor-heading{align-items:flex-start;}
  .course-mentor-heading h2{font-size:20px;}
  .course-mentor-heading p{font-size:10.5px;}
  .course-mentor-all{font-size:10px;margin-top:10px;}
  .course-mentor-track{gap:9px;}
  .course-mentor-photo{height:142px;}
  .course-mentor-copy{min-height:20px;padding:10px 9px 11px;}
  .course-mentor-copy strong{font-size:10.4px;}
  .course-mentor-copy span{font-size:10px;}
}

/* =========================================================
   v1.3.4 - Jadwal kelas mengikuti reference Canva terbaru.
   ========================================================= */
.schedule-section{
  padding-top:34px;
  padding-bottom:76px;
  background:linear-gradient(180deg,#eff9ed 0%,#eff9ed 76%,#f6fcfa 100%);
}
.schedule-section::after{
  left:-14%;
  right:-14%;
  bottom:-110px;
  height:230px;
  opacity:.78;
  background:radial-gradient(circle at 50% 0,#26e7bc 0,#7ff0d5 36%,rgba(255,255,255,0) 72%);
}
.schedule-panel--reference{
  width:min(100%, 408px);
  margin:0 auto;
  padding:18px 18px 20px;
  border-radius:20px;
  box-shadow:0 16px 34px rgba(22,22,56,.13);
}
.schedule-panel-title{
  text-align:center;
  margin:0 auto 14px;
}
.schedule-panel-title h2{
  margin:0;
  color:#fff;
  font-size:23px;
  line-height:1.02;
  letter-spacing:-.035em;
  font-weight:800;
}
.schedule-choice-list{
  display:grid;
  gap:17px;
  margin:0 0 18px;
}
.schedule-choice{
  position:relative;
  padding-top:8px;
}
.schedule-choice-label{
  position:absolute;
  top:0;
  left:14px;
  z-index:3;
  display:inline-flex;
  align-items:center;
  min-height:18px;
  padding:2px 14px;
  border-radius:999px;
  background:#fff;
  color:#64657a;
  font-size:10px;
  line-height:1;
  font-weight:500;
  box-shadow:0 1px 0 rgba(0,0,0,.04);
}
.schedule-group--reference + .schedule-group--reference{
  margin-top:18px;
}
.schedule-group--reference h3{
  margin:0 0 9px;
  color:#fff;
  font-size:20px;
  line-height:1.08;
  letter-spacing:-.035em;
  font-weight:800;
}
.schedule-group--reference h3 i{
  margin-right:5px;
  font-size:18px;
  color:#fff;
}
.schedule-row--reference{
  grid-template-columns:minmax(0,1fr) 164px;
  margin-top:7px;
}
.schedule-row--reference strong,
.schedule-row--reference span{
  min-height:43px;
}
.schedule-row--reference strong{
  padding:7px 13px;
  border-radius:11px 0 0 11px;
  background:linear-gradient(90deg,#078da4 0%,#1fd7b1 100%);
  color:#fff;
  font-size:18px;
  line-height:1.05;
  letter-spacing:-.025em;
  white-space:nowrap;
}
.schedule-row--reference span{
  min-width:164px;
  padding:7px 8px;
  border-radius:0 11px 11px 0;
  background:#fff;
  color:#34364d;
  font-size:14px;
  line-height:1.1;
  white-space:nowrap;
}

@media (max-width:430px){
  .schedule-section{
    padding:28px 18px 72px;
  }
  .schedule-panel--reference{
    width:100%;
    padding:17px 14px 18px;
    border-radius:18px;
  }
  .schedule-panel-title h2{
    font-size:20px;
    line-height:1.03;
  }
  .schedule-choice-list{
    gap:15px;
    margin-bottom:17px;
  }
  .schedule-choice-label{
    left:11px;
    min-height:17px;
    padding:2px 12px;
    font-size:11px;
    font-weight: 800;
  }
  .schedule-group--reference + .schedule-group--reference{
    margin-top:17px;
  }
  .schedule-group--reference h3{
    font-size:17px;
    line-height:1.1;
  }
  .schedule-group--reference h3 i{
    font-size:16px;
    margin-right:4px;
  }
  .schedule-row--reference{
    grid-template-columns:minmax(0,1fr) 134px;
  }
  .schedule-row--reference strong,
  .schedule-row--reference span{
    min-height:40px;
  }
  .schedule-row--reference strong{
    padding:7px 10px;
    font-size:15.5px;
  }
  .schedule-row--reference span{
    min-width:134px;
    padding:7px 6px;
    font-size:13px;
    font-weight: 800;
  }
}

@media (max-width:365px){
  .schedule-section{padding-left:13px;padding-right:13px;}
  .schedule-panel--reference{padding-left:12px;padding-right:12px;}
  .schedule-panel-title h2{font-size:18.5px;}
  .schedule-group--reference h3{font-size:15.5px;}
  .schedule-row--reference{grid-template-columns:minmax(0,1fr) 119px;}
  .schedule-row--reference strong{font-size:13.5px;padding-left:8px;padding-right:8px;}
  .schedule-row--reference span{min-width:119px;font-size:10px;padding-left:4px;padding-right:4px;}
}


/* =========================================================
   v1.3.5 - Jadwal kelas sesuai referensi Canva 16 Sep 2026.
   Scope sengaja dibatasi ke schedule-panel--canva agar section lain
   pada landing page tidak berubah.
   ========================================================= */
.schedule-panel--canva{
  width:min(100%, 408px);
  padding:22px 23px 24px;
  border-radius:20px;
  background:#171738;
  box-shadow:0 16px 34px rgba(22,22,56,.14);
}
.schedule-panel-title--canva{
  margin-bottom:19px;
}
.schedule-panel-title--canva h2{
  font-size:20px;
  line-height:1.02;
  letter-spacing:-.035em;
  font-weight:850;
}
.schedule-panel-title--canva h2 span{
  color:#20d2b4;
}
.schedule-block--canva + .schedule-block--canva{
  margin-top:18px;
}
.schedule-block-heading{
  margin:0 0 10px;
}
.schedule-block-heading h3{
  display:flex;
  align-items:center;
  gap:6px;
  margin:0;
  color:#20d2b4;
  font-size:16px;
  line-height:1.12;
  letter-spacing:-.02em;
  font-weight:850;
}
.schedule-block-heading h3 i{
  flex:0 0 auto;
  color:#20d2b4;
  font-size:13px;
}
.schedule-block-heading p{
  margin:3px 0 0 20px;
  color:#fff;
  font-size:9px;
  line-height:1.2;
  font-weight:650;
}
.schedule-choice-list--canva{
  display:grid;
  gap:13px;
  margin:0;
}
.schedule-choice-stack--canva{
  display:grid;
  gap:12px;
}
.schedule-choice--canva{
  position:relative;
  padding-top:8px;
}
.schedule-choice--canva .schedule-choice-label{
  top:0;
  left:10px;
  min-height:17px;
  padding:2px 11px;
  border-radius:999px;
  background:#fff;
  color:#737487;
  font-size:8.5px;
  font-weight:600;
  box-shadow:none;
}
.schedule-row--canva{
  grid-template-columns:minmax(0,1fr) 120px;
  margin-top:0;
}
.schedule-row--canva strong,
.schedule-row--canva span{
  min-height:38px;
}
.schedule-row--canva strong{
  padding:7px 10px;
  border-radius:11px 0 0 11px;
  background:linear-gradient(90deg,#078aa5 0%,#1bd2b5 100%);
  color:#fff;
  font-size:15px;
  line-height:1;
  font-weight:850;
  white-space:nowrap;
}
.schedule-row--canva span{
  min-width:120px;
  padding:7px 6px;
  border-radius:0 11px 11px 0;
  background:#fff;
  color:#33354e;
  font-size:10.5px;
  line-height:1;
  font-weight:500;
  white-space:nowrap;
}

@media (max-width:430px){
  .schedule-panel--canva{
    padding:20px 22px 22px;
    border-radius:18px;
  }
  .schedule-panel-title--canva h2{
    font-size:18.5px;
  }
  .schedule-block--canva + .schedule-block--canva{
    margin-top:17px;
  }
  .schedule-block-heading h3{
    font-size:14.5px;
  }
  .schedule-block-heading h3 i{
    font-size:11.5px;
  }
  .schedule-block-heading p{
    margin-left:18px;
    font-size:10px;
  }
  .schedule-choice--canva .schedule-choice-label{
    left:9px;
    font-size:11px;
    font-weight: 800;
  }
  .schedule-row--canva{
    grid-template-columns:minmax(0,1fr) 111px;
  }
  .schedule-row--canva strong,
  .schedule-row--canva span{
    min-height:36px;
  }
  .schedule-row--canva strong{
    font-size:14px;
    padding-left:9px;
    padding-right:7px;
  }
  .schedule-row--canva span{
    min-width:111px;
    font-size:11px;
    font-weight: 800;
    padding-left:4px;
    padding-right:4px;
  }
}

@media (max-width:365px){
  .schedule-panel--canva{padding-left:16px;padding-right:16px;}
  .schedule-panel-title--canva h2{font-size:17.5px;}
  .schedule-block-heading h3{font-size:13.5px;}
  .schedule-row--canva{grid-template-columns:minmax(0,1fr) 104px;}
  .schedule-row--canva strong{font-size:12.8px;}
  .schedule-row--canva span{min-width:104px;font-size:8.8px;}
}


/* =========================================================
   v1.3.8 - Pembeda warna jadwal weekday vs weekend.
   Mengikuti referensi Canva: Senin-Jumat tetap gradient brand,
   Sabtu-Minggu menggunakan cyan #0cc0df. Scope hanya jadwal.
   ========================================================= */
.schedule-choice--weekend .schedule-row--canva strong{
  background:#0cc0df;
}


/* =========================================================
   v1.3.9 - Sticky course header
   Header tetap terlihat saat halaman di-scroll.
   ========================================================= */
.site-header{
  position:-webkit-sticky;
  position:sticky;
  top:0;
  z-index:80;
}

/* =========================================================
   v1.4.0 - DESKTOP EXPERIENCE
   Mobile layout <= 899px intentionally remains unchanged.
   ========================================================= */
.desktop-nav{display:none}

@media (min-width:900px){
  body{
    padding:0;
    background:#f3f8fc;
  }
  .page-shell{
    width:100%;
    max-width:none;
    min-height:100vh;
    margin:0;
    overflow:visible;
    border-radius:0;
    box-shadow:none;
    background:#fff;
  }

  /* Desktop header */
  .site-header{
    height:76px;
    padding:0 max(36px,calc((100vw - 1240px)/2));
    background:#171738;
    border-bottom:1px solid rgba(255,255,255,.08);
    box-shadow:0 8px 24px rgba(18,19,49,.12);
  }
  .brand{display:flex;align-items:center;flex:0 0 auto}
  .brand img{width:138px;height:auto}
  .menu-toggle{display:none}
  .desktop-nav{
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:6px;
    margin-left:auto;
  }
  .desktop-nav a{
    min-height:42px;
    padding:0 13px;
    border-radius:11px;
    display:inline-flex;
    align-items:center;
    color:#d8d9e8;
    font-size:13px;
    font-weight:700;
    transition:background .18s ease,color .18s ease,transform .18s ease;
  }
  .desktop-nav a:hover{
    background:rgba(255,255,255,.08);
    color:#fff;
  }
  .desktop-nav .desktop-cta{
    margin-left:8px;
    padding:0 19px;
    background:linear-gradient(90deg,#22d8b6,#11bdb0);
    color:#10213e;
    box-shadow:0 8px 20px rgba(20,207,179,.18);
  }
  .desktop-nav .desktop-cta:hover{
    background:linear-gradient(90deg,#35dfc0,#20cabc);
    color:#0b2445;
    transform:translateY(-1px);
  }

  main{
    background-color:#f4f9fc;
    background-image:
      linear-gradient(rgba(244,249,252,.92),rgba(244,249,252,.92)),
      url('../images/course-soft-pattern.svg');
    background-position:center top,center top;
    background-size:auto,980px 1500px;
    background-repeat:repeat,repeat-y;
  }

  /* Hero: copy + approved composite image side by side. */
  .hero{
    min-height:610px;
    display:grid;
    grid-template-columns:minmax(390px,.82fr) minmax(620px,1.18fr);
    align-items:center;
    gap:30px;
    padding:28px max(38px,calc((100vw - 1240px)/2)) 12px;
    background:
      radial-gradient(circle at 80% 25%,rgba(27,215,178,.10),transparent 29%),
      linear-gradient(180deg,#fff 0%,#fbfffd 100%);
  }
  .hero-copy{
    padding:0;
    max-width:490px;
  }
  .batch-pill{
    padding:7px 15px;
    font-size:15px;
  }
  .hero h1{
    max-width:520px;
    margin:18px 0 14px;
    font-size:50px;
    line-height:.98;
    letter-spacing:-.052em;
  }
  .hero-subtitle{
    font-size:21px;
    line-height:1.3;
  }
  .schedule-float{
    justify-content:flex-start;
    gap:14px;
    margin:28px 0 0;
  }
  .schedule-badge{
    width:178px;
    padding:31px 10px 10px;
    border-radius:14px;
  }
  .schedule-badge strong{
    height:22px;
    font-size:12px;
  }
  .schedule-badge span{font-size:15px}
  .schedule-badge small{font-size:12px}
  .hero-visual-composite{
    width:min(760px,100%);
    margin:0 -12px -18px auto;
    overflow:visible;
    align-self:end;
  }
  .hero-composite{width:100%;height:auto}

  /* Global desktop section rhythm */
  .section{
    width:min(1180px,calc(100% - 72px));
    margin:0 auto;
    padding-left:0;
    padding-right:0;
  }
  .package-section,
  .benefit-section,
  .schedule-section,
  .learning-system-section{
    background:transparent;
  }
  .section-heading p{font-size:18px}
  .section-heading h2{font-size:34px;line-height:1.08}
  .section-heading.compact h2{font-size:32px}
  .section-label-outline{font-size:13px;padding:7px 14px}

  /* Packages */
  .package-section{
    padding-top:72px;
    padding-bottom:54px;
  }
  .section-cta{
    min-height:52px;
    padding:0 26px;
    font-size:16px;
  }
  .package-mode-tabs{margin:30px auto 20px}
  .mode-tab{padding:9px 18px;font-size:14px}
  .package-category-tabs{
    max-width:780px;
    margin:0 auto -5px;
  }
  .category-tab{
    min-width:150px;
    padding:10px 18px;
    font-size:13px;
  }
  .package-slider-wrap{
    max-width:780px;
    margin:0 auto;
  }
  .package-card{
    padding:30px 38px 32px;
    border-radius:28px;
  }
  .package-card h3{font-size:38px;margin-top:12px}
  .card-desc{max-width:520px;font-size:14px;line-height:1.45}
  .invest-label{margin-top:18px;font-size:12px}
  .price{font-size:40px}
  .old-price{font-size:14px}
  .discount{font-size:12px;padding:5px 9px}
  .material-label{font-size:13px !important;margin-top:20px !important}
  .material-list{font-size:13px;line-height:1.45;columns:2;column-gap:44px}
  .register-btn{
    min-width:230px !important;
    min-height:52px !important;
    margin-top:24px !important;
    font-size:15px !important;
  }
  .slider-dots{margin-top:16px}
  .retry-copy{margin-top:42px}
  .retry-copy span{font-size:18px}
  .retry-copy strong{font-size:32px}

  /* Benefits */
  .benefit-section{
    padding-top:62px;
    padding-bottom:72px;
  }
  .benefit-grid{
    margin-top:32px;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
  }
  .benefit-card,
  .benefit-card.dark,
  .benefit-card--featured{
    min-height:205px !important;
    padding:22px 20px 24px;
    border-radius:20px;
  }
  .benefit-badge,
  .benefit-card--featured .benefit-badge{
    margin-bottom:15px;
    padding:6px 10px;
    font-size:10px;
  }
  .benefit-title{gap:13px}
  .benefit-title .benefit-icon{
    width:46px;
    height:46px;
    flex-basis:46px;
    border-radius:14px;
  }
  .benefit-title .benefit-icon i{font-size:18px}
  .benefit-title h3,
  .benefit-card--featured .benefit-title h3{
    font-size:19px;
    line-height:1.08;
  }
  .benefit-card p,
  .benefit-card--featured p{
    margin-top:14px;
    font-size:13px;
    line-height:1.55;
  }

  /* Schedule: four blocks arranged efficiently on desktop. */
  .schedule-section{
    width:100%;
    max-width:none;
    padding:78px max(38px,calc((100vw - 1180px)/2)) 100px;
    background:linear-gradient(180deg,#eff8f4 0%,#edf8f5 80%,#f6fbfa 100%);
  }
  .schedule-panel--canva{
    width:min(100%,980px);
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;
    padding:36px;
    border-radius:28px;
  }
  .schedule-panel-title--canva{
    grid-column:1/-1;
    margin-bottom:4px;
  }
  .schedule-panel-title--canva h2{
    font-size:31px;
    line-height:1.05;
  }
  .schedule-block--canva,
  .schedule-block--canva + .schedule-block--canva{margin-top:0}
  .schedule-block--canva{
    padding:20px;
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    background:rgba(255,255,255,.035);
  }
  .schedule-block-heading h3{font-size:18px}
  .schedule-block-heading p{font-size:10.5px;line-height:1.35}
  .schedule-choice-list--canva{gap:15px}
  .schedule-row--canva{grid-template-columns:minmax(0,1fr) 150px}
  .schedule-row--canva strong,
  .schedule-row--canva span{min-height:44px}
  .schedule-row--canva strong{font-size:16px;padding:8px 12px}
  .schedule-row--canva span{min-width:150px;font-size:12px}
  .schedule-choice--canva .schedule-choice-label{font-size:9px}

  /* Mentor section: all five mentors visible at once on desktop. */
  .course-mentor-section{
    width:100%;
    max-width:none;
    padding:76px max(38px,calc((100vw - 1240px)/2)) 84px;
    background:#eef6fb;
  }
  .course-mentor-heading{
    max-width:1240px;
    margin:0 auto 26px;
    display:flex;
    text-align:left;
  }
  .course-mentor-eyebrow{font-size:11px}
  .course-mentor-heading h2{font-size:34px}
  .course-mentor-heading p{max-width:580px;font-size:13px}
  .course-mentor-all{font-size:12px}
  .course-mentor-viewport{
    max-width:1240px;
    margin:0 auto;
    overflow:visible;
  }
  .course-mentor-track{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:16px;
    width:100%;
    padding:0;
  }
  .course-mentor-card{
    width:auto;
    max-width:none;
    min-width:0;
    border-radius:19px;
  }
  .course-mentor-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 32px rgba(15,62,90,.11);
  }
  .course-mentor-photo{height:250px}
  .course-mentor-copy{min-height:92px;padding:16px 15px 17px}
  .course-mentor-copy strong{font-size:13px;line-height:1.3}
  .course-mentor-copy span{font-size:11px;line-height:1.4}

  /* Learning system */
  .learning-system-section{
    width:min(1040px,calc(100% - 72px));
    padding-top:78px;
    padding-bottom:90px;
  }
  .learning-heading{margin-bottom:30px}
  .learning-heading h2{font-size:34px;line-height:1.08}
  .learning-accordion{gap:13px}
  .learning-item{border-radius:17px}
  .learning-item summary{
    min-height:62px;
    padding:0 22px;
    font-size:15px;
  }
  .learning-content{
    padding:18px 24px 23px;
    font-size:13px;
    line-height:1.6;
  }

  /* Footer */
  .site-footer{
    padding:34px 28px 36px;
  }
  .site-footer img{width:132px}
  .site-footer p{font-size:10.5px}

  /* Registration modal */
  .modal-backdrop{padding:34px}
  .registration-modal{
    width:min(100%,620px);
    margin:34px auto;
    padding:30px 32px 32px;
    border-radius:26px;
  }
  .modal-head h2{font-size:28px}
  .form-intro{font-size:13px}
  .field label{font-size:12px}
  .input-wrap input,.input-wrap select{height:49px}
  .field textarea{min-height:92px}
}

@media (min-width:900px) and (max-width:1120px){
  .site-header{padding-left:28px;padding-right:28px}
  .desktop-nav a{padding-left:9px;padding-right:9px;font-size:12px}
  .hero{
    grid-template-columns:minmax(350px,.8fr) minmax(520px,1.2fr);
    padding-left:36px;
    padding-right:28px;
  }
  .hero h1{font-size:43px}
  .hero-visual-composite{width:650px}
  .course-mentor-track{grid-template-columns:repeat(3,minmax(0,1fr))}
  .course-mentor-photo{height:280px}
}

/* =========================================================
   v1.4.1 - DESKTOP PACKAGE GRID + COMBINED SCHEDULE / FAQ
   Mobile <= 899px remains unchanged.
   ========================================================= */
.desktop-package-grid,
.desktop-schedule-faq-section{display:none}

@media (min-width:900px){
  /* Five package cards are visible at once on desktop. */
  .package-category-tabs,
  .package-slider-wrap{display:none !important}

  .desktop-package-grid{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:20px;
    width:min(1120px,100%);
    margin:24px auto 0;
    align-items:start;
  }
  .desktop-package-card{
    min-width:0;
    align-self:start;
  }
  .desktop-package-card:nth-child(-n+3){grid-column:span 2}
  .desktop-package-card:nth-child(n+4){grid-column:span 3}
  .desktop-package-card .package-card{
    min-height:0;
    height:auto;
    padding:26px 26px 28px;
    border-radius:24px;
    box-shadow:0 14px 34px rgba(4,134,145,.14);
  }
  .desktop-package-card .package-card h3{
    margin-top:10px;
    font-size:30px;
  }
  .desktop-package-card .card-desc{
    max-width:none;
    font-size:12.5px;
    line-height:1.42;
  }
  .desktop-package-card .price{font-size:33px}
  .desktop-package-card .material-list{
    columns:1;
    column-gap:0;
    font-size:12px;
    line-height:1.4;
  }
  .desktop-package-card--bundle .material-list{
    columns:2;
    column-gap:28px;
  }
  .desktop-package-card .register-btn{
    min-width:0 !important;
    width:auto;
    min-height:48px !important;
    margin-top:20px !important;
    padding:0 22px !important;
    font-size:14px !important;
    box-shadow:0 8px 18px rgba(8,63,77,.12);
    transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
  }
  .desktop-package-card .register-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(8,63,77,.18);
    background:#fff;
  }
  .package-mode-tabs{
    margin-bottom:0;
  }
  .retry-copy{margin-top:48px}

  /* Exactly six balanced benefit cards in a 3 x 2 desktop grid. */
  .benefit-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    grid-auto-rows:1fr;
    gap:18px;
  }
  .benefit-card,
  .benefit-card.dark,
  .benefit-card--featured{
    height:100%;
    min-height:210px !important;
  }

  /* Original mobile schedule/learning sections stay intact but are hidden on desktop. */
  .schedule-section,
  .learning-system-section{display:none !important}

  /* Combined desktop section: schedule left, FAQ right. */
  .desktop-schedule-faq-section{
    display:block;
    width:100%;
    max-width:none;
    padding:82px max(38px,calc((100vw - 1240px)/2)) 90px;
    background:
      radial-gradient(circle at 12% 18%,rgba(35,220,181,.10),transparent 25%),
      radial-gradient(circle at 88% 82%,rgba(58,183,235,.09),transparent 24%),
      linear-gradient(180deg,#eef8f5 0%,#f5fafc 100%);
  }
  .desktop-combined-heading{
    max-width:1240px;
    margin:0 auto 30px;
    text-align:center;
  }
  .desktop-combined-heading h2{
    margin:10px 0 7px;
    color:var(--navy);
    font-size:34px;
    line-height:1.08;
    letter-spacing:-.035em;
  }
  .desktop-combined-heading p{
    margin:0;
    color:#678198;
    font-size:13px;
  }
  .desktop-schedule-faq-grid{
    width:min(1240px,100%);
    margin:0 auto;
    display:grid;
    grid-template-columns:minmax(0,1.14fr) minmax(380px,.86fr);
    gap:24px;
    align-items:start;
  }
  .desktop-combined-column{
    min-width:0;
    border:1px solid #d7e7ec;
    border-radius:28px;
    box-shadow:0 18px 48px rgba(25,83,103,.08);
    overflow:hidden;
  }
  .desktop-schedule-column{
    padding:24px;
    background:#171738;
    border-color:rgba(255,255,255,.08);
  }
  .desktop-faq-column{
    padding:24px;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(8px);
  }
  .desktop-column-heading{
    margin:0 0 18px;
  }
  .desktop-column-kicker{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 11px;
    border-radius:999px;
    border:1px solid #21cdb4;
    color:#11a895;
    background:#fff;
    font-size:11px;
    font-weight:800;
  }
  .desktop-column-heading h3{
    margin:10px 0 5px;
    color:var(--navy);
    font-size:24px;
    line-height:1.08;
    letter-spacing:-.025em;
  }
  .desktop-column-heading p{
    margin:0;
    color:#6d8498;
    font-size:12px;
    line-height:1.45;
  }
  .desktop-schedule-column .desktop-column-kicker{
    border-color:rgba(41,221,190,.55);
    background:rgba(37,214,184,.12);
    color:#2ae0bd;
  }
  .desktop-schedule-column .desktop-column-heading h3{color:#fff}
  .desktop-schedule-column .desktop-column-heading p{color:#b8c1d2;margin-bottom: -15px;}

  .desktop-schedule-clone .schedule-panel--canva{
    width:100%;
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
    padding:0;
    background:transparent;
    border:0;
    border-radius:0;
    box-shadow:none;
  }
  .desktop-schedule-clone .schedule-panel-title--canva{display:none}
  .desktop-schedule-clone .schedule-block--canva{
    min-width:0;
    padding:16px;
    border-radius:16px;
    background:rgba(255,255,255,.045);
    border:1px solid rgba(255,255,255,.10);
  }
  .desktop-schedule-clone .schedule-block-heading h3{
    font-size:15px;
    line-height:1.28;
  }
  .desktop-schedule-clone .schedule-block-heading p{
    margin-top:4px;
    font-size:9.5px;
  }
  .desktop-schedule-clone .schedule-choice-list--canva,
  .desktop-schedule-clone .schedule-choice-stack--canva{gap:10px}
  .desktop-schedule-clone .schedule-row--canva{
    grid-template-columns:minmax(0,1fr) 118px;
  }
  .desktop-schedule-clone .schedule-row--canva strong,
  .desktop-schedule-clone .schedule-row--canva span{
    min-height:40px;
  }
  .desktop-schedule-clone .schedule-row--canva strong{
    padding:7px 10px;
    font-size:13px;
  }
  .desktop-schedule-clone .schedule-row--canva span{
    min-width:118px;
    padding:0 7px;
    font-size:10.5px;
  }
  .desktop-schedule-clone .schedule-choice--canva .schedule-choice-label{
    font-size:10px;
    font-weight: 800;
  }

  .desktop-faq-clone .learning-accordion{
    display:grid;
    gap:10px;
  }
  .desktop-faq-clone .learning-item{
    background:#fff;
    border:1px solid #dbe9ed;
    border-radius:15px;
    box-shadow:none;
  }
  .desktop-faq-clone .learning-item summary{
    min-height:54px;
    padding:0 17px;
    font-size:13px;
  }
  .desktop-faq-clone .learning-content{
    padding:15px 18px 18px;
    font-size:11.5px;
    line-height:1.55;
  }
  .desktop-faq-clone .learning-content ol{
    padding-left:19px;
  }

  /* Mentor follows the combined information section. */
  .course-mentor-section{padding-top:82px}
}

@media (min-width:900px) and (max-width:1120px){
  .desktop-package-grid{gap:14px}
  .desktop-package-card .package-card{padding:22px 20px 24px}
  .desktop-package-card .package-card h3{font-size:25px}
  .desktop-package-card .price{font-size:29px}
  .desktop-package-card .material-list{font-size:11px}
  .desktop-schedule-faq-grid{grid-template-columns:1fr 1fr;gap:18px}
  .desktop-schedule-clone .schedule-panel--canva{grid-template-columns:1fr}
  .desktop-schedule-clone .schedule-row--canva{grid-template-columns:minmax(0,1fr) 116px}
}

/* =========================================================
   v1.4.2 - DESKTOP FILTERED PACKAGES + 6-UP BENEFITS
   Desktop only. Mobile <= 899px remains unchanged.
   ========================================================= */
@media (min-width:900px){
  /* Keep section-to-section spacing compact and consistent. */
  .package-section,
  .benefit-section{
    padding-top:30px;
    padding-bottom:30px;
  }
  .desktop-schedule-faq-section{
    padding-top:30px;
    padding-bottom:30px;
  }
  .course-mentor-section{
    padding-top:30px;
    padding-bottom:30px;
  }

  /* Package mode tabs now act as a real desktop filter. */
  .desktop-package-grid{
    display:grid;
    width:min(1180px,100%);
    margin:24px auto 0;
    gap:20px;
    align-items:stretch;
  }
  .desktop-package-grid[data-mode="single"]{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
  .desktop-package-grid[data-mode="bundle"]{
    grid-template-columns:repeat(2,minmax(0,1fr));
    max-width:920px;
  }
  .desktop-package-card,
  .desktop-package-card:nth-child(-n+3),
  .desktop-package-card:nth-child(n+4){
    grid-column:auto;
  }
  .desktop-package-card[hidden]{display:none !important;}
  .desktop-package-card .package-card{
    height:100%;
  }
  .desktop-package-card--bundle .material-list{
    columns:2;
    column-gap:26px;
  }

  /* Six benefit cards in one horizontal row. */
  .benefit-section{
    width:min(1320px,calc(100% - 72px));
  }
  .benefit-grid{
    grid-template-columns:repeat(6,minmax(0,1fr));
    grid-auto-rows:1fr;
    gap:12px;
    margin-top:26px;
  }
  .benefit-card,
  .benefit-card.dark,
  .benefit-card--featured{
    min-width:0;
    min-height:120px !important;
    padding:15px 15px 15px;
    border-radius:18px;
  }
  .benefit-badge,
  .benefit-card--featured .benefit-badge{
    margin-bottom:12px;
    padding:5px 8px;
    font-size:9px;
  }
  .benefit-title{
    gap:10px;
    align-items:center;
  }
  .benefit-title .benefit-icon{
    width:40px;
    height:40px;
    flex-basis:40px;
    border-radius:12px;
  }
  .benefit-title .benefit-icon i{font-size:16px;}
  .benefit-title h3,
  .benefit-card--featured .benefit-title h3{
    font-size:15px;
    line-height:1.12;
  }
  .benefit-card p,
  .benefit-card--featured p{
    margin-top:12px;
    font-size:10.5px;
    line-height:1.5;
  }
  .benefit-free{display:inline;}

  /* Keep compact vertical rhythm inside the combined schedule/FAQ section. */
  .desktop-combined-heading{margin-bottom:22px;}
}

@media (min-width:900px) and (max-width:1180px){
  .benefit-section{width:min(100% - 48px,1120px);}
  .benefit-grid{gap:10px;}
  .benefit-card,
  .benefit-card.dark,
  .benefit-card--featured{padding:16px 13px 18px;}
  .benefit-title h3,
  .benefit-card--featured .benefit-title h3{font-size:14px;}
  .benefit-card p,
  .benefit-card--featured p{font-size:10.5px;}
}

/* =========================================================
   v1.4.3 - DESKTOP FULL-WIDTH PROFESSIONAL HERO
   Desktop only. Mobile <= 899px remains unchanged.
   ========================================================= */
@media (min-width:900px){
  .hero{
    isolation:isolate;
    min-height:620px;
    padding-top:34px;
    padding-bottom:18px;
    background-image:
      linear-gradient(90deg,
        rgba(5,45,88,.97) 0%,
        rgba(5,65,103,.95) 34%,
        rgba(4,102,125,.88) 67%,
        rgba(4,58,96,.93) 100%),
      url('../images/hero-background-uploaded.png');
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    box-shadow:inset 0 -1px 0 rgba(255,255,255,.10);
  }
  .hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:0;
    pointer-events:none;
    background:
      radial-gradient(circle at 16% 18%,rgba(29,213,177,.18),transparent 28%),
      radial-gradient(circle at 84% 20%,rgba(64,217,221,.14),transparent 25%),
      linear-gradient(180deg,rgba(255,255,255,.025),rgba(0,0,0,.08));
  }
  .hero::after{
    content:"";
    position:absolute;
    left:-7vw;
    right:-7vw;
    bottom:-170px;
    height:260px;
    z-index:0;
    pointer-events:none;
    border-radius:50% 50% 0 0 / 55% 55% 0 0;
    background:linear-gradient(90deg,rgba(27,214,177,.28),rgba(20,183,199,.14));
    filter:blur(2px);
  }
  .hero-copy,
  .hero-visual-composite{
    position:relative;
    z-index:2;
  }
  .hero h1{
    color:#ffffff;
    text-shadow:0 3px 18px rgba(4,24,55,.18);
  }
  .hero-subtitle{
    color:#e9f7fb;
  }
  .batch-pill{
    background:linear-gradient(90deg,#27d8b2,#13bfc8);
    box-shadow:0 10px 28px rgba(23,214,183,.20);
  }
  .schedule-badge{
    border:1px solid rgba(255,255,255,.16);
    box-shadow:0 14px 30px rgba(4,24,55,.24);
  }
  .hero-visual-composite{
    width:min(790px,100%);
    margin-right:-28px;
    padding:0;
    border:none;
    border-radius:0;
    background:none;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
    overflow:visible;
  }
  .hero-composite{
    width:100%;
    max-width:790px;
    height:auto;
    display:block;
    filter:drop-shadow(0 20px 42px rgba(3,28,53,.20));
  }
}

/* =========================================================
   v1.4.4 - DESKTOP HERO POLISH / SEAMLESS BLEND
   Keeps mobile implementation untouched.
   ========================================================= */
@media (min-width:900px){
  .hero{
    min-height:590px;
    grid-template-columns:minmax(400px,.88fr) minmax(560px,1.12fr);
    gap:18px;
    align-items:center;
    padding:0px max(48px,calc((100vw - 1320px)/2)) 0px;
    background-image:
      radial-gradient(circle at 78% 38%,rgba(25,213,195,.18) 0,rgba(25,213,195,.08) 24%,transparent 47%),
      radial-gradient(circle at 18% 18%,rgba(44,187,210,.12),transparent 28%),
      linear-gradient(100deg,#073a69 0%,#07567d 41%,#067f91 69%,#06496e 100%),
      url('../images/hero-background-uploaded.png');
    background-blend-mode:screen,screen,normal,soft-light;
    background-size:auto,auto,cover,cover;
    background-position:center,center,center,center;
  }
  .hero::before{
    background:
      linear-gradient(90deg,rgba(2,27,57,.18) 0%,transparent 42%,rgba(4,32,57,.04) 100%),
      radial-gradient(ellipse at 77% 88%,rgba(30,220,194,.18),transparent 38%);
  }
  .hero::after{
    left:-5vw;
    right:-5vw;
    bottom:-205px;
    height:300px;
    border-radius:50% 50% 0 0 / 45% 45% 0 0;
    background:linear-gradient(90deg,rgba(37,224,193,.20),rgba(30,190,211,.08));
    filter:blur(1px);
  }
  .hero-copy{
    max-width:600px;
    align-self:center;
    padding-bottom:4px;
  }
  .batch-pill{
    padding:8px 16px;
    font-size:15px;
    letter-spacing:-.01em;
  }
  .hero h1{
    max-width:600px;
    margin:18px 0 16px;
    font-size:40px;
    line-height:.98;
    letter-spacing:-.047em;
  }
  .hero-subtitle{
    font-size:22px;
    color:rgba(255,255,255,.93);
  }
  .schedule-float{
    gap:14px;
    margin-top:28px;
  }
  .schedule-badge{
    width:180px;
    min-height:82px;
    padding:31px 10px 10px;
    border-radius:14px;
    background:rgba(23,22,58,.95);
  }
  .schedule-badge strong{
    height:23px;
    background:linear-gradient(90deg,#28d8b0,#1ac7c7);
  }
  .schedule-badge span{font-size:15px;}
  .schedule-badge small{font-size:12px;}

  .hero-visual-composite{
    position:relative;
    width:min(820px,100%);
    margin:0 -36px -22px auto;
    align-self:end;
    justify-self:end;
    min-height:470px;
    display:flex;
    align-items:flex-end;
    justify-content:flex-end;
  }
  .hero-visual-composite::before{
    content:"";
    position:absolute;
    z-index:-1;
    width:86%;
    height:72%;
    right:1%;
    bottom:9%;
    border-radius:50%;
    background:radial-gradient(ellipse,rgba(55,225,207,.17) 0%,rgba(22,173,196,.08) 47%,transparent 72%);
    filter:blur(16px);
  }
  .hero-composite{
    width:min(820px,108%);
    max-width:none;
    height:auto;
    object-fit:contain;
    object-position:right bottom;
    filter:drop-shadow(0 20px 38px rgba(1,21,44,.18));
    transform:translateY(8px);
  }
}

@media (min-width:900px) and (max-width:1180px){
  .hero{
    min-height:540px;
    grid-template-columns:minmax(350px,.9fr) minmax(470px,1.1fr);
    padding:34px 42px 28px;
  }
  .hero h1{font-size:44px;}
  .hero-subtitle{font-size:19px;}
  .hero-visual-composite{min-height:400px;margin-right:-18px;}
  .hero-composite{width:min(700px,108%);}
  .schedule-badge{width:160px;}
}

/* =========================================================
   v1.4.5 - DESKTOP COMBINED SCHEDULE / FAQ REBALANCE
   Desktop only. Mobile <= 899px remains exactly unchanged.
   - Schedule: 1/3 width, vertical list like Canva reference
   - System Belajar / FAQ: 2/3 width
   ========================================================= */
@media (min-width:900px){
  .desktop-schedule-faq-grid{
    grid-template-columns:minmax(320px,1fr) minmax(0,2fr);
    gap:24px;
    align-items:stretch;
  }

  .desktop-schedule-column,
  .desktop-faq-column{
    height:100%;
  }

  .desktop-schedule-column{
    padding:24px 22px;
  }

  /* Stack every schedule group vertically, following the Canva layout. */
  .desktop-schedule-clone .schedule-panel--canva{
    display:flex;
    flex-direction:column;
    gap:0;
    width:100%;
  }

  .desktop-schedule-clone .schedule-block--canva{
    width:100%;
    padding:14px 0 16px;
    border:0;
    border-bottom:1px solid rgba(255,255,255,.12);
    border-radius:0;
    background:transparent;
  }

  .desktop-schedule-clone .schedule-block--canva:first-of-type{
    padding-top:2px;
  }

  .desktop-schedule-clone .schedule-block--canva:last-child{
    padding-bottom:0;
    border-bottom:0;
  }

  .desktop-schedule-clone .schedule-block-heading{
    margin-bottom:9px;
  }

  .desktop-schedule-clone .schedule-block-heading h3{
    font-size:14px;
    line-height:1.25;
  }

  .desktop-schedule-clone .schedule-block-heading p{
    font-size:9px;
    line-height:1.35;
  }

  .desktop-schedule-clone .schedule-choice-list--canva,
  .desktop-schedule-clone .schedule-choice-stack--canva{
    display:flex;
    flex-direction:column;
    gap:9px;
  }

  .desktop-schedule-clone .schedule-choice--canva{
    width:100%;
  }

  .desktop-schedule-clone .schedule-row--canva{
    width:100%;
    grid-template-columns:minmax(0,1fr) 116px;
  }

  .desktop-schedule-clone .schedule-row--canva strong{
    font-size:12px;
  }

  .desktop-schedule-clone .schedule-row--canva span{
    min-width:116px;
    font-size:11px;
    font-weight: 800;
  }

  /* FAQ owns the larger 2/3 column without changing its content behavior. */
  .desktop-faq-column{
    padding:24px 26px;
  }
}

/* =========================================================
   v1.4.6 - DESKTOP FEATURED BENEFIT BADGE POSITION
   Desktop only. Mobile <= 899px remains unchanged.
   - "Benefit Utama" sits above / across the card top border.
   ========================================================= */
@media (min-width:900px){
  .benefit-card--featured{
    overflow:visible;
    position:relative;
  }

  .benefit-card--featured .benefit-badge{
    position:absolute;
    top:-13px;
    left:16px;
    z-index:3;
    margin:0;
    padding:6px 12px;
    border:0;
    border-radius:999px;
    background:#075889;
    color:#fff;
    box-shadow:0 6px 16px rgba(7,88,137,.18);
    font-size:9px;
    line-height:1;
    font-weight:800;
    letter-spacing:.055em;
    text-transform:uppercase;
    white-space:nowrap;
  }
}
