:root{
  --bg:#071a3a;
  --bg2:#0b2a5a;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.12);
  --text:#eaf2ff;
  --muted: rgba(234,242,255,.72);
  --line: rgba(255,255,255,.14);
  --blue:#3aa0ff;
  --yellow:#ffd24d;
  --shadow: 0 18px 50px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: radial-gradient(1200px 700px at 15% 10%, rgba(58,160,255,.30), transparent 55%),
              radial-gradient(900px 600px at 75% 0%, rgba(255,210,77,.22), transparent 50%),
              linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1100px, 92%); margin:0 auto}

.topbar{
  background: rgba(0,0,0,.22);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:10px 0;
}
.topbar-left{display:flex; gap:12px; align-items:center; flex-wrap:wrap; font-size:13px; color:var(--muted)}
.topbar-left .dot{opacity:.6}
.topbar-right{display:flex; gap:10px}
.pill{
  font-size:13px; padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.10); border:1px solid var(--line);
}
.pill.outline{background:transparent}
.pill:hover{transform: translateY(-1px); transition:.18s}

.header{
  position: sticky; top:0; z-index:50;
  background: rgba(6, 18, 44, .68);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px; height:44px; border-radius:12px;
  background: rgba(255,255,255,.12);
  border:1px solid var(--line); padding:6px;
}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-name{font-weight:800; letter-spacing:.2px}
.brand-tag{font-size:12px; color:var(--muted)}

.menu{display:flex; align-items:center; gap:14px}
.menu a{
  font-size:14px; color:rgba(234,242,255,.88);
  padding:10px 10px; border-radius:12px;
}
.menu a:hover{background: rgba(255,255,255,.08)}
.menu .cta{
  background: linear-gradient(135deg, rgba(58,160,255,.95), rgba(255,210,77,.90));
  color:#0b1731; font-weight:800;
  box-shadow: 0 10px 30px rgba(58,160,255,.18);
}

.burger{
  display:none;
  width:44px; height:44px; border-radius:14px;
  background: rgba(255,255,255,.08);
  border:1px solid var(--line);
  align-items:center; justify-content:center; gap:5px;
  flex-direction:column;
}
.burger span{width:18px; height:2px; background: rgba(234,242,255,.9); border-radius:2px}

.hero{position:relative; overflow:hidden; padding:38px 0 26px}
.hero-bg{
  position:absolute; inset:0;
  background:
    radial-gradient(600px 420px at 20% 40%, rgba(58,160,255,.22), transparent 60%),
    radial-gradient(700px 520px at 80% 60%, rgba(255,210,77,.18), transparent 60%);
  pointer-events:none;
}
.hero-grid{display:grid; grid-template-columns: 1.2fr .9fr; gap:24px; align-items:center; position:relative}
.badge{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.08);
  font-size:13px; color:rgba(234,242,255,.92);
}
.hero h1{font-size:44px; line-height:1.06; margin:14px 0 12px}
.hero p{color:var(--muted); font-size:16px; line-height:1.7; margin:0 0 18px}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  font-weight:800; letter-spacing:.2px;
  transition: transform .18s, background .18s;
}
.btn.primary{
  color:#0b1731;
  border:none;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  box-shadow: 0 16px 40px rgba(58,160,255,.18);
}
.btn.ghost{background: rgba(255,255,255,.08)}
.btn:hover{transform: translateY(-1.5px)}

.stats{
  margin-top:18px;
  display:grid; grid-template-columns: repeat(3, 1fr); gap:12px;
}
.stat{
  padding:12px; border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
}
.stat-num{font-size:22px; font-weight:900}
.stat-label{display:block; margin-top:4px; color:var(--muted); font-size:12px}

.hero-card{
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-media{aspect-ratio: 4 / 3; overflow:hidden}
.hero-media img{width:100%; height:100%; object-fit:cover; transform: scale(1.03)}
.marquee{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.18);
  overflow:hidden;
}
.marquee-track{
  display:flex; gap:18px;
  padding:10px 14px;
  width:max-content;
  animation: marquee 14s linear infinite;
  color: rgba(234,242,255,.92);
  font-weight:700; font-size:13px;
}
@keyframes marquee{ from{transform: translateX(0)} to{transform: translateX(-50%)} }

.hero-mini{display:grid; gap:10px; padding:14px}
.mini{display:flex; gap:10px; align-items:flex-start}
.mini-ico{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius:14px;
  background: rgba(58,160,255,.18);
  border:1px solid var(--line);
}
.mini small{display:block; color:var(--muted); margin-top:4px}

.section{padding:56px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{margin-bottom:18px}
.section-head h2{font-size:30px; margin:0 0 6px}
.section-head p{margin:0; color:var(--muted); line-height:1.6}
.section-head.row{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap}

.grid-2{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.cards-3{display:grid; grid-template-columns: repeat(3, 1fr); gap:16px}

.card{
  background: rgba(255,255,255,.07);
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.card hr{border:none; border-top:1px solid rgba(255,255,255,.12); margin:14px 0}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}

.feature .icon{
  width:44px; height:44px; border-radius:16px;
  background: rgba(255,210,77,.16);
  border:1px solid var(--line);
  display:grid; place-items:center;
  margin-bottom:10px;
}

.profile{display:flex; gap:12px; align-items:center; margin-top:12px}
.profile img{width:52px; height:52px; border-radius:16px; object-fit:cover; border:1px solid var(--line)}
.profile small{display:block; color:var(--muted); margin-top:4px}

.chips{display:flex; gap:8px; flex-wrap:wrap; margin-top:12px}
.chip{
  font-size:12px; padding:8px 10px; border-radius:999px;
  background: rgba(58,160,255,.12);
  border:1px solid var(--line);
  color: rgba(234,242,255,.9);
}

.tools{display:flex; gap:10px; flex-wrap:wrap}
.input{
  width:240px;
  max-width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.18);
  color: var(--text);
  outline:none;
}
.input::placeholder{color: rgba(234,242,255,.55)}
.input:focus{border-color: rgba(58,160,255,.7)}

.posts{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
}
.post{
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  border-radius:20px;
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  display:flex; flex-direction:column;
}
.post img{aspect-ratio: 16/10; width:100%; object-fit:cover}
.post-body{padding:14px}
.post-meta{display:flex; justify-content:space-between; align-items:center; gap:10px; color:var(--muted); font-size:12px}
.tag{
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,210,77,.14);
  color: rgba(234,242,255,.92);
  font-weight:800;
}
.post h3{margin:10px 0 6px}
.post p{margin:0 0 10px; color:var(--muted); line-height:1.65}
.link{
  background:transparent; border:none; color: rgba(58,160,255,.95);
  font-weight:900; cursor:pointer; padding:0;
}
.link:hover{text-decoration:underline}

.gallery{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap:10px;
}
.gitem{
  border:none; padding:0; cursor:pointer;
  border-radius:18px; overflow:hidden;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}
.gitem img{width:100%; height:140px; object-fit:cover; transition: transform .25s}
.gitem:hover img{transform: scale(1.05)}

.accordion .acc-item{
  width:100%;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  margin-bottom:10px;
  font-weight:900;
}
.acc-panel{
  display:none;
  padding:0 16px 14px;
  margin-top:-6px;
  color:var(--muted);
}

.form{max-width:860px}
.form-grid{display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-bottom:12px}
label{display:flex; flex-direction:column; gap:8px; font-weight:800}
.hint{margin:10px 0 0; color:var(--muted); font-size:13px}

.footer{padding:42px 0 22px; border-top:1px solid rgba(255,255,255,.08)}
.footer-grid{display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:18px}
.footer-brand{display:flex; gap:10px; align-items:center}
.footer-logo{width:44px; height:44px; display:grid; place-items:center; border-radius:16px; background: rgba(255,255,255,.08); border:1px solid var(--line)}
.footer-links{display:grid; gap:10px; margin-top:10px; color: rgba(234,242,255,.86)}
.muted{color:var(--muted); line-height:1.7}
.footer-bottom{margin-top:18px; padding-top:14px; border-top:1px solid rgba(255,255,255,.10); color: rgba(234,242,255,.72)}

.fab{
  position:fixed; right:18px; bottom:18px;
  width:54px; height:54px; display:grid; place-items:center;
  border-radius:18px;
  background: linear-gradient(135deg, rgba(58,160,255,.95), rgba(255,210,77,.90));
  color:#0b1731;
  font-size:22px;
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.18);
  z-index:60;
}

.modal, .lightbox{
  position:fixed; inset:0;
  display:none; place-items:center;
  background: rgba(0,0,0,.55);
  z-index:80;
  padding:18px;
}
.modal-card{
  width:min(720px, 96%);
  background: rgba(8, 20, 45, .92);
  border:1px solid rgba(255,255,255,.16);
  border-radius:20px;
  padding:18px;
  box-shadow: var(--shadow);
  position:relative;
}
.modal-x, .lightbox-x{
  position:absolute; top:12px; right:12px;
  width:40px; height:40px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
}
.lightbox img{
  width:min(980px, 96%);
  max-height: 86vh;
  object-fit:contain;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}

[data-reveal]{opacity:0; transform: translateY(12px); transition: .65s ease}
.revealed{opacity:1; transform: translateY(0)}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; gap:16px}
  .hero h1{font-size:38px}
  .grid-2{grid-template-columns:1fr}
  .cards-3{grid-template-columns:1fr}
  .posts{grid-template-columns:1fr}
  .gallery{grid-template-columns: repeat(3, 1fr)}
  .footer-grid{grid-template-columns:1fr}
  .input{width:100%}
  .form-grid{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .burger{display:flex}
  .menu{
    position:fixed;
    top: 110px; left: 50%; transform: translateX(-50%);
    width:min(560px, 92%);
    background: rgba(7, 20, 46, .92);
    border:1px solid rgba(255,255,255,.16);
    border-radius:20px;
    padding:12px;
    display:none;
    flex-direction:column;
    box-shadow: var(--shadow);
  }
  .menu a{width:100%; text-align:left}
  .menu.show{display:flex}
}

/* =========================================
   MOBILE RESPONSIVE FIX (ANDROID FRIENDLY)
   Tempel di bagian PALING BAWAH style.css
   ========================================= */

/* aman buat notch */
body{
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* font adaptif */
.hero h1{ font-size: clamp(28px, 7vw, 44px); }
.section-head h2{ font-size: clamp(22px, 6vw, 30px); }

/* ukuran tap lebih nyaman */
.menu a, .btn, .pill, .acc-item, .input{
  -webkit-tap-highlight-color: transparent;
}

/* khusus HP kecil */
@media (max-width: 600px){

  /* topbar rapih */
  .topbar-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* header/nav rapih */
  .nav{
    padding: 12px 0;
  }

  /* menu mobile jadi full width (lebih enak di android) */
  .menu{
    top: 92px;         /* lebih pas untuk HP */
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 0 18px 18px;
  }
  .menu a{
    padding: 12px 14px;
    border-radius: 14px;
  }

  /* hero lebih rapih & tidak terlalu tinggi */
  .hero{
    padding: 22px 0 12px;
  }
  .hero-grid{
    gap: 14px;
  }
  .badge{
    font-size: 12px;
    padding: 7px 10px;
  }
  .hero p{
    font-size: 14px;
  }

  /* stats jadi 1 kolom */
  .stats{
    grid-template-columns: 1fr;
  }
  .stat{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
  }

  /* section lebih ringkas */
  .section{
    padding: 44px 0;
  }

  /* gallery jadi 2 kolom */
  .gallery{
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .gitem img{
    height: 130px;
  }

  /* form full width */
  .form-grid{
    grid-template-columns: 1fr !important;
  }
  .input{
    width: 100% !important;
  }

  /* floating button tidak ganggu */
  .fab{
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }
}

/* OPTIONAL: kalau gambar hero di HP terasa terlalu zoom, aktifkan ini
.hero-media img{ transform:none !important; }
*/
/* =========================
   HERO SLIDER (5 FOTO)
   ========================= */

.slider{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3; /* tetap proporsional di Android */
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
}

.slides{
  display: flex;
  height: 100%;
  transition: transform .45s ease;
  will-change: transform;
}

.slide{
  min-width: 100%;
  height: 100%;
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none; /* biar tidak ke-zoom di HP */
}

/* tombol panah */
.slider-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  color: rgba(234,242,255,.95);
  font-size: 24px;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
}
.slider-btn:hover{ background: rgba(0,0,0,.35); }
.slider-btn.prev{ left: 10px; }
.slider-btn.next{ right: 10px; }

/* dots */
.dots{
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.dotbtn{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(234,242,255,.45);
}
.dotbtn.active{
  background: rgba(255,210,77,.95);
}

/* Android: tombol agak kecil biar tidak nutup foto */
@media (max-width: 600px){
  .slider-btn{
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: 22px;
  }
}

/* =========================
   HERO MODEL SCREENSHOT
   ========================= */

.hero.hero-center{
  padding: 44px 0 28px;
}

.hero-title{
  text-align: center;
  margin: 6px auto 18px;
}

.hero-title h1{
  margin: 0;
  font-weight: 900;
  letter-spacing: .2px;
  line-height: 1.05;
  font-size: clamp(34px, 4.8vw, 60px); /* besar seperti screenshot */
}

/* biar slider berada di tengah dan lebar enak */
.hero-slider-wrap{
  display: grid;
  place-items: center;
}

.hero-card.hero-card-slider{
  width: min(980px, 96%);
  border-radius: 22px;
  overflow: hidden;
  padding: 0;
}

/* SLIDER */
.slider{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7; /* lebih lebar seperti screenshot */
  overflow: hidden;
  background: rgba(255,255,255,.06);
}

.slides{
  display:flex;
  height:100%;
  transition: transform .45s ease;
  will-change: transform;
}
.slide{min-width:100%; height:100%;}
.slide img{
  width:100%;
  height:100%;
  object-fit: cover;
  transform:none; /* penting biar Android tidak aneh */
}

/* tombol panah */
.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.28);
  color: rgba(234,242,255,.95);
  font-size:26px;
  cursor:pointer;
  display:grid;
  place-items:center;
  backdrop-filter: blur(10px);
}
.slider-btn.prev{left:12px;}
.slider-btn.next{right:12px;}

/* dots berada agak bawah di atas caption */
.dots{
  position:absolute;
  left:50%;
  bottom: 16px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
}
.dotbtn{
  width: 22px;
  height: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(234,242,255,.35);
}
.dotbtn.active{
  background: rgba(255,255,255,.95);
}

/* caption bar bawah seperti screenshot */
.slider-caption{
  background: rgba(11, 42, 90, .9);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 14px 16px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(16px, 2.2vw, 26px);
}

/* MOBILE */
@media (max-width: 600px){
  .hero.hero-center{ padding: 30px 0 16px; }
  .slider{ aspect-ratio: 16 / 10; } /* biar foto kelihatan di HP */
  .slider-btn{ width:38px; height:38px; font-size:22px; }
  .dots{ bottom: 12px; }
  .dotbtn{ width:18px; height:7px; }
}

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

.logo {
  width: 50px;
  height: auto;          /* biar proporsional */
  object-fit: contain;

  background: none !important;
  padding: 0;
  margin: 0;
  border: none;
  box-shadow: none;
}


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

.brand-name {
  font-weight: 800;
  font-size: 18px;
  color: #ffffff;
}

.brand-tag {
  font-size: 13px;
  color: #ffe066; /* kuning profesional */
}

@media (max-width: 600px) {
  .logo {
    width: 50px;
    height: auto;
  }

  .brand-name {
    font-size: 14px;
  }

  .brand-tag {
    font-size: 11px;
  }
}

.dotbtn{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(234,242,255,.35);
}
.dotbtn.active{
  background: rgba(255,255,255,.95);
}



