:root{
  --bg:#070b14;
  --bg2:#0b1730;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:#eaf0ff;
  --muted:#b8c2e0;
  --line:rgba(255,255,255,.12);
  --a1:#00ffb4;
  --a2:#6ea8ff;
  --a3:#ff4dbd;
  --shadow:0 12px 40px rgba(0,0,0,.45);
  --r:18px;
  --r2:26px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
background: url(../img/bg.png) center center no-repeat;
    overflow-x: hidden;
    background-size: cover;
    background-attachment: fixed;
    background-position: top;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}

.container{width:100%;max-width:var(--max);margin:0 auto;padding:0 18px}

.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,11,20,.55);
  border-bottom:1px solid var(--line);
}
.nav .row{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{width:38px;height:38px;border-radius:12px;box-shadow:0 10px 24px rgba(0,0,0,.35)}
.brand .name{
  display:flex; flex-direction:column; line-height:1.1;
}
.brand .name strong{font-size:14px; letter-spacing:.2px}
.brand .name span{font-size:12px;color:var(--muted)}
.menu{
  display:flex; align-items:center; gap:18px;
}
.menu a{
  font-size:13px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.hamb{
  display:none; width:44px; height:44px; border-radius:14px;
  border:1px solid var(--line); background:rgba(255,255,255,.04);
  color:var(--text);
}
.hamb:active{transform:scale(.98)}
.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  border:1px solid var(--line);
  background:rgb(105 0 0);
  color:var(--text);
  padding:12px 16px;
  border-radius:16px;
  font-weight:600;
  font-size:13px;
  transition:.18s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}
.btn:hover{transform:translateY(-1px); background:rgba(255,255,255,.08)}
.btn.primary{
  border-color:rgba(0,255,180,.35);
  background: linear-gradient(135deg, rgb(44 255 0 / 18%), rgb(0 255 43 / 25%));
}
.btn.primary:hover{border-color:rgba(0,255,180,.6)}
.btn.ghost{box-shadow:none}

.hero{
  position:relative;
  padding:48px 0 28px;
}
.heroCard{
  position:relative;
  overflow:hidden;
  border-radius:var(--r2);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background: rgba(255,255,255,.04);
}
.heroCard .bg{
  position:absolute; inset:0;
  background:url("../img/hero.jpg") center/cover no-repeat;
  transform:scale(1.05);
  filter:saturate(1.05) contrast(1.05);
}
.heroCard .shade{
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(7,11,20,.92) 0%, rgba(7,11,20,.72) 40%, rgba(7,11,20,.35) 70%, rgba(7,11,20,.75) 100%),
    radial-gradient(900px 500px at 20% 30%, rgba(0,255,180,.22), transparent 58%),
    radial-gradient(700px 500px at 90% 20%, rgba(110,168,255,.22), transparent 55%);
}
.heroCard .content{
    position: relative;
    padding: 100px 20px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    align-items: center;
    background: url(../img/awal.png) center center no-repeat;
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; font-weight:700; letter-spacing:.4px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  width:max-content;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, var(--a1));
  box-shadow:0 0 18px rgba(0,255,180,.45);
}
.hero h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.06;
  letter-spacing:-.6px;
}
.hero p{margin:0;color:var(--muted); font-size:15px; line-height:1.6; max-width:54ch}
.hero .actions{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
.badges{
  display:flex; gap:10px; flex-wrap:wrap; margin-top:18px
}
.badge{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  font-size:12px; color:var(--muted);
}
.badge b{color:var(--text)}
.stats{
  display:grid;
  gap:12px;
}
.stat{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.stat strong{display:block; font-size:18px}
.stat span{color:var(--muted); font-size:12px}

.section{padding:44px 0}
.h2row{
  display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;
  margin-bottom:18px;
}
h2{margin:0; font-size:24px; letter-spacing:-.3px}
.sub{margin:0; color:var(--muted); font-size:13px}

.grid4{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  border:1px solid var(--line);
  background: rgb(10 0 61);
  border-radius:var(--r2);
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  transition:.18s ease;
}
.card:hover{transform:translateY(-2px); background: rgba(255,255,255,.07)}
.card .thumb{aspect-ratio: 9/11; background:#0c1428}
.card .thumb img{width:100%;height:100%;object-fit:cover}
.card .body{padding:14px 14px 16px}
.card .title{display:flex; align-items:center; justify-content:space-between; gap:12px}
.card .title strong{font-size:14px}
.pill{
  font-size:11px; color:var(--muted);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  padding:6px 10px; border-radius:999px;
}
.card p{margin:8px 0 12px; color:var(--muted); font-size:12px; line-height:1.55}
.card .row{
  display:flex; gap:10px; align-items:center; justify-content:space-between;
}
.price{
  font-size:13px; font-weight:800;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.smallbtn{
  border:1px solid rgba(0,255,180,.35);
  background: linear-gradient(135deg, rgba(0,255,180,.14), rgba(110,168,255,.08));
  color:var(--text);
  padding:10px 12px;
  border-radius:14px;
  font-weight:700;
  font-size:12px;
  cursor:pointer;
}
.smallbtn:hover{border-color:rgba(0,255,180,.6); transform:translateY(-1px)}
.smallbtn:active{transform:translateY(0)}

.tools{
  display:flex; gap:10px; flex-wrap:wrap; align-items:center
}
.input{
  display:flex; align-items:center; gap:10px;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.input input, .input select{
  background:transparent; border:none; outline:none; color:var(--text);
}
.input input::placeholder{color:rgba(184,194,224,.7)}
.tableWrap{
  border:1px solid var(--line);
  border-radius:var(--r2);
  overflow:hidden;
  background: rgb(0 11 67);
}
.table{
  width:100%;
  border-collapse:collapse;
}
.table th, .table td{
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
  font-size:13px;
}
.table th{color:var(--muted); text-align:left; font-weight:700; background: rgba(0,0,0,.12)}
.table td{color:var(--text)}
.table tr:hover td{background: rgba(255,255,255,.03)}
.table .right{text-align:right}
.table .buy{text-align:right}
.table .buy button{padding:10px 12px;border-radius:14px}

.steps{
  display:grid; grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  border:1px solid var(--line);
  background: rgb(0 28 1);
  border-radius:var(--r2);
  padding:14px;
}
.step .num{
  width:36px;height:36px;border-radius:14px;
  display:grid;place-items:center;
  border:1px solid rgba(0,255,180,.35);
  background: rgba(0,255,180,.10);
  font-weight:900;
}
.step h3{margin:10px 0 6px; font-size:14px}
.step p{margin:0;color:var(--muted);font-size:12px; line-height:1.55}

.banner{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:var(--r2);
  overflow:hidden;
  display:grid;
  grid-template-columns: 1fr;
}
.banner img{width:100%; height:auto}

.testis{
  display:grid; grid-template-columns: repeat(3,1fr); gap:14px;
}
.quote{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius:var(--r2);
  padding:16px;
}
.quote p{margin:0 0 10px; color:var(--text); font-size:13px; line-height:1.6}
.quote .who{display:flex; align-items:center; justify-content:space-between; gap:10px}
.quote .who span{color:var(--muted); font-size:12px}
.stars{letter-spacing:1px; color:rgba(0,255,180,.85)}

.faq{
  border:1px solid var(--line);
  border-radius:var(--r2);
  overflow:hidden;
  background: rgba(255,255,255,.04);
}
.faq details{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.faq details:last-child{border-bottom:none}
.faq summary{
  cursor:pointer;
  font-weight:800;
  font-size:13px;
  list-style:none;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin:10px 0 0; color:var(--muted); font-size:12px; line-height:1.65}

.contact{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:14px;
}
.form{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius:var(--r2);
  padding:16px;
}
.form .two{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.form label{display:block; font-size:12px; color:var(--muted); margin:10px 0 6px}
.form input, .form textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
.form textarea{min-height:110px; resize:vertical}

.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius:var(--r2);
  padding:16px;
}
.panel h3{margin:0 0 10px; font-size:14px}
.panel p{margin:0 0 12px; color:var(--muted); font-size:12px; line-height:1.6}
.panel .mini{
  display:grid; gap:10px;
}
.mini .item{
  display:flex; align-items:flex-start; gap:10px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  padding:12px 12px;
  border-radius:16px;
}
.mini .item b{display:block; font-size:12px}
.mini .item span{color:var(--muted); font-size:12px}

.footer{
  border-top:1px solid rgba(255,255,255,.10);
  padding:26px 0 36px;
  color:var(--muted);
  font-size:12px;
background: #000135cf;
}
.footer .row{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.footer .links{display:flex; gap:10px; flex-wrap:wrap}
.footer .links a{padding:8px 10px;border-radius:12px;border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.03)}
.footer .links a:hover{color:var(--text); background: rgba(255,255,255,.06)}

.whatsapp{
  position:fixed; right:18px; bottom:18px; z-index:60;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(0,255,180,.35);
  background: rgb(0 199 192 / 75%);
  backdrop-filter: blur(12px);
  box-shadow:var(--shadow);
}
.whatsapp:hover{transform:translateY(-1px)}
.whatsapp svg{width:18px;height:18px}

.modal{
  position:fixed; inset:0; z-index:80;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.55);
  padding:18px;
}
.modal.show{display:grid}
.modal .box{
  width:100%; max-width:760px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(10,16,32,.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.modal .top{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.modal .top strong{font-size:14px}
.modal .close{
  width:44px;height:44px;border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:var(--text); cursor:pointer;
}
.modal .inner{
  padding:16px;
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
.modal .inner h4{margin:0 0 10px; font-size:13px}
.small{font-size:12px;color:var(--muted); margin:0}
.notice{
  padding:12px 14px;
  border-radius:18px;
  border:1px dashed rgba(0,255,180,.35);
  background: rgba(0,255,180,.08);
  color:rgba(230,255,248,.95);
  font-size:12px;
  line-height:1.6;
}
@media (max-width: 980px){
  .heroCard .content{grid-template-columns:1fr}
  .grid4{grid-template-columns: repeat(2,1fr)}
  .steps{grid-template-columns: repeat(2,1fr)}
  .testis{grid-template-columns:1fr}
  .contact{grid-template-columns: 1fr}
}
@media (max-width: 640px){
  .menu{display:none}
  .hamb{display:inline-grid; place-items:center}
  .grid4{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .modal .inner{grid-template-columns:1fr}
  .form .two{grid-template-columns:1fr}
}
