body {
  margin:0;
  font-family:Arial, sans-serif;
  background:#0f0f0f;
  color:#fff;
}

.wrap {
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.site-header {
  background:#111;
  position:sticky;
  top:0;
  z-index:9999;
}

.header-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:70px;
}

.brand {
  color:#fff;
  font-size:20px;
  text-decoration:none;
  font-weight:bold;
}

/* MENU */
.nav {
  display:flex;
  gap:20px;
}

.nav-link {
  color:#fff;
  text-decoration:none;
}

.nav-toggle {
  display:none;
  font-size:28px;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
}

/* HERO */
.hero h1 {
  font-size:42px;
}

.hero p {
  font-size:18px;
}

/* BUTTON */
.btn-main {
  display:inline-block;
  background:#caa85c;
  color:#000;
  padding:15px 30px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
}

/* SEKCIE */
.section {
  padding:60px 0;
}

.section-alt {
  background:#181818;
}

.section-title {
  text-align:center;
  margin-bottom:40px;
}

.why-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}

.why-item {
  background:#1c1c1c;
  padding:20px;
  border-radius:6px;
}

/* FOOTER */
.site-footer {
  background:#111;
  padding:20px;
  text-align:center;
  color:#aaa;
}

/* MOBILE */
@media (max-width: 860px){

  .nav {
    display:none;
  }

  .nav.is-open {
    display:flex;
    flex-direction:column;
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#111;
    padding:20px;
    z-index:9999;
  }

  .nav-toggle {
    display:block;
  }

  .hero h1 {
    font-size:28px;
  }
}