:root {
  --text: #1d1d1f;
  --muted: #666;
  --border: #e5e5e5;
  --bg: #f5f5f7;
   --accent: #7a5cff; /* atau kopi gelap / charcoal */
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

header.container {
  padding-top: 4rem;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  border-left: 3px solid var(--border);
  padding-left: 0.75rem;
}


h1, h2 {
  letter-spacing: -0.02em;
}


h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  margin: 0.75rem 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.links a {
  margin-right: 1rem;
  text-decoration: none;
  font-weight: 500;
  color: var(--accent);
}

.btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--text);
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  border-color: var(--accent);
}

.btn.secondary {
  border-color: var(--border);
}

.footer {
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-info a {
  text-decoration: none;
}

.contact-block {
  margin-top: 1rem;
}

.contact-info {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.5rem;
  margin: 0.25rem 0;
}

.contact-info .label {
  font-weight: 600;
}

.contact-info .label::after {
  content: ":";
}

.contact-info .value a {
  font-weight: 500;
}

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

  .contact-info .label::after {
    content: "";
  }
}

.container.footer a {
  text-decoration: none;
  color: inherit;
}

/*--ID--*/
.lang {
    position: fixed; /* atau absolute kalau header */
    top: 20px;
    right: 20px;
    z-index: 999; /* aman, gak berlebihan */
}

.lang a {
    display: inline-block;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #111;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    width: 40px;
    text-align: center;
}

.lang a:hover {
    background: #f5f5f5;
}

/* ============================================================
   BRAND LOGO
   ============================================================ */
.hero-root-brand {
  position: absolute;
  top: 0.75rem;
  left: 0.4rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 0.5rem;
  padding: 0.25rem;
  backdrop-filter: blur(4px);
}
.hero-root-brand img { width: 60px; height: auto; }

@media (min-width: 769px) {
  .hero-root-brand { top: 1.25rem; left: 0.6rem; }
  .hero-root-brand img { width: 6rem; }
}