/* =================================================================
   Pixel138 AI Digital Marketing Agency
   Corporate Stylesheet - Tema Gelap Hitam Keemasan
   ================================================================= */

:root {
  /* Aksen emas */
  --gold-50: #fbf6e7;
  --gold-100: #f3e6bd;
  --gold-300: #e9cf7d;
  --gold-400: #d6b24a;
  --gold-500: #c9a227;
  --gold-600: #ab861a;
  --gold-700: #846413;
  --gold-grad: linear-gradient(135deg, #f3dd92 0%, #d6b24a 45%, #a87c14 100%);
  --gold-soft: linear-gradient(135deg, rgba(233, 207, 125, 0.18), rgba(201, 162, 39, 0.08));

  /* Permukaan gelap */
  --bg: #0b0805;
  --surface: #16110a;
  --surface-2: #1d1610;
  --surface-3: #241b10;
  --panel: #0a0703;
  --panel-dark: #070502;

  /* Teks */
  --text-strong: #f7f2e7;
  --text: #cdc2ac;
  --text-muted: #a59b85;
  --text-dim: #877e6d;

  /* Token kompatibilitas (dipakai inline di HTML) */
  --ink-900: #f7f2e7;
  --ink-800: #ece3d2;
  --ink-700: #cdc2ac;
  --ink-600: #d6cbb4;
  --ink-400: #a59b85;
  --ink-300: #877e6d;

  --paper: var(--bg);
  --paper-soft: #0f0b06;
  --paper-tint: #130d07;
  --line: rgba(214, 178, 74, 0.16);
  --line-gold: rgba(201, 162, 39, 0.36);

  --aqua: #79cfe6;

  /* Tipografi */
  --font-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  /* Ukuran & ritme */
  --container: 1180px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4), 0 6px 18px rgba(0, 0, 0, 0.4);
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 18px 40px rgba(171, 134, 26, 0.35);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(120% 80% at 50% -20%, rgba(201, 162, 39, 0.18), transparent 55%),
    radial-gradient(70% 50% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 55%),
    linear-gradient(180deg, #160f06 0%, #0b0805 55%, #0d0a05 100%);
  background-attachment: fixed;
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: 1.18;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  font-weight: 700;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold-500); color: #1a1305; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
[id] { scroll-margin-top: 90px; }
.section--ink {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201, 162, 39, 0.12), transparent 60%),
    var(--panel-dark);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--soft { background: rgba(201, 162, 39, 0.035); }
.section--tint { background: rgba(201, 162, 39, 0.06); }

/* ---------- Eyebrow & judul ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}

.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  margin-bottom: 0.55em;
}
.section-head p {
  font-size: 1.08rem;
  color: var(--text-muted);
}

.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Tombol ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96rem;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn--gold {
  background: var(--gold-grad);
  color: #241a06;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 22px 48px rgba(171, 134, 26, 0.46); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-gold);
  color: var(--text-strong);
}
.btn--ghost:hover { border-color: var(--gold-400); color: var(--gold-300); transform: translateY(-2px); }

.btn--light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(233, 207, 125, 0.28);
  color: var(--text-strong);
}
.btn--light:hover { background: rgba(233, 207, 125, 0.14); border-color: var(--gold-400); transform: translateY(-2px); }

.btn--block { width: 100%; }

/* ---------- Header / Navigasi ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(11, 8, 5, 0.78);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); background: rgba(9, 6, 3, 0.9); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; }
.nav__logo img { height: 38px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav__menu a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-600);
  padding: 9px 15px;
  border-radius: 100px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav__menu a:hover { color: var(--text-strong); background: rgba(255, 255, 255, 0.05); }
.nav__menu a.is-active { color: var(--gold-300); background: rgba(201, 162, 39, 0.12); }

.nav__cta { margin-left: 12px; display: flex; gap: 10px; }

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 19px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.28s var(--ease), opacity 0.2s var(--ease);
}
.nav__toggle span { top: 50%; transform: translate(-50%, -50%); }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav__toggle.is-open span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--panel-dark);
  color: var(--text);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(120%) contrast(104%) brightness(1.05);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 6, 3, 0.86) 0%, rgba(8, 6, 3, 0.46) 44%, rgba(8, 6, 3, 0.04) 100%),
    linear-gradient(180deg, rgba(8, 6, 3, 0.04) 0%, rgba(8, 6, 3, 0.16) 58%, rgba(8, 6, 3, 0.92) 100%),
    radial-gradient(70% 60% at 82% 12%, rgba(201, 162, 39, 0.14), transparent 60%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 110px 0 120px;
  max-width: 820px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5.4vw, 4rem);
  line-height: 1.08;
  margin-bottom: 0.5em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}
.hero__lead {
  font-size: 1.18rem;
  color: #e8ddc8;
  max-width: 620px;
  margin-bottom: 2.2em;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: var(--gold-300);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 26px;
}
.hero__pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 4px rgba(121, 207, 230, 0.18);
}

/* Strip statistik di bawah hero */
.hero__stats {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(233, 207, 125, 0.16);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__stats .stat {
  padding: 30px 24px;
  border-right: 1px solid rgba(233, 207, 125, 0.1);
}
.hero__stats .stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}
.stat__num span { color: var(--gold-300); }
.stat__label { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; }

/* ---------- Logo / trust strip ---------- */
.trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 34px;
  justify-content: center;
}
.trust__label {
  width: 100%;
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
}
.trust span.tag {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 1.02rem;
}

/* ---------- Grid kartu ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  height: 100%;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line-gold);
}
.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-300);
  margin-bottom: 20px;
  border: 1px solid var(--line-gold);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.5em; }
.card p { color: var(--text-muted); font-size: 0.98rem; margin: 0; }

.card--ink {
  background: linear-gradient(160deg, #221a10, #15100a);
  border-color: var(--line-gold);
}
.card--ink h3 { color: #fff; }
.card--ink p { color: var(--text-muted); }
.card--ink .card__icon {
  background: rgba(201, 162, 39, 0.16);
  border-color: rgba(201, 162, 39, 0.34);
  color: var(--gold-300);
}

/* Kartu layanan dengan nomor */
.service {
  display: flex;
  gap: 22px;
  padding: 28px;
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
  height: 100%;
}
.service:hover { box-shadow: var(--shadow); border-color: var(--line-gold); transform: translateY(-4px); }
.service__no {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-300);
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-gold);
  background: rgba(201, 162, 39, 0.1);
}
.service h3 { font-size: 1.12rem; margin-bottom: 0.4em; }
.service p { color: var(--text-muted); font-size: 0.96rem; margin: 0; }

/* ---------- Split / dua kolom ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--media-first .split__media { order: -1; }

.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list .tick {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid var(--line-gold);
  color: var(--gold-300);
  margin-top: 3px;
}
.feature-list .tick svg { width: 14px; height: 14px; }
.feature-list strong { display: block; color: var(--text-strong); font-family: var(--font-display); }
.feature-list span.desc { color: var(--text-muted); font-size: 0.96rem; }

/* Panel media bergaya */
.media-panel {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 40px;
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(201, 162, 39, 0.2), transparent 55%),
    linear-gradient(160deg, #1a1308, #100b05);
  color: #fff;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
}
.media-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 207, 125, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 207, 125, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(80% 80% at 70% 20%, #000, transparent 75%);
  opacity: 0.7;
}
.media-panel > * { position: relative; }
.media-panel .kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.media-panel .kpi div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(233, 207, 125, 0.14);
  border-radius: var(--radius-sm);
  padding: 18px;
}
.media-panel .kpi b {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-300);
  display: block;
  line-height: 1;
}
.media-panel .kpi small { color: var(--text-muted); font-size: 0.85rem; }

.eq-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  margin-top: 8px;
}
.eq-bars i {
  flex: 1;
  background: var(--gold-grad);
  border-radius: 6px 6px 0 0;
  opacity: 0.9;
}

/* ---------- Proses / langkah ---------- */
.steps { counter-reset: step; display: grid; gap: 26px; }
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
}
.step__num {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: grid; place-items: center;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--line-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold-300);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.35em; }
.step p { color: var(--text-muted); margin: 0; }

/* ---------- Statistik blok ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stats-band .item { padding: 8px 26px; border-left: 1px solid rgba(233, 207, 125, 0.14); }
.stats-band .item:first-child { border-left: none; padding-left: 0; }
.stats-band .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #fff;
  line-height: 1;
}
.stats-band .num span { color: var(--gold-300); }
.stats-band .label { color: var(--text-muted); margin-top: 10px; font-size: 0.95rem; }

/* ---------- Tim / Manajemen ---------- */
.org-group { margin-bottom: 56px; }
.org-group:last-child { margin-bottom: 0; }
.org-group__head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.org-group__head h3 { margin: 0; font-size: 1.3rem; }
.org-group__head .count {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold-300);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid var(--line-gold);
  padding: 4px 12px;
  border-radius: 100px;
}

.person {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  height: 100%;
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-gold); }
.person__avatar {
  width: 66px; height: 66px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--surface-3);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-gold);
}
.person__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.person__avatar.is-soft { box-shadow: none; }
.person h4 { font-size: 1.12rem; margin: 0 0 4px; }
.person .role { color: var(--gold-300); font-family: var(--font-display); font-weight: 500; font-size: 0.95rem; }
.person .role-sub { color: var(--text-dim); font-size: 0.88rem; margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(90% 140% at 0% 0%, rgba(201, 162, 39, 0.3), transparent 55%),
    linear-gradient(160deg, #1a1308, #0c0904);
  color: #fff;
  padding: 64px;
  text-align: center;
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow-lg);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 207, 125, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 207, 125, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(60% 80% at 50% 0%, #000, transparent 80%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 0.5em; }
.cta-band p { color: #cdc2ac; max-width: 560px; margin: 0 auto 2em; font-size: 1.08rem; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Halaman: hero ringkas ---------- */
.page-hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(8, 6, 3, 0.95) 0%, rgba(8, 6, 3, 0.72) 48%, rgba(8, 6, 3, 0.4) 100%),
    linear-gradient(180deg, rgba(8, 6, 3, 0.22) 0%, rgba(8, 6, 3, 0.48) 68%, rgba(8, 6, 3, 0.92) 100%),
    radial-gradient(90% 130% at 100% 0%, rgba(201, 162, 39, 0.16), transparent 60%),
    url("../img/banner.jpg") right center / cover no-repeat,
    #0b0805;
  border-bottom: 1px solid var(--line);
  padding: 96px 0 80px;
}
.page-hero .crumbs {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.page-hero .crumbs a:hover { color: var(--gold-300); }
.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); max-width: 760px; }
.page-hero p { font-size: 1.12rem; color: var(--text-muted); max-width: 640px; }

/* ---------- Kontak ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  margin-bottom: 16px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.contact-card:hover { border-color: var(--line-gold); box-shadow: var(--shadow-sm); }
.contact-card .ic {
  flex: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-soft);
  border: 1px solid var(--line-gold);
  color: var(--gold-300);
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h4 { margin: 0 0 3px; font-size: 1rem; }
.contact-card p { margin: 0; color: var(--text-muted); font-size: 0.96rem; }
.contact-card a:hover { color: var(--gold-300); }

.form {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-strong);
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #0c0905;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder,
.field textarea::placeholder { color: #6f6657; }
.field select { color: var(--text); }
.field select option { background: #14100a; color: var(--text-strong); }
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #100b06;
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}
.form__note { font-size: 0.86rem; color: var(--text-dim); margin-top: 8px; }
.form__alert {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid var(--line-gold);
  color: var(--gold-300);
  font-size: 0.95rem;
}
.form__alert.is-visible { display: block; }

.map-embed {
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
}
.map-embed iframe { width: 100%; height: 300px; border: 0; filter: grayscale(0.2) brightness(0.92); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}
.faq__item.is-open { border-color: var(--line-gold); }
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-strong);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__q .chev {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--gold-300);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq__item.is-open .chev { transform: rotate(180deg); background: rgba(201, 162, 39, 0.12); border-color: var(--line-gold); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq__a-inner { padding: 0 24px 22px; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(201, 162, 39, 0.08), transparent 60%),
    var(--panel-dark);
  color: var(--text-muted);
  padding: 72px 0 28px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 36px; margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; color: var(--text-muted); max-width: 320px; }
.footer h5 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin: 0 0 18px;
}
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 0.95rem; transition: color 0.2s var(--ease); }
.footer ul a:hover { color: var(--gold-300); }
.footer__contact li { display: flex; gap: 10px; font-size: 0.94rem; margin-bottom: 14px; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold-300); flex: none; margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 26px;
  font-size: 0.86rem;
  color: var(--text-dim);
}
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer-bottom .socials a:hover { background: rgba(201, 162, 39, 0.16); border-color: var(--line-gold); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 17px; height: 17px; color: var(--text); }

/* ---------- Animasi reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Responsif ---------- */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--media-first .split__media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero__stats .stat:nth-child(2) { border-right: none; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 28px 0; }
  .stats-band .item { border-left: none; padding: 0 18px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: grid; place-items: center; }

  .nav.is-open .nav__menu {
    display: flex;
    position: absolute;
    top: 78px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #0c0905;
    padding: 16px 18px 22px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.is-open .nav__menu a { padding: 12px 14px; }
  .nav.is-open .nav__cta { display: flex; margin: 8px 0 0; }
  .nav.is-open .nav__cta .btn { width: 100%; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 26px; }
  .media-panel { padding: 30px; }
  .hero__inner { padding: 76px 0 84px; }
  .step { grid-template-columns: 52px 1fr; gap: 16px; }
  .step__num { width: 52px; height: 52px; font-size: 1.2rem; }
}

@media (max-width: 460px) {
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats .stat { border-right: none; border-bottom: 1px solid rgba(233, 207, 125, 0.1); }
  .footer-grid { grid-template-columns: 1fr; }
}
