:root{
  /* Brand palette */
  --navy:#0F1B2D;
  --navy2:#1E3A5F;
  --gold:#C6A75E;
  --bg:#F4F6F9;
  --text:#0B1220;
  --muted:#6B7280;
  --card:#FFFFFF;
  --line:rgba(15,27,45,.12);

  --radius:18px;
  --shadow:0 18px 60px rgba(15,27,45,.10);
  --shadow2:0 10px 28px rgba(15,27,45,.10);
  --container:1120px;

  --hfont:"Playfair Display", serif;
  --bfont:"Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--bfont);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
p{margin:0 0 14px}
small{color:var(--muted)}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}
.muted{color:var(--muted)}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  border:1px solid rgba(198,167,94,.35);
  background:rgba(198,167,94,.12);
  color:rgba(15,27,45,.92);
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:.92rem;
}
.kicker .dot{
  width:8px;height:8px;border-radius:999px;background:var(--gold);
  box-shadow:0 0 0 4px rgba(198,167,94,.18);
}

h1,h2,h3{
  font-family:var(--hfont);
  margin:0 0 10px;
  letter-spacing:.2px;
}
h1{font-size:clamp(2.2rem, 4.2vw, 3.4rem); line-height:1.08}
h2{font-size:clamp(1.6rem, 2.4vw, 2.2rem)}
h3{font-size:1.25rem}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:700;
  border:1px solid rgba(15,27,45,.16);
  background:#fff;
  box-shadow:var(--shadow2);
  gap:10px;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn--primary{
  background:linear-gradient(135deg, var(--navy), var(--navy2));
  color:#fff;
  border-color:rgba(255,255,255,.10);
}
.btn--ghost{
  background:rgba(255,255,255,.7);
  border:1px solid rgba(15,27,45,.14);
  box-shadow:none;
}
.btn--full{width:100%}
.btn--small{padding:10px 14px; border-radius:12px; font-weight:700}
.icon{
  width:18px;height:18px; display:inline-block;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.card__pad{padding:18px}
.grid{
  display:grid;
  gap:16px;
}
.grid2{grid-template-columns:repeat(2, 1fr)}
.grid3{grid-template-columns:repeat(3, 1fr)}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(244,246,249,.82);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(15,27,45,.10);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
/* logo khusus di navbar */
.topbar .brand img.brand_logo{
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.brand{
  display:flex; gap:12px; align-items:center;
  font-weight:900;
}
.brand__mark{
  width:34px;height:34px;border-radius:12px;
  background:linear-gradient(135deg, var(--navy), var(--navy2));
  position:relative;
  box-shadow:0 10px 24px rgba(15,27,45,.18);
}
.brand__mark::after{
  content:"";
  position:absolute; inset:9px;
  border-radius:9px;
  border:1px solid rgba(198,167,94,.65);
}
.brand__name{
  display:flex; flex-direction:column; line-height:1.15;
}
.brand__name strong{font-size:1.02rem; letter-spacing:.3px}
.brand__name span{font-size:.86rem; color:var(--muted); font-weight:600}

.nav{
  display:flex; gap:16px; align-items:center;
}
.nav a{
  font-weight:700;
  color:rgba(11,18,32,.82);
  padding:10px 10px;
  border-radius:12px;
}
.nav a:hover{background:rgba(15,27,45,.06)}
.nav .active{background:rgba(198,167,94,.16); border:1px solid rgba(198,167,94,.35)}

.navToggle{
  display:none;
  width:44px;height:42px;
  border-radius:12px;
  border:1px solid rgba(15,27,45,.14);
  background:#fff;
  box-shadow:var(--shadow2);
  cursor:pointer;
}
.navToggle span{
  display:block; width:18px; height:2px;
  background:rgba(15,27,45,.85);
  margin:5px auto;
  border-radius:4px;
}

.hero{
  position:relative;
  padding:64px 0 30px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(15,27,45,.92), rgba(15,27,45,.70) 55%, rgba(15,27,45,.20)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2200&q=80");
  background-size:cover;
  background-position:center;
  filter:saturate(.95) contrast(1.05);
}
.hero__overlay{
  position:absolute; inset:0;
  background: radial-gradient(900px 500px at 20% 10%, rgba(198,167,94,.22), transparent 60%),
              radial-gradient(900px 500px at 80% 0%, rgba(255,255,255,.08), transparent 55%);
  pointer-events:none;
}
.hero__content{
  position:relative;
  display:grid;
  grid-template-columns: 1.22fr .9fr;
  gap:18px;
  align-items:stretch;
  color:#fff;
}
.hero p{color:rgba(255,255,255,.86)}
.hero .kicker{background:rgba(198,167,94,.12); color:#fff; border-color:rgba(198,167,94,.30)}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.hero__mini{
  display:flex; gap:12px; flex-wrap:wrap; margin-top:18px;
}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:rgba(255,255,255,.90);
  font-weight:700;
  font-size:.9rem;
}

.heroCard{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 30px 70px rgba(0,0,0,.35);
}
.heroCard__top{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.14);
  display:flex; justify-content:space-between; align-items:center;
}
.heroCard__top strong{letter-spacing:.3px}
.heroCard__body{padding:16px}
.heroCard__body ul{
  margin:12px 0 0; padding-left:18px;
  color:rgba(255,255,255,.86);
}
.heroCard__body li{margin:8px 0}

.section{padding:54px 0}
.section--tight{padding:40px 0}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  margin-bottom:16px;
}
.section__head p{max-width:640px; margin:0}
.badgeRow{
  display:flex; gap:10px; flex-wrap:wrap;
}
.badge{
  border:1px solid rgba(15,27,45,.14);
  background:rgba(255,255,255,.70);
  padding:8px 12px;
  border-radius:999px;
  font-weight:700;
  color:rgba(15,27,45,.82);
}

.serviceCard{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.serviceCard__cover{
  height:170px;
  background-size:cover;
  background-position:center;
  position:relative;
}
.serviceCard__cover::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(15,27,45,.10), rgba(15,27,45,.65));
}
.serviceCard__cover .label{
  position:absolute; left:16px; bottom:14px;
  color:#fff; font-weight:900; letter-spacing:.3px;
}
.serviceCard__body{padding:16px}
.serviceCard__body p{color:var(--muted)}

.feature{
  padding:16px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
}
.feature strong{display:block; margin-bottom:6px}
.feature p{margin:0; color:var(--muted)}

.legalBox{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.legalList{
  margin:0; padding:0; list-style:none;
}
.legalList li{
  display:flex; justify-content:space-between; gap:12px;
  padding:10px 0;
  border-bottom:1px dashed rgba(15,27,45,.14);
}
.legalList li:last-child{border-bottom:0}
.legalList span{color:var(--muted); font-weight:700}
.legalList strong{font-weight:900}

.contactWrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}
.form{
  padding:18px;
}
label{
  display:block;
  font-weight:800;
  margin-bottom:10px;
  color:rgba(11,18,32,.88);
}
input, textarea, select{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,27,45,.16);
  background:#fff;
  outline:none;
  font-family:var(--bfont);
  font-size:1rem;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(198,167,94,.65);
  box-shadow: 0 0 0 4px rgba(198,167,94,.18);
}
.formNote{min-height:1.2em; margin-top:10px}
.sideInfo{
  padding:18px;
}
.sideInfo .line{
  height:1px; background:rgba(15,27,45,.10); margin:12px 0;
}
.sideInfo p{margin:8px 0}
.sideInfo a{font-weight:900; color:var(--navy2)}
.sideInfo a:hover{text-decoration:underline}

.footer{
  padding:28px 0 44px;
  border-top:1px solid rgba(15,27,45,.10);
  background:rgba(255,255,255,.65);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:flex-start;
  gap:16px; flex-wrap:wrap;
}
.footer small{display:block; margin-top:8px}
.footer a{font-weight:900; color:var(--navy2)}
.footer a:hover{text-decoration:underline}

.pageHero{
  padding:56px 0 24px;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(198,167,94,.20), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.35));
  border-bottom:1px solid rgba(15,27,45,.10);
}
.breadcrumb{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center;
  color:rgba(11,18,32,.72);
  font-weight:800;
  margin-bottom:10px;
}
.breadcrumb a{color:rgba(11,18,32,.82)}
.breadcrumb a:hover{text-decoration:underline}
.pageHero p{max-width:760px}

.timeline{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.step{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.72);
}
.step .no{
  display:inline-flex;
  width:32px;height:32px;border-radius:12px;
  background:linear-gradient(135deg, var(--navy), var(--navy2));
  color:#fff; align-items:center; justify-content:center;
  font-weight:900;
  margin-bottom:10px;
}
.step p{margin:0; color:var(--muted)}

@media (max-width: 960px){
  .hero__content{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .legalBox{grid-template-columns:1fr}
  .contactWrap{grid-template-columns:1fr}
  .timeline{grid-template-columns:1fr}
  .navToggle{display:inline-block}
  .nav{
    display:none;
    position:fixed;
    right:16px; top:72px;
    width:min(320px, calc(100% - 32px));
    flex-direction:column;
    background:#fff;
    border:1px solid rgba(15,27,45,.14);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:12px;
    gap:8px;
  }
  .nav.is-open{display:flex}
}
