/* =========================================================
   Bangunin — Kontraktor & Renovasi Surabaya
   Sistem visual gelap bergaya "Sequel", dengan warna dibagi
   60/30/10: kanvas hitam berbias hijau, permukaan dan garis
   sebagai struktur, hijau merek hanya sebagai aksen.
   ========================================================= */

/* VisueltPro tidak berlisensi bebas; Inter adalah pengganti
   yang disebut spesifikasi. Berkas variabel, satu file 100–900. */
@font-face {
  font-family: 'Visuelt';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Pengganti Bradford. Hanya dipakai italic, hanya di ukuran display. */
@font-face {
  font-family: 'Bradford';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('fonts/serif-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* 60% — kanvas. Hitam yang dibiaskan ke hijau, bukan #000 mati:
     nada dasarnya sudah membawa merek sebelum satu aksen pun dipakai. */
  --bg:        #0a0e0c;

  /* 30% — permukaan, garis, dan teks. Bagian yang menyusun struktur. */
  --surface:   #141a16;
  --surface-2: #1c2420;
  --line:      #2b342e;
  --text:      #ffffff;
  --muted:     #93a09a;

  /* 10% — hijau merek. Hanya di tempat yang menuntut perhatian:
     aksi utama, keadaan aktif, tanda centang, satuan angka. */
  --brand:     #2fbf71;
  --brand-ink: #06140d;

  --font-sans:  'Visuelt', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-serif: 'Bradford', Georgia, 'Times New Roman', serif;

  --shadow-lg: rgba(0,0,0,.35) 0 4px 20px 0;
  --shadow-xl: rgba(0,0,0,.45) 0 10px 30px 0, rgba(255,255,255,.07) 0 1px 0 0 inset;

  --radius-card: 10px;
  --radius-pill: 9999px;

  --page: 1200px;
  --gutter: clamp(20px, 5vw, 40px);
  --section: clamp(64px, 9vw, 120px);
  --header-h: 76px;

  /* Kurva slow-out: gerak terasa berbobot, bukan cekatan. */
  --ease: cubic-bezier(.625, .05, 0, 1);
}

/* ---------- Dasar ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  font-feature-settings: 'ss01' on, 'cv11' on;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
svg { flex: none; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 4px; }

::selection { background: var(--brand); color: var(--brand-ink); }

/* Foto diredam dan sedikit digelapkan agar duduk di kanvas gelap
   tanpa menyaingi aksen hijau — bukan dihitamputihkan, karena
   sistemnya memang tidak lagi akromatik. */
.shot { filter: saturate(.62) contrast(1.04) brightness(.9); }

/* ---------- Tipografi ---------- */

h1, h2, h3, h4 { margin: 0; font-weight: 500; color: var(--text); }

.display {
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
}
.heading-lg {
  font-size: clamp(36px, 5.4vw, 57px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.05em;
}
.heading {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.subheading {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.025em;
}
h3 { font-size: 21px; font-weight: 500; line-height: 1.3; letter-spacing: -.02em; }

/* Kata payoff: selalu italic, selalu huruf kecil, selalu sebaris. */
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

p { margin: 0; }
.body-lg { font-size: 20px; line-height: 1.5; }
.smoke { color: var(--muted); }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}
.label--caption { font-size: 10px; letter-spacing: .08em; }
.label--pill {
  padding: 5px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
}

.num { font-variant-numeric: tabular-nums; }

/* ---------- Layout ---------- */

.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section); }
.section--flush { padding-top: 0; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }

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

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }

.stack { display: flex; flex-direction: column; gap: 16px; }
.row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }

.head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.head .label { margin-bottom: 24px; }
.head--center { margin-inline: auto; max-width: 620px; text-align: center; }
.head p { margin-top: 24px; }

/* Judul kiri, pengantar kanan. */
.head-split {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: clamp(40px, 6vw, 64px);
}

/* ---------- Tombol ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding-inline: 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), opacity .25s var(--ease);
}
.btn svg { width: 17px; height: 17px; }

.btn--brand { background: var(--brand); color: var(--brand-ink); box-shadow: var(--shadow-lg); }
.btn--brand:hover { background: #3ad07e; }

.btn--ghost { padding-inline: 20px; border-color: var(--text); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,.08); }

.btn--quiet { padding-inline: 20px; border-color: var(--line); color: var(--text); }
.btn--quiet:hover { border-color: var(--text); }

.btn--sm { height: 40px; font-size: 15px; padding-inline: 20px; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
}
.link svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.link:hover svg { transform: translate(3px, -3px); }
.link::after {
  content: '';
  position: absolute;
}

/* ---------- Lencana kaca ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(200,200,200,.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-xl);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text);
}
.badge svg { width: 14px; height: 14px; }

/* ---------- Navigasi ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color .3s var(--ease);
}
.nav.is-stuck { background: var(--bg); }

.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 18px; font-weight: 500; letter-spacing: -.03em; }
.brand__mark { display: flex; align-items: flex-end; gap: 2px; height: 16px; }
.brand__mark i { display: block; width: 2px; background: var(--brand); border-radius: 1px; }
.brand__mark i:nth-child(1) { height: 8px; }
.brand__mark i:nth-child(2) { height: 16px; }
.brand__mark i:nth-child(3) { height: 11px; }
.brand__mark i:nth-child(4) { height: 5px; }

.nav__links { display: flex; align-items: center; gap: 16px; }
.nav__links a {
  padding: 6px 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  opacity: .72;
  transition: opacity .25s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current='page'] { opacity: 1; }
.nav__links a[aria-current='page'] { position: relative; }
.nav__links a[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -2px;
  width: 4px; height: 4px;
  margin-left: -2px;
  border-radius: 50%;
  background: var(--brand);
}

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: none;
  cursor: pointer;
  transition: border-color .25s var(--ease);
}
.nav-toggle:hover { border-color: var(--text); }
.nav-toggle svg { width: 18px; height: 18px; }
.nav-toggle .ico-close { display: none; }
.nav-toggle[aria-expanded='true'] .ico-close { display: block; }
.nav-toggle[aria-expanded='true'] .ico-menu { display: none; }

.menu {
  position: fixed;
  z-index: 55;
  inset: var(--header-h) 0 auto;
  padding: 16px var(--gutter) 32px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .3s var(--ease), visibility .25s var(--ease);
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; }
.menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 500; }
.menu .btn { margin-top: 24px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-block: 0 clamp(40px, 7vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: filmZoom 24s var(--ease) forwards;   /* zoom lambat pada still film */
}
@keyframes filmZoom { to { transform: scale(1); } }

/* Satu-satunya gradien di sistem ini: lapisan keterbacaan, bukan hiasan. */
.hero__scrim {
  position: absolute;
  inset: 28% 0 0;                 /* blok teks lebih tinggi dari 40%, scrim ikut naik */
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.34) 42%, rgba(0,0,0,.78) 100%);
}

.hero .wrap { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; width: 100%; }
.hero__inner { max-width: 900px; }
/* Di atas foto, smoke terlalu tipis — label naik ke putih. */
.hero .label { margin-bottom: 24px; color: var(--text); }
.hero p { margin-top: 28px; max-width: 480px; font-size: 20px; line-height: 1.5; color: var(--muted); }
.hero .row { margin-top: 40px; }

/* Tombol putar melayang, tidak pernah di dalam kartu. */
.play {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: none;
}
.play__disc {
  display: grid;
  place-items: center;
  width: 76px; height: 76px;
  border: 1px solid var(--text);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transition: background-color .25s var(--ease);
}
.play:hover .play__disc { background: rgba(255,255,255,.18); }
.play__disc svg { width: 18px; height: 18px; margin-left: 3px; }
.play span { font-size: 13px; font-weight: 400; letter-spacing: .03em; text-transform: uppercase; }

/* ---------- Hero halaman dalam ---------- */

.page-hero { padding-top: calc(var(--header-h) + clamp(56px, 9vw, 120px)); padding-bottom: clamp(40px, 6vw, 72px); }
.page-hero .label { margin-bottom: 24px; }
.page-hero p { margin-top: 24px; max-width: 620px; font-size: 20px; color: var(--muted); }
.crumb { display: flex; gap: 8px; margin-bottom: 24px; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.crumb a:hover { color: var(--text); }

/* ---------- Deret berjalan ---------- */

.marquee {
  overflow: hidden;
  padding-block: 32px;
  border-block: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; align-items: center; gap: clamp(48px, 6vw, 80px); width: max-content; animation: drift 45s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: flex; align-items: center; }

/* Logo cloud: wordmark monokrom yang meredup, menyala saat disentuh.
   Warnanya ikut currentColor supaya satu aturan mengatur semuanya. */
.logo {
  height: 30px;
  width: auto;
  color: var(--muted);
  opacity: .75;
  transition: opacity .25s var(--ease), color .25s var(--ease);
}
.logo:hover { opacity: 1; color: var(--text); }

.logos { padding-top: clamp(48px, 7vw, 80px); }
.logos__label { display: block; margin-bottom: 28px; text-align: center; }
@keyframes drift { to { transform: translateX(-50%); } }

/* ---------- Kartu ---------- */

/* Satu langkah nada di atas void. Tanpa bayangan, tanpa garis. */
.card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 32px;
}
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }

.card__no { display: block; margin-bottom: 40px; font-size: 11px; font-weight: 500; letter-spacing: .05em; color: var(--muted); font-variant-numeric: tabular-nums; }

.icon {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.icon svg { width: 19px; height: 19px; }
.card:hover .icon { border-color: var(--brand); color: var(--brand); }
.card { transition: background-color .25s var(--ease); }
.card:hover { background: var(--surface-2); }

/* ---------- Kartu media sinematik ---------- */

.media {
  position: relative;
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  isolation: isolate;
}
.media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.media:hover img { transform: scale(1.04); }
.media::after {
  content: '';
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.4) 60%, rgba(0,0,0,.72) 100%);
}
.media__badge { position: absolute; top: 16px; right: 16px; z-index: 2; }
.media__body { position: absolute; inset: auto 0 0; z-index: 2; padding: 24px; }
.media__body h3 { font-size: 21px; margin-bottom: 6px; }
.media__meta { display: flex; flex-wrap: wrap; gap: 4px 16px; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.media--tall img { aspect-ratio: 3 / 4; }
.media--wide { grid-column: span 2; }
.media--wide img { aspect-ratio: 16 / 9; }
.media.is-hidden { display: none; }

/* ---------- Angka ---------- */

.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.figure-item { padding-top: 24px; border-top: 1px solid var(--line); }
.figure-item b {
  display: block;
  font-size: clamp(32px, 4.4vw, 57px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.05em;
  font-variant-numeric: tabular-nums;
}
.figure-item em { font-style: normal; color: var(--brand); }
.figure-item small { display: block; margin-top: 12px; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }

/* ---------- Daftar ---------- */

.list { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.list li { display: grid; grid-template-columns: 20px 1fr; gap: 20px; padding-block: 24px; border-top: 1px solid var(--line); }
.list li:last-child { border-bottom: 1px solid var(--line); }
.list svg { width: 17px; height: 17px; margin-top: 4px; color: var(--brand); }
.list strong { display: block; margin-bottom: 6px; font-size: 16px; font-weight: 500; }
.list span { color: var(--muted); }

/* ---------- Proses ---------- */

.steps { display: grid; }
.step {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
  padding-block: 32px;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__no { font-size: 11px; font-weight: 500; letter-spacing: .05em; color: var(--muted); font-variant-numeric: tabular-nums; padding-top: 6px; }
.step__body { max-width: 620px; }
.step__body h3 { margin-bottom: 10px; font-weight: 300; font-size: 30px; letter-spacing: -.025em; }
.step__body p { color: var(--muted); }
.step__when { font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); padding-top: 8px; white-space: nowrap; }

/* ---------- Saringan ---------- */

.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter {
  height: 40px;
  padding-inline: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.filter:hover { color: var(--text); border-color: var(--text); }
.filter.is-active { background: var(--brand); border-color: var(--brand); color: var(--brand-ink); }

/* ---------- Testimoni: tiga kolom bergulir ----------
   Port dari komponen React 21st.dev ke vanilla. Tiap kolom berjalan naik
   dengan durasi berbeda supaya barisnya tidak pernah sejajar; isinya
   digandakan dua kali agar putaran di -50% menyambung mulus. */

.tcols {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-height: 740px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.tcol__track {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0 0 24px;
  list-style: none;
  animation: tscroll var(--dur, 15s) linear infinite;
  will-change: transform;
}
.tcols:hover .tcol__track { animation-play-state: paused; }
@keyframes tscroll { to { transform: translateY(-50%); } }

.tcard {
  width: 320px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.tcard:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--brand);
  background: var(--surface-2);
}
.tcard blockquote { margin: 0; }
.tcard p { color: var(--muted); line-height: 1.6; }
.tcard footer { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.tcard img {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--line);
  transition: box-shadow .3s var(--ease);
}
.tcard:hover img { box-shadow: 0 0 0 2px var(--brand); }
.tcard cite { display: block; font-style: normal; font-weight: 500; font-size: 16px; letter-spacing: -.01em; }
.tcard span {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Monogram; masih dipakai kartu tim di halaman Tentang. */
.quote__initials {
  color: var(--brand);
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
}

/* ---------- Akordeon ---------- */

.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding-block: 28px;
  border: 0;
  background: none;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -.01em;
  text-align: left;
  cursor: pointer;
}
.faq__q svg { width: 18px; height: 18px; flex: none; transition: transform .3s var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: 28px; max-width: 68ch; color: var(--muted); }

/* ---------- Tabel ---------- */

.table-scroll { overflow-x: auto; }
.table { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 16px; }
.table th, .table td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.table thead th { font-size: 11px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.table tbody th { font-weight: 400; }
.table td { text-align: center; color: var(--muted); }
.table svg { width: 16px; height: 16px; }
.table .yes { color: var(--brand); }
.table .no { color: var(--line); }
.table .price { font-weight: 500; color: var(--text); font-variant-numeric: tabular-nums; }

/* ---------- Formulir ---------- */

.form { display: grid; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 11px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 0;                  /* sudut tajam; hanya pil & kartu yang membulat */
  background: var(--bg);
  font-family: inherit;
  font-size: 16px;                   /* 16px, cegah zoom otomatis di iOS Safari */
  color: var(--text);
  transition: border-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); }
.field input::placeholder, .field textarea::placeholder { color: #5a5a5a; }
.form .btn { justify-self: start; }
.form-note { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.form-note svg { width: 13px; height: 13px; }
.form-ok { display: none; align-items: center; gap: 12px; padding: 16px 20px; background: var(--surface); border-radius: var(--radius-card); font-size: 16px; }
.form-ok.is-shown { display: flex; }
.form-ok svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Info ---------- */

.info { display: grid; grid-template-columns: 20px 1fr; gap: 20px; padding-block: 24px; border-top: 1px solid var(--line); }
.info:last-of-type { border-bottom: 1px solid var(--line); }
.info svg { width: 18px; height: 18px; margin-top: 3px; }
.info b { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.info p, .info a { font-size: 16px; color: var(--text); }
.info a:hover { color: var(--muted); }

/* ---------- Penutup ---------- */

.closer { padding-block: clamp(80px, 12vw, 160px); text-align: center; }
.closer p { margin: 32px auto 0; max-width: 520px; color: var(--muted); }
.closer .row { justify-content: center; margin-top: 40px; }

/* ---------- Footer ---------- */

.footer { padding-block: clamp(56px, 8vw, 96px) 32px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(32px, 5vw, 64px); padding-bottom: 64px; }
.footer .brand { margin-bottom: 20px; }
.footer h4 { margin-bottom: 20px; font-size: 11px; font-weight: 500; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a, .footer__links span { font-size: 16px; color: var(--muted); transition: color .25s var(--ease); }
.footer__links a:hover { color: var(--text); }
.footer p { color: var(--muted); max-width: 34ch; }
.socials { display: flex; gap: 8px; margin-top: 28px; }
.socials a {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .25s var(--ease);
}
.socials a:hover { border-color: var(--text); }
.socials svg { width: 16px; height: 16px; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   Animasi masuk

   Elemen hanya disembunyikan setelah skrip berhasil memasang
   pengamat — kelas `js-reveal` ditambahkan dari dalam blok
   try. Kalau skrip gagal, kelas itu tidak pernah ada dan
   seluruh isi halaman tetap terlihat.
   ========================================================= */

.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.js-reveal [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js-reveal [data-reveal] { opacity: 1; transform: none; }

  .tcol__track, .marquee__track { animation: none !important; }
  .tcols { max-height: none; overflow: visible; -webkit-mask-image: none; mask-image: none; }
}

/* ---------- Responsif ---------- */

@media (max-width: 1100px) {
  .tcol--3 { display: none; }
}

@media (max-width: 1000px) {
  .nav__links { display: none; }
  .nav-toggle { display: inline-flex; }
  .grid-4, .figures { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .tcol--2 { display: none; }
  .tcard { width: min(320px, 100%); padding: 28px; }
  .split { grid-template-columns: 1fr; }
  .split--flip > *:first-child { order: 2; }
  .head-split { grid-template-columns: 1fr; align-items: start; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 88svh; }
  .hero .wrap { flex-direction: column; align-items: flex-start; }
  .play { flex-direction: row; margin-top: 32px; }
  .play__disc { width: 56px; height: 56px; }
  .media--wide { grid-column: span 1; }
  .media--wide img { aspect-ratio: 4 / 3; }
}

@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4, .figures { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .step__when { padding-top: 4px; }
  .card { padding: 24px; }
  .row > .btn { flex: 1 1 100%; }
}
