/* ============================================================
   Inthichack — site styles
   Imports tokens via tokens.css in the page <head>.
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@400;500;600;700&family=Noto+Sans+Thai:wght@400;500;600;700&display=swap");

/* Append Lao/Thai glyph fallback to the brand font stacks. When the
   document switches to Lao or Thai, lead with the matching Noto family. */
:root {
  --font-display: "Google Sans Flex", "Noto Sans Lao", "Noto Sans Thai", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Google Sans Flex", "Noto Sans Lao", "Noto Sans Thai", system-ui, -apple-system, "Segoe UI", sans-serif;
}
html[lang="lo"] {
  --font-display: "Noto Sans Lao", "Google Sans Flex", system-ui, sans-serif;
  --font-body:    "Noto Sans Lao", "Google Sans Flex", system-ui, sans-serif;
}
html[lang="th"] {
  --font-display: "Noto Sans Thai", "Google Sans Flex", system-ui, sans-serif;
  --font-body:    "Noto Sans Thai", "Google Sans Flex", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--fg-1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- Layout primitives ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section { padding: 112px 0; position: relative; }
.section--tight { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--itc-navy); color: #fff; }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

/* ---------- Eyebrow ---------- */
.eyebrow-inline {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 13px; color: var(--itc-orange-600);
  letter-spacing: 0.01em;
}
.eyebrow-inline::before {
  content: ""; width: 24px; height: 2px; background: var(--itc-orange);
  flex: 0 0 auto;
}
.section--navy .eyebrow-inline { color: var(--itc-orange-400); }
.section--navy .eyebrow-inline::before { background: var(--itc-orange); }

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border-1);
  height: 176px;
  display: flex; align-items: center;
}
.nav-inner { display: flex; align-items: center; gap: 32px; width: 100%; }
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 140px; }
.nav-items { display: flex; gap: 4px; margin-left: 28px; }
.nav-item {
  position: relative;
  font-weight: 600; font-size: 15px; color: var(--fg-1);
  padding: 10px 14px; border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-item:hover { color: var(--itc-navy); }
.nav-item::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--itc-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.nav-item:hover::after, .nav-item.is-active::after { transform: scaleX(1); }
.nav-item.is-active { color: var(--itc-navy); }
.nav-spacer { flex: 1; }
.nav-ctas { display: flex; gap: 10px; align-items: center; }

/* Mobile nav toggle (hamburger) — hidden on desktop */
.nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 48px; height: 48px; flex: 0 0 auto;
  border: 1px solid var(--border-2); border-radius: var(--r-md);
  background: #fff; color: var(--itc-navy); cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.nav-toggle:hover { background: var(--itc-navy-050); border-color: var(--itc-navy); }
.nav-toggle:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(244,122,32,0.35); }
.nav-toggle svg { width: 24px; height: 24px; }

/* ---------- Language toggle (segmented pill, in nav) ---------- */
.lang-seg {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--itc-slate-100);
  border: 1px solid var(--border-1);
  border-radius: var(--r-pill);
  padding: 4px;
  flex: 0 0 auto;
}
.lang-seg__btn {
  appearance: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.01em;
  color: var(--fg-3); background: transparent;
  padding: 7px 12px; border-radius: var(--r-pill);
  transition: background var(--dur-med) var(--ease-out), color var(--dur-med) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
  line-height: 1; white-space: nowrap;
}
.lang-seg__btn:hover { color: var(--itc-navy); }
.lang-seg__btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(244,122,32,0.35); }
.lang-seg__btn[aria-pressed="true"] {
  background: var(--itc-orange); color: #fff; box-shadow: var(--shadow-1);
}

/* ---------- Floating language switcher (bottom-left FAB) ---------- */
.lang-fab {
  position: fixed; left: 22px; bottom: 22px; z-index: 80;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
}
.lang-fab__panel {
  flex-direction: column; gap: 4px;
  background: #fff; border: 1px solid var(--border-1);
  border-radius: var(--r-lg); padding: 6px;
  box-shadow: var(--shadow-3);
  transform-origin: bottom left;
  opacity: 0; transform: translateY(10px) scale(0.95); pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
}
.lang-fab .lang-fab__panel.lang-seg { display: flex; } /* override inline pill defaults */
.lang-fab.is-open .lang-fab__panel { opacity: 1; transform: none; pointer-events: auto; }
.lang-fab__panel .lang-seg__btn {
  width: 100%; justify-content: flex-start; text-align: left;
  padding: 10px 16px; font-size: 13px;
}
.lang-fab__toggle {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--itc-navy); color: #fff;
  border: none; cursor: pointer;
  padding: 12px 16px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-3);
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  transition: background var(--dur-med) var(--ease-out), transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-med) var(--ease-out);
}
.lang-fab__toggle:hover { background: var(--itc-navy-700); transform: translateY(-1px); box-shadow: var(--shadow-4); }
.lang-fab__toggle:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(244,122,32,0.45), var(--shadow-3); }
.lang-fab__toggle .globe { width: 18px; height: 18px; flex: 0 0 auto; }
.lang-fab__cur { min-width: 24px; text-align: left; letter-spacing: 0.01em; }
.lang-fab__arrow { width: 15px; height: 15px; flex: 0 0 auto; color: var(--itc-orange-400); transition: transform var(--dur-med) var(--ease-out); }
.lang-fab.is-open .lang-fab__arrow { transform: rotate(180deg); }

@media (max-width: 640px) {
  .lang-fab { left: 16px; bottom: 16px; }
  .lang-fab__toggle { padding: 11px 14px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  border-radius: var(--r-md); padding: 12px 20px;
  border: 1px solid transparent; cursor: pointer;
  transition: background var(--dur-med) var(--ease-out),
              box-shadow var(--dur-med) var(--ease-out),
              transform var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
}
.btn .ico { width: 16px; height: 16px; flex: 0 0 auto; }
.btn--primary { background: var(--itc-navy); color: #fff; box-shadow: var(--shadow-2); }
.btn--primary:hover { background: var(--itc-navy-700); box-shadow: var(--shadow-navy); transform: translateY(-1px); }
.btn--cta { background: var(--itc-orange); color: #fff; box-shadow: var(--shadow-2); }
.btn--cta:hover { background: var(--itc-orange-600); box-shadow: var(--shadow-orange); transform: translateY(-1px); }
.btn--secondary { background: #fff; color: var(--itc-navy); border-color: var(--border-2); }
.btn--secondary:hover { border-color: var(--itc-navy); background: var(--itc-navy-050); }
.btn--ghost { background: transparent; color: var(--itc-navy); padding-left: 8px; padding-right: 8px; }
.btn--ghost:hover { color: var(--itc-orange-600); }
.btn--on-navy { background: #fff; color: var(--itc-navy); }
.btn--on-navy:hover { background: var(--itc-orange); color: #fff; }
.btn--lg { padding: 14px 24px; font-size: 16px; }
.btn--xl { padding: 16px 28px; font-size: 17px; }
.btn:active { transform: translateY(0) scale(0.98); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(244, 122, 32, 0.35), var(--shadow-2); }

/* ---------- Section heads ---------- */
.section-head { max-width: 760px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: 44px; line-height: 1.08; letter-spacing: -0.022em; font-weight: 800;
  margin: 14px 0 14px 0;
}
.section-head .lead { font-size: 19px; color: var(--fg-2); line-height: 1.55; margin: 0; }
.section--navy .section-head .lead { color: rgba(255, 255, 255, 0.78); }

/* ---------- Hero (centered, screenshot-style) ---------- */
.hero-centered {
  position: relative;
  padding: 112px 0 48px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, var(--itc-slate-050) 100%);
}
.hero-centered .container { position: relative; z-index: 2; }
.hero-centered .lockup { text-align: center; max-width: 900px; margin: 0 auto; }
.hero-centered .lockup .eyebrow-inline { justify-content: center; }
.hero-centered h1 {
  font-size: 68px;
  line-height: 1.04;
  letter-spacing: -0.026em;
  font-weight: 800;
  margin: 22px 0 22px 0;
  color: var(--fg-1);
  text-wrap: balance;
}
.hero-centered h1 .accent { color: var(--itc-orange); }
.hero-centered .lead {
  font-size: 20px; line-height: 1.55; color: var(--fg-2);
  max-width: 640px; margin: 0 auto;
  text-wrap: pretty;
}
.hero-centered .cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-centered .meta-row {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-top: 24px; color: var(--fg-3); font-size: 13px;
}
.hero-centered .meta-row .m { display: inline-flex; align-items: center; gap: 6px; }
.hero-centered .meta-row svg { width: 14px; height: 14px; color: var(--itc-navy); }

/* Decorative floating badges around the hero, like the avatars in the reference */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-deco .blob {
  position: absolute; border-radius: 999px; filter: blur(60px); opacity: 0.55;
}
.hero-deco .blob.b1 { width: 380px; height: 380px; background: var(--itc-orange-100); top: -80px; left: -120px; }
.hero-deco .blob.b2 { width: 420px; height: 420px; background: var(--itc-navy-100); bottom: -160px; right: -120px; opacity: 0.7; }
.hero-deco .badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-3);
  padding: 10px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--fg-1);
}
.hero-deco .badge .b-ico {
  width: 32px; height: 32px; border-radius: var(--r-sm);
  background: var(--itc-orange-050); color: var(--itc-orange);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.hero-deco .badge .b-ico.navy { background: var(--itc-navy-050); color: var(--itc-navy); }
.hero-deco .badge .b-ico svg { width: 18px; height: 18px; }
.hero-deco .badge .b-l { font-size: 11px; color: var(--fg-3); font-weight: 600; }
.hero-deco .badge .b-t { font-size: 13px; font-weight: 700; color: var(--fg-1); margin-top: 1px; }
.hero-deco .dot {
  position: absolute; width: 10px; height: 10px; border-radius: 999px;
  background: var(--itc-orange);
  box-shadow: 0 0 0 4px rgba(244, 122, 32, 0.18);
}

/* Big screenshot/photo placeholder below hero */
.hero-mockup {
  margin: 56px auto 0;
  max-width: 1080px;
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
  border: 1px solid var(--border-1);
  background: #fff;
}
.hero-mockup .mockup-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--itc-slate-050);
  border-bottom: 1px solid var(--border-1);
}
.hero-mockup .mockup-bar .dot {
  width: 11px; height: 11px; border-radius: 999px;
  background: var(--itc-slate-300);
  position: static; box-shadow: none;
}
.hero-mockup .mockup-bar .url {
  margin-left: 14px; font-family: var(--font-mono); font-size: 12px;
  color: var(--fg-3);
}

/* ---------- Inline page hero (short) ---------- */
.hero-page {
  padding: 80px 0 56px;
  background: linear-gradient(180deg, var(--itc-navy-050) 0%, #fff 100%);
  border-bottom: 1px solid var(--border-1);
}
.hero-page .lockup { max-width: 780px; }
.hero-page h1 {
  font-size: 56px;
  line-height: 1.06;
  letter-spacing: -0.024em;
  font-weight: 800;
  margin: 16px 0 18px 0;
  text-wrap: balance;
}
.hero-page h1 .accent { color: var(--itc-orange); }
.hero-page .lead { font-size: 19px; color: var(--fg-2); max-width: 620px; }

/* ---------- Partner strip ---------- */
.partner-strip {
  padding: 32px 0;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  background: #fff;
}
.partner-row {
  display: grid; grid-template-columns: auto repeat(5, 1fr);
  gap: 32px; align-items: center;
}
.partner-lbl { font-size: 13px; color: var(--fg-3); font-weight: 600; max-width: 140px; }
.partner {
  display: flex; align-items: center; justify-content: center;
  height: 44px; color: var(--fg-2); font-weight: 800; font-size: 17px;
  letter-spacing: -0.01em;
  padding: 0 14px;
}
.partner.is-ecolab { color: #003DA5; }
.partner.is-electrolux { color: #041E42; font-weight: 700; font-size: 16px; }
.partner.is-iso, .partner.is-laos { color: var(--itc-navy); font-size: 14px; }
.partner .swoosh {
  display: inline-block; width: 24px; height: 24px; margin-right: 8px;
  background: currentColor; mask-image: radial-gradient(circle at 30% 50%, transparent 9px, currentColor 10px);
  border-radius: 50%;
}

/* ---------- Service / feature cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.svc-card {
  background: #fff; border: 1px solid var(--border-1);
  border-radius: var(--r-lg); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-2);
  transition: box-shadow var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              transform var(--dur-med) var(--ease-out);
  text-decoration: none; color: inherit;
}
.svc-card:hover { box-shadow: var(--shadow-3); border-color: var(--border-2); transform: translateY(-2px); }
.svc-icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--itc-orange-050); color: var(--itc-orange);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.svc-icon.navy { background: var(--itc-navy-050); color: var(--itc-navy); }
.svc-icon svg { width: 28px; height: 28px; stroke-width: 1.75; }
.svc-card h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.008em; }
.svc-card p { margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.55; }
.svc-card ul { margin: 4px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 8px; }
.svc-card li { font-size: 14px; color: var(--fg-1); display: flex; align-items: center; gap: 10px; }
.svc-card li svg { width: 14px; height: 14px; color: var(--status-success); flex: 0 0 auto; }
.svc-card .card-link { margin-top: auto; padding-top: 8px; color: var(--itc-navy); font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.svc-card:hover .card-link { color: var(--itc-orange-600); }
.svc-card .card-link svg { width: 14px; height: 14px; }

/* ---------- Tab/pill row (used on home + products) ---------- */
.pill-tabs {
  display: inline-flex; gap: 6px;
  background: var(--itc-slate-100);
  padding: 6px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-1);
}
.pill-tabs button {
  border: none; background: transparent; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--fg-2);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background var(--dur-fast), color var(--dur-fast);
}
.pill-tabs button svg { width: 14px; height: 14px; }
.pill-tabs button:hover { color: var(--itc-navy); }
.pill-tabs button.is-active {
  background: #fff; color: var(--itc-navy);
  box-shadow: var(--shadow-1);
}

/* ---------- Feature row (bullets + image) ---------- */
.feature-row {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center;
  margin-top: 48px;
}
.feature-row.reverse { grid-template-columns: 1.15fr 1fr; }
.feature-row.reverse .feature-text { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-text h3 { font-size: 32px; line-height: 1.15; letter-spacing: -0.016em; font-weight: 800; margin: 14px 0 18px; text-wrap: balance; }
.feature-text .lead { font-size: 17px; color: var(--fg-2); margin: 0 0 24px 0; }
.feature-text ul.checkmarks { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-text ul.checkmarks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.55; color: var(--fg-1); }
.feature-text ul.checkmarks li .b { display: block; font-weight: 700; color: var(--fg-1); margin-bottom: 2px; }
.feature-text ul.checkmarks li .s { color: var(--fg-2); font-size: 14px; }
.feature-text ul.checkmarks li .tick {
  width: 24px; height: 24px; border-radius: var(--r-sm);
  background: var(--itc-orange-050); color: var(--itc-orange);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; margin-top: 2px;
}
.feature-text ul.checkmarks li .tick svg { width: 14px; height: 14px; }

.feature-visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-1);
  background: linear-gradient(160deg, var(--itc-navy-050) 0%, #fff 65%);
  box-shadow: var(--shadow-3);
  aspect-ratio: 4 / 3;
}
.feature-visual > img,
.feature-visual .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.feature-visual .grad-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 21, 48, 0.35) 100%);
  pointer-events: none;
}
.feature-visual.dark { background: linear-gradient(160deg, var(--itc-navy) 0%, var(--bg-navy-deep) 100%); color: #fff; border-color: transparent; }
.feature-visual .placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--fg-3); gap: 10px;
  font-family: var(--font-mono); font-size: 12px;
}
.feature-visual.dark .placeholder { color: rgba(255, 255, 255, 0.55); }
.feature-visual .placeholder .ph-ico { width: 56px; height: 56px; opacity: 0.6; }

/* Pill badge overlay on a visual */
.visual-pill {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  background: #fff; padding: 14px 18px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-3); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border-1);
}
.visual-pill .pi {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--itc-orange-050); color: var(--itc-orange);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.visual-pill .pi svg { width: 22px; height: 22px; }
.visual-pill .pt { font-weight: 700; font-size: 14px; color: var(--fg-1); }
.visual-pill .ps { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* ---------- Stats row ---------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat .n {
  font-family: var(--font-display); font-weight: 800;
  font-size: 64px; line-height: 1; letter-spacing: -0.03em;
}
.stat .n .accent { color: var(--itc-orange); }
.stat .l { margin-top: 10px; font-size: 14px; line-height: 1.5; max-width: 220px; color: rgba(255, 255, 255, 0.72); }
.section--soft .stat .n { color: var(--fg-1); }
.section--soft .stat .l { color: var(--fg-2); }

/* ---------- Testimonial ---------- */
.quote-wrap { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-mark {
  color: var(--itc-orange); font-family: var(--font-display); font-weight: 800;
  font-size: 96px; line-height: 0.7; height: 36px;
}
.quote-text {
  font-family: var(--font-display); font-weight: 600;
  font-size: 32px; line-height: 1.35; letter-spacing: -0.015em;
  color: #fff;
  margin: 12px 0 32px 0;
  text-wrap: balance;
}
.quote-attr { display: inline-flex; align-items: center; gap: 14px; justify-content: center; margin: 0 auto; }
.quote-attr .avatar { width: 48px; height: 48px; border-radius: 999px; background: var(--itc-navy-700); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 16px; }
.quote-attr .n { font-weight: 700; color: #fff; font-size: 15px; }
.quote-attr .r { font-size: 13px; color: rgba(255, 255, 255, 0.65); }

/* ---------- FAQ + grid layout ---------- */
.faq-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}
.faq-grid .section-head h2 { font-size: 40px; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-1); }
.faq-item { border-bottom: 1px solid var(--border-1); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 8px 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 17px; font-weight: 600; color: var(--fg-1);
  transition: color var(--dur-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--itc-navy); }
.faq-item summary .chev {
  width: 32px; height: 32px; border-radius: 999px;
  border: 1px solid var(--border-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-2);
  transition: transform var(--dur-med) var(--ease-out), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
  flex: 0 0 auto;
}
.faq-item summary .chev svg { width: 16px; height: 16px; }
.faq-item[open] summary .chev { transform: rotate(45deg); background: var(--itc-orange); color: #fff; border-color: var(--itc-orange); }
.faq-item .answer { padding: 0 60px 22px 0; color: var(--fg-2); font-size: 15px; line-height: 1.6; }

/* ---------- Navy CTA card (Meet the Community-style) ---------- */
.cta-card {
  background: var(--itc-navy);
  background-image: radial-gradient(circle at 85% 60%, rgba(244,122,32,0.18) 0%, transparent 55%),
                    linear-gradient(135deg, var(--itc-navy) 0%, var(--bg-navy-deep) 100%);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 56px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-3);
  position: relative; overflow: hidden;
}
.cta-card h2 { color: #fff; font-size: 38px; line-height: 1.12; letter-spacing: -0.02em; margin: 12px 0 14px 0; font-weight: 800; }
.cta-card p { color: rgba(255, 255, 255, 0.82); font-size: 16px; line-height: 1.6; margin: 0 0 24px 0; max-width: 500px; }
.cta-card .ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-card .cta-visual { position: relative; min-height: 260px; }
/* Stylized "Laos map" – just a dotted grid with an orange pin */
.cta-card .globe {
  position: absolute; right: -10px; top: 50%; transform: translateY(-50%);
  width: 280px; height: 280px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 60% 40%, rgba(244,122,32,0.45) 0%, transparent 40%),
    radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1.5px) 0 0/14px 14px,
    radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1.5px) 7px 7px/14px 14px,
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 60px rgba(244, 122, 32, 0.12), 0 12px 28px rgba(0, 0, 0, 0.3);
}
.cta-card .pin {
  position: absolute; right: 110px; top: calc(50% - 24px);
  width: 14px; height: 14px; border-radius: 999px;
  background: var(--itc-orange);
  box-shadow: 0 0 0 6px rgba(244, 122, 32, 0.25), 0 0 0 14px rgba(244, 122, 32, 0.12);
}

/* ---------- Orange gradient banner CTA (alt) ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--itc-orange) 0%, var(--itc-orange-600) 100%);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 56px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
  box-shadow: var(--shadow-3);
}
.cta-banner h2 { color: #fff; font-size: 38px; line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 12px 0; font-weight: 800; }
.cta-banner p { color: rgba(255, 255, 255, 0.92); font-size: 17px; line-height: 1.55; margin: 0; max-width: 540px; }
.cta-banner .checks { margin-top: 22px; display: flex; gap: 22px; flex-wrap: wrap; }
.cta-banner .checks .c { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; }
.cta-banner .checks .c svg { width: 16px; height: 16px; }
.cta-banner .right { display: flex; justify-content: flex-end; align-items: center; gap: 12px; flex-wrap: wrap; }

/* ---------- Team grid ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 48px;
}
.team-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 6px;
  overflow: hidden;
}
.team-photo {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, var(--itc-navy-050) 0%, var(--itc-slate-100) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--itc-navy);
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.team-photo .ribbon {
  position: absolute; left: 8px; bottom: 8px; right: 8px;
  background: rgba(255,255,255,0.92);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  text-align: left;
}
.team-photo .ribbon .n { font-size: 13px; font-weight: 700; color: var(--fg-1); }
.team-photo .ribbon .r { font-size: 11px; color: var(--fg-3); margin-top: 1px; }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.product-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow var(--dur-med), transform var(--dur-med), border-color var(--dur-med);
  box-shadow: var(--shadow-1);
}
.product-card:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); border-color: var(--border-2); }
.product-card .img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--itc-slate-050) 0%, var(--itc-slate-100) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-3);
  position: relative;
  border-bottom: 1px solid var(--border-1);
}
.product-card .img svg.ph { width: 56px; height: 56px; opacity: 0.5; }
.product-card .tag {
  position: absolute; top: 14px; left: 14px;
  background: #fff; border: 1px solid var(--border-1);
  font-size: 11px; font-weight: 700; padding: 5px 10px;
  border-radius: var(--r-pill); color: var(--itc-navy);
}
.product-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.product-card .brand { font-size: 12px; font-weight: 700; color: var(--itc-orange-600); }
.product-card h3 { font-size: 18px; font-weight: 700; margin: 0; letter-spacing: -0.008em; }
.product-card .desc { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }
.product-card .specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.product-card .specs span {
  font-size: 11px; font-weight: 600; padding: 4px 9px;
  background: var(--itc-slate-050); color: var(--fg-2);
  border: 1px solid var(--border-1);
  border-radius: var(--r-pill);
}
.product-card .more { margin-top: 12px; color: var(--itc-navy); font-size: 13px; font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.product-card .more svg { width: 12px; height: 12px; }

/* ---------- Process steps ---------- */
.process-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
  margin-top: 48px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 24px 22px 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  font-family: var(--font-display); font-weight: 800;
  font-size: 13px; letter-spacing: 0.02em;
  color: var(--itc-orange);
}
.process-step .pi {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--itc-orange-050); color: var(--itc-orange);
  display: inline-flex; align-items: center; justify-content: center;
}
.process-step .pi svg { width: 22px; height: 22px; }
.process-step h4 { font-size: 17px; font-weight: 700; margin: 0; letter-spacing: -0.005em; }
.process-step p { font-size: 13px; color: var(--fg-2); margin: 0; line-height: 1.55; }

/* ---------- Service detail row (services page) ---------- */
.svc-detail {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  padding: 72px 0;
  align-items: center;
  border-bottom: 1px solid var(--border-1);
}
.svc-detail:last-child { border-bottom: 0; }
.svc-detail.reverse { grid-template-columns: 1fr 1.05fr; }
.svc-detail.reverse .text { order: 2; }
.svc-detail.reverse .visual { order: 1; }
.svc-detail .text h2 { font-size: 38px; line-height: 1.12; letter-spacing: -0.018em; margin: 14px 0 14px; }
.svc-detail .text p.lead { font-size: 17px; color: var(--fg-2); margin: 0 0 24px 0; }
.svc-detail .text ul { list-style: none; margin: 0 0 28px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.svc-detail .text ul li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.svc-detail .text ul li svg { width: 16px; height: 16px; color: var(--itc-orange); flex: 0 0 auto; margin-top: 2px; }

/* ---------- Office / contact cards ---------- */
.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.office-card {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-1);
}
.office-card .city { font-size: 11px; font-weight: 700; color: var(--itc-orange-600); letter-spacing: 0.04em; }
.office-card h3 { font-size: 20px; font-weight: 700; margin: 0; letter-spacing: -0.008em; }
.office-card .addr { font-size: 14px; color: var(--fg-2); line-height: 1.55; }
.office-card .contacts { display: flex; flex-direction: column; gap: 8px; font-size: 14px; margin-top: 6px; }
.office-card .contacts .row { display: inline-flex; align-items: center; gap: 10px; color: var(--fg-1); }
.office-card .contacts .row svg { width: 14px; height: 14px; color: var(--itc-navy); flex: 0 0 auto; }

/* ---------- Contact form ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; }
.contact-form {
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-2);
}
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field label { font-size: 13px; font-weight: 600; color: var(--fg-1); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--fg-1);
  background: #fff; border: 1px solid var(--border-2);
  border-radius: var(--r-md); padding: 11px 14px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
  resize: vertical;
}
.field textarea { min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--itc-orange);
  box-shadow: 0 0 0 3px var(--itc-orange-100);
}
.field .help { font-size: 12px; color: var(--fg-3); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .row {
  display: flex; gap: 14px; align-items: flex-start;
}
.contact-info .ic {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--itc-orange-050); color: var(--itc-orange);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.contact-info .ic svg { width: 20px; height: 20px; }
.contact-info h4 { font-size: 16px; font-weight: 700; margin: 0 0 4px; }
.contact-info p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.55; }
.contact-info p a { color: var(--itc-navy); font-weight: 600; }
.contact-info p a:hover { color: var(--itc-orange-600); }

/* ---------- Footer (rich, multi-column like reference) ---------- */
.footer {
  background: var(--itc-navy);
  background-image: linear-gradient(180deg, var(--itc-navy) 0%, var(--bg-navy-deep) 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 32px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: start;
}
.footer-top .office h4 { color: var(--itc-orange-400); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; margin: 0 0 12px; }
.footer-top .office .addr-line { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.78); }
.footer-top .office .addr-line strong { color: #fff; font-weight: 700; }
.footer-top .office .addr-line.meta { color: rgba(255, 255, 255, 0.55); font-size: 12px; margin-top: 6px; }
.footer-top .contact-block { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, 0.12); }
.footer-top .contact-block h4 { color: #fff; font-size: 14px; font-weight: 700; margin: 0 0 14px; }
.footer-top .contact-block .row { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; margin-bottom: 8px; color: rgba(255, 255, 255, 0.85); }
.footer-top .contact-block .row svg { width: 14px; height: 14px; color: var(--itc-orange-400); }

.footer-middle {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-middle .brand img { height: 32px; }
.footer-middle .brand p { font-size: 13px; color: rgba(255, 255, 255, 0.7); margin: 18px 0 0; max-width: 320px; line-height: 1.6; }
.footer-middle .brand .partners { display: flex; gap: 12px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.footer-middle .brand .partners span {
  font-size: 11px; font-weight: 700; padding: 5px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  color: rgba(255, 255, 255, 0.85);
}
.footer-middle h4 { color: #fff; font-size: 13px; font-weight: 700; margin: 6px 0 14px; letter-spacing: 0.01em; }
.footer-middle ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-middle li a { font-size: 13px; color: rgba(255, 255, 255, 0.7); transition: color var(--dur-fast); }
.footer-middle li a:hover { color: var(--itc-orange-400); }

.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255, 255, 255, 0.55); flex-wrap: wrap; gap: 16px;
}
.footer-bottom .links { display: flex; gap: 18px; }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a {
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.78);
  transition: background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.footer-bottom .socials a:hover { background: var(--itc-orange); color: #fff; border-color: var(--itc-orange); }
.footer-bottom .socials a svg { width: 14px; height: 14px; }

/* ---------- Hero photo collage (replaces dashboard mockup) ---------- */
.hero-collage {
  margin: 64px auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 520px;
}
.hero-collage .ph {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--itc-slate-100);
  border: 1px solid var(--border-1);
}
.hero-collage .ph img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-collage .ph.main { grid-row: 1 / span 2; }
.hero-collage .ph .caption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
}
.hero-collage .ph .caption .ico {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--itc-orange-050); color: var(--itc-orange);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.hero-collage .ph .caption .ico svg { width: 18px; height: 18px; }
.hero-collage .ph .caption .t { font-weight: 700; font-size: 13px; color: var(--fg-1); line-height: 1.2; }
.hero-collage .ph .caption .s { font-size: 11px; color: var(--fg-3); margin-top: 2px; }
.hero-collage .ph .corner-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(15, 21, 48, 0.78);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 6px 10px; border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-collage .ph .corner-tag svg { width: 12px; height: 12px; color: var(--itc-orange); }

/* ---------- In-action photo grid section ---------- */
.action-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 480px;
  margin-top: 48px;
}
.action-grid .cell {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--border-1);
}
.action-grid .cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.action-grid .cell.big { grid-row: 1 / span 2; }
.action-grid .cell .label {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(15, 21, 48, 0.78);
  color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
  display: inline-flex; align-items: center; gap: 6px;
}
.action-grid .cell .label svg { width: 12px; height: 12px; color: var(--itc-orange-400); }

/* ---------- Product card with REAL image ---------- */
.product-card .img.with-photo {
  background: linear-gradient(160deg, var(--itc-navy-050) 0%, var(--itc-slate-100) 100%);
  padding: 0;
}
.product-card .img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 16px;
}
.product-card .img.with-photo.dark { background: var(--itc-slate-050); }

/* ---------- About page hero photo ---------- */
.about-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 80px 0 96px;
  align-items: center;
}
.about-hero-photo {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-4);
  aspect-ratio: 5 / 4;
}
.about-hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-hero-photo .badge-overlay {
  position: absolute; left: 22px; bottom: 22px;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-3);
}
.about-hero-photo .badge-overlay .ico {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--itc-orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.about-hero-photo .badge-overlay .t { font-weight: 800; font-size: 16px; }
.about-hero-photo .badge-overlay .s { font-size: 12px; color: var(--fg-3); margin-top: 2px; }

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  margin-top: 48px;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute; left: 12px; top: 8px; bottom: 8px;
  width: 2px; background: var(--itc-orange-100);
}
.tl-item {
  position: relative;
  padding: 0 0 32px 32px;
}
.tl-item::before {
  content: "";
  position: absolute;
  left: -28px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--itc-orange);
  box-shadow: 0 0 0 4px var(--itc-orange-100);
}
.tl-item .year {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--itc-orange-600);
  margin-bottom: 4px;
}
.tl-item h4 { margin: 0 0 6px; font-size: 19px; font-weight: 700; letter-spacing: -0.008em; }
.tl-item p { margin: 0; color: var(--fg-2); font-size: 14px; line-height: 1.55; }

/* ---------- Photo strip / brand bar (small montage) ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.photo-strip .ps-cell {
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-1);
}
.photo-strip .ps-cell img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- Equipment showcase grid (products hero) ---------- */
.eq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.eq-tile {
  grid-column: span 1;
  background: #fff;
  border: 1px solid var(--border-1);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out), border-color var(--dur-med) var(--ease-out);
}
.eq-tile:hover { box-shadow: var(--shadow-3); transform: translateY(-2px); border-color: var(--border-2); }
.eq-tile.wide { grid-column: span 2; }
.eq-tile .eq-img {
  position: relative;
  height: 180px;
  background: linear-gradient(180deg, #fff 0%, var(--itc-slate-050) 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.eq-tile .eq-img img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  display: block;
}
.eq-tile .eq-label {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--border-1);
}
.eq-tile .eq-label .cat { font-size: 11px; font-weight: 700; color: var(--itc-orange-600); letter-spacing: 0.03em; }
.eq-tile .eq-label .name { font-size: 15px; font-weight: 700; color: var(--fg-1); margin-top: 3px; letter-spacing: -0.005em; }
.eq-tile .eq-label .brand { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
@media (max-width: 980px) {
  .eq-grid { grid-template-columns: repeat(2, 1fr); }
  .eq-tile.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .eq-grid { grid-template-columns: 1fr; }
  .eq-tile, .eq-tile.wide { grid-column: span 1; }
}

/* ---------- Misc utilities ---------- */

/* ============================================================
   Scroll-reveal + entrance animations (site-wide)
   Driven by assets/js/anim.js via IntersectionObserver.
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  /* Base hidden state for revealable elements */
  .om-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: opacity, transform;
  }
  .om-reveal.om-in {
    opacity: 1;
    transform: none;
  }

  /* Directional variants */
  .om-reveal.from-left  { transform: translateX(-32px); }
  .om-reveal.from-right { transform: translateX(32px); }
  .om-reveal.from-scale { transform: scale(0.96); }
  .om-reveal.from-left.om-in,
  .om-reveal.from-right.om-in,
  .om-reveal.from-scale.om-in { transform: none; }

  /* Hero entrance — runs on load, staggered by --d */
  .om-hero {
    opacity: 0;
    transform: translateY(20px);
    animation: omHeroIn 0.8s var(--ease-out) forwards;
    animation-delay: var(--d, 0ms);
  }
  @keyframes omHeroIn {
    to { opacity: 1; transform: none; }
  }
  /* Failsafe end-state (used by the bundle safety net) */
  .om-hero.om-in { opacity: 1 !important; transform: none !important; animation: none !important; }

  /* Floating hero badges drift gently */
  .hero-deco .badge {
    animation: omFloat 6s ease-in-out infinite;
    animation-delay: var(--fd, 0ms);
  }
  @keyframes omFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
  }

  /* Subtle hover lift on photos within reveal groups */
  .hero-collage .ph img,
  .action-grid .cell img,
  .feature-visual > img {
    transition: transform 0.6s var(--ease-out);
  }
  .hero-collage .ph:hover img,
  .action-grid .cell:hover img { transform: scale(1.04); }
}

/* Nav: gentle drop-in on load (all motion prefs — very subtle) */
.nav { animation: omNavIn 0.5s var(--ease-out) both; }
@keyframes omNavIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.spacer-8 { height: 8px; }
.spacer-16 { height: 16px; }
.spacer-24 { height: 24px; }
.spacer-32 { height: 32px; }

/* Small screen — graceful collapse */
@media (max-width: 980px) {
  /* Nav becomes a hamburger dropdown */
  .nav { height: 96px; }
  .nav-logo img { height: 72px; }
  .nav-toggle { display: inline-flex; }
  .nav-ctas { display: none; }
  .nav-items {
    display: none;
    position: absolute; top: 96px; left: 0; right: 0;
    flex-direction: column; gap: 2px; margin-left: 0;
    background: #fff; border-bottom: 1px solid var(--border-1);
    padding: 12px 32px 18px;
    box-shadow: var(--shadow-3);
  }
  .nav-items.is-open { display: flex; }
  .nav-item { padding: 13px 10px; font-size: 16px; border-radius: var(--r-sm); }
  .nav-item::after { display: none; }
  .nav-item:hover, .nav-item.is-active { background: var(--itc-navy-050); }

  .hero-centered { padding: 56px 0 32px; }
  .hero-centered h1 { font-size: 44px; }
  .hero-page h1 { font-size: 40px; }
  .section { padding: 72px 0; }
  .svc-grid, .stats-row, .product-grid, .office-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .feature-row, .feature-row.reverse,
  .svc-detail, .svc-detail.reverse,
  .cta-card, .cta-banner, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse .feature-text, .feature-row.reverse .feature-visual,
  .svc-detail.reverse .text, .svc-detail.reverse .visual { order: initial; }
  .partner-row { grid-template-columns: repeat(2, 1fr); }
  .partner-lbl { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top .contact-block { padding-left: 0; border-left: 0; }
  .footer-middle { grid-template-columns: 1fr 1fr; }
  .svc-detail .text ul { grid-template-columns: 1fr; }
  .hero-deco .badge { display: none; }
  .cta-card .cta-visual, .cta-card .globe, .cta-card .pin { display: none; }

  /* Photo grids: drop fixed height, give cells their own aspect-ratio */
  .hero-collage { grid-template-columns: 1fr 1fr; height: auto; }
  .hero-collage .ph { aspect-ratio: 16 / 11; }
  .hero-collage .ph.main { grid-row: auto; aspect-ratio: 16 / 10; }
  .action-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .action-grid .cell { aspect-ratio: 4 / 3; }
  .action-grid .cell.big { grid-row: auto; }
  .about-hero { grid-template-columns: 1fr; gap: 40px; }

  /* Inline-style grids: collapse wide layouts to 2 columns on tablet */
  [style*="repeat(5,"], [style*="repeat(5 ,"],
  [style*="repeat(4,"], [style*="repeat(4 ,"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="repeat(3,"], [style*="repeat(3 ,"] { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .svc-grid, .stats-row, .product-grid, .office-grid, .team-grid, .footer-top, .footer-middle, .process-grid { grid-template-columns: 1fr; }
  .container, .container-wide { padding: 0 20px; }
  .hero-centered h1 { font-size: 32px; }
  .hero-page h1 { font-size: 32px; }
  .section-head h2 { font-size: 32px; }
  .cta-card, .cta-banner { padding: 32px; }

  /* Single column everywhere on phone */
  .hero-collage, .action-grid { grid-template-columns: 1fr; }
  .partner-row { grid-template-columns: 1fr; }
  .partner-lbl { text-align: center; }
  /* Catch-all: any inline grid collapses to one column on phone */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  .field.row-2 { grid-template-columns: 1fr; }
}
