*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --blue:#4597E6;
  --blue-rgb:69,151,230;
  --blue-dark:#1E5FAD;
  --blue-soft:#7ABEFF;
  --blue-card:#E6F0FE;
  --blue-hero:#A8DAFF;
  --blue-nav:#66C3E8;
  --teal:#83DFC6;
  --text-dark:#263238;
  --text-gray:#858794;
  --white:#FCFCFC;
  --bg:#fff;
  --gradient-section:linear-gradient(180deg,#A8DAFF,#FCFCFC);
  --gradient-web:linear-gradient(180deg, #A8DAFF 0%, #FCFCFC 100%);
  --gradient-btn:linear-gradient(90deg,#4597E6 0%,#7ABEFF 50%,#83DFC6 100%);
  --gradient-txt:linear-gradient(90deg,#4597E6,#7ABEFF);
  --gradient-text:linear-gradient(90deg,#4C9EEB,#83DFC6);
  --gradient-logo:linear-gradient(180deg,#8CDED5,#79D1DE 50%,#66C3E8);
  --font:'Montserrat',sans-serif;

  --radius:20px;
  --container-pad:84px;
}
html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--bg);color:var(--text-dark);line-height:1.6;overflow-x:hidden}
img{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
ul{list-style:none}
.container{max-width:1440px;margin:0 auto;padding:0 var(--container-pad)}

/* ===== GRADIENTS ===== */
.gradient-text{background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.gradient-text-horizontal{background:var(--gradient-text);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.gradient-text-horizontal-reverse{background:linear-gradient(90deg,#83DFC6,#4C9EEB);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.text-white{color:var(--white)!important}
.text-blue{color:var(--blue)!important}
.text-black{color:#000!important}

/* ===== SECTION LABELS ===== */
.section-label{
  font-size:80px;font-weight:700;font-family:var(--font);
  text-align:center;line-height:1.22;margin-bottom:46px
}
.section-label-gradient{
  background:var(--gradient-text);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text
}
.section-label-blue{color:var(--blue)}

/* ===== SECTION HEADERS ===== */
.section-header-center{text-align:center;margin-bottom:58px}
.section-title-large{
  font-size:50px;font-weight:600;font-family:var(--font);
  line-height:1.22;color:var(--text-dark);margin-bottom:56px
}
.section-title-xl{
  font-size:60px;font-weight:700;font-family:var(--font);
  line-height:1.22;margin-bottom:0
}
.section-sub-large{
  font-size:25px;font-weight:600;font-family:var(--font);
  line-height:1.22;color:var(--text-gray);max-width:796px;margin:0 auto
}
.section-title-steps{
  font-size:65px;font-weight:700;font-family:var(--font);
  text-align:center;color:var(--blue);line-height:1.22;margin-bottom:58px
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar{
  position:sticky;top:0;z-index:200;
  background:var(--white);height:72px
}
.nav-inner{
  display:flex;align-items:center;justify-content:space-between;height:72px
}
.nav-logo{
  display:flex;align-items:center;gap:14px
}
.nav-logo-img{width:110px;height:auto}
nav{flex-grow:1;display:flex;justify-content:center}
.nav-links{display:flex;gap:48px;align-items:center;justify-content:center}
.nav-links a{
  font-size:16px;font-weight:500;font-family:var(--font);
  color:var(--blue-nav);white-space:nowrap;transition:color .2s
}
.nav-links a:hover{color:var(--blue)}

.btn-nav-cta{
  display:flex;width:150px;height:42px;
  justify-content:center;align-items:center;
  background:var(--gradient-btn);color:var(--white);
  font-family:var(--font);font-size:14px;font-weight:400;
  border-radius:var(--radius);border:none;
  cursor:pointer;white-space:nowrap;
  box-shadow:0 2px 12px rgba(var(--blue-rgb),.3);
  transition:opacity .2s,transform .18s
}
.btn-nav-cta:hover{opacity:.88;transform:translateY(-1px)}
.btn-nav-cta:focus-visible{outline:3px solid var(--blue-soft);outline-offset:3px}

.hamburger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:6px}
.hamburger span{display:block;width:24px;height:2px;background:var(--text-dark);border-radius:2px;transition:all .25s}

.mobile-menu{display:none;flex-direction:column;background:var(--white);border-top:1px solid rgba(168,218,255,.4);padding:20px 24px 28px}
.mobile-menu.open{display:flex}
.mobile-menu ul{display:flex;flex-direction:column;gap:18px}
.mobile-menu a{font-size:18px;font-weight:500;color:var(--text-dark)}
.mobile-menu a:hover{color:var(--blue)}
.mobile-menu .btn-nav-cta{align-self:flex-start;margin-top:8px}

/* ============================================
   HERO
   ============================================ */
.hero{background:var(--blue-hero);overflow:hidden;padding:60px 0 100px}
.hero-inner{display:grid;grid-template-columns:1fr 1fr;align-items:flex-end;gap:24px}
.hero-text{padding-bottom:64px}

.hero-txt{
  background: var(--gradient-txt);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h1{
  font-weight:700;
  font-size:80px;line-height:1.257;color:#000;letter-spacing:0
}
.hero-sub{
  font-size:20px;font-weight:400;font-family:var(--font);
  color:#000;line-height:1.22;max-width:540px;margin-top:26px;margin-bottom:0
}
.hero-actions{display:flex;flex-direction:column;gap:26px;align-items:flex-start;margin-top:26px}

.btn-hero{
  display:inline-flex;align-items:center;gap:8px;
  width:250px;height:55px;padding:16px 20px 15px;
  background:var(--gradient-btn);color:var(--white);
  font-family:var(--font);font-size:20px;font-weight:600;
  border-radius:var(--radius);border:none;
  cursor:pointer;white-space:nowrap;
  box-shadow:0 4px 16px rgba(var(--blue-rgb),.35);
  transition:opacity .2s,transform .18s
}
.btn-hero:hover{opacity:.88;transform:translateY(-2px)}
.btn-hero .btn-icon{width:24px;height:24px;filter:brightness(0) invert(1)}

/* Hero phone */
.hero-visual{display:flex;justify-content:center;align-items:flex-end}
.hero-phone{width: 513px;height: 769px;object-fit:contain;display:block;filter:drop-shadow(0 20px 48px rgba(30,95,173,.22))}

/* ============================================
   MASALAH
   ============================================ */
.masalah{position:relative;overflow:hidden;padding:80px 0;background:#fff}
.masalah-bg-vector{
  position:absolute;top:184px;left:0;right:0;
  width:100%;height:auto;z-index:0;pointer-events:none;
  display:flex;justify-content:center
}
.masalah-bg-img{width:100%;max-width:1688px;height:auto;opacity:1}
.masalah .container{position:relative;z-index:1}
.masalah .section-label{margin-bottom:198px}

.masalah-grid{
  display:grid;grid-template-columns:1fr 1fr;
  gap:53px 112px;max-width:1272px;margin:58px auto 0
}

/* ===== CARDS ===== */
.card{
  background:var(--blue-card);border-radius:var(--radius);
  padding:23px 44px 23px 43px;min-height:310px;
  display:flex;flex-direction:column;justify-content:center
}
.card-feature{background:var(--white);box-shadow:0 2px 8px rgba(var(--blue-rgb),.1)}

.card-icon-circle{
  width:100px;height:100px;border-radius:50%;
  background:var(--blue);display:flex;align-items:center;justify-content:center;
  margin-bottom:21px;flex-shrink:0
}
.card-icon-circle img{width:60px;height:60px;object-fit:contain;filter:brightness(0) invert(1)}

.card-title{font-size:30px;font-weight:700;font-family:var(--font);color:var(--text-dark);margin-bottom:31px}
.card-desc{font-size:30px;font-weight:700;font-family:var(--font);color:var(--text-gray);line-height:1.23;margin-top:0}

/* ============================================
   SOLUSI
   ============================================ */
.solusi{background:var(--gradient-section);padding:80px 0}
.solusi .section-sub-large{color:rgba(255,255,255,.9)}

.solusi-cloud-area{position:relative;margin-bottom:32px;padding-bottom:280px}
.solusi-cloud-bg{
  position:absolute;left:50%;top:0;transform:translateX(-50%);
  width:1688px;max-width:none;height:auto;
  z-index:0;pointer-events:none
}
.solusi-cloud-area .section-header-center{position:relative;z-index:1;padding-top:140px}
.solusi-cloud-area .section-title-large{margin-bottom:58px}
.solusi-cloud-area .section-sub-large{color:rgba(255,255,255,.9)} 

.solusi-quote-card-wrapper{position:relative;max-width:960px;margin:0 auto}
.solusi-quote-card{
  position:relative;
  background:var(--white);border-radius:var(--radius);
  padding:93px 205px 100px;margin-top:74px;
  text-align:center
}
.quote-title{font-weight:700;font-size:40px;font-family:'Merriweather',serif;color:var(--text-dark);margin-bottom:10px}
.quote-sub{font-weight:700;font-size:25px;font-family:'Merriweather',serif;color:var(--text-dark);line-height:1.4;max-width:740px;margin:0 auto}

.solusi-mascot-1{position:absolute;left:-80px;bottom:-44px;width:203px;z-index:1;pointer-events:none}
.solusi-mascot-2{position:absolute;top:-40px;right:-20px;width:203px;z-index:2;pointer-events:none}

.features-grid{display:grid;grid-template-columns:1fr 1fr;gap:53px 112px;margin-top:90px}
.features-grid .card{padding:23px 44px 23px 43px;min-height:310px}

/* ============================================
   CARA KERJA
   ============================================ */
.cara-kerja{padding:80px 0;background: #D4ECFD}
.cara-kerja .section-label{margin-bottom:0}
.cara-kerja .section-title-steps{margin-top:101px}

.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:63px}

.step-card{
  background:var(--blue);border-radius:var(--radius);
  padding:124px 41px 123px;text-align:left
}
.step-num{font-size:80px;font-weight:700;font-family:var(--font);color:#FCFCFC;line-height:1;margin-bottom:0}
.step-icon-wrap{margin:50px 0}
.step-icon-wrap img{width:80px;height:80px;object-fit:contain;filter:brightness(0) invert(1)}
.step-text{display:flex;flex-direction:column;gap:16px}
.step-card h3{font-size:40px;font-weight:700;font-family:var(--font);color:var(--white);line-height:normal;margin-bottom:16}
.step-card p{font-size:25px;font-weight:700;font-family:var(--font);color:var(--white)}

/* ============================================
   UNTUK SIAPA
   ============================================ */
.untuk-siapa{padding:80px 0;background:var(--white)}
.untuk-siapa .section-header-center{margin-bottom:58px}
.untuk-siapa .section-title-large{font-size:60px;font-weight:700;color:var(--blue);margin-bottom:0;line-height:1.22}

.siapa-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:24px;margin-bottom:32px}
.siapa-card{
  background:var(--blue-card);border-radius:20px;
  padding:61px 51px;display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  width:300px;height:146px;flex:0 0 250px;
  transition:box-shadow .25s,transform .25s;gap:20px
}
.siapa-card:hover{box-shadow:0 6px 20px rgba(var(--blue-rgb),.16);transform:translateY(-3px)}
.siapa-card img{width:24px;height:24px;object-fit:contain}
.siapa-card span{font-size:16px;font-weight:700;font-family:var(--font);color:var(--blue);text-align:center;line-height:1.2}

.siapa-desc{
  font-size:35px;font-weight:500;font-family:var(--font);
  color:var(--blue);max-width:1008px;margin: 153px auto 153px auto;
  line-height:1.22;text-align:center
}

/* ============================================
   MANFAAT
   ============================================ */
.manfaat{padding:80px 0;background:var(--gradient-web)}
.manfaat-layout{display:flex;align-items:center;justify-content:center;gap:40px;margin-top:32px}
.manfaat-col{display:flex;flex-direction:column;gap:22px}
.manfaat-center{flex-shrink:0}
.manfaat-mascot{width:280px;filter:drop-shadow(0 8px 20px rgba(var(--blue-rgb),.2))}

.manfaat-pill{
  display:inline-flex;align-items:center;justify-content:center;
  gap:22px;flex-direction:column;
  padding:20px 30px;min-width:236px;min-height:121px;
}
.manfaat-pill img{width:50px;height:50px;object-fit:contain;flex-shrink:0}
.manfaat-pill span{
  font-size:40px;font-weight:700;font-family:var(--font);
  background:var(--gradient-text);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text
}

/* ============================================
   CTA
   ============================================ */
.cta-section{position:relative;overflow:hidden;min-height:900px;display:flex;align-items:center}
.cta-bg-img{
  position:absolute;
  inset:0;
  width:auto;
  height:auto;
  object-position:center;
  z-index:0;
}
.cta-inner{position:relative;z-index:1;padding:80px 84px}
.cta-text{max-width:745px}

.cta-text h2{
  font-size:80px;font-weight:700;font-family:var(--font);
  color:var(--white);line-height:1.22;margin-bottom:48px;
  text-shadow:0 2px 16px rgba(0,0,0,.18)
}
.cta-text p{
  font-size:40px;font-weight:500;font-family:var(--font);
  color:var(--text-dark);line-height:1.22;margin-bottom:48px;
  text-shadow:0 1px 8px rgba(0,0,0,.08)
}

.btn-cta{
  display:inline-flex;align-items:center;gap:10px;
  padding: 18px 20px;
  background:var(--gradient-btn);color:var(--white);
  font-family:var(--font);font-size:22px;font-weight:500;
  border-radius:14.29px;border:none;
  cursor:pointer;white-space:nowrap;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  transition:opacity .2s,transform .18s
}

.btn-text{
  text-align: left;
  line-height: 1.3;
}

.btn-cta:hover{opacity:.88;transform:translateY(-2px)}
.cta-btn-icon{width:48px;height:48px;filter:brightness(0) invert(1);flex-shrink:0}

/* ============================================
   FOOTER
   ============================================ */
.footer{background:white;padding-top:60px;color:var(--text-dark);border-top:1px solid #000}
.footer-inner{display:flex;justify-content:space-between;gap:136px;padding-bottom:44px;border-bottom:1px solid #000}

.footer-logo-row{display:flex;align-items:center;gap:16px;margin-bottom:53px}
.footer-logo-img{width:165px;height:45px}
.footer-logo-mindful{font-size:36px;font-weight:500;font-family:var(--font)}
.footer-logo-tech{font-size:36px;font-weight:500;font-family:var(--font)}

.footer-brand{max-width:602px}
.footer-tagline{
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal
;}

.footer-links{display:flex;gap:73px}
.footer-col h4{font-size:30px;font-weight:700;font-family:var(--font);color:var(--blue);margin-bottom:24px}
.footer-col ul{display:flex;flex-direction:column;gap:16px}
.footer-col a{
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal
}
.footer-col a:hover{color:var(--blue)}

.footer-bottom{padding:20px 0}
.footer-bottom-inner{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap}
.footer-bottom p{font-size:20px;font-weight:500;font-family:var(--font)}
.footer-growth{font-size:20px;font-weight:600;font-family:var(--font);color:var(--blue)}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay{
  position:fixed;inset:0;
  background:rgba(10,15,40,.6);backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);z-index:999;
  display:flex;align-items:center;justify-content:center;
  opacity:0;pointer-events:none;transition:opacity .25s
}
.modal-overlay.open{opacity:1;pointer-events:all}

.modal-box{
  background:var(--white);border-radius:var(--radius);
  padding:44px 40px 36px;max-width:420px;
  width:calc(100% - 32px);text-align:center;
  position:relative;box-shadow:0 24px 80px rgba(0,0,0,.22);
  transform:translateY(24px) scale(.97);
  transition:transform .3s cubic-bezier(.34,1.56,.64,1)
}
.modal-overlay.open .modal-box{transform:translateY(0) scale(1)}

.modal-close{
  position:absolute;top:14px;right:14px;
  background:#F0F4F8;border:none;border-radius:50%;
  width:32px;height:32px;cursor:pointer;
  font-size:18px;color:var(--text-dark);
  display:flex;align-items:center;justify-content:center;
  transition:background .2s
}
.modal-close:hover{background:#DAEEFF}

.modal-icon{
  width:72px;height:72px;background:#EBF5FF;
  border-radius:50%;display:flex;
  align-items:center;justify-content:center;margin:0 auto 20px
}
.modal-box h3{font-size:20px;font-weight:800;color:var(--text-dark);margin-bottom:10px}
.modal-box>p{
  font-size:14px;color:var(--text-gray);
  line-height:1.7;margin-bottom:28px;
  max-width:290px;margin-left:auto;margin-right:auto
}
.modal-actions{display:flex;gap:10px;justify-content:center}

.btn-confirm{
  display:inline-flex;align-items:center;gap:6px;
  padding:11px 28px;background:var(--gradient-btn);
  color:var(--white);font-family:var(--font);
  font-size:14px;font-weight:700;border-radius:var(--radius);
  border:none;cursor:pointer;
  box-shadow:0 4px 14px rgba(var(--blue-rgb),.35);
  transition:opacity .2s,transform .18s
}
.btn-confirm:hover{opacity:.88;transform:translateY(-1px)}

.btn-cancel{
  padding:11px 28px;background:#F0F4F8;
  color:var(--text-dark);font-family:var(--font);
  font-size:14px;font-weight:600;border-radius:var(--radius);
  border:1px solid rgba(168,218,255,.5);cursor:pointer;
  transition:background .2s
}
.btn-cancel:hover{background:#DAEEFF}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:1366px){
  :root{--container-pad:40px}
  .hero-text h1{font-size:clamp(40px,6vw,64px)}
  .section-label{font-size:clamp(48px,5.5vw,64px)}
  .section-title-large{font-size:clamp(30px,4vw,42px)}
  .section-sub-large{font-size:clamp(18px,2vw,22px)}
  .section-title-steps{font-size:clamp(36px,5vw,52px)}
  .masalah-grid,.features-grid{gap:40px 60px}
  .step-card{padding:80px 30px 80px}
  .step-num{font-size:60px}
  .step-card h3{font-size:clamp(28px,3vw,36px)}
  .step-card p{font-size:clamp(18px,2vw,22px)}
  .solusi-cloud-area{min-height:auto}
  .solusi-quote-card{padding:60px 80px;max-width:100%}
  .solusi-mascot-2{top:-30px;right:-15px}
  .solusi-mascot-1,.solusi-mascot-2{width:120px}
  .hero-phone{max-width:380px}
  .siapa-card{padding:40px 30px}
  .siapa-card span{font-size:clamp(24px,2.8vw,30px)}
  .siapa-desc{font-size:clamp(24px,2.8vw,30px)}
  .cta-text h2{font-size:clamp(40px,5.5vw,64px)}
  .cta-text p{font-size:clamp(24px,3vw,32px)}
  .card-desc{font-size:clamp(18px,2.2vw,24px)}
  .card-title{font-size:clamp(22px,2.5vw,28px)}
  .manfaat-pill span{font-size:clamp(28px,3.5vw,36px)}
  .footer-col a{font-size:clamp(20px,2.5vw,26px)}
  .footer-col h4{font-size:clamp(22px,2.5vw,28px)}
  .footer-tagline{font-size:clamp(20px,2.5vw,26px)}
  .footer-logo-mindful,.footer-logo-tech{font-size:clamp(24px,3vw,32px)}
}

@media(max-width:1024px){
  .navbar{height:80px}
  .nav-inner{height:80px}
  .nav-links{gap:40px}
  .nav-links a{font-size:16px}
  .hero-inner{grid-template-columns:1fr 1fr}
  .hero-text h1{
    color: #000;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  .hero-phone{max-width:300px}
  .masalah-grid,.features-grid{gap:30px 40px}
  .steps-grid{gap:30px}
  .footer-inner{flex-direction:column;gap:60px}
  .footer-links{gap:60px}
  .siapa-grid{grid-template-columns:repeat(4,1fr)}
  .manfaat-pill{min-width:180px;padding:16px 24px}
  .manfaat-mascot{width:200px}
}

@media(max-width:900px){
  .steps-grid{grid-template-columns:1fr;max-width:450px;margin:0 auto}
  .features-grid{grid-template-columns:1fr;max-width:580px;margin:32px auto 0}
  .masalah-grid{grid-template-columns:1fr;max-width:580px;margin:32px auto 0}
  .card{min-height:auto;padding:20px 30px}
  .solusi-cloud-area{min-height:auto}
  .solusi-cloud-bg{width:100%;max-width:100%}
  .solusi-quote-card{padding:40px 24px;max-width:100%}
  .solusi-mascot-1,.solusi-mascot-2{display:none}
  .quote-title{font-size:28px}
  .quote-sub{font-size:18px}
}

@media(max-width:767px){
  :root{--container-pad:20px}
  .navbar{height:64px}
  .nav-inner{height:64px}
  .nav-links,.btn-nav-cta{display:none}
  .hamburger{display:flex}
  .hero{padding:16px 0 40px}
  .hero-inner{grid-template-columns:1fr 1fr;gap:12px;align-items:center}
  .hero-text{padding-bottom:0}
  .hero-text h1{font-size:clamp(20px,4.5vw,28px);line-height:1.3}
  .hero-sub{font-size:12px;max-width:100%;margin-top:8px;line-height:1.4}
  .hero-actions{align-items:flex-start;margin-top:8px;gap:6px}
  .hero-visual{align-items:center}
  .hero-phone{max-width:120px;width:100%;height:auto}
  .btn-hero{font-size:11px;padding:6px 12px;gap:4px;width:auto;height:auto;white-space:nowrap}
  .btn-hero .btn-icon{width:14px;height:14px}
  .section-label{font-size:clamp(36px,8vw,48px);margin-bottom:24px}
  .section-title-large{font-size:clamp(24px,5.5vw,32px)}
  .section-title-xl{font-size:clamp(28px,6vw,36px)}
  .section-sub-large{font-size:16px}
  .section-title-steps{font-size:clamp(28px,6vw,36px)}
  .masalah-bg-vector{top:60px}
  .masalah-bg-img{width:auto;min-width:100%;max-width:100%}
  .masalah .section-label{margin-bottom:40px}
  .masalah-grid,.features-grid{gap:20px}
  .card-icon-circle{width:60px;height:60px}
  .card-icon-circle img{width:36px;height:36px}
  .card-title{font-size:20px}
  .card-desc{font-size:16px}
  .solusi-cloud-area{padding-bottom:60px;min-height:auto}
  .solusi-cloud-bg{width:100%;max-width:100%}
  .solusi-quote-card-wrapper{max-width:100%}
  .solusi-quote-card{padding:24px;margin-top:30px}
  .solusi-mascot-1,.solusi-mascot-2{display:block;width:70px;z-index:2}
  .solusi-mascot-1{left:-15px;bottom:-15px}
  .solusi-mascot-2{top:-20px;right:-8px}
  .quote-title{font-size:28px}
  .quote-sub{font-size:18px}
  .step-card{padding:60px 24px 60px}
  .step-num{font-size:48px}
  .step-icon-wrap{margin:30px 0}
  .step-icon-wrap img{width:56px;height:56px}
  .step-card h3{font-size:28px}
  .step-card p{font-size:18px}
  .siapa-grid{grid-template-columns:repeat(2,1fr)}
  .siapa-card{padding:32px 20px;min-height:auto}
  .siapa-card span{font-size:22px}
  .siapa-desc{font-size:20px}
  .manfaat-layout{flex-direction:column;gap:24px}
  .manfaat-col{flex-direction:row;flex-wrap:wrap;justify-content:center}
  .manfaat-pill{min-width:140px;min-height:80px;padding:12px 16px;gap:12px}
  .manfaat-pill span{font-size:24px}
  .manfaat-pill img{width:32px;height:32px}
  .manfaat-mascot{width:160px}
  .cta-section{min-height:auto;padding:60px 0}
  .cta-bg-img{object-fit:cover;width:100%;height:100%}
  .cta-inner{padding:40px 20px}
  .cta-text h2{font-size:clamp(28px,7vw,36px)}
  .cta-text p{font-size:20px}
  .btn-cta{font-size:16px;padding:16px 32px}
  .cta-btn-icon{width:32px;height:32px}
  .footer-inner{gap:40px}
  .footer-logo-row{margin-bottom:24px}
  .footer-tagline{font-size:18px}
  .footer-links{gap:40px;flex-wrap:wrap}
  .footer-col a{font-size:18px}
  .footer-col h4{font-size:20px}
  .footer-bottom-inner{flex-direction:column;text-align:center}
  .footer-bottom p{font-size:14px}
  .footer-growth{font-size:14px}
}

@media(prefers-reduced-motion:reduce){
  *{transition-duration:.01ms!important;animation-duration:.01ms!important}
}
