﻿/* Inter optional: loaded non-blocking from shell if needed */

:root {
  --bg: #f7f8fa;
  --bg2: #ffffff;
  --ink: #0b1220;
  --muted: #667085;
  --line: #e6eaf0;
  --brand: #0b5fff;
  --brand2: #2f7bff;
  --brand-soft: #eaf1ff;
  --gold: #c9a24d;
  --max: 1180px;
  --r: 18px;
  --r2: 28px;
  --shadow: 0 18px 50px rgba(15, 23, 42, .08);
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --glass: rgba(255, 255, 255, .72);
}

*, *::before, *::after { box-sizing: border-box }
[hidden] { display: none !important; }
html { scroll-behavior: smooth }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto }
a { color: var(--brand); text-decoration: none }
a:hover { text-decoration: underline }
.wrap { width: min(100% - 2.4rem, var(--max)); margin-inline: auto }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--brand); color: #fff; padding: .55rem 1rem
}
.skip:focus { left: 1rem; top: 1rem }

/* ===== AMODA nav full system (scrape Framer Header Wrapper / Web|Phone White) =====
   top: transparent r0 no blur | scrolled pill r40 glass adaptive | mobile open merge
   CTA #dbb05c + ink; links 14/500 gap 24; max bar 1040; pad 12px 80/40/20
*/
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 12px 80px;
  background: transparent;
  pointer-events: none;
  transition: padding .28s ease;
}
.site-header.is-scrolled {
  padding: 10px 40px;
}
.site-header .nav-shell {
  position: relative;
  pointer-events: auto;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  --nav-bg: transparent;
  --nav-border: transparent;
  --nav-text: #0a0203;
  --nav-muted: #6b6b6b;
  --nav-toggle-bg: rgba(31, 31, 31, .4);
  --nav-menu-bg: #fdfdfd;
  --nav-shadow: none;
  --nav-blur: 0px;
  --nav-pad-x: 0px;
  background: var(--nav-bg);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--nav-border);
  border-radius: 0;
  box-shadow: var(--nav-shadow);
  padding: 12px 0;
  min-height: 66px;
  display: flex;
  align-items: center;
  transition:
    background .3s ease,
    box-shadow .3s ease,
    border-color .3s ease,
    padding .3s ease;
}
/* over dark band (hero/band/footer): light type while transparent */
.site-header.is-over-dark .nav-shell {
  --nav-text: #fdfdfd;
  --nav-muted: #e7e7e7;
  --nav-menu-bg: rgba(20, 24, 32, .96);
  --nav-toggle-bg: rgba(31, 31, 31, .4);
}
/* scrolled: frosted pill — light page */
.site-header.is-scrolled .nav-shell {
  --nav-bg: rgba(253, 253, 253, .86);
  --nav-border: rgba(15, 23, 42, .08);
  --nav-text: #0a0203;
  --nav-muted: #6b6b6b;
  --nav-menu-bg: #fdfdfd;
  --nav-shadow: 0 12px 40px rgba(15, 23, 42, .12);
  --nav-blur: 20px;
  --nav-pad-x: 18px;
  --nav-toggle-bg: rgba(31, 31, 31, .4);
  background: var(--nav-bg);
  backdrop-filter: saturate(160%) blur(var(--nav-blur));
  -webkit-backdrop-filter: saturate(160%) blur(var(--nav-blur));
  border-radius: 40px;
  padding: 10px 18px 10px 20px;
  min-height: 58px;
}
/* scrolled over dark: dark frosted pill */
.site-header.is-scrolled.is-over-dark .nav-shell {
  --nav-bg: rgba(31, 31, 31, .55);
  --nav-border: rgba(255, 255, 255, .12);
  --nav-text: #fdfdfd;
  --nav-muted: #e7e7e7;
  --nav-menu-bg: rgba(20, 24, 32, .96);
  --nav-shadow: 0 14px 40px rgba(0, 0, 0, .28);
  --nav-blur: 24px;
  --nav-toggle-bg: rgba(31, 31, 31, .4);
}

/* content under fixed overlay nav */
body { padding-top: 0 }
main#main { padding-top: 0 }
[id] { scroll-margin-top: 6.5rem }

/* hamburger */
.nav-toggle-icon {
  display: flex; flex-direction: column; justify-content: center;
  gap: 5px; width: 18px; height: 18px; pointer-events: none;
}
.nav-toggle-icon span {
  display: block; height: 1.5px; border-radius: 2px; background: currentColor;
  transition: transform .28s ease, opacity .2s ease, width .28s ease;
  transform-origin: center;
}
.nav-toggle-icon span:nth-child(1) { width: 18px }
.nav-toggle-icon span:nth-child(2) { width: 12px }
.nav-toggle-icon span:nth-child(3) { width: 18px }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  color: var(--nav-text); font-weight: 700; text-decoration: none;
  flex: 0 0 auto;
  transition: color .25s ease;
}
.brand img {
  height: 24px; width: auto; max-width: 120px; object-fit: contain;
  transition: filter .25s ease;
}
/* dark chrome: keep colored logo readable on frosted/ink bars */
.site-header.is-over-dark .brand img {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .45));
}
.brand span { line-height: 1.15; font-size: .9rem }
.brand small {
  display: block; font-weight: 500; color: var(--nav-muted);
  font-size: .68rem; transition: color .25s ease;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  margin-left: auto;
}
.nav-toggle {
  display: none;
  border: 0;
  background: var(--nav-toggle-bg);
  color: var(--nav-text);
  border-radius: 40px;
  cursor: pointer;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  padding: 0;
  transition: color .25s ease, background .25s ease;
}

/* desktop links — gap 24, 14/500 light on dark */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.nav-links a {
  color: var(--nav-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 130%;
  padding: 0;
  letter-spacing: 0;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--nav-text);
}
.nav-cta-mobile { display: none }
.nav-toggle { display: none }

.project-gallery {
  display: flex;
  flex-direction: row;
  gap: .65rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .3rem;
}
.project-gallery::-webkit-scrollbar { display: none; }
.project-gallery-item {
  flex: 0 0 31%;
  max-width: 380px;
  margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8eef7;
  aspect-ratio: 1.6 / 1;
  scroll-snap-align: start;
}
.project-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex }
}

/* nav CTA = brand blue pill (same as body Konsultasi) */
.btn-nav-cta,
.btn-nav-cta:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 130%;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(11, 95, 255, .25);
  transition: filter .15s ease, transform .15s ease, background .15s ease;
}
.btn-nav-cta:hover {
  color: #fff !important;
  filter: brightness(1.05);
  transform: translateY(-1px);
}
.nav-links a.btn-nav-cta { margin: 0 }

.nav-links a.btn-primary,
.nav-links a.btn-brand {
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(11, 95, 255, .28);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  border-radius: 999px; border: 1px solid transparent; padding: .85rem 1.25rem;
  font-weight: 700; font-size: .92rem; cursor: pointer; text-decoration: none;
  transition: transform .15s ease, filter .15s ease, box-shadow .15s ease, background .15s
}
.btn:hover { text-decoration: none; transform: translateY(-1px) }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(11,95,255,.55);
  outline-offset: 3px;
}
/* primary = brand blue (main conversion) */
.btn-primary, .btn-primary:visited,
.btn-brand, .btn-brand:visited {
  background: linear-gradient(180deg, var(--brand2), var(--brand)); color: #fff;
  box-shadow: 0 10px 28px rgba(11,95,255,.25)
}
.btn-primary:hover, .btn-brand:hover { color: #fff; filter: brightness(1.05) }
.btn-ghost, .btn-ghost:visited {
  background: #fff; border-color: var(--line); color: var(--ink)
}
.btn-wa, .btn-wa:visited { background: #25d366; color: #fff }
.btn-wa:hover { color: #fff; filter: brightness(1.05) }
.btn-wa .wa-icon { width: 1.15em; height: 1.15em; flex-shrink: 0; display: block }
.btn-lg { padding: 1rem 1.4rem }
.float-wa {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; padding: 0; border-radius: 999px; font-size: 0; gap: 0;
  box-shadow: 0 14px 34px rgba(37, 211, 102, .35)
}
.float-wa .wa-icon { width: 28px; height: 28px; flex-shrink: 0 }
/* nav CTA uses brand even when shell flips contrast tokens */
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover,
.nav-links a.btn-primary:visited,
.nav-links a.btn-brand,
.nav-links a.btn-brand:hover,
.nav-links a.btn-brand:visited {
  background: linear-gradient(180deg, var(--brand2), var(--brand));
  color: #fff;
  box-shadow: 0 8px 22px rgba(11,95,255,.28)
}

/* hero amoda-style */
.hero {
  padding: 7.5rem 0 2.2rem;
  display: grid; gap: 2rem;
  grid-template-columns: 1.1fr .95fr; align-items: center
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--brand); font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; font-size: .75rem; margin: 0 0 .9rem
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 99px; background: var(--brand)
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 .7rem; letter-spacing: -.02em }
h1 { font-size: clamp(2.35rem, 5vw, 3.8rem); font-weight: 800 }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); font-weight: 800 }
h3 { font-size: 1.12rem; font-weight: 700 }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 42ch; margin: 0 0 1.5rem }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem }
.hero-media {
  position: relative;
  border-radius: var(--r2);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: unset;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* cover: crop slight letterbox / YT chrome margins */
  transform: translate(-50%, -50%) scale(1.28);
  transform-origin: center center;
  pointer-events: none; /* never interactive */
}
.hero-video-shield {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: default;
  display: block;
  pointer-events: auto; /* absorb clicks; no unlock */
}
/* anchor targets clear sticky nav */
/* (scroll-margin-top set near nav block) */
.page-penawaran .float-wa { display: none }
.page-penawaran main { padding-bottom: 2rem }

/* stats strip — angka+label center di dalam kotak */
.stats-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  margin: 0 0 1rem
}
.stat-card,
.stat {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.25rem 1rem;
  box-shadow: 0 8px 24px rgba(15,23,42,.04);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  min-height: 5.5rem
}
.stat-card strong,
.stat strong {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-align: center
}
.stat-card strong.counting { color: var(--brand) }
.stat-card span,
.stat span {
  display: block;
  width: 100%;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.25;
  text-align: center
}
.stat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem
}

section { padding: 3.8rem 0 }
section.section-tight { padding: 1.4rem 0 }
.section-head { margin-bottom: 1.7rem; max-width: 40rem }
.section-head p { color: var(--muted); margin: .4rem 0 0; font-size: 1.02rem }
.section-head .eyebrow { margin-bottom: .55rem }
.section-row {
  display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.5rem
}
.section-row .section-head { margin-bottom: 0 }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem }

/* product cards amoda style */
.product-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r2);
  overflow: hidden; box-shadow: 0 10px 30px rgba(15,23,42,.05);
  display: flex; flex-direction: column; min-height: 100%;
  transition: transform .18s ease, box-shadow .18s ease
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow) }
.product-card .thumb {
  aspect-ratio: 16/11; background: linear-gradient(160deg, #edf2f8, #dfe8f5);
  display: grid; place-items: center; overflow: hidden; padding: .25rem; text-decoration: none
}
.product-card .thumb img {
  width: 100%; height: auto; object-fit: contain; max-height: 100%; display: block
}
/* Blog article cards use cover photos — same size for local/CDN thumbnails */
.product-card[href^="blog/"] .thumb,
.product-card .thumb:has(img[src*="cloudinary"]) {
  padding: 0; aspect-ratio: 16/9;
}
.product-card[href^="blog/"] .thumb img,
.product-card .thumb img[src*="cloudinary"] {
  width: 100%; height: 100%; object-fit: cover; padding: 0; max-height: none;
}
.product-card .body { padding: 1.2rem 1.25rem 1.35rem; display: grid; gap: .45rem; flex: 1 }
.product-card p { color: var(--muted); margin: 0 }
.product-card .meta { display: flex; flex-wrap: wrap; gap: .35rem; margin: .25rem 0 .5rem }
.product-card a.more { font-weight: 700; color: var(--ink); margin-top: auto }

.card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.2rem 1.25rem; box-shadow: 0 8px 24px rgba(15,23,42,.04)
}
.card h3 { margin-bottom: .4rem }
.card p { color: var(--muted); margin: 0 }
.card .num {
  width: 2.2rem; height: 2.2rem; border-radius: 999px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); font-weight: 800; margin-bottom: .75rem;
  font-size: .85rem
}
.card img {
  width: 100%; border-radius: 14px; aspect-ratio: 16/10; object-fit: cover; margin-bottom: .85rem;
  background: #e8eef7
}
.pill {
  display: inline-block; font-size: .72rem; font-weight: 700; color: var(--brand);
  background: var(--brand-soft); border-radius: 999px; padding: .25rem .6rem
}

/* guarantee band */
.band {
  background: var(--ink); color: #fff; border-radius: calc(var(--r2) + 4px);
  padding: 2rem; box-shadow: var(--shadow)
}
.band h2, .band h3 { color: #fff }
.band p { color: #c7cfdb }
.band .grid-3 .card {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #fff
}
.band .card p { color: #c7cfdb }
.band .card .num { background: rgba(255,255,255,.1); color: #fff }

/* Product 3D preview */
.product-3d-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: #f3f6fb;
}
.product-3d {
  position: relative;
  aspect-ratio: 1.6 / 1;
  overflow: hidden;
}
.product-3d-canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  /* saat orbit off, biarkan scroll menembus canvas */
  touch-action: pan-y;
  pointer-events: none;
}
/* aktifkan interaksi hanya saat orbit mode aktif */
.product-3d.is-orbit-active .product-3d-canvas {
  touch-action: none;
  pointer-events: auto;
}
.product-3d-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-3d-still {
  margin: 0;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 0 0 var(--r) var(--r);
}
.product-3d-still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-3d-hint {
  position: absolute;
  left: 0.65rem;
  bottom: 0.55rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 600;
  color: #1e3a5f;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(30,58,95,.12);
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15,23,42,.06);
  transition: background .15s, color .15s;
}
.product-3d-hint:hover { background: rgba(255,255,255,.96); }
.product-3d.is-orbit-active .product-3d-hint {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}
.product-3d.is-error .product-3d-hint { color: #7f1d1d; background: rgba(254,242,242,.92); }

.trust-badges {
  list-style: none; margin: 0 0 1.25rem; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem
}
.trust-badge {
  display: flex; align-items: center; gap: .75rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: .85rem .95rem
}
.trust-badge-mark {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  color: #fff; background: linear-gradient(180deg, var(--brand2), var(--brand));
  box-shadow: 0 8px 18px rgba(11,95,255,.28)
}
.trust-badge-icon {
  width: 26px; height: 26px; stroke: #fff; fill: none
}
.trust-badge-body { display: flex; flex-direction: column; gap: .1rem; min-width: 0 }
.trust-badge-body strong { color: #fff; font-size: .92rem; line-height: 1.2 }
.trust-badge-body small { color: #fff; font-size: .78rem }
.trust-badge-mark img { filter: brightness(0) invert(1); width: 26px; height: 26px; }


/* Project detail back button */
.project-detail-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1rem;
  padding: .45rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--brand);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.project-detail-back:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* steps */
.step-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r2);
  padding: 1.35rem; position: relative; overflow: hidden; min-height: 100%
}
.step-card .step-no {
  font-size: 3rem; font-weight: 800; letter-spacing: -.04em; color: var(--brand);
  line-height: 1; margin-bottom: .4rem;
  opacity: .9
}
.step-card h3 { margin-top: 0 }
.step-card p { color: var(--muted); margin: 0 }
.step-card img {
  width: 72px; height: 72px; object-fit: contain; margin-bottom: .8rem
}

/* portfolio */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.project-grid .project-card:first-child {
  grid-column: 1 / -1;
  min-height: 360px;
}
.project-grid .project-card:first-child img {
  min-height: 360px;
}
.project-card {
  position: relative; border-radius: var(--r2); overflow: hidden; min-height: 280px;
  box-shadow: var(--shadow); background: #e8eef7;
  display: block; color: inherit; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease
}
.project-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(15,23,42,.14) }
.project-card:focus-visible { outline: 3px solid rgba(11,95,255,.55); outline-offset: 3px }
.project-card img {
  width: 100%; height: 100%; object-fit: cover; min-height: 280px;
  transition: transform .35s ease; aspect-ratio: 16 / 10; margin: 0; border-radius: 0;
  background: #e8eef7; display: block
}
.project-card:hover img { transform: scale(1.04) }
.project-list-card {
  display: block; color: inherit; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease
}
.project-list-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow) }
.project-list-card:focus-visible { outline: 3px solid rgba(11,95,255,.55); outline-offset: 3px }
.project-list-card img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #e8eef7;
  border-radius: 12px; margin: 0 0 .75rem
}
.project-card .overlay {
  position: absolute; inset: auto 0 0 0; padding: 1.15rem 1.2rem;
  background: linear-gradient(transparent, rgba(8,12,20,.85)); color: #fff
}
.project-grid .project-card:first-child .overlay {
  padding: 1.5rem 1.8rem;
  background: linear-gradient(transparent, rgba(8,12,20,.9));
}
.project-grid .project-card:first-child .overlay h3 {
  font-size: 1.35rem;
}
.project-grid .project-card:first-child .overlay p {
  font-size: 1rem;
  max-width: 50ch;
}
.project-card .overlay h3 { color: #fff; margin: .25rem 0 }
.project-card .overlay p { color: #d5dbe6; margin: 0; font-size: .92rem }
.project-card .project-more {
  display: inline-block; margin-top: .55rem; font-size: .86rem; font-weight: 700; color: #fff
}

/* marquee vendors */
.logo-marquee {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg2); padding: 1.15rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent)
}
.logo-track {
  display: flex; align-items: center; gap: 3.2rem; width: max-content;
  animation: logo-scroll 28s linear infinite
}
.logo-track img {
  height: 44px; width: auto; max-width: 180px; object-fit: contain; flex: 0 0 auto; opacity: .9; pointer-events: none
}
@keyframes logo-scroll {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: 1.5rem 2rem; padding: 0 1rem }
  .logo-marquee { -webkit-mask-image: none; mask-image: none }
}

/* quote / testimonial */
.quote {
  border: 0; padding: 1.5rem 1.35rem; margin: 0; color: var(--muted);
  position: relative; overflow: hidden
}
.quote::before {
  content: '"';
  position: absolute;
  top: -0.1rem;
  left: 0.8rem;
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--brand-soft);
  opacity: 0.6;
  font-family: Georgia, serif;
  pointer-events: none;
  z-index: 0;
}
.quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 0.5rem;
}
.quote-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}
.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.quote-meta strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}
.quote-meta span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .02em;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.quote-avatar[data-tone="a"] { background: #eaf1ff; color: #0b5fff }
.quote-avatar[data-tone="b"] { background: #ecfdf3; color: #027a48 }
.quote-avatar[data-tone="c"] { background: #fff4e6; color: #b54708 }
.quote-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.35rem;
}
.quote cite {
  display: none;
}

/* cta */
.cta {
  background:
    radial-gradient(600px 220px at 90% 0%, rgba(47,123,255,.18), transparent 60%),
    var(--ink);
  color: #fff;
  border-radius: calc(var(--r2) + 6px);
  padding: 2rem 2.1rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow)
}
.cta h2 { color: #fff; margin: 0 }
.cta p { margin: .35rem 0 0; color: #c7cfdb }
.cta .btn-ghost, .cta .btn-ghost:visited {
  background: transparent; border-color: rgba(255,255,255,.28); color: #fff
}
.cta .btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff }

/* page hero inner */
.page-hero { padding: 7.25rem 0 1rem }
.page-hero p { color: var(--muted); max-width: 56ch; font-size: 1.05rem }

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--brand);
  text-decoration: none;
}
.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  flex-shrink: 0;
}
.breadcrumb span {
  color: var(--ink);
  font-weight: 600;
}

/* tables product specs */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg2); box-shadow: 0 8px 24px rgba(15,23,42,.04)
}
table { width: 100%; border-collapse: collapse; min-width: 520px }
th, td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top }
th { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; background: #fafbfc }
td { font-size: .95rem }
tr:last-child td { border-bottom: 0 }

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem }
.tabs button {
  border: 1px solid var(--line); background: #fff; color: var(--muted);
  border-radius: 999px; padding: .55rem 1rem; font-weight: 700; cursor: pointer; font-family: inherit
}
.tabs button[aria-selected="true"] {
  color: #fff; background: var(--ink); border-color: var(--ink)
}

/* forms */
fieldset {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.3rem 0.5rem;
  margin: 0 0 1.2rem;
  background: var(--bg);
}
fieldset legend {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
fieldset legend svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}
label { display: block; font-size: .85rem; font-weight: 700; margin: 0 0 .35rem }
.field { margin-bottom: .9rem }
.field-icon {
  position: relative;
}
.field-icon svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.field-icon input,
.field-icon select {
  padding-left: 2.8rem;
}
input, select, textarea {
  width: 100%; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); padding: .85rem .95rem; font: inherit
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(11,95,255,.25); border-color: var(--brand2)
}
.form-note { color: var(--muted); font-size: .85rem; margin-top: .6rem }
.req { color: var(--brand) }

/* form step indicator */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem;
  gap: 0;
}
.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.form-step.active,
.form-step.completed {
  opacity: 1;
}
.form-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-step.active .form-step-circle {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11,95,255,0.3);
}
.form-step.completed .form-step-circle {
  background: #10b981;
  color: #fff;
}
.form-step span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
.form-step.active span {
  color: var(--ink);
}
.form-step-line {
  width: 60px;
  height: 2px;
  background: var(--line);
  margin: 0 0.5rem 1.5rem;
}

/* form navigation */
.form-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.form-nav .btn {
  flex: 1;
  min-width: 0;
}
.form-nav .btn:only-child {
  margin-left: auto;
}

details {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.1rem; margin-bottom: .65rem
}
summary { cursor: pointer; font-weight: 700 }
details p { color: var(--muted); margin: .65rem 0 0 }

.contact-list { list-style: none; margin: 0; padding: 0 }
.contact-list li {
  padding: .9rem 0; border-bottom: 1px solid var(--line); display: grid; gap: .15rem
}
.contact-list strong {
  font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em
}
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: .6rem 0 0 }
.chips span {
  border: 1px solid var(--line); border-radius: 999px; padding: .25rem .65rem;
  font-size: .78rem; color: var(--muted); background: #fff
}

/* footer */
.site-footer {
  margin-top: 1rem; background: #070b14; color: #d5dbe6; padding: 3rem 0 1.5rem
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1.5rem }
.site-footer h4 {
  margin: 0 0 .75rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #8b95a7
}
.site-footer p { color: #a5b0c2; margin: .55rem 0 0 }
.site-footer ul { list-style: none; margin: 0; padding: 0 }
.site-footer li { margin: .4rem 0 }
.site-footer a { color: #eef2f7; text-decoration: none }
.site-footer a:hover { color: #fff }
.site-footer .brand { color: #fff }
.site-footer .brand small { color: #8b95a7 }
.site-footer .brand img {
  filter: brightness(0) invert(1);
  opacity: .96;
}
.foot-copy {
  margin-top: 2rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.08);
  color: #8b95a7; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  justify-content: space-between
}

/* trust line under hero */
.trust-line {
  display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; align-items: center;
  color: var(--muted); font-size: .9rem; margin-top: 1.3rem
}
.trust-line b { color: var(--ink) }

/* prevent horizontal scroll from scaled iframes / wide tables */
html, body { overflow-x: clip; max-width: 100% }

/* ===== tablet: 2-col grids, keep hero stacked only when needed ===== */
@media (max-width: 1100px) and (min-width: 701px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr) }
  .grid-4 { grid-template-columns: repeat(2, 1fr) }
  .hero { grid-template-columns: 1fr 1fr; align-items: center; gap: 1.5rem }
  .site-header { padding: 12px 40px }
  .site-header.is-scrolled { padding: 10px 28px }
  .nav-links { gap: 16px }
  .nav-links a { font-size: 13px }
  .brand span { font-size: .86rem }
}

/* ===== tablet / mobile shared ===== */
@media (max-width: 960px) {
  .wrap { width: min(100% - 1.5rem, var(--max)) }

  .hero { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }

  /* stack dense grids only on phone-ish; tablet keeps 2-col via rule above when ≥701 */
  .grid-2 { grid-template-columns: 1fr 1fr }

  /* stats-strip tetap 3 kolom horizontal */
  .stats-strip { grid-template-columns: repeat(3, 1fr) }

  /* === AMODA mobile: logo | compact CTA | hamburger; open = panel under bar === */
  .site-header {
    padding: 12px 20px;
    overflow: visible;
  }
  .site-header.is-scrolled {
    padding: 10px 16px;
  }
  .site-header .nav-shell {
    width: 100%;
    max-width: none;
    min-height: 56px;
    overflow: visible;
    /* inherit desktop tokens (transparent top / frosted scroll) — no solid invert */
  }
  .site-header.is-scrolled .nav-shell {
    border-radius: 24px;
    padding: 8px 14px;
    --nav-pad-x: 14px;
  }
  /* open merge: flat joint; shell uses same menu tokens as panel */
  .site-header .nav-shell:has(.nav-links.open):not(:has(.nav-links.closing)) {
    border-radius: 24px 24px 0 0;
    padding-bottom: 0;
    box-shadow: none;
    background: var(--nav-menu-bg);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
  }
  .site-header.nav-menu-open { pointer-events: auto }

  .nav {
    position: relative;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 42px;
    align-items: center;
  }
  .brand { min-width: 0; flex: 1 1 auto; gap: .45rem }
  .brand img { height: 22px; max-width: 108px; flex-shrink: 0 }
  .brand span { min-width: 0; font-size: .78rem; overflow: hidden; text-overflow: ellipsis }
  .brand small {
    font-size: .58rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  .nav-end {
    margin-left: 0;
    gap: 8px;
    flex-shrink: 0;
  }
  /* mobile: CTA only in open menu panel (bar title stays clean) */
  .nav-cta-bar { display: none !important }
  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: var(--nav-toggle-bg);
    color: var(--nav-text);
  }

  /* dropdown panel — same tokens as shell */
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    box-sizing: border-box;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    overflow-x: hidden;
    padding: 0 20px;
    margin: 0;
    list-style: none;
    background: var(--nav-menu-bg);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border: 0;
    border-radius: 0 0 24px 24px;
    box-shadow: none;
    pointer-events: none;
    transform: translateY(-6px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition:
      max-height .4s cubic-bezier(.33, 1, .68, 1),
      opacity .28s ease,
      transform .3s cubic-bezier(.33, 1, .68, 1),
      padding .28s ease,
      box-shadow .25s ease;
  }
  .nav-links::-webkit-scrollbar { display: none; width: 0; height: 0 }
  .site-header.is-scrolled .nav-links {
    left: calc(-1 * var(--nav-pad-x, 14px) - 1px);
    right: calc(-1 * var(--nav-pad-x, 14px) - 1px);
    top: 100%;
  }
  .nav-links.open {
    max-height: min(80vh, 560px);
    opacity: 1;
    padding: 8px 20px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox: no bar glitch */
    -ms-overflow-style: none;
    pointer-events: auto;
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
  }
  .nav-links.open::-webkit-scrollbar { display: none; width: 0; height: 0 }
  .nav-links.closing {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(-6px);
    box-shadow: none;
  }
  .nav-links > li { width: 100% }
  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 42px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-muted);
    opacity: 0;
    transform: translateY(-6px);
    border-radius: 0;
    white-space: normal;
    transition: opacity .28s ease, transform .3s ease, color .2s ease;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    color: var(--nav-text);
  }
  .nav-links.open a { opacity: 1; transform: none }
  .nav-links.open a:nth-child(1) { transition-delay: .03s }
  .nav-links.open a:nth-child(2) { transition-delay: .05s }
  .nav-links.open a:nth-child(3) { transition-delay: .07s }
  .nav-links.open a:nth-child(4) { transition-delay: .09s }
  .nav-links.open a:nth-child(5) { transition-delay: .11s }
  .nav-links.open a:nth-child(6) { transition-delay: .13s }
  .nav-links.closing a {
    opacity: 0;
    transform: translateY(-4px);
    transition-delay: 0s;
    transition-duration: .16s;
  }
  .nav-cta-mobile {
    display: list-item;
    margin-top: 8px;
    padding-top: 8px;
  }
  .nav-cta-mobile a.btn-nav-cta {
    width: 100%;
    justify-content: center;
    height: auto;
    padding: 12px 16px;
    opacity: 1;
    transform: none;
    background: linear-gradient(180deg, var(--brand2), var(--brand));
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(11,95,255,.25);
  }

  /* konten longgar dari navbar fixed (mobile: not too low) */
  .hero { padding-top: 6.25rem }
  .page-hero { padding-top: 6.25rem }

  /* === Tipografi === */
  h1 { font-size: clamp(1.75rem, 7vw, 2.35rem) }
  h2 { font-size: clamp(1.3rem, 5vw, 1.75rem) }
  h3 { font-size: 1.05rem }
  p, li, td, label { font-size: .95rem }
  .lead { font-size: .97rem; max-width: none; margin-bottom: 1rem }
  .eyebrow { font-size: .7rem }

  /* === Spacing (keep top clear for fixed overlay nav) === */
  section { padding: 2.2rem 0 }
  .page-hero { padding: 6.25rem 0 .5rem }
  .page-hero h1 { margin-bottom: .5rem }
  .page-hero p { font-size: .95rem; max-width: none }
  .breadcrumb { font-size: 0.82rem; margin-bottom: 0.6rem; }

  /* === Hero === */
  .hero { padding: 6.25rem 0 1rem; gap: 1.1rem; align-items: stretch }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    width: 100%;
    margin-top: .15rem;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    padding: .7rem .85rem;
    font-size: .85rem;
  }
  .hero-media { min-height: 0; border-radius: 18px; aspect-ratio: 16 / 9 }
  .hero-video iframe { transform: translate(-50%, -50%) scale(1.35) }

  /* === Buttons === */
  .btn { padding: .72rem 1.1rem; font-size: .9rem }
  .btn-lg { padding: .8rem 1.15rem; font-size: .9rem }

  /* === Stats strip === */
  .stats-strip, .stat-grid { gap: .65rem }
  .stat-card, .stat { padding: 1rem .85rem; min-height: 5rem }
  .stat-card strong, .stat strong { font-size: 1.45rem }
  .stat-card span, .stat span { font-size: .82rem }

  /* === Section rows === */
  .section-head { margin-bottom: 1.2rem }
  .section-head p { font-size: .95rem }
  .section-row { flex-direction: column; align-items: stretch; gap: .65rem; margin-bottom: 1.1rem }
  .section-row .btn { width: 100%; justify-content: center }

  /* === Cards & grids === */
  .grid-3, .grid-2, .grid-4 { gap: .75rem }
  .card { padding: 1rem 1.05rem }
  .card h3 { font-size: 1rem; margin-bottom: .3rem }
  .card p { font-size: .9rem }
  .card .num { width: 2rem; height: 2rem; font-size: .8rem; margin-bottom: .6rem }

  /* === Product cards === */
  .product-card .thumb { padding: .2rem }
  .product-card .thumb img { width: 100%; max-height: 100% }
  .product-card .body { padding: .95rem 1rem 1.05rem; gap: .35rem }
  .product-card p { font-size: .9rem }
  .product-card a.more { font-size: .88rem }

  /* === Step cards === */
  .step-card { padding: 1rem }
  .step-card .step-no { font-size: 2.2rem; margin-bottom: .3rem }
  .step-card h3 { font-size: 1rem }
  .step-card p { font-size: .9rem }

  /* === Band (jaminan) === */
  .band { padding: 1.25rem; border-radius: 20px }
  .band h2 { font-size: clamp(1.2rem, 4.5vw, 1.6rem) }
  .band p { font-size: .9rem }
  .band .grid-3 { gap: .65rem }
  .trust-badges { grid-template-columns: 1fr; gap: .55rem }
  .trust-badge { padding: .7rem .8rem }
  .trust-badge-mark { width: 42px; height: 42px }
  .trust-badge-icon { width: 22px; height: 22px }
  .trust-badge-body strong { font-size: .86rem }
  .trust-badge-body small { font-size: .74rem }

  /* === Project cards === */
  .project-grid { grid-template-columns: 1fr; }
  .project-grid .project-card:first-child { grid-column: 1; min-height: 240px; }
  .project-grid .project-card:first-child img { min-height: 240px; }
  .project-card { min-height: 210px }
  .project-card img { min-height: 210px }
  .project-card .overlay { padding: .85rem 1rem }
  .project-card .overlay h3 { font-size: .98rem }
  .project-card .overlay p { font-size: .85rem }

  /* === Vendor marquee === */
  .logo-marquee { border-radius: 18px; padding: .9rem 0 }
  .logo-track { gap: 2rem }
  .logo-track img { height: 34px; max-width: 130px }

  /* === Testimonial === */
  .quote { font-size: .92rem }
  .quote cite { font-size: .88rem }

  /* === CTA band === */
  .cta {
    padding: 1.25rem 1.1rem;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: .9rem;
  }
  .cta h2 { font-size: clamp(1.15rem, 4.5vw, 1.5rem); margin-bottom: .35rem }
  .cta p { font-size: .9rem; margin-top: .25rem }
  .cta .hero-actions { width: 100% }

  /* === Tables: stack as key-value on mobile === */
  .table-wrap {
    margin-inline: 0;
    border-radius: 14px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  table { min-width: 0; width: 100%; border-collapse: collapse }
  table tbody, table tr, table th, table td { display: block; width: 100% }
  table tr {
    border-bottom: 1px solid var(--line);
    padding: .75rem .9rem;
  }
  table tr:last-child { border-bottom: 0 }
  table th {
    font-size: .72rem;
    padding: 0 0 .2rem;
    background: transparent;
    border: 0;
    color: var(--muted);
  }
  table td {
    font-size: .9rem;
    padding: 0;
    border: 0;
  }

  /* === Tabs (proyek filter) === */
  .tabs { gap: .35rem; margin-bottom: .85rem }
  .tabs button { padding: .45rem .8rem; font-size: .82rem }

  /* === Form === */
  input, select, textarea { padding: .78rem .9rem; font-size: .93rem }
  label { font-size: .82rem }
  .field { margin-bottom: .75rem }
  .form-note { font-size: .8rem }
  .form-steps { margin-bottom: 1.5rem; }
  .form-step span { font-size: 0.7rem; }
  .form-step-circle { width: 36px; height: 36px; font-size: 0.9rem; }
  .form-step-line { width: 40px; }
  .form-nav { gap: 0.5rem; }
  fieldset { padding: 1rem; margin-bottom: 1rem; }
  fieldset legend { font-size: 0.8rem; }
  .field-icon svg { width: 16px; height: 16px; left: 0.85rem; }
  .field-icon input,
  .field-icon select { padding-left: 2.5rem; }

  /* === FAQ details === */
  details { padding: .8rem .9rem; border-radius: 12px; margin-bottom: .5rem }
  summary { font-size: .95rem }
  details p { font-size: .9rem; margin-top: .5rem }

  /* === Contact list === */
  .contact-list li { padding: .75rem 0; font-size: .92rem }
  .contact-list strong { font-size: .72rem }

  /* === Chips === */
  .chips { gap: .35rem; margin-top: .5rem }
  .chips span { font-size: .75rem; padding: .22rem .55rem }

  /* === Footer === */
  .footer-grid { gap: 1.1rem }
  .site-footer { padding: 2rem 0 1.2rem }
  .site-footer h4 { font-size: .72rem; margin-bottom: .6rem }
  .site-footer p { font-size: .88rem }
  .site-footer li { margin: .3rem 0 }
  .site-footer a { font-size: .88rem }
  .site-footer .brand img { height: 34px; max-width: 110px }
  .foot-copy { flex-direction: column; gap: .3rem; font-size: .78rem; margin-top: 1.4rem; padding-top: .9rem }

  /* === Float WhatsApp button === */
  .float-wa {
    right: max(.75rem, env(safe-area-inset-right));
    bottom: max(.75rem, env(safe-area-inset-bottom));
    width: 50px; height: 50px;
  }
}

/* ===== small phones (≤560px) ===== */
@media (max-width: 700px) {
  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid { grid-template-columns: 1fr }
  .hero { grid-template-columns: 1fr }
  section.section-tight { padding: 1rem 0 }
}




/* steps */
.step-card {
  background: var(--bg2); border: 1px solid var(--line); border-radius: var(--r2);
  padding: 1.35rem; position: relative; overflow: hidden; min-height: 100%
}
.step-card .step-no {
  font-size: 3rem; font-weight: 800; letter-spacing: -.04em; color: var(--brand);
  line-height: 1; margin-bottom: .4rem;
  opacity: .9
}
.step-card h3 { margin-top: 0 }
.step-card p { color: var(--muted); margin: 0 }
.step-card img {
  width: 72px; height: 72px; object-fit: contain; margin-bottom: .8rem
}

/* portfolio */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.project-grid .project-card:first-child {
  grid-column: 1 / -1;
  min-height: 360px;
}
.project-grid .project-card:first-child img {
  min-height: 360px;
}
.project-card {
  position: relative; border-radius: var(--r2); overflow: hidden; min-height: 280px;
  box-shadow: var(--shadow); background: #e8eef7;
  display: block; color: inherit; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease
}
.project-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 18px 40px rgba(15,23,42,.14) }
.project-card:focus-visible { outline: 3px solid rgba(11,95,255,.55); outline-offset: 3px }
.project-card img {
  width: 100%; height: 100%; object-fit: cover; min-height: 280px;
  transition: transform .35s ease; aspect-ratio: 16 / 10; margin: 0; border-radius: 0;
  background: #e8eef7; display: block
}
.project-card:hover img { transform: scale(1.04) }
.project-list-card {
  display: block; color: inherit; text-decoration: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease
}
.project-list-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow) }
.project-list-card:focus-visible { outline: 3px solid rgba(11,95,255,.55); outline-offset: 3px }
.project-list-card img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: #e8eef7;
  border-radius: 12px; margin: 0 0 .75rem
}
.project-card .overlay {
  position: absolute; inset: auto 0 0 0; padding: 1.15rem 1.2rem;
  background: linear-gradient(transparent, rgba(8,12,20,.85)); color: #fff
}
.project-grid .project-card:first-child .overlay {
  padding: 1.5rem 1.8rem;
  background: linear-gradient(transparent, rgba(8,12,20,.9));
}
.project-grid .project-card:first-child .overlay h3 {
  font-size: 1.35rem;
}
.project-grid .project-card:first-child .overlay p {
  font-size: 1rem;
  max-width: 50ch;
}
.project-card .overlay h3 { color: #fff; margin: .25rem 0 }
.project-card .overlay p { color: #d5dbe6; margin: 0; font-size: .92rem }
.project-card .project-more {
  display: inline-block; margin-top: .55rem; font-size: .86rem; font-weight: 700; color: #fff
}

/* marquee vendors */
.logo-marquee {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg2); padding: 1.15rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent)
}
.logo-track {
  display: flex; align-items: center; gap: 3.2rem; width: max-content;
  animation: logo-scroll 28s linear infinite
}
.logo-track img {
  height: 44px; width: auto; max-width: 180px; object-fit: contain; flex: 0 0 auto; opacity: .9; pointer-events: none
}
@keyframes logo-scroll {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; gap: 1.5rem 2rem; padding: 0 1rem }
  .logo-marquee { -webkit-mask-image: none; mask-image: none }
}

/* quote / testimonial */
.quote {
  border: 0; padding: 1.5rem 1.35rem; margin: 0; color: var(--muted);
  position: relative; overflow: hidden
}
.quote::before {
  content: '"';
  position: absolute;
  top: -0.1rem;
  left: 0.8rem;
  font-size: 6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--brand-soft);
  opacity: 0.6;
  font-family: Georgia, serif;
  pointer-events: none;
  z-index: 0;
}
.quote blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-top: 0.5rem;
}
.quote-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}
.quote-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.quote-meta strong {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.2;
}
.quote-meta span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .02em;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.quote-avatar[data-tone="a"] { background: #eaf1ff; color: #0b5fff }
.quote-avatar[data-tone="b"] { background: #ecfdf3; color: #027a48 }
.quote-avatar[data-tone="c"] { background: #fff4e6; color: #b54708 }
.quote-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.35rem;
}
.quote cite {
  display: none;
}

/* cta */
.cta {
  background:
    radial-gradient(600px 220px at 90% 0%, rgba(47,123,255,.18), transparent 60%),
    var(--ink);
  color: #fff;
  border-radius: calc(var(--r2) + 6px);
  padding: 2rem 2.1rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow)
}
.cta h2 { color: #fff; margin: 0 }
.cta p { margin: .35rem 0 0; color: #c7cfdb }
.cta .btn-ghost, .cta .btn-ghost:visited {
  background: transparent; border-color: rgba(255,255,255,.28); color: #fff
}
.cta .btn-ghost:hover { background: rgba(255,255,255,.08); color: #fff }

/* page hero inner */
.page-hero { padding: 7.25rem 0 1rem }
.page-hero p { color: var(--muted); max-width: 56ch; font-size: 1.05rem }

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--brand);
  text-decoration: none;
}
.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--muted);
  flex-shrink: 0;
}
.breadcrumb span {
  color: var(--ink);
  font-weight: 600;
}

/* tables product specs */
.table-wrap {
  overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg2); box-shadow: 0 8px 24px rgba(15,23,42,.04)
}
table { width: 100%; border-collapse: collapse; min-width: 520px }
th, td { padding: .8rem 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top }
th { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; font-weight: 700; background: #fafbfc }
td { font-size: .95rem }
tr:last-child td { border-bottom: 0 }

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem }
.tabs button {
  border: 1px solid var(--line); background: #fff; color: var(--muted);
  border-radius: 999px; padding: .55rem 1rem; font-weight: 700; cursor: pointer; font-family: inherit
}
.tabs button[aria-selected="true"] {
  color: #fff; background: var(--ink); border-color: var(--ink)
}

/* forms */
fieldset {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.2rem 1.3rem 0.5rem;
  margin: 0 0 1.2rem;
  background: var(--bg);
}
fieldset legend {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
fieldset legend svg {
  width: 16px;
  height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}
label { display: block; font-size: .85rem; font-weight: 700; margin: 0 0 .35rem }
.field { margin-bottom: .9rem }
.field-icon {
  position: relative;
}
.field-icon svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.field-icon input,
.field-icon select {
  padding-left: 2.8rem;
}
input, select, textarea {
  width: 100%; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); padding: .85rem .95rem; font: inherit
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(11,95,255,.25); border-color: var(--brand2)
}
.form-note { color: var(--muted); font-size: .85rem; margin-top: .6rem }
.req { color: var(--brand) }

/* form step indicator */
.form-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 2rem;
  gap: 0;
}
.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  opacity: 0.4;
  transition: opacity 0.3s;
}
.form-step.active,
.form-step.completed {
  opacity: 1;
}
.form-step-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--line);
  color: var(--muted);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-step.active .form-step-circle {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(11,95,255,0.3);
}
.form-step.completed .form-step-circle {
  background: #10b981;
  color: #fff;
}
.form-step span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
.form-step.active span {
  color: var(--ink);
}
.form-step-line {
  width: 60px;
  height: 2px;
  background: var(--line);
  margin: 0 0.5rem 1.5rem;
}

/* form navigation */
.form-nav {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.form-nav .btn {
  flex: 1;
  min-width: 0;
}
.form-nav .btn:only-child {
  margin-left: auto;
}

details {
  background: var(--bg2); border: 1px solid var(--line); border-radius: 14px;
  padding: 1rem 1.1rem; margin-bottom: .65rem
}
summary { cursor: pointer; font-weight: 700 }
details p { color: var(--muted); margin: .65rem 0 0 }

.contact-list { list-style: none; margin: 0; padding: 0 }
.contact-list li {
  padding: .9rem 0; border-bottom: 1px solid var(--line); display: grid; gap: .15rem
}
.contact-list strong {
  font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em
}
.chips { display: flex; flex-wrap: wrap; gap: .4rem; margin: .6rem 0 0 }
.chips span {
  border: 1px solid var(--line); border-radius: 999px; padding: .25rem .65rem;
  font-size: .78rem; color: var(--muted); background: #fff
}

/* footer */
.site-footer {
  margin-top: 1rem; background: #070b14; color: #d5dbe6; padding: 3rem 0 1.5rem
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 1.5rem }
.site-footer h4 {
  margin: 0 0 .75rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #8b95a7
}
.site-footer p { color: #a5b0c2; margin: .55rem 0 0 }
.site-footer ul { list-style: none; margin: 0; padding: 0 }
.site-footer li { margin: .4rem 0 }
.site-footer a { color: #eef2f7; text-decoration: none }
.site-footer a:hover { color: #fff }
.site-footer .brand { color: #fff }
.site-footer .brand small { color: #8b95a7 }
.site-footer .brand img {
  filter: brightness(0) invert(1);
  opacity: .96;
}
.foot-copy {
  margin-top: 2rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.08);
  color: #8b95a7; font-size: .85rem; display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  justify-content: space-between
}

/* trust line under hero */
.trust-line {
  display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; align-items: center;
  color: var(--muted); font-size: .9rem; margin-top: 1.3rem
}
.trust-line b { color: var(--ink) }

/* prevent horizontal scroll from scaled iframes / wide tables */
html, body { overflow-x: clip; max-width: 100% }

/* ===== tablet: 2-col grids, keep hero stacked only when needed ===== */
@media (max-width: 1100px) and (min-width: 701px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr) }
  .grid-4 { grid-template-columns: repeat(2, 1fr) }
  .hero { grid-template-columns: 1fr 1fr; align-items: center; gap: 1.5rem }
  .site-header { padding: 12px 40px }
  .site-header.is-scrolled { padding: 10px 28px }
  .nav-links { gap: 16px }
  .nav-links a { font-size: 13px }
  .brand span { font-size: .86rem }
}

/* ===== tablet / mobile shared ===== */
@media (max-width: 960px) {
  .wrap { width: min(100% - 1.5rem, var(--max)) }

  .hero { grid-template-columns: 1fr }
  .footer-grid { grid-template-columns: 1fr }

  /* stack dense grids only on phone-ish; tablet keeps 2-col via rule above when ≥701 */
  .grid-2 { grid-template-columns: 1fr 1fr }

  /* stats-strip tetap 3 kolom horizontal */
  .stats-strip { grid-template-columns: repeat(3, 1fr) }

  /* === AMODA mobile: logo | compact CTA | hamburger; open = panel under bar === */
  .site-header {
    padding: 12px 20px;
    overflow: visible;
  }
  .site-header.is-scrolled {
    padding: 10px 16px;
  }
  .site-header .nav-shell {
    width: 100%;
    max-width: none;
    min-height: 56px;
    overflow: visible;
    /* inherit desktop tokens (transparent top / frosted scroll) — no solid invert */
  }
  .site-header.is-scrolled .nav-shell {
    border-radius: 24px;
    padding: 8px 14px;
    --nav-pad-x: 14px;
  }
  /* open merge: flat joint; shell uses same menu tokens as panel */
  .site-header .nav-shell:has(.nav-links.open):not(:has(.nav-links.closing)) {
    border-radius: 24px 24px 0 0;
    padding-bottom: 0;
    box-shadow: none;
    background: var(--nav-menu-bg);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
  }
  .site-header.nav-menu-open { pointer-events: auto }

  .nav {
    position: relative;
    flex-wrap: nowrap;
    gap: 10px;
    min-height: 42px;
    align-items: center;
  }
  .brand { min-width: 0; flex: 1 1 auto; gap: .45rem }
  .brand img { height: 22px; max-width: 108px; flex-shrink: 0 }
  .brand span { min-width: 0; font-size: .78rem; overflow: hidden; text-overflow: ellipsis }
  .brand small {
    font-size: .58rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }

  .nav-end {
    margin-left: 0;
    gap: 8px;
    flex-shrink: 0;
  }
  /* mobile: CTA only in open menu panel (bar title stays clean) */
  .nav-cta-bar { display: none !important }
  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: var(--nav-toggle-bg);
    color: var(--nav-text);
  }

  /* dropdown panel — same tokens as shell */
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 60;
    box-sizing: border-box;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    overflow-x: hidden;
    padding: 0 20px;
    margin: 0;
    list-style: none;
    background: var(--nav-menu-bg);
    backdrop-filter: saturate(160%) blur(20px);
    -webkit-backdrop-filter: saturate(160%) blur(20px);
    border: 0;
    border-radius: 0 0 24px 24px;
    box-shadow: none;
    pointer-events: none;
    transform: translateY(-6px);
    scrollbar-width: none;
    -ms-overflow-style: none;
    transition:
      max-height .4s cubic-bezier(.33, 1, .68, 1),
      opacity .28s ease,
      transform .3s cubic-bezier(.33, 1, .68, 1),
      padding .28s ease,
      box-shadow .25s ease;
  }
  .nav-links::-webkit-scrollbar { display: none; width: 0; height: 0 }
  .site-header.is-scrolled .nav-links {
    left: calc(-1 * var(--nav-pad-x, 14px) - 1px);
    right: calc(-1 * var(--nav-pad-x, 14px) - 1px);
    top: 100%;
  }
  .nav-links.open {
    max-height: min(80vh, 560px);
    opacity: 1;
    padding: 8px 20px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox: no bar glitch */
    -ms-overflow-style: none;
    pointer-events: auto;
    transform: translateY(0);
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
  }
  .nav-links.open::-webkit-scrollbar { display: none; width: 0; height: 0 }
  .nav-links.closing {
    max-height: 0;
    opacity: 0;
    padding: 0 20px;
    pointer-events: none;
    transform: translateY(-6px);
    box-shadow: none;
  }
  .nav-links > li { width: 100% }
  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 42px;
    padding: 0 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--nav-muted);
    opacity: 0;
    transform: translateY(-6px);
    border-radius: 0;
    white-space: normal;
    transition: opacity .28s ease, transform .3s ease, color .2s ease;
  }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] {
    color: var(--nav-text);
  }
  .nav-links.open a { opacity: 1; transform: none }
  .nav-links.open a:nth-child(1) { transition-delay: .03s }
  .nav-links.open a:nth-child(2) { transition-delay: .05s }
  .nav-links.open a:nth-child(3) { transition-delay: .07s }
  .nav-links.open a:nth-child(4) { transition-delay: .09s }
  .nav-links.open a:nth-child(5) { transition-delay: .11s }
  .nav-links.open a:nth-child(6) { transition-delay: .13s }
  .nav-links.closing a {
    opacity: 0;
    transform: translateY(-4px);
    transition-delay: 0s;
    transition-duration: .16s;
  }
  .nav-cta-mobile {
    display: list-item;
    margin-top: 8px;
    padding-top: 8px;
  }
  .nav-cta-mobile a.btn-nav-cta {
    width: 100%;
    justify-content: center;
    height: auto;
    padding: 12px 16px;
    opacity: 1;
    transform: none;
    background: linear-gradient(180deg, var(--brand2), var(--brand));
    color: #fff !important;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(11,95,255,.25);
  }

  /* konten longgar dari navbar fixed (mobile: not too low) */
  .hero { padding-top: 6.25rem }
  .page-hero { padding-top: 6.25rem }

  /* === Tipografi === */
  h1 { font-size: clamp(1.75rem, 7vw, 2.35rem) }
  h2 { font-size: clamp(1.3rem, 5vw, 1.75rem) }
  h3 { font-size: 1.05rem }
  p, li, td, label { font-size: .95rem }
  .lead { font-size: .97rem; max-width: none; margin-bottom: 1rem }
  .eyebrow { font-size: .7rem }

  /* === Spacing (keep top clear for fixed overlay nav) === */
  section { padding: 2.2rem 0 }
  .page-hero { padding: 6.25rem 0 .5rem }
  .page-hero h1 { margin-bottom: .5rem }
  .page-hero p { font-size: .95rem; max-width: none }
  .breadcrumb { font-size: 0.82rem; margin-bottom: 0.6rem; }

  /* === Hero === */
  .hero { padding: 6.25rem 0 1rem; gap: 1.1rem; align-items: stretch }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    width: 100%;
    margin-top: .15rem;
  }
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    padding: .7rem .85rem;
    font-size: .85rem;
  }
  .hero-media { min-height: 0; border-radius: 18px; aspect-ratio: 16 / 9 }
  .hero-video iframe { transform: translate(-50%, -50%) scale(1.35) }

  /* === Buttons === */
  .btn { padding: .72rem 1.1rem; font-size: .9rem }
  .btn-lg { padding: .8rem 1.15rem; font-size: .9rem }

  /* === Stats strip === */
  .stats-strip, .stat-grid { gap: .65rem }
  .stat-card, .stat { padding: 1rem .85rem; min-height: 5rem }
  .stat-card strong, .stat strong { font-size: 1.45rem }
  .stat-card span, .stat span { font-size: .82rem }

  /* === Section rows === */
  .section-head { margin-bottom: 1.2rem }
  .section-head p { font-size: .95rem }
  .section-row { flex-direction: column; align-items: stretch; gap: .65rem; margin-bottom: 1.1rem }
  .section-row .btn { width: 100%; justify-content: center }

  /* === Cards & grids === */
  .grid-3, .grid-2, .grid-4 { gap: .75rem }
  .card { padding: 1rem 1.05rem }
  .card h3 { font-size: 1rem; margin-bottom: .3rem }
  .card p { font-size: .9rem }
  .card .num { width: 2rem; height: 2rem; font-size: .8rem; margin-bottom: .6rem }

  /* === Product cards === */
  .product-card .thumb { padding: .2rem }
  .product-card .thumb img { width: 100%; max-height: 100% }
  .product-card .body { padding: .95rem 1rem 1.05rem; gap: .35rem }
  .product-card p { font-size: .9rem }
  .product-card a.more { font-size: .88rem }

  /* === Step cards === */
  .step-card { padding: 1rem }
  .step-card .step-no { font-size: 2.2rem; margin-bottom: .3rem }
  .step-card h3 { font-size: 1rem }
  .step-card p { font-size: .9rem }

  /* === Band (jaminan) === */
  .band { padding: 1.25rem; border-radius: 20px }
  .band h2 { font-size: clamp(1.2rem, 4.5vw, 1.6rem) }
  .band p { font-size: .9rem }
  .band .grid-3 { gap: .65rem }
  .trust-badges { grid-template-columns: 1fr; gap: .55rem }
  .trust-badge { padding: .7rem .8rem }
  .trust-badge-mark { width: 42px; height: 42px }
  .trust-badge-icon { width: 22px; height: 22px }
  .trust-badge-body strong { font-size: .86rem }
  .trust-badge-body small { font-size: .74rem }

  /* === Project cards === */
  .project-grid { grid-template-columns: 1fr; }
  .project-grid .project-card:first-child { grid-column: 1; min-height: 240px; }
  .project-grid .project-card:first-child img { min-height: 240px; }
  .project-card { min-height: 210px }
  .project-card img { min-height: 210px }
  .project-card .overlay { padding: .85rem 1rem }
  .project-card .overlay h3 { font-size: .98rem }
  .project-card .overlay p { font-size: .85rem }

  /* === Vendor marquee === */
  .logo-marquee { border-radius: 18px; padding: .9rem 0 }
  .logo-track { gap: 2rem }
  .logo-track img { height: 34px; max-width: 130px }

  /* === Testimonial === */
  .quote { font-size: .92rem }
  .quote cite { font-size: .88rem }

  /* === CTA band === */
  .cta {
    padding: 1.25rem 1.1rem;
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: .9rem;
  }
  .cta h2 { font-size: clamp(1.15rem, 4.5vw, 1.5rem); margin-bottom: .35rem }
  .cta p { font-size: .9rem; margin-top: .25rem }
  .cta .hero-actions { width: 100% }

  /* === Tables: stack as key-value on mobile === */
  .table-wrap {
    margin-inline: 0;
    border-radius: 14px;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }
  table { min-width: 0; width: 100%; border-collapse: collapse }
  table tbody, table tr, table th, table td { display: block; width: 100% }
  table tr {
    border-bottom: 1px solid var(--line);
    padding: .75rem .9rem;
  }
  table tr:last-child { border-bottom: 0 }
  table th {
    font-size: .72rem;
    padding: 0 0 .2rem;
    background: transparent;
    border: 0;
    color: var(--muted);
  }
  table td {
    font-size: .9rem;
    padding: 0;
    border: 0;
  }

  /* === Tabs (proyek filter) === */
  .tabs { gap: .35rem; margin-bottom: .85rem }
  .tabs button { padding: .45rem .8rem; font-size: .82rem }

  /* === Form === */
  input, select, textarea { padding: .78rem .9rem; font-size: .93rem }
  label { font-size: .82rem }
  .field { margin-bottom: .75rem }
  .form-note { font-size: .8rem }
  .form-steps { margin-bottom: 1.5rem; }
  .form-step span { font-size: 0.7rem; }
  .form-step-circle { width: 36px; height: 36px; font-size: 0.9rem; }
  .form-step-line { width: 40px; }
  .form-nav { gap: 0.5rem; }
  fieldset { padding: 1rem; margin-bottom: 1rem; }
  fieldset legend { font-size: 0.8rem; }
  .field-icon svg { width: 16px; height: 16px; left: 0.85rem; }
  .field-icon input,
  .field-icon select { padding-left: 2.5rem; }

  /* === FAQ details === */
  details { padding: .8rem .9rem; border-radius: 12px; margin-bottom: .5rem }
  summary { font-size: .95rem }
  details p { font-size: .9rem; margin-top: .5rem }

  /* === Contact list === */
  .contact-list li { padding: .75rem 0; font-size: .92rem }
  .contact-list strong { font-size: .72rem }

  /* === Chips === */
  .chips { gap: .35rem; margin-top: .5rem }
  .chips span { font-size: .75rem; padding: .22rem .55rem }

  /* === Footer === */
  .footer-grid { gap: 1.1rem }
  .site-footer { padding: 2rem 0 1.2rem }
  .site-footer h4 { font-size: .72rem; margin-bottom: .6rem }
  .site-footer p { font-size: .88rem }
  .site-footer li { margin: .3rem 0 }
  .site-footer a { font-size: .88rem }
  .site-footer .brand img { height: 34px; max-width: 110px }
  .foot-copy { flex-direction: column; gap: .3rem; font-size: .78rem; margin-top: 1.4rem; padding-top: .9rem }

  /* === Float WhatsApp button === */
  .float-wa {
    right: max(.75rem, env(safe-area-inset-right));
    bottom: max(.75rem, env(safe-area-inset-bottom));
    width: 50px; height: 50px;
  }
}

/* ===== small phones (≤560px) ===== */
@media (max-width: 700px) {
  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid { grid-template-columns: 1fr }
  .hero { grid-template-columns: 1fr }
  section.section-tight { padding: 1rem 0 }
}


@media (max-width: 560px) {
  .project-gallery {
    padding-left: calc(50% - 160px);
    padding-right: calc(50% - 160px);
    scroll-snap-type: x mandatory;
    gap: .5rem;
  }
  .project-gallery-item {
    flex: 0 0 88%;
    max-width: 320px;
    scroll-snap-align: center;
  }
}



/* =============================================
   BLOG ARTICLE — Professional Layout
   ============================================= */

/* Article page root padding */
.article-page { padding-top: 5rem; padding-bottom: 3rem; }

/* Hero image banner — inside article-wrap, below the title */
.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: var(--r2);
  display: block;
  background: #e8eef7;
  margin: 1.5rem 0 2rem;
}

/* Outer shell: matches .wrap width (1180px) — no extra constraint */
.article-wrap {
  max-width: none;
  margin-inline: auto;
}

/* Prose content (p, ul, ol, h2, h3, callout) stays readable — capped at 820px */
.article-wrap > p,
.article-wrap > ul,
.article-wrap > ol,
.article-wrap > h2,
.article-wrap > h3,
.article-wrap > h4,
.article-wrap > .callout,
.article-wrap > .callout-warn,
.article-wrap > .lead,
.article-wrap > .article-actions,
.article-wrap > .article-related-heading,
.article-wrap > .article-info,
.article-wrap > .breadcrumb,
.article-wrap > nav.breadcrumb,
.article-wrap > hr.article-related-divider {
  max-width: 820px;
}

/* Article meta bar: category pill + date + read-time */
.article-info {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.article-info .blog-date {
  font-size: .85rem;
  color: var(--muted);
}

/* Article title */
.article-wrap h1 {
  font-size: clamp(1.65rem, 4vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  color: var(--ink);
  max-width: 820px;
}

/* Lead paragraph */
.article-wrap .lead {
  font-size: 1.12rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 2rem;
  max-width: 820px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

/* Body headings */
.article-wrap h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 800;
  margin: 2.5rem 0 .75rem;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.2;
}
.article-wrap h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin: 1.75rem 0 .55rem;
  color: var(--brand);
  line-height: 1.3;
}
.article-wrap h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 .4rem;
  color: var(--ink);
}

/* Body text */
.article-wrap p {
  color: #374151;
  line-height: 1.8;
  font-size: 1.02rem;
  margin: 0 0 1rem;
}
.article-wrap p + p { margin-top: -.25rem }

/* Inline links in body */
.article-wrap p a,
.article-wrap li a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article-wrap p a:hover,
.article-wrap li a:hover {
  text-decoration-thickness: 2px;
}

/* Lists */
.article-wrap ul,
.article-wrap ol {
  padding-left: 1.5rem;
  margin: .5rem 0 1rem;
}
.article-wrap li {
  color: #374151;
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: .45rem;
}

/* Callout / info box */
.callout {
  background: var(--brand-soft);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.callout p {
  margin: 0;
  color: var(--ink);
  font-size: .98rem;
}
.callout-warn {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}
.callout-warn p { margin: 0; color: #92400e; font-size: .98rem; }

/* Article-level tables (not .table-wrap) */
.article-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: .94rem;
  background: var(--bg2);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-wrap th,
.article-wrap td {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: .7rem 1rem;
  text-align: left;
  vertical-align: top;
}
.article-wrap th {
  background: #f7f8fa;
  color: var(--muted);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
}
.article-wrap tr:last-child td,
.article-wrap tr:last-child th { border-bottom: 0 }
.article-wrap tr:nth-child(even) td { background: #fafbfc }

/* CTA button row */
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 2rem 0 .5rem;
}

/* Divider before related */
.article-related-divider {
  margin: 2.5rem 0 1.5rem;
  border: 0;
  border-top: 1px solid var(--line);
}
.article-related-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 1rem;
  letter-spacing: -.01em;
}

/* Related articles grid */
.article-related {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0;
}
.article-related-card {
  display: flex;
  flex-direction: column;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--r2);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .18s, box-shadow .18s;
}
.article-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(15,23,42,.09);
  text-decoration: none;
}
.article-related-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}
.article-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.article-related-card:hover .article-related-thumb img {
  transform: scale(1.04);
}
.article-related-body {
  padding: .85rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  flex: 1;
}
.article-related-body h4 {
  font-size: .9rem;
  font-weight: 700;
  margin: 0;
  color: var(--ink);
  line-height: 1.3;
}
.article-related-body p {
  font-size: .8rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}
.article-related-body .read-more {
  font-size: .8rem;
  font-weight: 700;
  color: var(--brand);
  margin-top: auto;
}

/* EPS vs PUR verdict boxes */
.verdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
.verdict-card {
  border-radius: var(--r);
  padding: 1.2rem;
  border: 2px solid var(--line);
  background: var(--bg2);
}
.verdict-card.win {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.verdict-card h4 { margin: 0 0 .5rem; font-size: 1rem; color: var(--ink); }
.verdict-card ul { margin: 0; padding-left: 1.2rem; }
.verdict-card li { font-size: .9rem; color: #374151; margin-bottom: .3rem; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .article-page { padding-top: 4.5rem }
  .article-hero-img { aspect-ratio: 16 / 8; border-radius: 18px; margin: 1.25rem 0 1.75rem; }
  .article-wrap h1 { font-size: clamp(1.4rem, 6vw, 1.85rem); }
  .article-wrap .lead { font-size: 1rem; }
  .article-wrap h2 { font-size: clamp(1.1rem, 4.5vw, 1.35rem); margin-top: 2rem; }
  .article-wrap p, .article-wrap li { font-size: .97rem; }
  .article-related { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .verdict { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .article-page { padding-top: 4rem }
  .article-hero-img { aspect-ratio: 16 / 9; border-radius: 14px; margin: 1rem 0 1.5rem; }
  .article-wrap h1 { font-size: clamp(1.3rem, 7vw, 1.65rem); max-width: none; }
  .article-wrap .lead { font-size: .95rem; padding-bottom: 1.1rem; margin-bottom: 1.4rem; max-width: none; }
  .article-wrap h2 { font-size: 1.15rem; margin-top: 1.75rem; max-width: none; }
  .article-wrap h3 { font-size: 1rem; margin-top: 1.4rem; }
  .article-wrap p, .article-wrap li { font-size: .95rem; line-height: 1.72; max-width: none; }
  .article-wrap > p,
  .article-wrap > ul,
  .article-wrap > ol,
  .article-wrap > h2,
  .article-wrap > h3,
  .article-wrap > h4,
  .article-wrap > .callout,
  .article-wrap > .callout-warn,
  .article-wrap > .lead,
  .article-wrap > .article-actions,
  .article-wrap > .article-related-heading,
  .article-wrap > .article-info,
  .article-wrap > .breadcrumb,
  .article-wrap > nav.breadcrumb,
  .article-wrap > hr.article-related-divider,
  .article-wrap h1 { max-width: none; }
  .article-related { grid-template-columns: 1fr; }
  .article-related-card { flex-direction: row; border-radius: var(--r); }
  .article-related-thumb { aspect-ratio: 1 / 1; width: 90px; flex: 0 0 90px; }
  .article-related-body { padding: .65rem .8rem; }
  .article-related-body h4 { font-size: .85rem; }
  .verdict { grid-template-columns: 1fr; }
  .article-actions { flex-direction: column; }
  .article-actions .btn { width: 100%; justify-content: center; }
  .article-wrap table { font-size: .88rem; }
  .article-wrap th, .article-wrap td { padding: .55rem .75rem; }
  .callout, .callout-warn { padding: .85rem 1rem; }
  .callout p, .callout-warn p { font-size: .93rem; }
}
