:root{
  --egg:#6ec1e4;          /* biru telur asin */
  --egg2:#8fd7f2;
  --deep:#2196c9;
  --ink:#102033;
  --text:#1b2430;
  --muted:#6c7a8a;
  --bg:#f3f7fb;
  --card:#ffffff;
  --line:rgba(110,193,228,.22);
  --shadow:0 10px 28px rgba(0,0,0,.06);
  --shadow2:0 18px 40px rgba(3,46,87,.16);
  --r12:12px; 
  --r18:18px; 
  --r24:24px;
  --max:1180px;
}

/* ===== RESET ===== */
*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
code{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,"Courier New",monospace;
  font-size:.92em
}

.wrap{max-width:var(--max);margin:0 auto;padding:0 1rem}
.page{min-height:100vh;display:flex;flex-direction:column}

/* =========================
   HEADER
   ========================= */
.header{
  position:sticky;
  top:0;
  z-index:80;
  background:linear-gradient(90deg,var(--egg),var(--deep));
  box-shadow:0 2px 10px rgba(0,0,0,.16);
  backdrop-filter:saturate(130%) blur(10px);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.8rem;
  padding:.55rem 0;
  min-height:60px;
}

/* ===== BRAND & LOGO (FIXED) ===== */
.brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  min-width:0;
}

.brand__logoBox{
  width:auto;
  height:44px;
  min-width:72px;
  padding:6px 10px;
  border-radius:14px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}

.brand__logo{
  width:auto;
  height:100%;
  max-height:32px;
  max-width:120px;
  object-fit:contain;      /* PENTING: jaga aspect ratio 130x78 */
  border-radius:0;
}

.brand__txt{
  display:flex;
  flex-direction:column;
  gap:2px;
  color:#fff;
  min-width:0;
}

.brand__name{
  font-weight:900;
  letter-spacing:.03em;
  font-size:1.05rem;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.brand__tag{
  font-size:.78rem;
  color:rgba(255,255,255,.9);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* ===== NAV ===== */
.nav{
  display:flex;
  align-items:center;
  gap:.55rem;
  flex-wrap:wrap;
}
.nav a{
  font-size:.82rem;
  color:rgba(255,255,255,.9);
  padding:.22rem .55rem;
  border-radius:999px;
}
.nav a:hover{background:rgba(0,0,0,.12)}

/* ===== ACTION BUTTONS ===== */
.actions{
  display:flex;
  align-items:center;
  gap:.45rem;
  flex-shrink:0;
}

.btn{
  border-radius:999px;
  padding:.42rem 1rem;
  border:1px solid transparent;
  font-size:.82rem;
  font-weight:700;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  min-height:40px;
  -webkit-tap-highlight-color:transparent;
}

.btn--primary{
  background:#fff;
  color:var(--deep);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.btn--outline{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.8);
}

@media (hover:hover){
  .btn--primary:hover,
  .btn--outline:hover{transform:translateY(-1px)}
}
.btn:active{transform:translateY(0)}

/* =========================
   HERO
   ========================= */
main{flex:1}

.hero{
  background:radial-gradient(circle at top,#e3f4ff 0,#f3f7fb 55%,#eaf4fb 100%);
  padding:1.2rem 0 .9rem;
}
.hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(0,1fr);
  gap:1.2rem;
  align-items:center;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.45rem;
  background:rgba(33,150,201,.08);
  border-radius:999px;
  padding:.25rem .7rem;
  font-size:.75rem;
  color:#1f9fbf;
  font-weight:700;
  width:fit-content;
}
.eyebrow b{
  padding:.15rem .55rem;
  border-radius:999px;
  background:rgba(33,150,201,.16);
  font-size:.7rem;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.h1{
  font-size:1.75rem;
  line-height:1.2;
  margin:.45rem 0 .55rem;
  color:#13334c;
  font-weight:900;
}
.lead{
  font-size:.95rem;
  color:var(--muted);
  max-width:720px;
}
.lead strong{color:var(--deep)}

.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem;
  margin-top:.6rem;
}

.meta{
  display:flex;
  flex-wrap:wrap;
  gap:.45rem 1rem;
  margin-top:.55rem;
  color:var(--muted);
  font-size:.78rem;
}
.dot{
  width:6px;
  height:6px;
  border-radius:999px;
  background:#4caf50;
  display:inline-block;
  margin-right:.35rem;
}

/* ===== BANNER (SQUARE SAFE) ===== */
.bannerBox{
  background:linear-gradient(135deg,var(--egg) 0,var(--deep) 42%,#1f9fbf 100%);
  border-radius:var(--r24);
  padding:.75rem;
  box-shadow:var(--shadow2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
}
.bannerBox__inner{
  background:rgba(255,255,255,.08);
  border-radius:18px;
  overflow:hidden;
  aspect-ratio:1 / 1;
}
.bannerImg{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:18px;
}

/* =========================
   SECTIONS
   ========================= */
.section{padding:1.15rem 0}
.section h2{
  font-size:1.15rem;
  margin:0 0 .55rem;
  display:flex;
  align-items:center;
  gap:.4rem;
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--r24);
  box-shadow:var(--shadow);
  padding:1.05rem 1rem;
}

.grid2{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,1fr);
  gap:1rem;
}
.grid3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:.85rem;
}

.p{margin:.15rem 0 .65rem;font-size:.92rem}
.p strong{color:var(--deep)}
.ul{margin:.2rem 0 .6rem;padding-left:1.1rem;color:var(--muted);font-size:.9rem}

.kpi{display:flex;flex-wrap:wrap;gap:.45rem}
.pill{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  padding:.22rem .65rem;
  border-radius:999px;
  background:rgba(33,150,201,.1);
  border:1px solid rgba(33,150,201,.18);
  color:#1f9fbf;
  font-size:.78rem;
  font-weight:700;
}

.mini{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r18);
  padding:.85rem .85rem;
  box-shadow:0 8px 16px rgba(0,0,0,.05);
}
.mini h3{margin:.05rem 0 .35rem;font-size:.95rem}
.small{font-size:.85rem;color:var(--muted);margin:.05rem 0 .55rem}
.link{color:var(--deep);font-weight:800}

/* =========================
   FAQ
   ========================= */
.faqItem{
  padding:.6rem .7rem;
  border-radius:14px;
  background:rgba(110,193,228,.10);
  border:1px solid rgba(110,193,228,.22);
  margin:.45rem 0;
}
.faqQ{font-weight:900;margin:0 0 .25rem}
.faqA{margin:0;color:var(--muted);font-size:.88rem}

/* =========================
   FOOTER
   ========================= */
.footer{
  margin-top:1.2rem;
  background:var(--ink);
  color:rgba(255,255,255,.78);
  padding:1.2rem 0 calc(1.65rem + 72px);
}
.footer__grid{
  display:grid;
  grid-template-columns:minmax(0,2fr) minmax(0,1.2fr);
  gap:1rem;
}
.footer__brand{
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:.78rem;
  margin-bottom:.2rem;
  color:#fff;
}
.footer__links{
  display:flex;
  flex-wrap:wrap;
  gap:.55rem 1rem;
  margin-top:.45rem;
}
.footer__links a{color:rgba(255,255,255,.86)}
.note{font-size:.76rem;color:rgba(255,255,255,.62);margin-top:.45rem}

/* =========================
   STICKY BOTTOM CTA
   ========================= */
.stickyCta{
  position:sticky;
  bottom:0;
  z-index:70;
  background:rgba(16,32,51,.92);
  backdrop-filter:blur(14px);
  border-top:1px solid rgba(255,255,255,.12);
  padding:.55rem 0 calc(.55rem + env(safe-area-inset-bottom));
}

.stickyCta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.6rem;
}
.stickyCta__txt{
  font-size:.8rem;
  color:rgba(255,255,255,.86);
}
.stickyCta__txt b{color:#fff}

.stickyCta__btns{
  display:flex;
  gap:.4rem;
}

.btn2{
  border-radius:999px;
  padding:.28rem .9rem;
  font-size:.78rem;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:.3rem;
  min-height:40px;
}

.btn2--ghost{
  border:1px solid rgba(255,255,255,.8);
  background:transparent;
  color:#fff;
}
.btn2--solid{
  border:none;
  background:var(--egg);
  color:#103049;
  box-shadow:0 6px 18px rgba(0,0,0,.25);
}

/* =========================
   RESPONSIVE
   ========================= */
@media(max-width:900px){
  .hero__grid,
  .grid2{grid-template-columns:minmax(0,1fr)}
  .grid3{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer__grid{grid-template-columns:minmax(0,1fr)}
  .nav{display:none}
}

@media(max-width:640px){
  .header__inner{flex-direction:column;align-items:flex-start}
  .actions{width:100%}
  .actions a{flex:1;justify-content:center}
  .brand__logoBox{height:40px;padding:5px 8px}
  .brand__logo{max-height:28px;max-width:110px}
  .h1{font-size:1.38rem}
  .lead{font-size:.88rem}
  .grid3{grid-template-columns:minmax(0,1fr)}
  .stickyCta__inner{flex-direction:column;align-items:flex-start}
  .stickyCta__btns{width:100%}
  .stickyCta__btns a{flex:1;justify-content:center}
}
