:root{
  --bg: #070A12;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);
  --brand: #5EEAD4;
  --brand2: #60A5FA;
  --accent: #A78BFA;
  --danger: #FB7185;
  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --shadow2: 0 18px 40px rgba(0,0,0,.25);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth; background:var(--bg)}
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  position:relative;
  isolation:isolate;
  background:transparent;
  color:var(--text);
}

body::before{
  content:"";
  position:fixed;
  inset:-24px;
  z-index:0;
  background:
    linear-gradient(rgba(7,10,18,.62), rgba(7,10,18,.72)),
    radial-gradient(1200px 800px at 10% 0%, rgba(94,234,212,.20), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(96,165,250,.16), transparent 50%),
    url("assets/Background/Bg1.jpg") center / cover no-repeat;
  filter:blur(12px);
  transform:scale(1.03);
}

body > *{
  position:relative;
  z-index:1;
}

img{max-width:100%; height:auto}

.container{width:min(var(--container), calc(100% - 40px)); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
  background:#fff; color:#000; padding:10px 12px; border-radius:12px;
}
.skip-link:focus{left:16px; top:16px; z-index:9999}

.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(7,10,18,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}




.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; min-width:260px}
.brand-mark{
  width:44px; height:44px; display:grid; place-items:center;
  background: linear-gradient(135deg, rgba(94,234,212,.18), rgba(96,165,250,.12));
  border: 1px solid rgba(255,255,255,.12);
  border-radius:14px;
  box-shadow: 0 10px 35px rgba(0,0,0,.35);
}
.brand-name{font-weight:800; letter-spacing:-.02em; font-size:14px; line-height:1.1}
.brand-tag{font-size:12px; color:var(--muted2); margin-top:2px}

.primary-nav{
  display:flex; align-items:center; gap:18px;
}
.nav-link{
  color:var(--muted);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:10px 12px;
  border-radius:12px;
  border: 1px solid transparent;
}
.nav-link:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.nav-link.active{
  color:var(--text);
  border-color: rgba(94,234,212,.35);
  background: rgba(94,234,212,.08);
}
.nav-cta{
  border-color: rgba(94,234,212,.35);
  background: linear-gradient(135deg, rgba(94,234,212,.18), rgba(96,165,250,.10));
}

.nav-toggle{display:none; background:transparent; border:0; width:44px; height:44px; border-radius:14px; border:1px solid rgba(255,255,255,.12)}
.burger{position:relative; display:block; margin:0 auto; width:18px; height:2px; background:rgba(255,255,255,.85)}
.burger:before,.burger:after{content:""; position:absolute; left:0; width:18px; height:2px; background:rgba(255,255,255,.85); transition:transform .2s ease, top .2s ease, opacity .2s ease}
.burger:before{top:-6px}
.burger:after{top:6px}

main{padding-bottom:60px}

.hero{
  padding:52px 0 28px;
  position:relative;
}
.hero-grid{display:grid; grid-template-columns: 1.05fr .95fr; gap:26px; align-items:stretch}

.hero-copy{
  padding:6px 0;
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:700; font-size:13px;
}
.hero-title{font-size:44px; line-height:1.06; margin:16px 0 12px; letter-spacing:-.04em}
.hero-lead{color:var(--muted); font-size:16px; line-height:1.7; margin:0 0 18px; max-width:56ch}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin:20px 0 18px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  border:1px solid rgba(255,255,255,.12);
  font-weight:800;
  color:var(--text);
  box-shadow: 0 14px 45px rgba(0,0,0,.18);
}
.btn-primary{
  border-color: rgba(94,234,212,.35);
  background: linear-gradient(135deg, rgba(94,234,212,.25), rgba(96,165,250,.18));
}
.btn-ghost{background: rgba(255,255,255,.05)}
.btn:hover{transform: translateY(-1px); transition: transform .15s ease;}

.hero-stats{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:12px; margin-top:16px}
.stat{
  padding:14px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
}
.stat-value{font-weight:900; letter-spacing:-.02em; font-size:16px}
.stat-label{margin-top:6px; color:var(--muted2); font-size:12.5px; line-height:1.35}

.hero-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:flex; flex-direction:column; justify-content:space-between;
}
.hero-card-top{padding:18px 18px 0}
.hero-badge{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(94,234,212,.30);
  background: rgba(94,234,212,.10);
  color: rgba(255,255,255,.92);
  font-weight:900;
  font-size:13px;
}
.hero-card-logo{margin-top:14px; display:flex; justify-content:center}

.hero-card-bottom{padding:16px 18px 18px}
.checklist{display:flex; flex-direction:column; gap:10px; margin-bottom:14px}
.check-item{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-weight:650; font-size:14px; line-height:1.45}
.check-dot{width:10px; height:10px; border-radius:50%; margin-top:5px; background: linear-gradient(135deg, rgba(94,234,212,1), rgba(96,165,250,1)); box-shadow: 0 0 0 4px rgba(94,234,212,.12)}
.inline-note{display:flex; gap:10px; align-items:center; padding:12px 12px; border-radius:16px; background: rgba(255,255,255,.04); border:1px dashed rgba(255,255,255,.18); color:var(--muted)}
.inline-icon{filter: saturate(1.2)}

.section{padding:64px 0}
.section-alt{background: rgba(255,255,255,.02); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06)}

.section-header{margin-bottom:26px}
.section-eyebrow{color: rgba(94,234,212,.95); font-weight:900; letter-spacing:.08em; text-transform:uppercase; font-size:12px}
.section-title{font-size:34px; margin:10px 0 10px; letter-spacing:-.03em}
.section-subtitle{color:var(--muted); margin:0; line-height:1.7; max-width:70ch}

.about-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:16px}
.about-card{background: rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); border-radius: var(--radius); padding:18px}
.about-highlight{background: linear-gradient(180deg, rgba(94,234,212,.10), rgba(255,255,255,.04)); border-color: rgba(94,234,212,.22)}
.card-title{margin:0 0 10px; font-size:16px}
.card-text{margin:0; color:var(--muted); line-height:1.7}
.bullets{margin:0; padding-left:18px; color:var(--muted); line-height:1.9}
.pill-row{display:flex; flex-wrap:wrap; gap:10px; margin:12px 0 12px}
.pill{padding:10px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.04); font-weight:800; font-size:13px; color:rgba(255,255,255,.88)}

.services-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
.service{padding:18px; border-radius: var(--radius); border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05)}
.service-icon{font-size:26px; width:46px; height:46px; display:grid; place-items:center; border-radius:16px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); margin-bottom:12px}
.service h3{margin:0 0 8px; font-size:16px}
.service p{margin:0; color:var(--muted); line-height:1.7}

.cta-band{margin-top:18px; display:flex; justify-content:space-between; align-items:center; gap:16px; padding:18px; border-radius: var(--radius2); background: linear-gradient(135deg, rgba(94,234,212,.16), rgba(96,165,250,.10)); border:1px solid rgba(94,234,212,.25)}
.cta-title{margin:0 0 6px; font-size:18px}
.cta-text{margin:0; color:var(--muted); line-height:1.6}

.customers{margin-top:64px}
.customers-header{margin-bottom:20px}
.customer-slider{overflow:hidden; margin:0 -8px; padding:8px; -webkit-mask-image:linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); mask-image:linear-gradient(to right, transparent, #000 5%, #000 95%, transparent)}
.customer-track{display:flex; width:max-content; animation:customer-slide 42s linear infinite}
.customer-slider:hover .customer-track{animation-play-state:paused}
.customer-logo-set{display:flex; gap:16px; padding-right:16px}
.customer-logo{display:grid; place-items:center; flex:0 0 240px; height:140px; padding:20px; border:1px solid rgba(255,255,255,.12); border-radius:18px; background:#fff; box-shadow:0 8px 20px rgba(0,0,0,.12)}
.customer-logo img{display:block; max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; object-position:center}
@keyframes customer-slide{to{transform:translateX(-50%)}}

.portfolio-grid{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
.products-grid{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:16px}
.product-card{overflow:hidden; border:1px solid rgba(255,255,255,.10); border-radius:var(--radius2); background:rgba(255,255,255,.05)}
.product-logo{height:180px; padding:12px; display:flex; align-items:center; justify-content:center; background:#fff}
.product-logo img{width:100%; height:100%; object-fit:contain}
.product-content{padding:20px}
.product-content h2{margin:0 0 8px; font-size:20px}
.product-list{margin:0; padding-left:20px; color:var(--muted); line-height:1.75}
.project{border-radius: var(--radius2); overflow:hidden; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05)}
.project-media{
  height:220px;
  position:relative;
  background: linear-gradient(135deg, rgba(94,234,212,.18), rgba(167,139,250,.12));
}

/* Galeri full (lebih memenuhi halaman) */
body:has(#main > section[aria-label="Galeri"]) .portfolio-grid{gap:16px}
body:has(#main > section[aria-label="Galeri"]) .project-media{height:260px}
body:has(#main > section[aria-label="Galeri"]) .project-body{padding:18px}
#main > section[aria-label="Galeri"] .project-body{display:none}
.project-gradient{position:absolute; inset:0; background: radial-gradient(600px 200px at 30% 10%, rgba(255,255,255,.14), transparent 55%)}
.project-badge{position:absolute; left:14px; top:14px; padding:9px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.16); background: rgba(0,0,0,.18); font-weight:900; font-size:13px}
.project-body{padding:16px}
.project-body h3{margin:0 0 8px; font-size:16px}
.project-body p{margin:0 0 12px; color:var(--muted); line-height:1.7}
.meta-row{display:flex; flex-wrap:wrap; gap:10px}
.meta{padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); color: rgba(255,255,255,.86); font-weight:800; font-size:12.5px}

.contact-grid{display:grid; grid-template-columns: 1fr .9fr; gap:16px; align-items:start}
.contact-card{padding:18px; border-radius: var(--radius2); border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05)}
.form{display:flex; flex-direction:column; gap:12px; margin-top:10px}
.field{display:flex; flex-direction:column; gap:8px}
.field-label{color:var(--muted); font-weight:800; font-size:13px}
.input{
  width:100%;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--text);
  padding:12px 12px;
  outline:none;
}
.textarea{resize:vertical; min-height:120px}
.input:focus{border-color: rgba(94,234,212,.35); box-shadow: 0 0 0 4px rgba(94,234,212,.12)}
.field-error{min-height:16px; color: var(--danger); font-weight:800; font-size:12.5px}
.form-hint{color:var(--muted2); margin:6px 0 0; font-size:12.5px; line-height:1.6}

.contact-side{display:flex; flex-direction:column; gap:16px}
.contact-info{padding:18px; border-radius: var(--radius2); border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05)}
.info-row{display:flex; gap:12px; align-items:flex-start; padding:12px 0; border-bottom:1px solid rgba(255,255,255,.06)}
.info-row:last-child{border-bottom:0}
.info-icon{width:38px; height:38px; display:grid; place-items:center; border-radius:14px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04)}
.info-title{font-weight:900; margin-bottom:3px; font-size:14px}
.info-text{color:var(--muted); line-height:1.5; font-size:13.5px}

.contact-map{border-radius:var(--radius2); border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.05); overflow:hidden}
.map-embed{display:block; width:100%; height:260px; border:0}
.map-link{display:flex; align-items:center; justify-content:center; min-height:48px; padding:10px 16px; color:#fff; background:rgba(255,255,255,.06); font-size:13px; font-weight:800; text-decoration:none; transition:background .2s ease, color .2s ease}
.map-link:hover{color:var(--text); background:rgba(94,234,212,.16)}
.map-link:focus-visible{outline:3px solid var(--accent); outline-offset:-3px}

.site-footer{border-top:1px solid rgba(255,255,255,.08); padding:26px 0; background: rgba(0,0,0,.14)}
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:1000;
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  color:#fff;
  background:#25d366;
  border:3px solid #fff;
  border-radius:50%;
  box-shadow:0 8px 24px rgba(0,0,0,.3), 0 0 0 0 rgba(37,211,102,.55);
  animation:whatsapp-pulse 2.2s infinite;
  transition:transform .2s ease, background .2s ease;
}
.whatsapp-float:hover{color:#fff; background:#1fba58; transform:scale(1.08)}
.whatsapp-float:focus-visible{outline:3px solid #fff; outline-offset:3px}
.whatsapp-float__icon{width:33px; height:33px; fill:currentColor}
.whatsapp-float__tooltip{
  position:absolute;
  right:68px;
  width:max-content;
  padding:8px 11px;
  color:#fff;
  background:#172033;
  border-radius:8px;
  font-size:12px;
  font-weight:700;
  opacity:0;
  pointer-events:none;
  transform:translateX(6px);
  transition:opacity .2s ease, transform .2s ease;
}
.whatsapp-float:hover .whatsapp-float__tooltip,.whatsapp-float:focus-visible .whatsapp-float__tooltip{opacity:1; transform:translateX(0)}
@keyframes whatsapp-pulse{0%,70%,100%{box-shadow:0 8px 24px rgba(0,0,0,.3),0 0 0 0 rgba(37,211,102,.5)}35%{box-shadow:0 8px 24px rgba(0,0,0,.3),0 0 0 12px rgba(37,211,102,0)}}
.footer-inner{display:flex; justify-content:space-between; align-items:center; gap:16px}
.footer-brand{display:flex; align-items:center; gap:12px}
.footer-title{font-weight:900}
.footer-sub{color:var(--muted2); margin-top:4px; font-size:12.5px}

.toast{
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: rgba(0,0,0,.65);
  border:1px solid rgba(255,255,255,.14);
  color: var(--text);
  padding:12px 14px;
  border-radius:16px;
  box-shadow: var(--shadow);
  transform: translateY(18px);
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  max-width: min(420px, calc(100% - 32px));
}
.toast.show{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr;}
  .hero-title{font-size:36px}
  .about-grid{grid-template-columns: 1fr;}
  .services-grid{grid-template-columns: 1fr 1fr;}
  .portfolio-grid{grid-template-columns: 1fr;}
  .products-grid{grid-template-columns: repeat(2, minmax(0,1fr));}
  .contact-grid{grid-template-columns: 1fr;}
  .footer-inner{flex-direction:column; align-items:flex-start}
}

@media (max-width: 720px){
  .whatsapp-float{right:16px; bottom:16px; width:54px; height:54px}
  .whatsapp-float__icon{width:30px; height:30px}
  .whatsapp-float__tooltip{display:none}
  .primary-nav{display:none;}
  .nav-toggle{display:inline-flex; align-items:center; justify-content:center;}
  .primary-nav.open{
    display:flex;
    flex-direction:column;
    position:absolute;
    right:20px;
    top:68px;
    background: rgba(7,10,18,.95);
    border:1px solid rgba(255,255,255,.12);
    border-radius:18px;
    padding:12px;
    width: 220px;
    gap:6px;
  }
  .nav-link{width:100%}
  .hero-stats{grid-template-columns: 1fr;}
  .services-grid{grid-template-columns: 1fr;}
  .products-grid{grid-template-columns: 1fr;}
  .customers{margin-top:44px}
  .customer-logo{flex-basis:190px; height:116px; padding:16px}
}

@media (prefers-reduced-motion: reduce){
  .customer-slider{overflow-x:auto; -webkit-mask-image:none; mask-image:none}
  .customer-track{animation:none}
  .customer-logo-set[aria-hidden="true"]{display:none}
}

