@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Libre+Baskerville:wght@700&display=swap');

:root{
  --navy:#183a5a;
  --blue:#4f83b3;
  --ink:#17202a;
  --muted:#687482;
  --soft:#f3f6f8;
  --line:#dbe3e9;
  --white:#fff;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:"DM Sans",Arial,sans-serif;color:var(--ink);background:#fff;line-height:1.65}
img{max-width:100%}
a{text-decoration:none;color:inherit}
.container{width:min(1160px,calc(100% - 40px));margin:auto}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.98);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(24,58,90,.10);
  box-shadow:0 3px 16px rgba(24,58,90,.035);
}
.nav-wrap{
  height:96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.brand{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.brand img{
  width:154px;
  height:auto;
  display:block;
}
.nav{
  display:flex;
  gap:32px;
  align-items:center;
  font-weight:600;
  font-size:14px;
  letter-spacing:.005em;
}
.nav a{
  position:relative;
  padding:8px 0;
  transition:color .18s ease;
}
.nav a:not(.nav-cta)::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:1px;
  height:2px;
  background:var(--blue);
  transition:right .2s ease;
}
.nav a:not(.nav-cta):hover::after{right:0}
.nav a:hover{color:var(--blue)}
.nav-cta{
  background:var(--navy);
  color:#fff!important;
  padding:12px 19px!important;
  border-radius:8px;
  box-shadow:0 5px 14px rgba(24,58,90,.13);
  transition:transform .18s ease,background .18s ease,box-shadow .18s ease!important;
}
.nav-cta:hover{
  background:#214c71;
  transform:translateY(-1px);
  box-shadow:0 7px 18px rgba(24,58,90,.18);
}
.menu-toggle{display:none;border:0;background:none;font-size:25px;color:var(--navy)}
.hero{
  padding:74px 0 72px;
  background:linear-gradient(135deg,#f8fafc 0%,#eef4f8 55%,#fff 100%);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.14fr .86fr;
  gap:66px;
  align-items:center;
}
.eyebrow,.section-label{font-size:12px;letter-spacing:.18em;font-weight:700;text-transform:uppercase;color:var(--blue);margin-bottom:18px}
h1,h2{font-family:"Libre Baskerville",Georgia,serif;line-height:1.18;margin:0;color:var(--navy)}
h1{
  font-size:clamp(41px,4.15vw,57px);
  line-height:1.10;
  max-width:660px;
  letter-spacing:-.015em;
}
h2{font-size:clamp(30px,3.2vw,46px)}
.hero-copy>p{
  font-size:18px;
  line-height:1.62;
  color:#52606d;
  max-width:635px;
  margin:25px 0 25px;
}
.hero-actions{
  display:flex;
  gap:11px;
  flex-wrap:wrap;
  align-items:center;
}
.button{display:inline-flex;align-items:center;justify-content:center;padding:13px 20px;border-radius:7px;font-weight:700;transition:.2s}
.button:hover{transform:translateY(-2px)}
.primary{
  background:var(--navy);
  color:#fff;
  box-shadow:0 6px 16px rgba(24,58,90,.13);
}
.secondary{
  border:1px solid rgba(24,58,90,.55);
  color:var(--navy);
  background:rgba(255,255,255,.72);
  font-weight:600;
}
.white{background:#fff;color:var(--navy)}
.hero-points{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
  margin-top:25px;
  font-size:13px;
  font-weight:700;
  color:#5e6c78;
}
.hero-points span:before{content:"✓";color:var(--blue);margin-right:7px}
.hero-card{position:relative}
.hero-card:before{content:"";position:absolute;width:330px;height:330px;border-radius:50%;background:#d7e6f1;right:-80px;top:-70px}
.data-panel{
  position:relative;
  background:var(--navy);
  color:#fff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 26px 55px rgba(24,58,90,.22);
  min-height:382px;
  display:flex;
  flex-direction:column;
}
.panel-top{display:flex;justify-content:space-between;font-size:12px;letter-spacing:.15em;font-weight:700;color:#bcd0e1}
.live-dot{color:#7dc4ff}
.bars{height:190px;display:flex;align-items:flex-end;gap:14px;padding:25px 0}
.bars i{display:block;flex:1;background:linear-gradient(#7eb6e2,#fff);border-radius:6px 6px 2px 2px;opacity:.9}
.metric{margin-top:auto;border-top:1px solid rgba(255,255,255,.18);padding-top:22px}
.metric strong{display:block;font-family:"Libre Baskerville",Georgia,serif;font-size:25px;margin-bottom:7px}
.metric span{color:#cfdae3;font-size:14px}
.section{
  padding:78px 0;
}
.split{
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:66px;
  align-items:start;
}
.body-copy{
  font-size:17.5px;
  line-height:1.66;
  color:#53616e;
  max-width:700px;
}
.body-copy p:first-child{margin-top:0}
.section-soft{background:var(--soft)}
.section-title{max-width:770px;margin-bottom:42px}
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.card{background:#fff;border:1px solid var(--line);padding:28px 25px;border-radius:12px;min-height:260px;transition:.2s}
.card:hover{transform:translateY(-5px);box-shadow:0 18px 40px rgba(24,58,90,.09)}
.card-no{font-weight:700;color:var(--blue);font-size:13px}
.card h3,.step h3{font-size:20px;color:var(--navy);margin:42px 0 12px}
.card p,.step p{color:var(--muted);font-size:15px}
.dark-section{background:var(--navy)}
.light{color:#fff}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:28px;margin-top:45px}
.step{border-top:1px solid rgba(255,255,255,.24);padding-top:25px;color:#fff}
.step b{display:grid;place-items:center;width:36px;height:36px;border-radius:50%;background:#fff;color:var(--navy)}
.step h3{color:#fff;margin:25px 0 10px}
.step p{color:#cdd9e2}
.legal-box{display:grid;grid-template-columns:1.2fr .8fr;gap:65px;align-items:center}
.legal-box p{color:var(--muted);font-size:17px}
.legal-note{background:var(--soft);border-left:4px solid var(--blue);padding:30px}
.legal-note strong{color:var(--navy)}
.legal-note p{font-size:15px;margin-bottom:0}
.contact-section{background:#2f6d9c;color:#fff}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}
.contact-grid>div>p{color:#dce9f2;font-size:17px;max-width:570px}
.contact-card{background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.25);padding:32px;border-radius:14px}
.contact-item{margin-bottom:22px}
.contact-item span{display:block;font-size:12px;text-transform:uppercase;letter-spacing:.16em;color:#c4dbeb;margin-bottom:5px}
.contact-item a{font-size:19px;font-weight:700}
.contact-item p{margin:0;color:#fff}
footer{background:#102b43;color:#cbd6df;padding:28px 0}
.footer-wrap{display:flex;justify-content:space-between;align-items:center;gap:25px}
.footer-wrap img{width:205px}
.footer-wrap p{font-size:13px;margin:0}
@media(max-width:900px){
  .menu-toggle{display:block}
  .nav{display:none;position:absolute;top:96px;left:0;right:0;background:#fff;padding:22px 30px;border-bottom:1px solid var(--line);flex-direction:column;align-items:flex-start}
  .nav.open{display:flex}
  .hero-grid,.split,.legal-box,.contact-grid{grid-template-columns:1fr}
  .hero-card{max-width:570px}
  .cards,.steps{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:580px){
  .container{width:min(100% - 28px,1160px)}
  .nav-wrap{height:82px}.brand img{width:130px}.nav{top:82px}
  .hero{padding:56px 0 54px}
  h1{font-size:39px}
  .hero-copy>p{font-size:17px}
  .section{padding:68px 0}
  .cards,.steps{grid-template-columns:1fr}
  .card{min-height:0}
  .card h3{margin-top:28px}
  .footer-wrap{flex-direction:column;align-items:flex-start}
}
.footer-wrap img{
  width:205px;
  filter:brightness(0) invert(1);
}

/* About section refinement */
#tentang h2{
  max-width:500px;
  font-size:clamp(31px,2.8vw,42px);
  line-height:1.16;
}
#tentang .section-label{
  margin-bottom:16px;
}
#tentang .body-copy p{
  margin-bottom:17px;
}


@media(max-width:580px){
  h1{
    font-size:37px;
    line-height:1.11;
  }
  #tentang h2{
    font-size:30px;
  }
}


/* Services section refinement */
#layanan .cards{
  align-items:stretch;
}

#layanan .card{
  min-height:315px;
  display:flex;
  flex-direction:column;
  padding:28px 25px 27px;
}

#layanan .card-no{
  margin-bottom:0;
}

#layanan .card h3{
  min-height:52px;
  display:flex;
  align-items:flex-start;
  margin:34px 0 14px;
  line-height:1.28;
}

#layanan .card p{
  margin-top:0;
  margin-bottom:0;
  line-height:1.62;
}

@media(max-width:900px){
  #layanan .card{
    min-height:290px;
  }
}

@media(max-width:580px){
  #layanan .card{
    min-height:0;
  }
  #layanan .card h3{
    min-height:0;
    margin-top:27px;
  }
}


/* Services compact refinement */
#layanan .card{
  min-height:292px;
  padding-bottom:24px;
}
#layanan .card h3{
  margin-top:31px;
  margin-bottom:12px;
}
#layanan .card p{
  line-height:1.58;
}


/* Process section headline refinement */
#metode .section-title{
  max-width:760px;
  font-size:clamp(32px,3vw,44px);
  line-height:1.14;
  margin-bottom:38px;
}


@media(max-width:580px){
  #layanan .card{
    min-height:0;
  }
  #metode .section-title{
    font-size:31px;
    line-height:1.15;
  }
}


/* Cara Kerja headline v2 */
#metode .section-title{
  max-width:900px;
  font-size:clamp(31px,2.8vw,42px);
  line-height:1.16;
  margin-bottom:38px;
}


/* Cara Kerja headline v3 */
#metode .section-title{
  max-width:720px;
  font-size:clamp(31px,2.7vw,41px);
  line-height:1.15;
  margin-bottom:38px;
}


/* Language switcher */
.lang-switcher{
  position:relative;
  margin-left:4px;
}
.lang-current{
  min-width:64px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid rgba(24,58,90,.16);
  border-radius:7px;
  background:#fff;
  color:var(--navy);
  font:inherit;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
}
.lang-current span{
  font-size:13px;
  transition:transform .18s ease;
}
.lang-switcher.open .lang-current span{
  transform:rotate(180deg);
}
.lang-menu{
  position:absolute;
  top:48px;
  right:0;
  min-width:72px;
  display:none;
  padding:5px;
  border:1px solid rgba(24,58,90,.12);
  border-radius:7px;
  background:#fff;
  box-shadow:0 12px 28px rgba(24,58,90,.14);
}
.lang-switcher.open .lang-menu{
  display:block;
}
.lang-menu a{
  display:block;
  padding:9px 12px;
  border-radius:5px;
  font-size:14px;
  font-weight:650;
  color:var(--navy);
}
.lang-menu a:hover,
.lang-menu a.active{
  background:#eef4f8;
  color:var(--blue);
}
@media(max-width:900px){
  .lang-switcher{
    margin-left:0;
  }
  .lang-menu{
    left:0;
    right:auto;
  }
}


/* =========================================================
   MOBILE OPTIMIZATION v1
   Desktop layout remains unchanged
   ========================================================= */

@media(max-width:900px){
  .nav{
    gap:0;
  }
  .nav.open{
    max-height:calc(100vh - 82px);
    overflow-y:auto;
  }
}

@media(max-width:580px){
  html{
    scroll-padding-top:76px;
  }

  body{
    line-height:1.58;
  }

  .container{
    width:calc(100% - 32px);
  }

  /* Header and mobile navigation */
  .nav-wrap{
    height:76px;
  }

  .brand img{
    width:116px;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    width:42px;
    height:42px;
    padding:0;
    border-radius:8px;
    font-size:23px;
    cursor:pointer;
  }

  .nav{
    top:76px;
    padding:14px 22px 18px;
    gap:2px;
    align-items:stretch;
    box-shadow:0 14px 30px rgba(24,58,90,.10);
  }

  .nav > a{
    width:100%;
    padding:12px 4px;
  }

  .nav-cta{
    width:max-content!important;
    margin:7px 0 5px;
    padding:10px 17px!important;
  }

  .lang-switcher{
    margin-top:4px;
    width:max-content;
  }

  .lang-current{
    min-width:58px;
    height:39px;
  }

  .lang-menu{
    top:43px;
  }

  /* Hero */
  .hero{
    padding:42px 0 40px;
  }

  .hero-grid{
    gap:34px;
  }

  .eyebrow,
  .section-label{
    margin-bottom:13px;
    font-size:11px;
    letter-spacing:.16em;
  }

  h1{
    font-size:35px;
    line-height:1.10;
    letter-spacing:-.012em;
  }

  h2{
    font-size:30px;
    line-height:1.16;
  }

  .hero-copy>p{
    margin:20px 0 21px;
    font-size:16px;
    line-height:1.62;
  }

  .hero-actions{
    gap:9px;
  }

  .button{
    min-height:46px;
    padding:11px 16px;
  }

  .hero-points{
    margin-top:20px;
    gap:10px 18px;
    font-size:12.5px;
  }

  .hero-card{
    width:100%;
    margin-top:2px;
  }

  .hero-card:before{
    width:250px;
    height:250px;
    right:-72px;
    top:-38px;
  }

  .data-panel{
    min-height:330px;
    padding:25px;
    border-radius:15px;
    box-shadow:0 20px 42px rgba(24,58,90,.19);
  }

  .bars{
    height:158px;
    gap:10px;
    padding:21px 0;
  }

  .metric{
    padding-top:18px;
  }

  .metric strong{
    font-size:23px;
  }

  .metric span{
    font-size:13.5px;
    line-height:1.55;
  }

  /* General sections */
  .section{
    padding:54px 0;
  }

  .split,
  .contact-grid{
    gap:27px;
  }

  #tentang h2{
    font-size:29px;
    line-height:1.16;
    max-width:330px;
  }

  #tentang .body-copy{
    font-size:16px;
    line-height:1.68;
  }

  #tentang .body-copy p{
    margin:0 0 15px;
  }

  .section-title{
    margin-bottom:30px;
  }

  /* Service cards */
  #layanan .cards{
    gap:14px;
  }

  #layanan .card{
    min-height:0;
    padding:23px 20px 22px;
    border-radius:11px;
  }

  #layanan .card h3{
    min-height:0;
    margin:24px 0 10px;
    font-size:18px;
    line-height:1.3;
  }

  #layanan .card p{
    font-size:14.5px;
    line-height:1.58;
  }

  /* Process steps */
  #metode{
    padding-top:54px;
    padding-bottom:48px;
  }

  #metode .section-title{
    max-width:330px;
    margin-bottom:30px;
    font-size:30px;
    line-height:1.15;
  }

  .steps{
    gap:0;
    margin-top:0;
  }

  .step{
    padding:20px 0 22px;
  }

  .step:first-child{
    padding-top:17px;
  }

  .step:last-child{
    padding-bottom:4px;
  }

  .step b{
    width:34px;
    height:34px;
  }

  .step h3{
    margin:17px 0 8px;
    font-size:18px;
  }

  .step p{
    margin:0;
    font-size:14.5px;
    line-height:1.58;
  }

  /* Contact */
  .contact-section{
    padding-top:53px;
    padding-bottom:48px;
  }

  .contact-grid>div>p{
    margin-bottom:0;
    font-size:16px;
    line-height:1.65;
  }

  .contact-card{
    padding:24px 21px;
    border-radius:12px;
  }

  .contact-item{
    margin-bottom:19px;
  }

  .contact-item a{
    font-size:17px;
    overflow-wrap:anywhere;
  }

  .contact-item p{
    font-size:15px;
    line-height:1.75;
  }

  /* Footer */
  footer{
    padding:25px 0 27px;
  }

  .footer-wrap{
    gap:16px;
    align-items:center;
    text-align:center;
  }

  .footer-wrap img{
    width:170px;
  }

  .footer-wrap p{
    font-size:12px;
    line-height:1.5;
  }
}

@media(max-width:380px){
  .container{
    width:calc(100% - 26px);
  }

  h1{
    font-size:33px;
  }

  .hero-actions .button{
    padding-left:14px;
    padding-right:14px;
    font-size:14px;
  }

  .hero-points{
    gap:8px 14px;
  }

  .data-panel{
    min-height:315px;
    padding:22px;
  }
}


/* =========================================================
   MOBILE OPTIMIZATION v2
   Compact number-title rows for Services and How We Work
   ========================================================= */

@media(max-width:580px){

  /* Slightly lighter section headings on narrow screens */
  #layanan .section-title{
    max-width:335px;
    font-size:28px;
    line-height:1.14;
    margin-bottom:26px;
  }

  #metode .section-title{
    max-width:335px;
    font-size:28px;
    line-height:1.14;
    margin-bottom:27px;
  }

  .contact-section h2{
    max-width:340px;
    font-size:29px;
    line-height:1.15;
  }

  /* Services: number and title in one compact row */
  #layanan .cards{
    gap:12px;
  }

  #layanan .card{
    display:grid;
    grid-template-columns:36px minmax(0,1fr);
    column-gap:12px;
    row-gap:12px;
    padding:20px 19px 20px;
    min-height:0;
  }

  #layanan .card-no{
    grid-column:1;
    grid-row:1;
    align-self:center;
    margin:0;
    font-size:13px;
    line-height:1;
  }

  #layanan .card h3{
    grid-column:2;
    grid-row:1;
    align-self:center;
    min-height:0;
    margin:0;
    font-size:18px;
    line-height:1.27;
  }

  #layanan .card p{
    grid-column:1 / -1;
    grid-row:2;
    margin:0;
    font-size:14.5px;
    line-height:1.55;
  }

  /* Process: numbered badge and title share one row */
  .step{
    display:grid;
    grid-template-columns:42px minmax(0,1fr);
    column-gap:14px;
    row-gap:9px;
    padding:18px 0 20px;
  }

  .step b{
    grid-column:1;
    grid-row:1;
    align-self:center;
    width:34px;
    height:34px;
    font-size:14px;
  }

  .step h3{
    grid-column:2;
    grid-row:1;
    align-self:center;
    margin:0;
    font-size:18px;
    line-height:1.28;
  }

  .step p{
    grid-column:2;
    grid-row:2;
    margin:0;
    font-size:14.5px;
    line-height:1.56;
  }

  .step:first-child{
    padding-top:16px;
  }

  .step:last-child{
    padding-bottom:2px;
  }
}

@media(max-width:380px){
  #layanan .card{
    grid-template-columns:32px minmax(0,1fr);
    column-gap:10px;
    padding-left:17px;
    padding-right:17px;
  }

  .step{
    grid-template-columns:39px minmax(0,1fr);
    column-gap:11px;
  }
}


/* =========================================================
   MOBILE OPTIMIZATION v3
   Two-column menu and tighter mobile rhythm
   ========================================================= */

@media(max-width:580px){

  html{
    scroll-padding-top:76px;
  }

  #tentang,
  #layanan,
  #metode,
  #kontak{
    scroll-margin-top:76px;
  }

  /* Two-column mobile menu */
  .nav{
    display:none;
    top:76px;
    grid-template-columns:repeat(2, minmax(0,1fr));
    align-items:center;
    gap:8px 12px;
    padding:16px 22px 18px;
    max-height:none;
    overflow:visible;
  }

  .nav.open{
    display:grid;
  }

  .nav > a{
    display:flex;
    align-items:center;
    min-height:44px;
    width:100%;
    padding:9px 8px;
    border-radius:7px;
    font-size:15px;
  }

  .nav > a:hover{
    background:#f3f7fa;
  }

  .nav-cta{
    display:flex!important;
    justify-content:center;
    width:100%!important;
    min-height:44px;
    margin:0;
    padding:10px 14px!important;
  }

  .lang-switcher{
    grid-column:1 / -1;
    margin:3px 0 0;
    width:max-content;
  }

  .lang-current{
    min-width:58px;
    height:38px;
    border-radius:7px;
  }

  .lang-menu{
    top:42px;
  }

  /* Reduce the vertical gap before the first service card */
  #layanan .section-title{
    margin-bottom:18px;
  }

  #layanan .cards{
    margin-top:0;
  }

  /* Slightly smaller process badges */
  .step{
    grid-template-columns:38px minmax(0,1fr);
    column-gap:11px;
  }

  .step b{
    width:31px;
    height:31px;
    font-size:13px;
  }

  /* Tighter top rhythm for anchor sections */
  #tentang.section,
  #layanan.section{
    padding-top:48px;
  }

  #metode{
    padding-top:49px;
  }

  .contact-section{
    padding-top:49px;
  }
}

@media(max-width:380px){
  .nav{
    padding-left:17px;
    padding-right:17px;
    column-gap:8px;
  }

  .nav > a{
    font-size:14px;
    padding-left:6px;
    padding-right:6px;
  }
}


/* =========================================================
   MOBILE OPTIMIZATION v4
   Language dropdown stays fully inside the mobile menu panel
   ========================================================= */

@media(max-width:580px){

  .nav{
    padding-bottom:20px;
    overflow:visible;
  }

  .lang-switcher{
    grid-column:1 / -1;
    display:block;
    width:100%;
    margin-top:4px;
  }

  .lang-current{
    width:112px;
    min-width:112px;
    justify-content:space-between;
    padding:0 14px;
  }

  .lang-menu{
    position:static;
    display:none;
    width:112px;
    min-width:112px;
    margin-top:8px;
    padding:5px;
    border-radius:7px;
    box-shadow:none;
    background:#fff;
  }

  .lang-switcher.open .lang-menu{
    display:block;
  }

  .lang-menu a{
    padding:9px 11px;
  }
}

@media(max-width:380px){
  .lang-current,
  .lang-menu{
    width:106px;
    min-width:106px;
  }
}
