:root{
  --primary-700:#6457D5;
  --primary-500:#AEA7E9;
  --primary-200:#CBC7F1;
  --primary-50:#F8F7FD;

  --accent-700:#07E9CB;
  --accent-500:#94FCEE;
  --accent-200:#BBFDF4;

  --text:#0B1020;
  --text-muted:#475067;
  --border:#E6E6F8;
  --bg:#FFFFFF;

  --radius:16px;
  --shadow: 0 10px 30px rgba(11,16,32,.08);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.5;
}

a{ color:inherit; text-decoration:none; }
.container{
  width:min(1120px, 92vw);
  margin:0 auto;
}
.grid{ display:grid; gap:16px; }

/* Header */
.site-header{
  position:sticky; top:0;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  z-index:10;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand-mark{
  font-weight:800;
  letter-spacing:.08em;
}
.menu{
  display:flex;
  gap:18px;
  color:var(--text-muted);
}
.menu a:hover{ color:var(--text); }

/* Active nav link */
.menu a.active{
  color: var(--text);
  position: relative;
}
.menu a.active::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-8px;
  height:2px;
  border-radius:2px;
  background: linear-gradient(90deg, var(--primary-700), var(--accent-700));
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:600;
  transition:.2s ease;
}
.btn-primary{
  background: var(--primary-700);
  color:#fff;
  box-shadow: 0 10px 20px rgba(100,87,213,.18);
}
.btn-primary:hover{ transform: translateY(-1px); }

.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--primary-200); }

.btn-accent{
  background: var(--accent-700);
  color: var(--text);
}
.btn-accent:hover{ transform: translateY(-1px); }

/* Hero */
.hero{
  padding:72px 0;
  background:
    radial-gradient(900px 300px at 10% 10%, var(--primary-50), transparent 60%),
    radial-gradient(700px 260px at 90% 20%, var(--accent-200), transparent 55%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
.badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: var(--primary-50);
  border:1px solid var(--border);
  color: var(--text-muted);
  font-weight:600;
  font-size:13px;
}
.hero h1{
  margin:14px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height:1.12;
}
.lead{
  margin:0 0 18px;
  color: var(--text-muted);
  font-size: 16px;
  max-width: 60ch;
}
.hero-cta{ display:flex; gap:10px; flex-wrap:wrap; }

.hero-meta{
  margin-top:22px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.meta-item{
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}
.meta-number{ font-weight:800; }
.meta-label{ color:var(--text-muted); font-size:13px; }

/* Cards */
.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card.mini{
  padding:16px;
  box-shadow:none;
}
.card h3{ margin:0 0 6px; }
.card p{ margin:0; color:var(--text-muted); }

.list{
  margin:12px 0 14px;
  padding-left:18px;
  color:var(--text);
}
.list li{ margin:6px 0; }

/* Sections */
.section{
  padding:64px 0;
  border-top:1px solid var(--border);
}
.section h2{
  margin:0 0 8px;
  font-size:26px;
}
.section-desc{
  margin:0 0 18px;
  color: var(--text-muted);
  max-width: 78ch;
}

/* Products */
.products-grid{
  grid-template-columns: repeat(5, 1fr);
}
.p-card{
  border:1px solid var(--border);
  border-radius: 16px;
  padding:16px;
  background:#fff;
  transition:.2s ease;
}
.p-card:hover{
  transform: translateY(-2px);
  border-color: var(--primary-200);
}
.p-card h3{ margin:10px 0 6px; }
.p-card p{ margin:0; color: var(--text-muted); font-size:14px; }

.p-badge{
  display:inline-flex;
  font-size:12px;
  font-weight:700;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: var(--primary-50);
  color: var(--text);
}
.p-badge-accent{
  background: var(--accent-200);
  border-color: var(--accent-500);
}

/* Highlights */
.highlight-grid{
  grid-template-columns: repeat(3, 1fr);
}

/* Contact */
.contact-card{ box-shadow:none; }
.contact-row{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-bottom:16px;
}
.label{ font-size:12px; color:var(--text-muted); }
.value{ font-weight:700; }
.contact-cta{ display:flex; gap:10px; flex-wrap:wrap; }

/* Footer */
.site-footer{
  border-top:1px solid var(--border);
  padding:24px 0;
  color:var(--text-muted);
}
.footer{ display:flex; justify-content:space-between; align-items:center; }

/* Reveal animation */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: .5s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1000px){
  .products-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px){
  .menu{ display:none; }
  .hero-grid{ grid-template-columns: 1fr; }
  .highlight-grid{ grid-template-columns: 1fr; }
  .contact-row{ grid-template-columns: 1fr; }
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}

.products-grid.v2{
  grid-template-columns: repeat(3, 1fr);
}

.p-card.v2{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.p-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.p-tag{
  font-size:12px;
  color:var(--text-muted);
  border:1px solid var(--border);
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
}

.p-thumb{
  height:120px;
  border-radius:14px;
  border:1px dashed var(--border);
  background:
    radial-gradient(240px 120px at 15% 30%, var(--primary-50), transparent 60%),
    radial-gradient(220px 120px at 80% 30%, var(--accent-200), transparent 55%),
    #fff;
}

.p-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:auto;
}

@media (max-width: 1000px){
  .products-grid.v2{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .products-grid.v2{ grid-template-columns: 1fr; }
  .section-head{ align-items:flex-start; flex-direction:column; }
}

.about{
  background:
    radial-gradient(800px 260px at 20% 20%, var(--primary-50), transparent 60%),
    radial-gradient(700px 260px at 85% 40%, var(--accent-200), transparent 55%);
}

.about-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}

.about-points{
  margin-top:16px;
  display:grid;
  gap:12px;
}

.point{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px 12px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  margin-top:6px;
  background: linear-gradient(135deg, var(--primary-700), var(--accent-700));
  flex:0 0 auto;
}

.point-title{ font-weight:800; }
.point-desc{ color:var(--text-muted); font-size:14px; }

.about-cards{
  display:grid;
  gap:12px;
}

.stat-card{
  box-shadow:none;
}

.stat-top{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
}

.stat-number{
  font-weight:900;
  font-size:28px;
  letter-spacing:-0.02em;
}

.stat-label{
  color:var(--text-muted);
  font-weight:700;
}

.stat-desc{
  margin-top:8px;
  color:var(--text-muted);
  font-size:14px;
}

.stat-card.accent{
  border-color: var(--accent-500);
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-200) 100%);
}

@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
}
.wwd-grid{
  grid-template-columns: repeat(3, 1fr);
}

.wwd-card{
  border:1px solid var(--border);
  border-radius:16px;
  padding:16px;
  background:#fff;
  transition:.2s ease;
}

.wwd-card:hover{
  transform: translateY(-2px);
  border-color: var(--primary-200);
}

.wwd-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color: var(--primary-700);
  background: var(--primary-50);
  border:1px solid var(--border);
  margin-bottom:10px;
}

.wwd-icon-accent{
  color: var(--text);
  background: var(--accent-200);
  border-color: var(--accent-500);
}

.wwd-card h3{
  margin:0 0 6px;
  font-size:16px;
}

.wwd-card p{
  margin:0;
  color: var(--text-muted);
  font-size:14px;
}

@media (max-width: 1000px){
  .wwd-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .wwd-grid{ grid-template-columns: 1fr; }
}

.timeline{
  position:relative;
  display:grid;
  gap:14px;
  padding-left:18px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:7px;
  top:6px;
  bottom:6px;
  width:2px;
  background: linear-gradient(var(--primary-200), var(--accent-200));
  border-radius:2px;
}

.t-step{
  display:grid;
  grid-template-columns: 18px 1fr;
  gap:14px;
  align-items:start;
}

.t-dot{
  width:14px;
  height:14px;
  border-radius:999px;
  background: #fff;
  border:2px solid var(--primary-500);
  margin-top:18px;
  position:relative;
  z-index:1;
}

.t-card{
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  padding:16px;
  transition:.2s ease;
}

.t-card:hover{
  transform: translateY(-2px);
  border-color: var(--primary-200);
}

.t-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:8px;
}

.t-num{
  font-weight:900;
  color: var(--primary-700);
}

.t-tag{
  font-size:12px;
  font-weight:700;
  color: var(--text-muted);
  border:1px solid var(--border);
  background: var(--primary-50);
  padding:6px 10px;
  border-radius:999px;
}

.t-tag-accent{
  background: var(--accent-200);
  border-color: var(--accent-500);
  color: var(--text);
}

.t-card h3{
  margin:0 0 6px;
  font-size:16px;
}

.t-card p{
  margin:0 0 12px;
  color: var(--text-muted);
  font-size:14px;
  max-width: 85ch;
}

.t-metrics{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.t-metrics span{
  font-size:12px;
  font-weight:700;
  color: var(--text);
  border:1px solid var(--border);
  background:#fff;
  padding:6px 10px;
  border-radius:999px;
}

@media (max-width: 640px){
  .timeline{ padding-left:14px; }
  .timeline::before{ left:6px; }
}

.contact{
  background:
    radial-gradient(900px 260px at 15% 30%, var(--primary-50), transparent 60%),
    radial-gradient(700px 260px at 85% 60%, var(--accent-200), transparent 55%);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
  align-items:start;
}

.muted{ color: var(--text-muted); margin: 0 0 14px; }
.small{ font-size:12px; margin-top:10px; }

.info-list{
  display:grid;
  gap:12px;
  margin: 14px 0 16px;
}
.info-item{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}
.link{ text-decoration: underline; text-underline-offset: 3px; }

.contact-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.note{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
}
.note p{ margin:0; color:var(--text-muted); font-size:14px; }

.contact-form form{ display:grid; gap:12px; }
.field label{
  display:block;
  font-size:12px;
  color:var(--text-muted);
  margin:0 0 6px;
  font-weight:700;
}
.field input,
.field select,
.field textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  font: inherit;
  background:#fff;
  outline:none;
}
.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: var(--primary-200);
  box-shadow: 0 0 0 4px rgba(174,167,233,.25);
}

.form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

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

.site-header .brand{
  display:flex;
  align-items:center;
  gap:10px;
  max-width:220px;        /* batasi area brand */
}

.site-header .brand-logo{
  height:40px !important; /* kunci tinggi logo */
  width:auto !important;
  max-width:100%;
  display:block;
  object-fit:contain;
}
.p-thumb-img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
  display:block;
}

