/* ===========================================================
   AL HAMD INDONESIA TAHFIDZPRENEURS — DESIGN SYSTEM
   =========================================================== */

:root{
  /* Color */
  --maroon-deep:#6F0C18;
  --maroon:#8B1020;
  --maroon-bright:#A61B2B;
  --maroon-soft:#FBEEEF;
  --gold:#F4C542;
  --gold-deep:#C99A1E;
  --gold-soft:#FBF1D6;
  --cream:#FBF7F0;
  --cream-deep:#F4EDE0;
  --ink:#241511;
  --ink-soft:#5B4943;
  --white:#FFFFFF;

  /* Type */
  --font-display:'Fraunces', 'Georgia', serif;
  --font-body:'Plus Jakarta Sans', -apple-system, sans-serif;
  --font-mono:'JetBrains Mono', monospace;

  /* Layout */
  --max-w:1240px;
  --radius-arch:140px 140px 16px 16px;
  --radius-card:20px;
  --shadow-soft:0 12px 40px -12px rgba(111,12,24,0.18);
  --shadow-card:0 8px 28px -10px rgba(36,21,17,0.14);
}

*{margin:0;padding:0;box-sizing:border-box;}

html{scroll-behavior:smooth;}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{max-width:100%;display:block;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}

.container{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 32px;
}

@media (max-width:768px){
  .container{padding:0 20px;}
}

/* === Reduced motion === */
@media (prefers-reduced-motion:reduce){
  *{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important;scroll-behavior:auto !important;}
}

/* === Typography helpers === */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--maroon-bright);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:'';
  width:22px;
  height:2px;
  background:var(--gold);
  display:inline-block;
}

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  color:var(--ink);
  line-height:1.12;
  letter-spacing:-0.01em;
}

.section-title{
  font-size:clamp(30px,4vw,44px);
  margin-top:14px;
}

.section-lead{
  font-size:17px;
  color:var(--ink-soft);
  max-width:560px;
  margin-top:16px;
}

.section-head{
  margin-bottom:56px;
}
.section-head.center{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.section-head.center .section-lead{
  margin-left:auto;
  margin-right:auto;
}

section{
  padding:108px 0;
  position:relative;
}

@media (max-width:768px){
  section{padding:72px 0;}
  .section-head{margin-bottom:40px;}
}

/* === Buttons === */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:15px 30px;
  border-radius:999px;
  font-weight:600;
  font-size:14.5px;
  letter-spacing:0.01em;
  transition:transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease, background 0.3s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--maroon);
  color:var(--white);
  box-shadow:0 10px 26px -8px rgba(139,16,32,0.55);
}
.btn-primary:hover{
  background:var(--maroon-bright);
  transform:translateY(-2px);
  box-shadow:0 14px 32px -8px rgba(139,16,32,0.6);
}
.btn-gold{
  background:var(--gold);
  color:var(--maroon-deep);
  box-shadow:0 10px 26px -10px rgba(201,154,30,0.6);
}
.btn-gold:hover{
  background:#FFD666;
  transform:translateY(-2px);
}
.btn-outline{
  background:transparent;
  border:1.5px solid rgba(255,255,255,0.5);
  color:var(--white);
}
.btn-outline:hover{
  background:rgba(255,255,255,0.12);
  border-color:var(--white);
}
.btn-outline-maroon{
  background:transparent;
  border:1.5px solid rgba(139,16,32,0.3);
  color:var(--maroon);
}
.btn-outline-maroon:hover{
  background:var(--maroon-soft);
  border-color:var(--maroon);
}
.btn-sm{padding:11px 22px;font-size:13.5px;}

/* === Header === */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:200;
  padding:20px 0;
  transition:background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled{
  background:rgba(251,247,240,0.92);
  backdrop-filter:blur(14px);
  padding:12px 0;
  box-shadow:0 4px 24px -8px rgba(36,21,17,0.12);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark{
  width:44px;height:44px;
  flex-shrink:0;
}
.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
}
.brand-text .name{
  font-family:var(--font-display);
  font-weight:700;
  font-size:16.5px;
  color:var(--ink);
  transition:color 0.4s ease;
}
.brand-text .sub{
  font-family:var(--font-mono);
  font-size:9.5px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--maroon-bright);
  transition:color 0.4s ease;
}
.site-header:not(.scrolled) .brand-text .name{color:var(--white);}
.site-header:not(.scrolled) .brand-text .sub{color:var(--gold);}

.brand-logo-wrap{
    width:70px;
    height:70px;
    margin:0 auto 18px;

    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:10px;

    border:3px solid #F4C542;
}

.brand-logo{
    width:60px;
}


/* HEADER LOGO */
.header-logo-wrap{
    width:52px;
    height:52px;

    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:5px;

    border:2px solid #F4C542;

    flex-shrink:0;
}

.header-logo{
    width:40px;
    height:auto;
    display:block;
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.brand-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.brand-text .name{
    font-size:1rem;
    font-weight:700;
}

.brand-text .sub{
    font-size:.75rem;
    color:var(--maroon);
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:36px;
}
.nav-menu a{
  font-size:14.5px;
  font-weight:600;
  color:var(--white);
  position:relative;
  padding:4px 0;
  transition:color 0.3s ease;
}
.site-header.scrolled .nav-menu a{color:var(--ink-soft);}
.nav-menu a::after{
  content:'';
  position:absolute;
  bottom:-2px;left:0;
  width:0;height:2px;
  background:var(--gold);
  transition:width 0.3s ease;
}
.nav-menu a:hover{color:var(--gold-deep);}
.site-header:not(.scrolled) .nav-menu a:hover{color:var(--gold);}
.nav-menu a:hover::after{width:100%;}

.header-cta{display:flex;align-items:center;gap:16px;}

.menu-toggle{
  display:none;
  width:40px;height:40px;
  align-items:center;justify-content:center;
  flex-direction:column;
  gap:5px;
}
.menu-toggle span{
  width:22px;height:2px;
  background:var(--white);
  transition:all 0.3s ease;
}
.site-header.scrolled .menu-toggle span{background:var(--ink);}

@media (max-width:980px){
  .nav-menu{
    position:fixed;
    top:0;right:0;
    height:100vh;
    width:280px;
    background:var(--cream);
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:40px;
    gap:26px;
    transform:translateX(100%);
    transition:transform 0.4s cubic-bezier(.2,.8,.2,1);
    box-shadow:-10px 0 40px rgba(0,0,0,0.15);
  }
  .nav-menu.open{transform:translateX(0);}
  .nav-menu a{color:var(--ink) !important;font-size:17px;}
  .header-cta .btn-primary{display:none;}
  .menu-toggle{display:flex;}
  .menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
  .menu-toggle.open span:nth-child(2){opacity:0;}
  .menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
}

/* === Hero Slider === */
.hero{
  position:relative;
  height:100vh;
  min-height:680px;
  overflow:hidden;
  background:var(--maroon-deep);
}
.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity 1.1s ease;
}
.hero-slide.active{
  opacity:1;
  visibility:visible;
  z-index:2;
}
.hero-slide-bg{
  position:absolute;inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.08);
  transition:transform 7s ease-out;
}
.hero-slide.active .hero-slide-bg{transform:scale(1);}
.hero-slide-overlay{
  position:absolute;inset:0;
  background:
    linear-gradient(180deg, rgba(111,12,24,0.55) 0%, rgba(111,12,24,0.62) 40%, rgba(36,8,13,0.88) 100%);
}
.hero-content{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:760px;
  padding:0 32px;
  margin:0 auto;
  width:100%;
}
.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:22px;
  opacity:0;
  transform:translateY(14px);
}
.hero-slide.active .hero-eyebrow{
  animation:heroUp 0.9s 0.3s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-title{
  font-size:clamp(34px,5.4vw,62px);
  color:var(--white);
  font-weight:600;
  line-height:1.08;
  opacity:0;
  transform:translateY(20px);
}
.hero-slide.active .hero-title{
  animation:heroUp 0.9s 0.45s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-subtitle{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:500;
  font-size:clamp(17px,2vw,21px);
  color:var(--gold-soft);
  margin-top:18px;
  opacity:0;
  transform:translateY(20px);
}
.hero-slide.active .hero-subtitle{
  animation:heroUp 0.9s 0.6s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-desc{
  font-size:16px;
  color:rgba(255,255,255,0.82);
  max-width:520px;
  margin-top:18px;
  opacity:0;
  transform:translateY(20px);
}
.hero-slide.active .hero-desc{
  animation:heroUp 0.9s 0.75s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-actions{
  display:flex;
  gap:16px;
  margin-top:36px;
  flex-wrap:wrap;
  opacity:0;
  transform:translateY(20px);
}
.hero-slide.active .hero-actions{
  animation:heroUp 0.9s 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes heroUp{to{opacity:1;transform:translateY(0);}}

.hero-arch-deco{
  position:absolute;
  bottom:0;right:6%;
  width:220px;height:320px;
  z-index:2;
  opacity:0.35;
  pointer-events:none;
}

.hero-controls{
  position:absolute;
  bottom:38px;
  left:0;right:0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
}
.hero-dots{display:flex;gap:10px;}
.hero-dot{
  width:34px;height:4px;
  border-radius:2px;
  background:rgba(255,255,255,0.32);
  cursor:pointer;
  position:relative;
  overflow:hidden;
  transition:background 0.3s ease;
}
.hero-dot.active{background:rgba(255,255,255,0.32);}
.hero-dot.active::after{
  content:'';
  position:absolute;inset:0;
  background:var(--gold);
  animation:dotFill 6s linear forwards;
}
@keyframes dotFill{from{width:0;}to{width:100%;}}

.hero-nav-btn{
  width:46px;height:46px;
  border-radius:50%;
  border:1.5px solid rgba(255,255,255,0.35);
  display:flex;align-items:center;justify-content:center;
  color:var(--white);
  transition:all 0.3s ease;
  flex-shrink:0;
}
.hero-nav-btn:hover{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--maroon-deep);
}

.scroll-hint{
  position:absolute;
  bottom:38px;
  right:32px;
  z-index:5;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.6);
}
.scroll-hint span{
  font-family:var(--font-mono);
  font-size:10px;
  letter-spacing:0.15em;
  text-transform:uppercase;
  writing-mode:vertical-rl;
}
.scroll-hint-line{
  width:1px;height:46px;
  background:linear-gradient(to bottom, var(--gold), transparent);
}

@media (max-width:768px){
  .hero{min-height:600px;}
  .scroll-hint{display:none;}
  .hero-arch-deco{display:none;}
  .hero-controls{bottom:26px;gap:14px;}
  .hero-nav-btn{width:38px;height:38px;}
}

/* === Stats band === */
.stats-band{
  background:var(--maroon);
  position:relative;
  padding:0;
  overflow:hidden;
}
.stats-band::before{
  content:'';
  position:absolute;inset:0;
  background-image:radial-gradient(circle at 18% 30%, rgba(244,197,66,0.10), transparent 45%), radial-gradient(circle at 82% 70%, rgba(244,197,66,0.08), transparent 40%);
}
.stats-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:64px 0;
}
.stat-item{
  text-align:center;
  padding:0 20px;
  border-right:1px solid rgba(255,255,255,0.14);
}
.stat-item:last-child{border-right:none;}
.stat-number{
  font-family:var(--font-display);
  font-size:clamp(34px,4vw,48px);
  font-weight:700;
  color:var(--gold);
  display:flex;
  align-items:baseline;
  justify-content:center;
  gap:2px;
}
.stat-label{
  font-size:13.5px;
  color:rgba(255,255,255,0.82);
  margin-top:8px;
  font-weight:500;
  letter-spacing:0.01em;
}
@media (max-width:768px){
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:32px 0;padding:48px 0;}
  .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.14);padding-bottom:28px;}
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,0.14);}
}

/* === Profile section === */
.profile-section{
  background:var(--cream);
}
.profile-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:72px;
  align-items:center;
}
.profile-visual{
  position:relative;
}
.profile-img-main{
  border-radius:var(--radius-arch);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  aspect-ratio:3/3.6;
  object-fit:cover;
  width:100%;
}
.profile-img-float{
  position:absolute;
  bottom:-34px;
  right:-40px;
  width:46%;
  border-radius:20px;
  overflow:hidden;
  border:6px solid var(--cream);
  box-shadow:0 16px 36px -10px rgba(36,21,17,0.3);
  aspect-ratio:4/3;
  object-fit:cover;
}
.profile-badge{
  position:absolute;
  top:24px;left:-24px;
  background:var(--white);
  border-radius:16px;
  padding:16px 20px;
  box-shadow:var(--shadow-card);
  display:flex;
  align-items:center;
  gap:12px;
}
.profile-badge svg{width:34px;height:34px;flex-shrink:0;color:var(--maroon);}
.profile-badge .num{font-family:var(--font-display);font-weight:700;font-size:20px;color:var(--maroon);}
.profile-badge .lbl{font-size:11.5px;color:var(--ink-soft);}

.profile-text p{
  font-size:16.5px;
  color:var(--ink-soft);
  margin-bottom:28px;
  max-width:540px;
}

@media (max-width:900px){
  .profile-grid{grid-template-columns:1fr;gap:60px;}
  .profile-visual{max-width:420px;margin:0 auto;}
  .profile-img-float{display:none;}
  .profile-badge{left:-12px;}
}

/* === Visi misi === */
.vm-section{
  background:var(--maroon);
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.vm-section::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse at center, black, transparent 75%);
}
.vm-grid{
  position:relative;
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:64px;
}
.vm-visi{
  border-right:1px solid rgba(255,255,255,0.16);
  padding-right:56px;
}
.vm-eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
}
.vm-visi h3{
  font-size:clamp(26px,3vw,32px);
  color:var(--white);
  margin-top:14px;
}
.vm-visi p{
  margin-top:20px;
  font-size:17px;
  line-height:1.7;
  color:rgba(255,255,255,0.85);
}
.vm-misi h3{
  font-size:clamp(26px,3vw,32px);
  color:var(--white);
  margin-bottom:28px;
}
.misi-list{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.misi-item{
  display:flex;
  gap:18px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.14);
}
.misi-item:first-child{padding-top:0;}
.misi-item svg{
  width:20px;height:20px;
  flex-shrink:0;
  color:var(--gold);
  margin-top:3px;
}
.misi-item p{
  font-size:15.5px;
  color:rgba(255,255,255,0.88);
  line-height:1.6;
}

@media (max-width:900px){
  .vm-grid{grid-template-columns:1fr;gap:48px;}
  .vm-visi{border-right:none;padding-right:0;border-bottom:1px solid rgba(255,255,255,0.16);padding-bottom:40px;}
}

/* === Program cards === */
.program-section{background:var(--cream);}
.program-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.program-card{
  background:var(--white);
  border-radius:var(--radius-card);
  padding:36px 30px;
  box-shadow:var(--shadow-card);
  transition:transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
  position:relative;
  overflow:hidden;
}
.program-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:3px;
  background:linear-gradient(90deg, var(--gold), var(--maroon-bright));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform 0.5s ease;
}
.program-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px -12px rgba(36,21,17,0.2);
}
.program-card:hover::before{transform:scaleX(1);}
.program-icon{
  width:56px;height:56px;
  border-radius:16px;
  background:var(--maroon-soft);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:24px;
  transition:background 0.3s ease;
}
.program-icon svg{width:28px;height:28px;color:var(--maroon);}
.program-card:hover .program-icon{background:var(--gold-soft);}
.program-card h4{font-size:19px;color:var(--ink);margin-bottom:10px;}
.program-card p{font-size:14.5px;color:var(--ink-soft);line-height:1.6;}

@media (max-width:900px){
  .program-grid{grid-template-columns:1fr 1fr;}
}
@media (max-width:560px){
  .program-grid{grid-template-columns:1fr;}
}

/* === Keunggulan === */
.adv-section{
  background:var(--cream-deep);
}
.adv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.adv-img{
  border-radius:var(--radius-arch);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  aspect-ratio:4/4.6;
  object-fit:cover;
  width:100%;
}
.adv-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.adv-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  background:var(--white);
  padding:20px;
  border-radius:14px;
  box-shadow:0 4px 16px -6px rgba(36,21,17,0.1);
}
.adv-item-icon{
  width:38px;height:38px;
  border-radius:10px;
  background:var(--maroon);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.adv-item-icon svg{width:18px;height:18px;color:var(--gold);}
.adv-item p{font-size:14px;font-weight:600;color:var(--ink);line-height:1.4;}

@media (max-width:900px){
  .adv-grid{grid-template-columns:1fr;gap:44px;}
  .adv-img{max-width:380px;margin:0 auto;aspect-ratio:4/3.2;}
}
@media (max-width:560px){
  .adv-list{grid-template-columns:1fr;}
}

/* === Fasilitas gallery === */
.fac-section{background:var(--cream);}
.fac-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  grid-template-rows:160px 160px;
  gap:16px;
}
.fac-item{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
}
.fac-item img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.fac-item:hover img{transform:scale(1.08);}
.fac-item.large{grid-column:span 2;grid-row:span 2;}
.fac-item.wide{grid-column:span 2;grid-row:span 1;}
.fac-item.tall{grid-column:span 2;grid-row:span 2;}
.fac-overlay{
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(36,8,13,0.78) 0%, rgba(36,8,13,0) 55%);
  display:flex;
  align-items:flex-end;
  padding:18px;
}
.fac-overlay span{
  color:var(--white);
  font-weight:600;
  font-size:14.5px;
}

@media (max-width:900px){
  .fac-grid{grid-template-columns:repeat(2,1fr);grid-template-rows:none;}
  .fac-item.large,.fac-item.wide,.fac-item.tall{grid-column:span 1;grid-row:span 1;height:200px;}
}

/* === Galeri kegiatan (tabs) === */
.gallery-section{background:var(--cream-deep);}
.gallery-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:40px;
}
.gallery-tab{
  padding:10px 22px;
  border-radius:999px;
  font-size:13.5px;
  font-weight:600;
  color:var(--ink-soft);
  background:var(--white);
  border:1px solid rgba(139,16,32,0.12);
  transition:all 0.3s ease;
}
.gallery-tab:hover{border-color:var(--maroon);color:var(--maroon);}
.gallery-tab.active{
  background:var(--maroon);
  color:var(--white);
  border-color:var(--maroon);
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.gallery-item{
  border-radius:16px;
  overflow:hidden;
  aspect-ratio:1/1.05;
  box-shadow:var(--shadow-card);
  position:relative;
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease;}
.gallery-item:hover img{transform:scale(1.06);}

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

/* === Testimoni === */
.testi-section{background:var(--cream);}
.testi-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.testi-card{
  background:var(--white);
  border-radius:20px;
  padding:34px 30px;
  box-shadow:var(--shadow-card);
  position:relative;
}
.testi-quote-icon{
  width:38px;height:38px;
  color:var(--gold);
  margin-bottom:20px;
}
.testi-text{
  font-size:15px;
  color:var(--ink-soft);
  line-height:1.7;
  font-style:italic;
  margin-bottom:26px;
}
.testi-person{
  display:flex;
  align-items:center;
  gap:14px;
}
.testi-avatar{
  width:48px;height:48px;
  border-radius:50%;
  object-fit:cover;
  flex-shrink:0;
}
.testi-name{font-weight:700;font-size:14.5px;color:var(--ink);}
.testi-role{font-size:12.5px;color:var(--maroon-bright);font-weight:600;}

@media (max-width:900px){
  .testi-grid{grid-template-columns:1fr;}
}

/* === PSB section === */
.psb-section{
  background:var(--white);
  position:relative;
}
.psb-head{
  text-align:center;
  max-width:680px;
  margin:0 auto 64px;
}
.psb-badge{
  display:inline-block;
  background:var(--gold-soft);
  color:var(--gold-deep);
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.1em;
  text-transform:uppercase;
  padding:8px 18px;
  border-radius:999px;
  margin-bottom:20px;
}
.psb-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  position:relative;
  max-width:960px;
  margin:0 auto;
}
.psb-steps::before{
  content:'';
  position:absolute;
  top:32px;left:16%;right:16%;
  height:2px;
  background:repeating-linear-gradient(90deg, var(--gold) 0 10px, transparent 10px 18px);
  z-index:0;
}
.psb-step{
  text-align:center;
  position:relative;
  z-index:1;
  padding:0 20px;
}
.psb-step-num{
  width:64px;height:64px;
  border-radius:50%;
  background:var(--maroon);
  color:var(--white);
  font-family:var(--font-display);
  font-weight:700;
  font-size:24px;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 22px;
  box-shadow:0 10px 24px -8px rgba(139,16,32,0.5);
}
.psb-step h4{font-size:17px;color:var(--ink);margin-bottom:10px;}
.psb-step p{font-size:14px;color:var(--ink-soft);max-width:220px;margin:0 auto;}
.psb-cta-wrap{
  text-align:center;
  margin-top:56px;
}

/* === PSB info cards (syarat, biaya, cara daftar) === */
.psb-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  max-width:1080px;
  margin:64px auto 0;
}
.psb-info-card{
  background:var(--cream-deep);
  border-radius:20px;
  padding:32px 28px;
  border:1px solid rgba(139,16,32,0.08);
}
.psb-info-card-highlight{
  background:var(--maroon);
  color:var(--white);
}
.psb-info-icon{
  width:46px;height:46px;
  border-radius:13px;
  background:var(--white);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:18px;
  color:var(--maroon);
}
.psb-info-card-highlight .psb-info-icon{
  background:rgba(255,255,255,0.14);
  color:var(--gold);
}
.psb-info-card h4{
  font-size:17px;
  margin-bottom:16px;
  color:var(--ink);
}
.psb-info-card-highlight h4{color:var(--white);}
.psb-info-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.psb-info-list li{
  font-size:13.5px;
  color:var(--ink-soft);
  line-height:1.5;
  padding-left:18px;
  position:relative;
}
.psb-info-list li::before{
  content:'';
  position:absolute;
  left:0;top:7px;
  width:6px;height:6px;
  border-radius:50%;
  background:var(--gold-deep);
}
.psb-wa-format{
  font-family:var(--font-mono);
  font-size:13px;
  background:rgba(255,255,255,0.12);
  border:1px dashed rgba(244,197,66,0.5);
  border-radius:10px;
  padding:12px 14px;
  color:var(--gold-soft);
  line-height:1.6;
  word-break:break-word;
}
.psb-wa-example{
  font-size:12.5px;
  color:rgba(255,255,255,0.65);
  margin-top:12px;
  line-height:1.5;
}
.psb-quota{
  font-size:13.5px;
  color:var(--ink-soft);
  margin-top:18px;
}

@media (max-width:900px){
  .psb-info-grid{grid-template-columns:1fr;}
}

/* === Entrepreneurship business chips === */
.biz-chip-wrap{
  margin-top:56px;
  text-align:center;
}
.biz-chip-label{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--ink-soft);
  margin-bottom:18px;
  font-weight:600;
}
.biz-chip-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}
.biz-chip{
  display:inline-block;
  padding:9px 20px;
  border-radius:999px;
  background:var(--white);
  border:1px solid rgba(139,16,32,0.14);
  font-size:13.5px;
  font-weight:600;
  color:var(--maroon);
  transition:all 0.3s ease;
}
.biz-chip:hover{
  background:var(--maroon);
  color:var(--white);
  border-color:var(--maroon);
}

@media (max-width:768px){
  .psb-steps{grid-template-columns:1fr;gap:40px;}
  .psb-steps::before{display:none;}
}

/* === Final CTA === */
.cta-section{
  background:var(--maroon);
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:100px 0;
}
.cta-section::before{
  content:'';
  position:absolute;
  width:600px;height:600px;
  border-radius:50%;
  border:1px solid rgba(244,197,66,0.18);
  top:-300px;left:50%;
  transform:translateX(-50%);
}
.cta-section::after{
  content:'';
  position:absolute;
  width:440px;height:440px;
  border-radius:50%;
  border:1px solid rgba(244,197,66,0.14);
  bottom:-260px;left:50%;
  transform:translateX(-50%);
}
.cta-inner{position:relative;max-width:680px;margin:0 auto;}
.cta-section .eyebrow{color:var(--gold);}
.cta-section .eyebrow::before{background:var(--gold);}
.cta-title{
  font-size:clamp(28px,4.2vw,42px);
  color:var(--white);
  margin-top:18px;
  line-height:1.2;
}
.cta-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  margin-top:38px;
  flex-wrap:wrap;
}

/* === Footer === */
.site-footer{
  background:#3D0A11;
  color:rgba(255,255,255,0.78);
  padding:80px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:48px;
  padding-bottom:56px;
  border-bottom:1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:20px;
}

.footer-brand p{
    margin-top:0;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.footer-social{display:flex;gap:12px;margin-top:24px;}
.footer-social a{
  width:38px;height:38px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.2);
  display:flex;align-items:center;justify-content:center;
  transition:all 0.3s ease;
}
.footer-social a:hover{background:var(--gold);border-color:var(--gold);color:var(--maroon-deep);}
.footer-social svg{width:16px;height:16px;}

.footer-col h5{
  font-family:var(--font-mono);
  font-size:12px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
  margin-bottom:22px;
}
.footer-col ul{display:flex;flex-direction:column;gap:13px;}
.footer-col a{font-size:14px;color:rgba(255,255,255,0.7);transition:color 0.25s ease;}
.footer-col a:hover{color:var(--gold);}
.footer-contact-item{display:flex;gap:12px;align-items:flex-start;margin-bottom:16px;}
.footer-contact-item svg{width:18px;height:18px;color:var(--gold);flex-shrink:0;margin-top:2px;}
.footer-contact-item p{font-size:13.5px;color:rgba(255,255,255,0.7);line-height:1.6;}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:26px 0;
  font-size:13px;
  color:rgba(255,255,255,0.5);
  flex-wrap:wrap;
  gap:12px;
}

@media (max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:40px;}
}
@media (max-width:560px){
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{justify-content:center;text-align:center;}
}

/* === WhatsApp floating button === */
.wa-float{
  position:fixed;
  bottom:26px;right:26px;
  z-index:150;
  width:58px;height:58px;
  border-radius:50%;
  background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 10px 28px -6px rgba(37,211,102,0.55);
  transition:transform 0.3s ease;
}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:28px;height:28px;color:white;}

/* === Reveal on scroll === */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity 0.8s cubic-bezier(.2,.8,.2,1), transform 0.8s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view{opacity:1;transform:translateY(0);}
.reveal-stagger > *{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1);
}
.reveal-stagger.in-view > *{opacity:1;transform:translateY(0);}
.reveal-stagger.in-view > *:nth-child(1){transition-delay:0.05s;}
.reveal-stagger.in-view > *:nth-child(2){transition-delay:0.13s;}
.reveal-stagger.in-view > *:nth-child(3){transition-delay:0.21s;}
.reveal-stagger.in-view > *:nth-child(4){transition-delay:0.29s;}
.reveal-stagger.in-view > *:nth-child(5){transition-delay:0.37s;}
.reveal-stagger.in-view > *:nth-child(6){transition-delay:0.45s;}

@media (prefers-reduced-motion:reduce){
  .reveal,.reveal-stagger > *{opacity:1;transform:none;}
}

/* responsive grid helpers */
@media (max-width:768px){
  h1{font-size:32px;}
  .section-title{font-size:28px;}
}
