:root{
  --bg:#0b0b0f;
  --text:#ffffff;
  --muted:rgba(255,255,255,.70);
  --line:rgba(255,255,255,.10);
  --card:rgba(255,255,255,.06);
--accent:#18C964;
--accent2:#1F9D55;

  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(900px 500px at 10% -10%, rgba(30,215,96,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(30,215,96,.10), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:22px 18px}

/* Header */
.site-header{
  position:sticky; top:0; z-index:20;
  background: rgba(11,11,15,.78);
  backdrop-filter: blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav{
  max-width:var(--max);
  margin:0 auto;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
  min-width: 180px;
}
.dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(30,215,96,.12);
}
.logo-text{opacity:.95}

/* NAV polish */
.menu{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

.menu a{
  position:relative;
  font-size:14px;
  color:rgba(255,255,255,.78);
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  transition:
    color .2s ease,
    background .2s ease,
    border-color .2s ease,
    transform .2s ease,
    opacity .2s ease;
}

/* hover underline glow (agency style) */
.menu a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:7px;
  height:2px;
  border-radius:999px;
  background: linear-gradient(90deg, transparent, rgba(30,215,96,.95), transparent);
  opacity:0;
  transform: translateY(4px);
  transition: opacity .2s ease, transform .2s ease;
}

.menu a:hover{
  color:#fff;
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.menu a:hover::after{
  opacity:1;
  transform: translateY(0);
}

/* CTA button in nav (Let’s talk) */
.cta-mini{
  padding:10px 14px !important;
  font-weight:900;
  color:#fff !important;
  border:1px solid rgba(30,215,96,.55) !important;
  background: rgba(30,215,96,.12) !important;
box-shadow: 0 0 0 4px rgba(30,215,96,.12);

}
.cta-mini::after{ display:none; }
.cta-mini:hover{
  background: rgba(30,215,96,.18) !important;
  border-color: rgba(30,215,96,.75) !important;
}

/* Mobile nav spacing */
@media (max-width:520px){
  .nav{
    padding:12px 14px;
  }
  .logo{
    min-width: auto;
  }
  .menu{
    gap:8px;
  }
  .menu a{
    padding:8px 10px;
    font-size:13px;
  }
  .cta-mini{
    padding:8px 12px !important;
  }
}

}

/* Hero */
.hero{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 18px 10px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:16px;
  align-items:stretch;
}

@media (max-width:980px){
  .hero{grid-template-columns:1fr}
}

.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid rgba(255,255,255,.10);
  position:relative;
  min-height: 520px;
  background: rgba(255,255,255,.04);
}

.hero-img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.05) saturate(1.02);
}

.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(110deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.25) 55%, rgba(30,215,96,0) 100%),
    radial-gradient(700px 500px at 70% 70%, rgba(30,215,96,.45), rgba(30,215,96,0) 60%);
  pointer-events:none;
}

.hero-top{
  position:absolute; left:0; right:0; top:0;
  padding:16px 16px;
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  z-index:2;
}
.brand-pill{
  display:inline-flex; align-items:center;
  font-weight:900;
  letter-spacing:.22em;
  font-size:11px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
}

.hero-nav-mini{display:flex; gap:12px; flex-wrap:wrap}
.hero-nav-mini a{
  font-size:12px;
  color: rgba(255,255,255,.80);
  padding:7px 9px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.hero-nav-mini a:hover{color:#fff; border-color: rgba(255,255,255,.18); background: rgba(0,0,0,.25);}

.hero-content{
  position:absolute; left:16px; right:16px; bottom:16px;
  z-index:2;
}

.hero-h1{
  margin:0;
  font-size:52px;
  line-height:1.02;
  letter-spacing:-1px;
  max-width: 16ch;
}
.accent{color:var(--accent)}
.hero-sub{
  margin:12px 0 0;
  color: rgba(255,255,255,.82);
  font-size:14px;
  max-width: 62ch;
}

.hero-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

/* Desktop vs Mobile text */
.hero-mobile{display:none}
@media (max-width:520px){
  .hero-card{min-height: 520px;}
  .hero-h1{font-size:38px; max-width: 18ch;}
  .hero-desktop{display:none}
  .hero-mobile{display:block}
  .hero-sub{font-size:13px}
}

/* Side card */
.side-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  padding:18px 16px;
}
.side-kicker{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:11px;
  color: rgba(30,215,96,.95);
}
.side-title{
  margin-top:10px;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.5px;
}
.side-desc{
  margin:10px 0 0;
  color: rgba(255,255,255,.75);
  font-size:14px;
}
.side-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

.side-mini{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
}
.mini-row{
  display:flex;
  align-items:center;
  gap:10px;
  color: rgba(255,255,255,.72);
  font-size:13px;
}
.mini-dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(30,215,96,.12);
}
.side-actions .btn{
  padding:11px 12px;
  font-size:13px;
  border-radius: 13px;
}


/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color:#fff;
  font-weight:850;
  font-size:14px;
  gap:10px;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18)}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#111;
  border-color: rgba(30,215,96,.35);
}
.btn.primary:hover{filter:brightness(1.03)}
.btn.ghost{
  background: rgba(0,0,0,.18);
}
.btn.invert{
  background: rgba(255,255,255,.06);
}

/* Previews */
.previews{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:10px;
}
@media (max-width:980px){ .previews{grid-template-columns:1fr} }

.pcard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.pimg{
  height:130px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  position: relative;
  overflow:hidden;

  /* Tone adjustment */
  filter:
    brightness(0.85)
    contrast(1.15)
    saturate(0.9);

  transition: transform .45s ease;
}
.pimg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.10) 0%,
      rgba(0,0,0,.65) 85%
    ),
    radial-gradient(
      420px 220px at 70% 30%,
      rgba(30,215,96,.35),
      rgba(30,215,96,0) 60%
    );
  pointer-events:none;
}
.pcard:hover .pimg{
  transform: scale(1.06);
}

.pbody{padding:14px 14px 16px}
.pbody h3{margin:0 0 6px; font-size:16px}
.pbody p{margin:0; color:rgba(255,255,255,.75); font-size:13px}
.plink{
  margin-top:10px;
  display:inline-flex; align-items:center; gap:8px;
  font-weight:900;
  color: rgba(30,215,96,.95);
  font-size:13px;
}
.plink-ic{
  width:22px; height:22px;
  border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(30,215,96,.35);
  background: rgba(30,215,96,.10);
}

/* Split panels */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:14px;
}
@media (max-width:980px){ .split{grid-template-columns:1fr} }

.panel{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  padding:18px;
}
.panel-eyebrow{
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:11px;
  color: rgba(30,215,96,.95);
  margin-bottom:8px;
}
.panel h2{margin:0 0 8px; font-size:18px}
.panel p{margin:0; color: rgba(255,255,255,.75); font-size:14px}

.elist{margin-top:12px; display:grid; gap:8px}
.erow{
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.16);
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.erow:hover{
  background: rgba(30,215,96,.08);
  border-color: rgba(30,215,96,.18);
}
.erow div{display:grid; gap:2px}
.erow b{font-size:14px}
.erow span{font-size:13px; color: rgba(255,255,255,.70)}
.erow i{
  font-style:normal;
  width:34px; height:34px;
  border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.erow:hover i{
  border-color: rgba(30,215,96,.30);
  background: rgba(30,215,96,.12);
}
.erow.static{cursor:default}
.erow.static:hover{background: rgba(0,0,0,.16); border-color: rgba(255,255,255,.10)}

/* CTA Band */
.band{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: #07070b;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:0;
  margin-top:14px;
}
@media (max-width:980px){ .band{grid-template-columns:1fr} }

.band-left{
  padding:22px 18px;
  position:relative;
}
.band-left:before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(800px 420px at 30% 90%, rgba(30,215,96,.55), transparent 60%);
  opacity:.90;
  pointer-events:none;
}
.band-left *{position:relative}
.band-left h3{
  margin:0;
  font-size:30px;
  line-height:1.08;
  letter-spacing:-.4px;
}
.band-left p{
  margin:10px 0 0;
  color: rgba(255,255,255,.78);
  font-size:14px;
  max-width:60ch;
}
.band-right{
  padding:22px 18px;
  border-left:1px solid rgba(255,255,255,.10);
  display:flex; flex-direction:column; gap:10px; justify-content:center;
}
@media (max-width:980px){
  .band-right{border-left:none; border-top:1px solid rgba(255,255,255,.10)}
}
.mini{color: rgba(255,255,255,.70); font-size:13px}

/* Footer */
.footer{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.70);
  font-size:13px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
}
/* Back to Top Button */
#backToTop{
  position:fixed;
  right:22px;
  bottom:22px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(30,215,96,.55);
  background: rgba(30,215,96,.15);
  color:#fff;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transform: translateY(10px);
  transition:
    opacity .25s ease,
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
  z-index:999;
box-shadow: 0 0 0 4px rgba(30,215,96,.12);

}

#backToTop:hover{
  background: rgba(30,215,96,.25);
  border-color: rgba(30,215,96,.85);
}

/* Show state */
#backToTop.show{
  opacity:1;
  pointer-events:auto;
  transform: translateY(0);
}

/* Mobile kecil sikit */
@media (max-width:520px){
  #backToTop{
    right:16px;
    bottom:16px;
    width:40px;
    height:40px;
    font-size:16px;
  }
}
