/* ============================================================
   AutoBekas Jakarta — Used-car classifieds bazaar
   Barlow Condensed + Inter + JetBrains Mono
   warm cream + auto red + chrome silver + caramel + carbon
   ============================================================ */

:root {
  /* Palette */
  --c-cream:    #f4ede0;
  --c-paper:    #fdfaf2;
  --c-red:      #bb3a26;
  --c-red-deep: #8a2616;
  --c-caramel:  #a87434;
  --c-caramel-soft: #c89765;
  --c-silver:   #a8aab1;
  --c-silver-2: #c9cbd1;
  --c-carbon:   #2a2620;
  --c-ink:      #1a1612;
  --c-ink-soft: #4d4640;
  --c-line:     #d8cdb6;
  --c-line-2:   #e8dfc8;
  --c-yellow:   #e6c349;
  --c-wa:       #25D366;

  /* Type */
  --f-disp: 'Barlow Condensed', 'Helvetica Neue', sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Rhythm */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 56px);

  /* Shadow */
  --sh-1: 0 1px 0 rgba(26,22,18,.04), 0 6px 18px -10px rgba(26,22,18,.18);
  --sh-2: 0 2px 0 rgba(26,22,18,.05), 0 18px 40px -22px rgba(26,22,18,.32);
  --sh-red: 0 14px 30px -16px rgba(187,58,38,.55);
}

/* =================== RESET =================== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
em { font-style: italic; color: var(--c-red); }

::selection { background: var(--c-red); color: var(--c-paper); }

/* =================== HELPERS =================== */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.kicker {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.kicker .kdash {
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--c-red);
  border-radius: 2px;
  transform: translateY(-2px);
}
.kicker.light { color: var(--c-caramel-soft); }
.kicker.light .kdash { background: var(--c-caramel-soft); }

.h-sec {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.005em;
  color: var(--c-ink);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.h-sec em { color: var(--c-red); font-style: italic; font-weight: 700; }

/* =================== BUTTONS =================== */
.btn,
.btn-sm,
.btn-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-disp);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  background: var(--c-red);
  color: var(--c-paper);
  padding: 14px 22px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--c-red-deep);
  box-shadow: var(--sh-red);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-size: 16px;
}
.btn:hover,
.btn-sm:hover,
.btn-big:hover {
  transform: translateY(-2px);
  background: var(--c-red-deep);
  box-shadow: 0 18px 36px -16px rgba(138,38,22,.65);
}
.btn-sm { padding: 10px 16px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn-sm-fill { width: 100%; justify-content: center; }
.btn-big { padding: 18px 30px; font-size: 18px; border-radius: var(--r-md); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-ink);
  padding: 14px 20px;
  border: 1.5px solid var(--c-ink);
  border-radius: var(--r-sm);
  background: transparent;
  transition: background .18s ease, color .18s ease;
}
.btn-ghost:hover { background: var(--c-ink); color: var(--c-paper); }
.btn-ghost-dk { color: var(--c-red); border-color: var(--c-red); }
.btn-ghost-dk:hover { background: var(--c-red); color: var(--c-paper); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-paper);
  padding: 16px 22px;
  border: 1.5px solid rgba(253,250,242,.4);
  border-radius: var(--r-sm);
  background: transparent;
  transition: background .18s, border-color .18s;
}
.btn-ghost-light:hover { background: rgba(253,250,242,.1); border-color: var(--c-paper); }

/* =================== TICKER =================== */
.ticker {
  background: var(--c-ink);
  color: var(--c-paper);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 9px 0;
  border-bottom: 2px solid var(--c-red);
  overflow: hidden;
}
.tk-wrap {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 var(--pad);
  white-space: nowrap;
}
.tk-tag {
  background: var(--c-red);
  color: var(--c-paper);
  padding: 3px 10px;
  font-weight: 700;
  letter-spacing: .12em;
  border-radius: 2px;
  flex-shrink: 0;
}
.tk-stream {
  flex: 1;
  display: inline-flex;
  gap: 36px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 30px, #000 calc(100% - 30px), transparent 100%);
  animation: tkroll 38s linear infinite;
}
.tk-stream span { display: inline-flex; align-items: center; gap: 8px; color: var(--c-cream); }
.tk-stream span i { font-size: 5px; color: var(--c-red); }
.tk-meta { color: var(--c-silver); flex-shrink: 0; }

@keyframes tkroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-30%); }
}

/* =================== NAV =================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244,237,224,.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--c-line);
}
.nav-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

/* Brand */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  width: 42px; height: 42px;
  background: var(--c-ink);
  color: var(--c-cream);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 17px;
  flex-shrink: 0;
}
.brand-mark .bm-rim {
  position: absolute;
  inset: -4px;
  border: 1.5px dashed var(--c-red);
  border-radius: 50%;
  opacity: .85;
}
.brand-mark .bm-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--c-red);
  border-radius: 50%;
  top: -2px; right: 4px;
  box-shadow: 0 0 0 3px var(--c-cream);
}
.brand-txt b {
  display: block;
  font-family: var(--f-disp);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  color: var(--c-ink);
}
.brand-txt b .ac { color: var(--c-red); }
.brand-txt small {
  display: block;
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  color: var(--c-ink-soft);
  margin-top: 4px;
}
.brand-light .brand-txt b { color: var(--c-paper); }
.brand-light .brand-txt small { color: var(--c-silver); }

.nav-cats {
  display: flex;
  gap: 22px;
  justify-content: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-cats a {
  color: var(--c-ink);
  position: relative;
  padding: 4px 0;
  transition: color .18s ease;
}
.nav-cats a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -2px;
  height: 1.5px;
  background: var(--c-red);
  transition: left .2s ease, right .2s ease;
}
.nav-cats a:hover { color: var(--c-red); }
.nav-cats a:hover::after { left: 0; right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-red);
  color: var(--c-paper);
  padding: 10px 16px;
  font-family: var(--f-disp);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--c-red-deep);
  font-size: 14px;
  transition: background .18s, transform .18s;
}
.nav-cta:hover { background: var(--c-red-deep); transform: translateY(-1px); }

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: 56px 0 80px;
  background:
    radial-gradient(1100px 440px at 12% -5%, rgba(168,116,52,.16), transparent 70%),
    radial-gradient(900px 380px at 100% 100%, rgba(187,58,38,.08), transparent 60%),
    var(--c-cream);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-line-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-line-2) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .35;
  mask-image: radial-gradient(900px 600px at 30% 40%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(900px 600px at 30% 40%, #000 50%, transparent 100%);
}
.hero-wrap {
  position: relative;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 78px);
  line-height: .96;
  letter-spacing: -.012em;
  color: var(--c-ink);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-copy h1 em {
  color: var(--c-red);
  font-style: italic;
  font-weight: 700;
}
.hero-copy .lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-ink-soft);
  max-width: 530px;
  margin-bottom: 28px;
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--c-line);
  border-bottom: 1.5px solid var(--c-line);
  margin: 0 0 28px;
}
.hm-cell {
  padding: 18px 14px;
  border-right: 1px dashed var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hm-cell:last-child { border-right: 0; }
.hm-num {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 30px;
  color: var(--c-ink);
  line-height: 1;
}
.hm-cell:nth-child(1) .hm-num,
.hm-cell:nth-child(3) .hm-num { color: var(--c-red); }
.hm-lbl {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* CLASSIFIEDS HERO CARD */
.hero-card {
  position: relative;
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  padding: 22px 22px 26px;
  border-radius: 4px;
  box-shadow:
    0 1px 0 var(--c-ink) inset,
    var(--sh-2);
  transform: rotate(-.8deg);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px dashed var(--c-line);
  pointer-events: none;
}
.hc-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1.5px solid var(--c-red);
  pointer-events: none;
}
.hc-tl { top: -5px; left: -5px; border-right: 0; border-bottom: 0; }
.hc-tr { top: -5px; right: -5px; border-left: 0; border-bottom: 0; }
.hc-bl { bottom: -5px; left: -5px; border-right: 0; border-top: 0; }
.hc-br { bottom: -5px; right: -5px; border-left: 0; border-top: 0; }

/* TERVERIFIKASI stamp */
.hc-stamp {
  position: absolute;
  top: -32px;
  right: -28px;
  width: 118px;
  height: 118px;
  z-index: 4;
  transform: rotate(8deg);
  pointer-events: none;
}
.hc-stamp-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--c-red);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,250,242,.6) 50%, rgba(253,250,242,0) 80%);
  animation: stampspin 32s linear infinite;
}
.hc-stamp-ring::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--c-red);
  border-radius: 50%;
  opacity: .6;
}
.hc-stamp-text {
  position: absolute;
  inset: 0;
  font-family: var(--f-mono);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-red);
  text-transform: uppercase;
  display: block;
  text-align: center;
  padding-top: 8px;
}
.hc-stamp-core {
  position: absolute;
  inset: 24px;
  border: 1.5px solid var(--c-red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 0;
  background: rgba(253,250,242,.45);
  font-family: var(--f-disp);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-red);
  letter-spacing: .1em;
}
.hc-stamp-core i { font-size: 16px; margin-bottom: 2px; }

@keyframes stampspin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}
.hc-head .hc-no {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 4px 8px;
  border-radius: 2px;
  font-weight: 700;
}
.hc-img {
  position: relative;
  margin: 0 0 18px;
  border: 1.5px solid var(--c-ink);
  background: var(--c-cream);
  overflow: hidden;
}
.hc-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.hc-img figcaption {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .14em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  background: var(--c-cream);
  border-top: 1px dashed var(--c-line);
  padding: 8px 10px;
  text-align: center;
}
.hc-eyebrow {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-caramel);
  margin-bottom: 4px;
}
.hc-title {
  font-family: var(--f-disp);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
  color: var(--c-ink);
}
.hc-title em { color: var(--c-red); font-style: italic; }
.hc-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--c-line);
  margin-bottom: 14px;
}
.hc-spec li {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  border-right: 1px dashed var(--c-line);
  border-bottom: 1px dashed var(--c-line);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--c-ink-soft);
}
.hc-spec li b {
  color: var(--c-ink);
  font-weight: 700;
}
.hc-spec li:nth-child(2n) { border-right: 0; }
.hc-spec li:nth-last-child(-n+2) { border-bottom: 0; }
.hc-price {
  background: var(--c-cream);
  border: 1.5px solid var(--c-caramel);
  padding: 12px 14px;
  margin-bottom: 14px;
  position: relative;
  border-radius: 2px;
}
.hc-p-tag {
  font-family: var(--f-mono);
  font-size: 9.5px;
  letter-spacing: .18em;
  color: var(--c-caramel);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.hc-p-amt {
  font-family: var(--f-disp);
  font-size: 30px;
  font-weight: 800;
  color: var(--c-caramel);
  display: block;
  line-height: 1;
}
.hc-p-amt em {
  color: var(--c-red);
  font-style: italic;
}
.hc-p-sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .08em;
  color: var(--c-ink-soft);
  margin-top: 6px;
}
.hc-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--c-wa);
  color: var(--c-paper);
  padding: 12px 16px;
  font-family: var(--f-disp);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: var(--r-sm);
  transition: filter .18s, transform .18s;
}
.hc-wa:hover { filter: brightness(.92); transform: translateY(-2px); }

/* =================== TRUST STRIP =================== */
.trust {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 18px 0;
  border-bottom: 1px solid rgba(168,170,177,.18);
}
.trust-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  gap: 18px;
}
.tr-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tr-cell i {
  color: var(--c-red);
  font-size: 20px;
}
.tr-cell b {
  display: block;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .02em;
}
.tr-cell span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--c-silver);
  text-transform: uppercase;
}
.tr-sep {
  width: 1px;
  height: 36px;
  background: rgba(168,170,177,.25);
}

/* =================== INVENTORY =================== */
.stok {
  padding: 88px 0 96px;
  background: var(--c-cream);
  position: relative;
}
.stok::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--c-line) 0, var(--c-line) 8px, transparent 8px, transparent 16px);
}
.stok-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.stok-filter {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 12px 16px;
  background: var(--c-paper);
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-sm);
}
.sf-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  margin-right: 4px;
}
.f-chip {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .06em;
  padding: 6px 12px;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-ink-soft);
  border-radius: 20px;
  text-transform: uppercase;
  transition: all .18s ease;
}
.f-chip:hover {
  border-color: var(--c-red);
  color: var(--c-red);
}
.f-chip.f-active {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
}

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

.lot {
  position: relative;
  background: var(--c-paper);
  border: 1.5px solid var(--c-line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.lot:hover {
  transform: translateY(-4px);
  border-color: var(--c-ink);
  box-shadow: var(--sh-2);
}
.lot-no {
  position: absolute;
  top: 8px; left: 8px;
  z-index: 3;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 3px 8px;
  border-radius: 2px;
}
.lot-img {
  position: relative;
  background: var(--c-cream);
  border-bottom: 1.5px solid var(--c-line);
}
.lot-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.lot-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 3px 8px;
  background: var(--c-cream);
  color: var(--c-ink);
  border: 1px solid var(--c-ink);
  border-radius: 2px;
}
.lot-badge.b-hot {
  background: var(--c-red);
  color: var(--c-paper);
  border-color: var(--c-red-deep);
}
.lot-badge.b-new {
  background: var(--c-yellow);
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.lot-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -2px;
}
.yr-pill {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 14px;
  background: var(--c-caramel);
  color: var(--c-paper);
  padding: 3px 10px;
  border-radius: 2px;
  letter-spacing: .04em;
}
.lot-cat {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
}
.lot h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--c-ink);
  letter-spacing: .005em;
}
.lot h3 em { color: var(--c-red); font-style: italic; }
.lot-sub {
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--c-ink-soft);
  line-height: 1.5;
}

.meter {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-top: 1px dashed var(--c-line);
  border-bottom: 1px dashed var(--c-line);
}
.meter-lbl,
.meter-val {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}
.meter-val { color: var(--c-ink); font-weight: 700; }
.meter-bar {
  position: relative;
  height: 6px;
  background: var(--c-line-2);
  border-radius: 3px;
  overflow: hidden;
}
.meter-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--c-caramel), var(--c-red));
  border-radius: 3px;
  position: relative;
}
.meter-fill::after {
  content: "";
  position: absolute;
  right: 0; top: -2px;
  width: 2px; height: 10px;
  background: var(--c-ink);
}
.lot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.lot-tags li {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .08em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  padding: 3px 7px;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lot-tags li i { color: var(--c-caramel); font-size: 9px; }

.lot-foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--c-line);
}
.lot-price em {
  display: block;
  font-family: var(--f-disp);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-caramel);
  font-style: normal;
  letter-spacing: .01em;
  line-height: 1;
}
.lot-price small {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--c-ink-soft);
  margin-top: 4px;
}
.btn-wa {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  background: var(--c-wa);
  color: var(--c-paper);
  border-radius: 50%;
  font-size: 20px;
  flex-shrink: 0;
  transition: filter .18s, transform .18s;
}
.btn-wa:hover { filter: brightness(.94); transform: scale(1.06) rotate(-4deg); }

/* HOT lots get red corner ribbon */
.lot-hot { border-color: var(--c-red); }
.lot-hot::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  border-left: 30px solid transparent;
  border-top: 30px solid var(--c-red);
  z-index: 2;
}
.lot-fresh { border-color: var(--c-caramel); }

.stok-more {
  margin-top: 36px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--c-paper);
  border: 1.5px dashed var(--c-caramel);
  border-radius: var(--r-md);
  flex-wrap: wrap;
}
.stok-more p {
  font-size: 15px;
  color: var(--c-ink-soft);
  flex: 1;
  min-width: 240px;
}
.stok-more p em { color: var(--c-red); font-weight: 600; }

/* =================== TRADE-IN =================== */
.tradein {
  padding: 96px 0;
  background:
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-paper) 100%);
  border-top: 1px solid var(--c-line);
  position: relative;
}
.tradein::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--c-line) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: .35;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 30%, #000 70%, transparent 100%);
}
.ti-head { max-width: 720px; margin-bottom: 44px; position: relative; z-index: 2; }
.ti-sub {
  font-size: 16px;
  color: var(--c-ink-soft);
  line-height: 1.65;
}
.ti-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 100px 1fr 100px 1fr;
  gap: 0;
  align-items: stretch;
}
.ti-cell {
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  padding: 22px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  box-shadow: var(--sh-1);
}
.ti-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-ink);
  background: var(--c-yellow);
  padding: 3px 8px;
  border-radius: 2px;
  align-self: flex-start;
  font-weight: 700;
}
.ti-cell h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--c-ink);
  line-height: 1.05;
}
.ti-cell h3 em { color: var(--c-red); font-style: italic; }
.ti-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--c-line);
}
.ti-spec li {
  display: flex;
  justify-content: space-between;
  padding: 7px 10px;
  border-right: 1px dashed var(--c-line);
  border-bottom: 1px dashed var(--c-line);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--c-ink-soft);
}
.ti-spec li b { color: var(--c-ink); font-weight: 700; }
.ti-spec li:nth-child(2n) { border-right: 0; }
.ti-spec li:nth-last-child(-n+2) { border-bottom: 0; }

.ti-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0 4px;
  border-bottom: 1px dashed var(--c-line);
  margin-bottom: 8px;
}
.ti-rp {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-ink-soft);
}
.ti-num {
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 38px;
  line-height: 1;
  color: var(--c-ink);
}
.ti-num em { color: var(--c-red); font-style: italic; }

.ti-bars { display: flex; flex-direction: column; gap: 8px; }
.ti-bars li {
  display: grid;
  grid-template-columns: 100px 1fr 50px;
  gap: 10px;
  align-items: center;
}
.ti-bar-lbl,
.ti-bar-val {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--c-ink-soft);
}
.ti-bar-val { text-align: right; font-weight: 700; color: var(--c-ink); }
.ti-bar-val em { color: var(--c-red); font-style: italic; }
.ti-bar {
  position: relative;
  height: 8px;
  background: var(--c-line-2);
  border-radius: 4px;
  overflow: hidden;
}
.ti-bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
}
.ti-bar-hi .ti-bar-lbl { color: var(--c-red); font-weight: 700; }

.ti-arrow {
  width: 100px;
  height: 80px;
  color: var(--c-caramel);
  align-self: center;
  justify-self: center;
}

.ti-foot {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--c-caramel);
  margin-top: auto;
  padding-top: 6px;
  border-top: 1px dashed var(--c-line);
}
.ti-foot i { color: var(--c-caramel); margin-right: 4px; }

.ti-input { background: var(--c-paper); }
.ti-output { background: var(--c-cream); border-color: var(--c-caramel); }
.ti-result { background: var(--c-ink); color: var(--c-paper); border-color: var(--c-red); }
.ti-result h3 { color: var(--c-paper); }
.ti-result h3 em { color: var(--c-caramel-soft); }
.ti-result .ti-tag { background: var(--c-red); color: var(--c-paper); }
.ti-calc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.ti-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 12.5px;
  color: var(--c-silver-2);
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(200,151,101,.4);
}
.ti-row b { color: var(--c-paper); font-weight: 700; }
.ti-row-hi { padding-top: 6px; border-top: 1.5px solid var(--c-caramel); border-bottom: 1.5px solid var(--c-caramel); }
.ti-row-hi b { font-family: var(--f-disp); font-size: 22px; }
.ti-row-hi b em { color: var(--c-caramel-soft); font-style: italic; }
.ti-row-alt b { color: var(--c-caramel-soft); }

.ti-disclaimer {
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
  color: var(--c-ink-soft);
  text-align: center;
  position: relative;
  z-index: 2;
}
.dt-tag {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 2px 8px;
  letter-spacing: .14em;
  margin-right: 6px;
  font-weight: 700;
}

/* =================== INSPEKSI CHECKLIST =================== */
.inspeksi {
  padding: 96px 0;
  background: var(--c-ink);
  color: var(--c-cream);
  position: relative;
  overflow: hidden;
}
.inspeksi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,116,52,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,116,52,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.insp-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.insp-copy .h-sec { color: var(--c-paper); }
.insp-copy .h-sec em { color: var(--c-caramel-soft); }
.insp-copy .kicker { color: var(--c-caramel-soft); }
.insp-copy .kicker .kdash { background: var(--c-caramel-soft); }
.insp-copy p {
  color: var(--c-silver-2);
  font-size: 16px;
  margin-bottom: 18px;
}
.insp-copy p em { color: var(--c-caramel-soft); }
.insp-sig {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--c-silver) !important;
  border-left: 2px solid var(--c-red);
  padding-left: 12px;
  margin: 18px 0 24px !important;
}
.insp-sig b { color: var(--c-cream); font-weight: 700; }
.insp-copy .btn-ghost-dk { color: var(--c-cream); border-color: var(--c-caramel-soft); }
.insp-copy .btn-ghost-dk:hover { background: var(--c-caramel); color: var(--c-paper); border-color: var(--c-caramel); }

.insp-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1.5px solid rgba(168,116,52,.35);
  border-radius: 6px;
  background: rgba(244,237,224,.03);
}
.insp-list li {
  display: grid;
  grid-template-columns: 56px 38px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 22px 22px 0;
  border-bottom: 1px dashed rgba(168,116,52,.25);
  position: relative;
}
.insp-list li:last-child { border-bottom: 0; }
.ic-no {
  font-family: var(--f-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--c-caramel-soft);
  text-align: center;
  border-right: 1.5px solid rgba(168,116,52,.35);
  padding: 22px 0;
  margin: -22px 0;
}
.ic-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--c-red);
  color: var(--c-paper);
  display: grid;
  place-items: center;
  font-size: 13px;
  position: relative;
}
.ic-check::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 1px dashed var(--c-red);
  border-radius: 50%;
  opacity: .5;
}
.insp-list h4 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--c-paper);
  letter-spacing: .005em;
  margin-bottom: 4px;
}
.insp-list h4 em { color: var(--c-caramel-soft); font-style: italic; font-weight: 600; font-size: 16px; letter-spacing: .04em; }
.insp-list p {
  font-size: 14px;
  color: var(--c-silver-2);
  line-height: 1.55;
}
.insp-list p b { color: var(--c-paper); }
.ic-stat {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--c-paper);
  background: rgba(187,58,38,.15);
  border: 1px solid var(--c-red);
  padding: 6px 12px;
  border-radius: 2px;
  margin-right: 22px;
}

/* =================== COMPARISON =================== */
.bandingkan {
  padding: 96px 0;
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
}
.bd-head { margin-bottom: 36px; max-width: 720px; }
.cmp-table {
  background: var(--c-paper);
  border: 1.5px solid var(--c-ink);
  border-radius: 4px;
  overflow: hidden;
}
.cmp-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  border-bottom: 1px dashed var(--c-line);
}
.cmp-row:last-child { border-bottom: 0; }
.cmp-c {
  padding: 16px 18px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--c-ink-soft);
  border-right: 1px dashed var(--c-line);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cmp-c:last-child { border-right: 0; }
.cmp-c i { font-size: 14px; }
.cmp-c .fa-xmark { color: var(--c-silver); }
.cmp-c .fa-circle-half-stroke { color: var(--c-caramel); }
.cmp-c .fa-check { color: var(--c-red); }
.cmp-lbl {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .01em;
  color: var(--c-ink);
  text-transform: uppercase;
  background: var(--c-cream);
}
.cmp-h {
  background: var(--c-ink);
  color: var(--c-paper);
}
.cmp-h .cmp-c {
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-paper);
  font-weight: 700;
  border-right-color: rgba(244,237,224,.18);
}
.cmp-h .cmp-lbl { background: transparent; color: var(--c-paper); }
.cmp-h .cmp-hi { color: var(--c-caramel-soft); background: rgba(187,58,38,.18); }
.cmp-hi {
  background: rgba(187,58,38,.06);
  color: var(--c-ink);
  font-weight: 600;
  position: relative;
}
.cmp-hi b { color: var(--c-red); font-weight: 700; }
.cmp-row:not(.cmp-h):hover .cmp-hi { background: rgba(187,58,38,.12); }
.cmp-foot {
  margin-top: 22px;
  text-align: center;
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--c-ink-soft);
}
.cmp-foot em { color: var(--c-red); font-weight: 600; }

/* =================== TIMELINE =================== */
.proses {
  padding: 96px 0;
  background: var(--c-paper);
  position: relative;
}
.pr-head { max-width: 720px; margin-bottom: 44px; }

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
  padding-left: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background:
    repeating-linear-gradient(180deg, var(--c-caramel) 0, var(--c-caramel) 6px, transparent 6px, transparent 12px);
}
.timeline li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding: 4px 0;
}
.tl-med {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 2px solid var(--c-caramel);
  color: var(--c-caramel);
  display: grid;
  place-items: center;
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 26px;
  position: relative;
  box-shadow: 0 0 0 6px var(--c-paper);
  z-index: 2;
}
.tl-med::after {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed var(--c-caramel);
  border-radius: 50%;
  opacity: .55;
}
.tl-body {
  padding-top: 6px;
  border-bottom: 1px dashed var(--c-line);
  padding-bottom: 22px;
}
.tl-tag {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-red);
  background: rgba(187,58,38,.08);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
  display: inline-block;
}
.tl-body h3 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--c-ink);
  letter-spacing: .005em;
  margin-bottom: 6px;
}
.tl-body p {
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 1.65;
  max-width: 620px;
}

/* =================== ABOUT =================== */
.about {
  padding: 96px 0;
  background: var(--c-cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.about-copy p {
  color: var(--c-ink-soft);
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
}
.about-copy p em { color: var(--c-red); font-weight: 600; }
.about-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--c-line);
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 14.5px;
  color: var(--c-ink);
}
.about-list li i {
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  background: var(--c-red);
  color: var(--c-paper);
  border-radius: 50%;
  font-size: 11px;
}

.about-img {
  position: relative;
  background: var(--c-paper);
  padding: 14px 14px 60px;
  border: 1.5px solid var(--c-line);
  box-shadow: var(--sh-2);
  transform: rotate(.6deg);
}
.about-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.about-img figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px; right: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
  text-align: center;
}
.about-img figcaption em { color: var(--c-red); font-style: italic; font-weight: 700; }

/* photo corner brackets */
.ph-corner {
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid var(--c-caramel);
  z-index: 2;
}
.ph-tl { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.ph-tr { top: -4px; right: -4px; border-left: 0; border-bottom: 0; }
.ph-bl { bottom: -4px; left: -4px; border-right: 0; border-top: 0; }
.ph-br { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }

/* =================== WORKSHOP GALLERY =================== */
.workshop {
  padding: 96px 0;
  background: var(--c-paper);
}
.ws-head { margin-bottom: 36px; max-width: 720px; }
.ws-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 18px;
}
.ws-grid figure {
  position: relative;
  background: var(--c-cream);
  border: 1.5px solid var(--c-line);
  overflow: visible;
}
.ws-grid figure img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.ws-1 { grid-row: span 2; }
.ws-2 { grid-column: 2; grid-row: 1; }
.ws-3 { grid-column: 3; grid-row: 1; }
.ws-4 { grid-column: 2 / span 2; grid-row: 2; }
.ws-grid figcaption {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(transparent, rgba(26,22,18,.85) 60%);
  color: var(--c-paper);
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 22px 14px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ws-grid figcaption em { color: var(--c-caramel-soft); font-style: italic; font-weight: 700; }
.ws-no {
  font-family: var(--f-mono);
  font-weight: 700;
  background: var(--c-red);
  color: var(--c-paper);
  padding: 2px 6px;
  letter-spacing: .14em;
  border-radius: 2px;
  font-size: 10px;
}

/* =================== TESTIMONIALS =================== */
.testi {
  padding: 96px 0;
  background: var(--c-cream);
  border-top: 1px solid var(--c-line);
}
.ts-head { margin-bottom: 36px; max-width: 720px; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ts-card {
  position: relative;
  background: var(--c-paper);
  border: 1.5px solid var(--c-line);
  border-radius: 4px;
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.ts-card:nth-child(1) { transform: rotate(-.4deg); }
.ts-card:nth-child(2) { transform: rotate(.3deg); }
.ts-card:nth-child(3) { transform: rotate(-.6deg); }
.ts-card:hover {
  transform: translateY(-3px) rotate(0);
  border-color: var(--c-red);
  box-shadow: var(--sh-2);
}
.ts-q {
  font-family: var(--f-disp);
  font-size: 80px;
  font-weight: 800;
  line-height: .6;
  color: var(--c-red);
  position: absolute;
  top: 12px; left: 18px;
  opacity: .85;
}
.ts-quote {
  margin-top: 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-ink);
}
.ts-stars {
  font-family: var(--f-mono);
  font-size: 16px;
  color: var(--c-yellow);
  letter-spacing: .08em;
}
.ts-foot {
  border-top: 1px dashed var(--c-line);
  padding-top: 12px;
  margin-top: auto;
}
.ts-foot strong {
  display: block;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--c-ink);
}
.ts-foot span {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--c-ink-soft);
  text-transform: uppercase;
}
.ts-rib {
  position: absolute;
  top: 14px; right: -8px;
  background: var(--c-red);
  color: var(--c-paper);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  padding: 4px 10px;
  border-radius: 2px;
  transform: rotate(2deg);
  box-shadow: 0 4px 10px -4px rgba(187,58,38,.5);
}

/* =================== CTA =================== */
.cta {
  padding: 100px 0;
  background:
    radial-gradient(800px 380px at 80% 30%, rgba(187,58,38,.32), transparent 70%),
    var(--c-ink);
  color: var(--c-cream);
  border-top: 4px solid var(--c-red);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 28px, rgba(168,116,52,.06) 28px, rgba(168,116,52,.06) 30px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta h2 {
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -.005em;
  color: var(--c-paper);
  text-transform: uppercase;
  margin: 8px 0 16px;
}
.cta h2 em { color: var(--c-caramel-soft); font-style: italic; }
.cta p {
  font-size: 16px;
  color: var(--c-silver-2);
  margin-bottom: 26px;
  line-height: 1.65;
}
.cta-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.cta-note {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--c-caramel-soft);
  text-transform: uppercase;
}
.cta-note i { color: var(--c-yellow); margin-right: 4px; }

/* =================== FAQ =================== */
.faq {
  padding: 96px 0;
  background: var(--c-paper);
}
.fq-head { margin-bottom: 36px; max-width: 720px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1.5px solid var(--c-ink);
  border-bottom: 1.5px solid var(--c-ink);
  max-width: 920px;
  margin: 0 auto;
}
.faq-list details {
  border-bottom: 1px dashed var(--c-line);
  padding: 4px 0;
}
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary {
  display: grid;
  grid-template-columns: 60px 1fr 30px;
  align-items: center;
  gap: 16px;
  padding: 18px 8px;
  cursor: pointer;
  font-family: var(--f-disp);
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  color: var(--c-ink);
  letter-spacing: .005em;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.fq-num {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--c-caramel);
  text-align: left;
}
.fq-mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c-cream);
  border: 1.5px solid var(--c-red);
  color: var(--c-red);
  display: grid;
  place-items: center;
  font-family: var(--f-disp);
  font-weight: 800;
  font-size: 22px;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.faq-list details[open] .fq-mark {
  transform: rotate(45deg);
  background: var(--c-red);
  color: var(--c-paper);
}
.faq-list details[open] summary { color: var(--c-red); }
.faq-list p {
  padding: 0 8px 22px 76px;
  font-size: 15px;
  color: var(--c-ink-soft);
  line-height: 1.7;
}
.faq-list p em { color: var(--c-red); font-weight: 600; }

/* =================== FOOTER =================== */
.footer {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: 64px 0 28px;
  border-top: 4px solid var(--c-red);
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--c-red) 0, var(--c-red) 14px, var(--c-caramel) 14px, var(--c-caramel) 28px);
}
.foot-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px dashed rgba(168,170,177,.25);
  margin-bottom: 32px;
}
.foot-tag {
  max-width: 540px;
  font-size: 14.5px;
  color: var(--c-silver);
  line-height: 1.65;
}
.foot-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.foot-cols h4 {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-caramel-soft);
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(168,170,177,.2);
  padding-bottom: 8px;
}
.foot-cols ul { display: flex; flex-direction: column; gap: 8px; }
.foot-cols li {
  font-size: 13.5px;
  color: var(--c-silver-2);
  line-height: 1.55;
}
.foot-cols li em {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--c-silver);
  text-transform: uppercase;
  font-style: normal;
  display: block;
  margin-top: 2px;
}
.foot-cols a {
  color: var(--c-cream);
  transition: color .18s ease;
}
.foot-cols a:hover { color: var(--c-red); }
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  border-top: 1px dashed rgba(168,170,177,.25);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bot p {
  font-size: 12.5px;
  color: var(--c-silver);
}
.foot-bot p em { color: var(--c-caramel-soft); font-style: italic; font-weight: 700; }
.foot-mono {
  font-family: var(--f-mono);
  font-size: 11px !important;
  letter-spacing: .14em;
  color: var(--c-silver) !important;
  text-transform: uppercase;
}

/* =================== FAB =================== */
.fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-wa);
  color: var(--c-paper);
  padding: 14px 18px;
  border-radius: 50px;
  font-family: var(--f-disp);
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 14.5px;
  box-shadow: 0 12px 28px -12px rgba(37,211,102,.55), 0 2px 6px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.fab i { font-size: 22px; }
.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(37,211,102,.7), 0 2px 6px rgba(0,0,0,.18);
}
.fab::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 1.5px solid var(--c-wa);
  opacity: .45;
  animation: fabpulse 2.4s ease-out infinite;
}
@keyframes fabpulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

/* =================== REVEAL =================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1100px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 44px; }
  .hero-card { transform: none; max-width: 540px; margin: 0 auto; }
  .stok-list { grid-template-columns: repeat(3, 1fr); }
  .ti-flow { grid-template-columns: 1fr; gap: 22px; }
  .ti-arrow { transform: rotate(90deg); width: 60px; height: 50px; }
  .insp-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .ws-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .ws-1 { grid-row: span 1; grid-column: span 2; }
  .ws-2 { grid-column: 1; grid-row: 2; }
  .ws-3 { grid-column: 2; grid-row: 2; }
  .ws-4 { grid-column: 1 / span 2; grid-row: 3; }
  .testi-grid { grid-template-columns: 1fr; gap: 18px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .trust-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .tr-sep { display: none; }
}

@media (max-width: 900px) {
  .nav-cats { display: none; }
  .nav-wrap { grid-template-columns: 1fr auto; }
  .ticker .tk-meta { display: none; }
  .stok-list { grid-template-columns: repeat(2, 1fr); }
  .cmp-row { grid-template-columns: 1.1fr 1fr 1fr 1.2fr; font-size: 13px; }
  .cmp-c { padding: 12px 10px; font-size: 13px; }
  .cmp-lbl { font-size: 14px; }
  .insp-list li { grid-template-columns: 50px 32px 1fr; gap: 10px; padding: 18px 18px 18px 0; }
  .ic-stat { grid-column: 3 / 4; margin-right: 0; justify-self: flex-start; margin-top: 4px; }
}

@media (max-width: 560px) {
  .hero { padding: 36px 0 56px; }
  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hm-cell { border-bottom: 1px dashed var(--c-line); }
  .hm-cell:nth-child(2n) { border-right: 0; }
  .hm-cell:nth-last-child(-n+2) { border-bottom: 0; }
  .stok-list { grid-template-columns: 1fr; }
  .stok-more { flex-direction: column; align-items: flex-start; }
  .ti-spec { grid-template-columns: 1fr; }
  .ti-spec li { border-right: 0 !important; }
  .ws-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 200px); gap: 14px; }
  .ws-1, .ws-2, .ws-3, .ws-4 { grid-column: 1; }
  .ws-1 { grid-row: 1; }
  .ws-2 { grid-row: 2; }
  .ws-3 { grid-row: 3; }
  .ws-4 { grid-row: 4; }
  .foot-cols { grid-template-columns: 1fr; }
  .foot-top { flex-direction: column; align-items: flex-start; }
  .trust-row { grid-template-columns: 1fr; }
  .fab span { display: none; }
  .fab { padding: 14px; }
  .timeline { padding-left: 8px; }
  .timeline::before { left: 33px; }
  .tl-med { width: 56px; height: 56px; font-size: 22px; }
  .timeline li { grid-template-columns: 56px 1fr; gap: 14px; }
  .hc-stamp { width: 88px; height: 88px; top: -18px; right: -10px; }
  .hc-stamp-core { inset: 18px; font-size: 13px; }
  .ts-card { transform: none !important; }
}
