* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body{
  margin:0;
  font-family:"Segoe UI", Arial, sans-serif;
  background: linear-gradient(to right, #0b1220, #111a2e);
  color:#0f172a;
}

/* Navbar */
.nav{
  position: sticky;
  top:0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid #e5e7eb;
  z-index: 50;
}
.nav-inner{
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.brand{
  text-decoration:none;
  font-weight:900;
  letter-spacing:1px;
  color:#0f172a;
}
.menu a{
  text-decoration:none;
  color:#0f172a;
  margin-left:16px;
  font-weight:600;
}
.menu a:hover{ opacity:.85; }

/* Container */
.container{
  max-width: 1100px;
  margin: 20px auto;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e9eefc;
  box-shadow: 0 18px 55px rgba(0,0,0,0.28);
}

/* Typography */
h1{ margin:0 0 10px; font-size:44px; line-height:1.1; }
h2{ margin:0 0 8px; font-size:26px; }
h3{ margin:0 0 8px; font-size:16px; }
p{ margin:0; }
.muted{ color:#64748b; }
.sub{ color:#334155; line-height:1.8; margin: 0 0 14px; }

/* Buttons */
.btn{
  display:inline-block;
  padding:12px 18px;
  border-radius: 12px;
  text-decoration:none;
  font-weight:800;
  color:#ffffff;
  background:#22c55e;
  box-shadow: 0 12px 22px rgba(34,197,94,0.25);
  transition:.2s;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(34,197,94,0.33);
}
.btn-ghost{
  background: transparent;
  color:#0f172a;
  border:1px solid #cbd5e1;
  box-shadow:none;
}
.btn-ghost:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.10);
}
.btn-sm{ padding:8px 12px; }
.w100{ width:100%; text-align:center; }

/* Hero */
.hero{
  display:flex;
  gap:26px;
  align-items:center;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7fbff, #eef6ff);
  border:1px solid #e3efff;
}
.hero-left{ flex: 1; }
.hero-right{ flex: 1; display:flex; justify-content:flex-end; }
.hero-right img{
  width: 520px;
  max-width: 100%;
  border-radius: 18px;
  border: 1px solid #dbeafe;
}
.badge{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background:#e0f2fe;
  color:#075985;
  margin: 0 0 12px;
}
.cta-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 10px; }
.proof{ display:flex; gap:12px; flex-wrap:wrap; margin-top: 14px; font-size:13px; }

/* Trust strip */
.trust{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-item{
  background:#ffffff;
  border:1px solid #eef2ff;
  padding: 12px 14px;
  border-radius: 14px;
  text-align:center;
}

/* Sections */
.section{
  margin-top: 34px;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 12px;
}

/* Grids */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.grid-3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.card{
  background:#ffffff;
  border:1px solid #eef2ff;
  padding: 14px 16px;
  border-radius: 16px;
  transition:.2s;
}
.card p{ color:#475569; font-size:14px; line-height:1.7; }
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.10);
}

/* List */
.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color:#334155;
}
.list li{ margin-bottom: 8px; }

/* Work */
.work-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.work{
  text-decoration:none;
  color:inherit;
  border:1px solid #eef2ff;
  border-radius: 16px;
  overflow:hidden;
  background:#ffffff;
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;

}
.work:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.12);
}
.work-thumb{
  height: 140px;
  background: linear-gradient(135deg, #e0f2fe, #eef2ff);
}
.work-meta{
  padding: 12px 14px;
  display:flex;
  flex-direction:column;
  gap: 4px;
}

/* Pricing */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.price-card{
  border:1px solid #eef2ff;
  border-radius: 16px;
  padding: 16px;
  background:#ffffff;
}
.price-card .tag{
  display:inline-block;
  padding:6px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  background:#f1f5f9;
  color:#0f172a;
  margin-bottom: 10px;
}
.price-card .price{
  font-size: 28px;
  font-weight: 900;
  margin: 8px 0 10px;
}
.featured{
  border: 1px solid #bbf7d0;
  box-shadow: 0 14px 36px rgba(34,197,94,0.15);
}

/* Final CTA */
.final-cta{
  margin-top: 44px;
  padding: 40px;
  text-align:center;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color:#ffffff;
  border-radius: 20px;
}
.final-cta p{ color:#cbd5e1; margin-top: 10px; line-height:1.7; }
.final-cta .mini{ margin-top: 12px; font-size: 12px; }

/* Footer */
.footer{
  text-align:center;
  margin-top: 24px;
  color:#64748b;
  font-size: 12px;
}

/* Responsive */
@media (max-width: 900px){
  .trust{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; }
  .section-head{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 720px){
  h1{ font-size: 34px; }
  .hero{ flex-direction: column; }
  .hero-right{ justify-content:flex-start; }
  .grid-2{ grid-template-columns: 1fr; }
}

.hero-right img {
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.work img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eef2ff;
  transition: transform .4s ease, filter .4s ease;
  cursor: zoom-in;
}

.work:hover img{
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* LIGHTBOX */
.lightbox{
  position:fixed;
  inset:0;
  z-index:999;
  background: rgba(0,0,0,0.9);

  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;

  opacity:0;
  transition: opacity .2s ease;
}

.lightbox.show{
  display:flex;
  opacity:1;
}

.lightbox-img{
  max-width:92%;
  max-height:82vh;
  border-radius:12px;

  transform:scale(0.92);
  opacity:0;
  transition:0.25s ease;
}

.lightbox.show .lightbox-img{
  transform:scale(1);
  opacity:1;
}

.lightbox .close{
  position:absolute;
  top:18px;
  right:26px;
  color:#fff;
  font-size:42px;
  font-weight:bold;
  cursor:pointer;
}

/* Responsive Work Grid */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work img {
    height: 200px; /* lebih tinggi di mobile biar jelas */
  }
}