/* ============================================================
   PT VICTORINDO KIMIATAMA — "Industrial Integrity" Design System
   Corporate / Modern with a Brutalist edge · Sharp 0px corners
   ============================================================ */

:root {
  /* Surfaces */
  --surface: #faf9f9;
  --surface-dim: #dadada;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f4f3f3;
  --surface-container: #eeeeed;
  --surface-container-high: #e9e8e8;
  --surface-container-highest: #e3e2e2;
  --surface-cream: #F9F6F1;
  --on-surface: #1a1c1c;
  --on-surface-variant: #554240;
  --inverse-surface: #2f3131;
  --inverse-on-surface: #f1f0f0;

  /* Brand */
  --primary: #210000;
  --primary-container: #4a0404;
  --brand-crimson: #9A1208;
  --brand-rust: #D63F13;
  --secondary-container: #edddc8;
  --secondary-fixed: #f0e0cb;
  --industrial-grey: #6B6B6B;
  --stroke-dark: #1A1A1A;
  --card-border: #D1D1D1;
  --outline-mid: #A3A3A3;

  /* Layout */
  --container-max: 1280px;
  --gutter: 24px;
  --margin-desktop: 48px;
  --margin-mobile: 16px;
  --section-padding: 80px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--surface);
  color: var(--on-surface);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 28px;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; border-radius: 0; }

/* ---------- Typography ---------- */
.headline-xl,
.headline-lg, .headline-md, .subhead-sm, .stat-lg {
  font-family: 'Montserrat', sans-serif;
  color: var(--on-surface);
}
.headline-xl { font-size: 56px; font-weight: 800; line-height: 64px; letter-spacing: -0.02em; }
.headline-lg { font-size: 48px; font-weight: 700; line-height: 56px; letter-spacing: -0.02em; }
.headline-md { font-size: 24px; font-weight: 700; line-height: 32px; }
.subhead-sm  { font-size: 16px; font-weight: 600; line-height: 24px; }
.body-md { font-size: 16px; font-weight: 400; line-height: 28px; }
.body-sm { font-size: 14px; font-weight: 400; line-height: 22px; }
.label-caps {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500; line-height: 16px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.stat-lg { font-size: 40px; font-weight: 700; line-height: 40px; }
.text-muted { color: var(--industrial-grey); }
.text-crimson { color: var(--brand-crimson); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--margin-desktop);
  padding-right: var(--margin-desktop);
}
.section { padding-top: var(--section-padding); padding-bottom: var(--section-padding); }
.section-cream { background: var(--surface-cream); }
.section-low { background: var(--surface-container-low); }
.section-dark { background: var(--stroke-dark); color: var(--inverse-on-surface); }
.section-dark .headline-lg, .section-dark .headline-md, .section-dark .headline-xl { color: #ffffff; }

/* Eyebrow: structural marker above section titles */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-crimson);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--brand-crimson); }
.section-dark .eyebrow { color: var(--brand-rust); }
.section-dark .eyebrow::before { background: var(--brand-rust); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head .lede { margin-top: 16px; color: var(--industrial-grey); }
.section-dark .section-head .lede { color: #b9b6b6; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 28px; border: 2px solid var(--stroke-dark);
  cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--brand-crimson); border-color: var(--brand-crimson); color: #ffffff; }
.btn-primary:hover { background: var(--brand-rust); border-color: var(--brand-rust); }
.btn-dark { background: var(--stroke-dark); color: #ffffff; }
.btn-dark:hover { background: var(--brand-crimson); border-color: var(--brand-crimson); }
.btn-outline { background: transparent; color: var(--stroke-dark); }
.btn-outline:hover { background: var(--stroke-dark); color: #ffffff; }
.btn-outline-light { background: transparent; border-color: #ffffff; color: #ffffff; }
.btn-outline-light:hover { background: #ffffff; color: var(--stroke-dark); }
.btn .arrow { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1; }

/* ---------- Top Navigation ---------- */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface);
  border-bottom: 2px solid var(--stroke-dark);
}
.topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; gap: var(--gutter);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 42px; height: 42px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: 'Montserrat', sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: 0.01em; color: var(--on-surface);
  white-space: nowrap;
}
.brand-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 9.5px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-crimson);
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  position: relative;
  font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em; color: var(--on-surface); padding: 6px 0;
  transition: color .15s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 3px; background: var(--brand-crimson); transition: width .2s ease;
}
.nav-links a:hover { color: var(--brand-crimson); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--brand-crimson); }
.nav-cta { flex-shrink: 0; }
.nav-cta .btn { padding: 12px 22px; }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--stroke-dark);
  width: 44px; height: 44px; cursor: pointer; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--stroke-dark); }
.nav-links .nav-contact { display: none; }

/* Language toggle */
.lang-toggle { display: flex; border: 1px solid var(--outline-mid); flex-shrink: 0; }
.lang-toggle a {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; padding: 7px 11px; color: var(--industrial-grey);
  transition: all .15s ease;
}
.lang-toggle a + a { border-left: 1px solid var(--outline-mid); }
.lang-toggle a:hover { color: var(--brand-crimson); }
.lang-toggle a.active { background: var(--stroke-dark); color: #ffffff; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--stroke-dark); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.hero-inner { position: relative; padding: 120px 0; max-width: 780px; }
.hero-inner .headline-xl { color: #fff; margin: 20px 0 24px; }
.hero-inner .lede { color: #d6d3d3; font-size: 18px; line-height: 30px; max-width: 620px; }
.hero-ctas { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-rust);
}
.hero-kicker::before { content: ""; width: 32px; height: 2px; background: var(--brand-rust); }

/* Page hero (interior pages) */
.page-hero { border-bottom: 2px solid var(--stroke-dark); background: var(--surface-cream); }
.page-hero-inner { padding: 72px 0; max-width: 820px; }
.page-hero-inner .lede { margin-top: 20px; color: var(--industrial-grey); font-size: 17px; line-height: 30px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center; margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--industrial-grey);
}
.breadcrumb a:hover { color: var(--brand-crimson); }
.breadcrumb .sep { color: var(--outline-mid); }
.breadcrumb .current { color: var(--brand-crimson); }

/* ---------- Stats ---------- */
.stat-band { background: var(--primary-container); color: #fff; }
.stat-band-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
/* min-width:0 wajib: tanpa ini kata panjang (mis. "Nationwide") memaksa kolom grid
   melebar melebihi layar dan memunculkan scroll horizontal di HP. */
.stat-cell { padding: 40px 32px; border-left: 1px solid rgba(255,255,255,.18); min-width: 0; }
.stat-cell .stat-lg, .stat-cell .label-caps { overflow-wrap: break-word; }
.stat-cell:first-child { border-left: none; }
.stat-cell .stat-lg { color: #fff; }
.stat-cell .label-caps { color: #e9b8b1; margin-top: 8px; display: block; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface-container-lowest);
  border: 1px solid var(--card-border);
}
.card-accent { border-left: 3px solid var(--brand-crimson); }
.card-pad { padding: 32px; }
.card:hover { border-color: var(--stroke-dark); }
.card .headline-md { margin-bottom: 12px; }

/* Sector cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gutter); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.sector-card { display: flex; flex-direction: column; background: var(--surface-container-lowest); border: 1px solid var(--card-border); transition: border-color .15s ease; }
.sector-card:hover { border-color: var(--stroke-dark); }
.sector-card .media { aspect-ratio: 16/10; overflow: hidden; border-bottom: 2px solid var(--stroke-dark); }
.sector-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.sector-card:hover .media img { transform: scale(1.04); }
.sector-card .body { padding: 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.sector-card .index {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  color: var(--brand-crimson);
}
.sector-card .desc { color: var(--industrial-grey); font-size: 14px; line-height: 24px; }
.sector-card .more { margin-top: auto; padding-top: 12px; }

/* Chips */
.chip {
  display: inline-block; padding: 4px 10px;
  border: 1px solid var(--outline-mid);
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-surface);
  background: var(--surface-container-lowest);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-crimson { border-color: var(--brand-crimson); color: var(--brand-crimson); }

/* Striped technical lists */
.spec-list { border: 1px solid var(--card-border); }
.spec-list li {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px 20px; font-size: 14px; line-height: 22px;
}
.spec-list li:nth-child(odd) { background: var(--surface-cream); }
.spec-list li .k { font-weight: 600; font-family: 'Montserrat', sans-serif; font-size: 13px; }
.spec-list li .v { font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.06em; color: var(--brand-crimson); text-align: right; }

/* ---------- Trust / logo strip ---------- */
.trust-strip { border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); background: var(--surface-container-lowest); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-cell {
  padding: 26px 16px; text-align: center;
  border-left: 1px solid var(--card-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; min-width: 0;
}
.trust-cell:first-child, .trust-cell:nth-child(5n+1) { border-left: none; }
.trust-cell img {
  max-height: 46px; max-width: 130px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .72; transition: filter .2s ease, opacity .2s ease;
}
.trust-cell:hover img { filter: grayscale(0); opacity: 1; }
.trust-cell span {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px;
  line-height: 16px; letter-spacing: 0.04em; color: var(--industrial-grey);
  text-transform: uppercase; overflow-wrap: break-word;
}
.trust-cell:nth-child(n+6) { border-top: 1px solid var(--card-border); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media { border: 2px solid var(--stroke-dark); }
.split .media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--card-border); margin-top: 8px; }
.feature-list > li { display: flex; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--card-border); }
.feature-list .num {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--brand-crimson);
  padding-top: 3px; letter-spacing: 0.08em; flex-shrink: 0;
}
.feature-list h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.feature-list p { font-size: 14px; line-height: 24px; color: var(--industrial-grey); }

/* ---------- Capacity bars ---------- */
.cap-table { display: flex; flex-direction: column; gap: 20px; }
.cap-row { display: grid; grid-template-columns: 160px 1fr 90px; align-items: center; gap: 20px; }
.cap-row .name { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 14px; }
.cap-row .track { height: 22px; background: var(--surface-container); border: 1px solid var(--card-border); position: relative; }
.cap-row .fill { position: absolute; inset: 0 auto 0 0; width: 0; background: var(--brand-crimson); transition: width 1.1s cubic-bezier(.25,.7,.3,1); }
.cap-row:nth-child(even) .fill { background: var(--primary-container); }
.cap-row .val { font-family: 'JetBrains Mono', monospace; font-size: 13px; letter-spacing: 0.05em; text-align: right; color: var(--on-surface); }

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: 24px; }
.timeline::before {
  content: ""; position: absolute; top: 0; bottom: 0; left: 19px;
  width: 2px; background: var(--surface-dim);
}
.tl-item { position: relative; padding: 0 0 40px 72px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-node {
  position: absolute; left: 8px; top: 2px;
  width: 24px; height: 24px; background: var(--surface);
  border: 2px solid var(--brand-crimson);
  display: flex; align-items: center; justify-content: center;
}
.tl-node::after { content: ""; width: 8px; height: 8px; background: var(--brand-crimson); }
.tl-year {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.1em;
  color: var(--brand-crimson); text-transform: uppercase; display: block; margin-bottom: 6px;
}
.tl-item h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.tl-item p { font-size: 14px; line-height: 24px; color: var(--industrial-grey); max-width: 560px; }
.tl-item.milestone-major .tl-node { background: var(--brand-crimson); }
.tl-item.milestone-major .tl-node::after { background: #fff; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.portfolio-item { position: relative; border: 1px solid var(--card-border); background: var(--surface-container-lowest); }
.portfolio-item:hover { border-color: var(--stroke-dark); }
.portfolio-item .media { aspect-ratio: 4/3; overflow: hidden; }
.portfolio-item .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.portfolio-item:hover .media img { transform: scale(1.05); }
.portfolio-item .caption { padding: 20px 24px 24px; border-top: 2px solid var(--stroke-dark); }
.portfolio-item .cat {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-crimson); display: block; margin-bottom: 6px;
}
.portfolio-item h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.portfolio-item p { font-size: 13.5px; line-height: 22px; color: var(--industrial-grey); }

/* ---------- Product cards ---------- */
.product-card { display: grid; grid-template-columns: 420px 1fr; border: 1px solid var(--card-border); background: var(--surface-container-lowest); }
.product-card + .product-card { margin-top: var(--gutter); }
.product-card .media { border-right: 2px solid var(--stroke-dark); overflow: hidden; min-height: 280px; }
.product-card .media img { width: 100%; height: 100%; object-fit: cover; }
.product-card .body { padding: 36px 40px; display: flex; flex-direction: column; gap: 14px; }
.product-card .brand-line { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.product-card .desc { color: var(--industrial-grey); font-size: 15px; line-height: 26px; max-width: 620px; }
.product-card .chip-row { margin-top: 4px; }

/* ---------- Equipment grid ---------- */
.equip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.equip-card { background: var(--surface-container-lowest); border: 1px solid var(--card-border); }
.equip-card .media { aspect-ratio: 1/1; background: var(--surface-container-lowest); display: flex; align-items: center; justify-content: center; padding: 20px; }
.equip-card .media img { max-height: 100%; object-fit: contain; }
.equip-card .name {
  border-top: 1px solid var(--card-border); padding: 12px 16px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-surface);
  background: var(--surface-cream);
}

/* ---------- Certifications ---------- */
.cert-card { border: 1px solid var(--card-border); border-top: 3px solid var(--brand-crimson); background: var(--surface-container-lowest); padding: 32px; }
.cert-card .cert-code { font-family: 'Montserrat', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -0.01em; }
.cert-card .cert-code small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--brand-crimson); text-transform: uppercase; margin-top: 4px; }
.cert-card h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; margin: 18px 0 8px; }
.cert-card p { font-size: 14px; line-height: 24px; color: var(--industrial-grey); }

/* ---------- Map ---------- */
.map-wrap { border: 2px solid var(--stroke-dark); background: var(--surface-container-lowest); padding: 32px; }
.map-svg { width: 100%; height: auto; display: block; }
.region-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--gutter); margin-top: 40px; }
.region-col h3 {
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700;
  padding-bottom: 10px; margin-bottom: 12px; border-bottom: 2px solid var(--brand-crimson);
}
.region-col li { font-size: 13.5px; line-height: 22px; color: var(--industrial-grey); padding: 5px 0; border-bottom: 1px solid var(--surface-container-high); }
.region-col li strong { color: var(--on-surface); font-weight: 600; }

/* ---------- Industry cards ---------- */
.industry-card { border: 1px solid var(--card-border); background: var(--surface-container-lowest); padding: 32px; display: flex; flex-direction: column; gap: 12px; transition: border-color .15s ease; }
.industry-card:hover { border-color: var(--stroke-dark); }
.industry-card .icon-box {
  width: 52px; height: 52px; border: 2px solid var(--stroke-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
  background: var(--surface-cream);
}
.industry-card .icon-box svg { width: 26px; height: 26px; stroke: var(--brand-crimson); }
.industry-card h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; }
.industry-card p { font-size: 14px; line-height: 24px; color: var(--industrial-grey); }

/* ---------- Clients ---------- */
.client-group { margin-bottom: 48px; }
.client-group:last-child { margin-bottom: 0; }
.client-group > h3 {
  font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700;
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.client-group > h3::after { content: ""; flex: 1; height: 1px; background: var(--card-border); }
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
.client-cell {
  border: 1px solid var(--card-border); background: var(--surface-container-lowest);
  padding: 26px 20px; text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; min-height: 104px;
  transition: border-color .15s ease;
}
.client-cell:hover { border-color: var(--stroke-dark); }
.client-cell .clogo {
  height: 56px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px; width: 100%;
}
.client-cell .clogo img {
  max-height: 56px; max-width: 140px; width: auto; object-fit: contain;
  filter: grayscale(1); opacity: .75; transition: filter .2s ease, opacity .2s ease;
}
.client-cell:hover .clogo img { filter: grayscale(0); opacity: 1; }
.client-cell .cname { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14.5px; line-height: 20px; color: var(--on-surface); }
.client-cell .csub { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--industrial-grey); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; }
.info-block { border: 1px solid var(--card-border); background: var(--surface-container-lowest); }
.info-row { display: flex; gap: 18px; padding: 24px 28px; border-bottom: 1px solid var(--card-border); }
.info-row:last-child { border-bottom: none; }
.info-row .ic {
  width: 44px; height: 44px; flex-shrink: 0; border: 2px solid var(--stroke-dark);
  display: flex; align-items: center; justify-content: center; background: var(--surface-cream);
}
.info-row .ic svg { width: 20px; height: 20px; stroke: var(--brand-crimson); }
.info-row h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--industrial-grey); margin-bottom: 4px; }
.info-row p, .info-row a { font-size: 15px; line-height: 25px; font-weight: 500; }
.info-row a:hover { color: var(--brand-crimson); }

.form-panel { border: 2px solid var(--stroke-dark); background: var(--surface-container-lowest); padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.form-field label .req { color: var(--brand-crimson); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--outline-mid); background: var(--surface);
  padding: 13px 14px; font-size: 14px; outline: none; width: 100%;
  font-family: 'Inter', sans-serif;
}
.form-field input::placeholder, .form-field textarea::placeholder {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--outline-mid);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--stroke-dark); border-width: 1px; box-shadow: inset 0 -2px 0 var(--brand-crimson); }
.form-field .err { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--brand-crimson); display: none; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: var(--brand-crimson); }
.form-field.invalid .err { display: block; }
.form-note { font-size: 13px; color: var(--industrial-grey); margin-top: 16px; }
.form-success {
  display: none; margin-top: 20px; border: 1px solid var(--brand-crimson);
  border-left: 3px solid var(--brand-crimson); background: var(--surface-cream);
  padding: 16px 20px; font-size: 14px;
}
.form-success.show { display: block; }
.form-error {
  display: none; margin-top: 20px; border: 1px solid #ba1a1a;
  border-left: 3px solid #ba1a1a; background: #ffdad6;
  color: #93000a; padding: 16px 20px; font-size: 14px;
}
.form-error.show { display: block; }
.map-embed { border: 2px solid var(--stroke-dark); margin-top: 0; }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; filter: grayscale(.35); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary-container); color: #fff; }
.cta-band-inner { padding: 72px 0; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { font-family: 'Montserrat', sans-serif; font-size: 34px; font-weight: 700; line-height: 42px; letter-spacing: -0.01em; color: #fff; max-width: 640px; }
.cta-band .label-caps { color: #e9b8b1; display: block; margin-bottom: 12px; }
.cta-band .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: var(--stroke-dark); color: #cfcccc; border-top: 4px solid var(--brand-crimson); }
.footer-main { display: grid; grid-template-columns: 4fr 2fr 3fr 3fr; gap: 48px; padding: 64px 0; }
.footer-brand img { width: 200px; margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; line-height: 23px; color: #a5a1a1; max-width: 300px; }
.footer h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: #ffffff; margin-bottom: 18px;
}
.footer h4::after { content: ""; display: block; width: 24px; height: 2px; background: var(--brand-rust); margin-top: 8px; }
.footer li { padding: 5px 0; }
.footer li a { font-size: 14px; color: #cfcccc; transition: color .15s ease; }
.footer li a:hover { color: #ffffff; }
.footer .faddr { font-size: 13.5px; line-height: 23px; color: #a5a1a1; }
.footer .faddr strong { color: #e6e3e3; font-weight: 600; display: block; margin-bottom: 2px; }
.footer .faddr + .faddr { margin-top: 14px; }
.footer-iso { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.footer-iso .chip { border-color: #4a4a4a; color: #cfcccc; background: transparent; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid #4a4a4a;
  display: flex; align-items: center; justify-content: center;
  color: #cfcccc; transition: all .15s ease;
}
.footer-social a:hover { background: var(--brand-crimson); border-color: var(--brand-crimson); color: #fff; }
.footer-social svg { width: 18px; height: 18px; stroke: currentColor; }
.footer-bottom { border-top: 1px solid #333; padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: #8b8888; text-transform: uppercase; }

/* ---------- Prose (CMS custom pages) ---------- */
.prose { max-width: 800px; }
.prose h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 700; line-height: 36px; margin: 40px 0 16px; }
.prose h3 { font-family: 'Montserrat', sans-serif; font-size: 21px; font-weight: 700; line-height: 29px; margin: 32px 0 12px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 0 0 16px 20px; }
.prose ul li { list-style: square; padding: 3px 0; }
.prose ol li { list-style: decimal; padding: 3px 0; }
.prose ul li::marker { color: var(--brand-crimson); }
.prose img { border: 2px solid var(--stroke-dark); margin: 24px 0; }
.prose a { color: var(--brand-crimson); font-weight: 500; border-bottom: 1px solid var(--brand-crimson); }
.prose blockquote { border-left: 3px solid var(--brand-crimson); background: var(--surface-cream); padding: 16px 20px; margin: 24px 0; }
.prose table { border-collapse: collapse; width: 100%; margin: 24px 0; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--card-border); padding: 10px 14px; text-align: left; }
.prose th { font-family: 'Montserrat', sans-serif; font-weight: 700; background: var(--surface-cream); }
.prose tr:nth-child(even) td { background: var(--surface-container-low); }

/* ---------- Utility ---------- */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; } .mt-64 { margin-top: 64px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   Responsive — Tablet (<= 1024px): 8 col | 20px gutter | 32px margins
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding-left: 32px; padding-right: 32px; }
  :root { --gutter: 20px; --section-padding: 64px; }
  .headline-xl { font-size: 42px; line-height: 50px; }
  .headline-lg { font-size: 38px; line-height: 46px; }
  /* Collapse navigation into hamburger menu */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .topnav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--surface); border-bottom: 2px solid var(--stroke-dark);
    padding: 16px 32px 24px; gap: 4px; align-items: stretch;
  }
  .topnav.open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--surface-container-high); }
  .topnav.open .nav-links .nav-contact {
    display: block; color: var(--brand-crimson); font-weight: 700; border-bottom: none;
  }
  .grid-3, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .equip-grid { grid-template-columns: repeat(2, 1fr); }
  .client-grid { grid-template-columns: repeat(3, 1fr); }
  .region-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-cell:nth-child(5n+1) { border-left: 1px solid var(--card-border); }
  .trust-cell:nth-child(3n+1) { border-left: none; }
  .trust-cell:nth-child(n+4) { border-top: 1px solid var(--card-border); }
  .split { gap: 40px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card .media { border-right: none; border-bottom: 2px solid var(--stroke-dark); max-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stat-band-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3) { border-left: none; }
  .stat-cell { border-top: 1px solid rgba(255,255,255,.18); }
  .stat-cell:nth-child(-n+2) { border-top: none; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Responsive — Mobile (<= 720px): 4 col | 16px gutter | 16px margins
   ============================================================ */
@media (max-width: 720px) {
  .container { padding-left: var(--margin-mobile); padding-right: var(--margin-mobile); }
  :root { --gutter: 16px; --section-padding: 56px; }
  .headline-xl { font-size: 32px; line-height: 40px; letter-spacing: -0.01em; }
  .headline-lg { font-size: 32px; line-height: 40px; letter-spacing: -0.01em; }
  .headline-md { font-size: 21px; line-height: 29px; }
  .hero-inner { padding: 72px 0; }
  .page-hero-inner { padding: 48px 0; }
  .topnav.open .nav-links { padding: 16px var(--margin-mobile) 24px; }

  /* Header mobile: cegah nama brand menabrak toggle bahasa / tombol menu.
     Nama dibiarkan turun ke baris kedua; tagline disembunyikan (ruang terbatas). */
  .topnav-inner { gap: 10px; }
  .brand { gap: 9px; min-width: 0; flex: 1 1 auto; }
  .brand img { width: 34px; height: 34px; flex-shrink: 0; }
  .brand-text { min-width: 0; }
  .brand-name {
    font-size: 12px; line-height: 14px;
    white-space: normal; overflow-wrap: break-word;
  }
  .brand-tag { display: none; }
  .lang-toggle { flex-shrink: 0; }
  .lang-toggle a { padding: 6px 9px; font-size: 10.5px; }
  .nav-toggle { width: 40px; height: 40px; flex-shrink: 0; }
  .grid-2, .grid-3, .grid-4, .portfolio-grid, .equip-grid, .split, .form-grid { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cell:nth-child(3n+1) { border-left: 1px solid var(--card-border); }
  .trust-cell:nth-child(2n+1) { border-left: none; }
  .trust-cell:nth-child(n+3) { border-top: 1px solid var(--card-border); }
  .stat-band-grid { grid-template-columns: 1fr 1fr; }
  .cap-row { grid-template-columns: 110px 1fr 76px; gap: 12px; }
  .cap-row .name { font-size: 12.5px; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
  .form-panel { padding: 24px; }
  .cta-band h2 { font-size: 26px; line-height: 34px; }
  .stat-cell { padding: 24px 16px; }
  .stat-lg { font-size: 26px; line-height: 32px; }
  .map-wrap { padding: 16px; }
}
