/* ============================================================
   MATEX — Production stylesheet
   Tokens + base + components, translated from the design system
   (tokens/*.css + components/*.jsx). Single file, no @imports.
   ============================================================ */

/* ---------- Tokens: color ---------- */
:root {
  --mx-navy-900: #030711;
  --mx-navy-850: #030d1c;
  --mx-navy-800: #09101d;
  --mx-navy-700: #08152a;
  --mx-navy-600: #0d1f3d;
  --mx-charcoal: #24272f;
  --mx-steel-700: #43454a;
  --mx-steel-500: #656668;
  --mx-steel-300: #9ea0a3;
  --mx-stone:     #89857e;

  --mx-orange:     #ce7e3a;
  --mx-orange-700: #b06a2d;
  --mx-orange-300: #e0a06a;
  --mx-gold:       #d49c3d;
  --mx-gold-300:   #e4bd72;

  --mx-white: #ffffff;
  --mx-black: #000000;

  --surface-base:     var(--mx-navy-800);
  --surface-deep:     var(--mx-navy-900);
  --surface-raised:   var(--mx-navy-700);
  --surface-panel:    var(--mx-navy-600);
  --surface-card:     #0c1626;
  --surface-card-alt: var(--mx-charcoal);
  --surface-inset:    #070d18;

  --text-primary:   var(--mx-white);
  --text-secondary: #d6d8dc;
  --text-muted:     var(--mx-steel-300);
  --text-faint:     var(--mx-steel-500);
  --text-on-accent: #1a1006;

  --accent:       var(--mx-orange);
  --accent-rgb:   206, 126, 58;
  --accent-hover: var(--mx-orange-300);
  --accent-press: var(--mx-orange-700);
  --accent-gold:  var(--mx-gold);

  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-soft:   rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.20);
  --border-accent: var(--mx-orange);

  --focus-ring: rgba(var(--accent-rgb), 0.55);

  --grad-navy:   linear-gradient(160deg, #0d1f3d 0%, #09101d 55%, #030711 100%);
  --grad-panel:  linear-gradient(180deg, #0c1626 0%, #08111f 100%);
  --grad-accent: linear-gradient(120deg, var(--accent-gold, #d49c3d) 0%, var(--accent, #ce7e3a) 100%);
  --grad-steel:  linear-gradient(180deg, #2b2e36 0%, #1a1d24 100%);
  --grad-hero-veil: linear-gradient(180deg, rgba(3,7,17,0.35) 0%, rgba(3,7,17,0.85) 100%);
  --grad-green:  linear-gradient(150deg, #143524 0%, #0c2418 55%, #08111f 100%);

  /* ---------- Tokens: typography ---------- */
  --font-display: 'Montserrat', 'Poppins', system-ui, sans-serif;
  --font-heading: 'Montserrat', 'Poppins', system-ui, sans-serif;
  --font-body:    'Inter', 'Open Sans', system-ui, sans-serif;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    800;

  --fs-hero:    clamp(2.75rem, 5.5vw, 4.5rem);
  --fs-display: clamp(2.25rem, 4vw, 3.25rem);
  --fs-h1:      clamp(2rem, 3.2vw, 2.75rem);
  --fs-h2:      clamp(1.625rem, 2.4vw, 2.125rem);
  --fs-h3:      1.375rem;
  --fs-h4:      1.125rem;

  --fs-lead:  1.25rem;
  --fs-body:  1rem;
  --fs-sm:    0.875rem;
  --fs-xs:    0.75rem;
  --fs-eyebrow: 0.8125rem;

  --lh-tight:   1.08;
  --lh-heading: 1.18;
  --lh-snug:    1.4;
  --lh-body:    1.65;

  --ls-hero:    -0.01em;
  --ls-heading: 0.01em;
  --ls-eyebrow: 0.22em;
  --ls-nav:     0.12em;
  --ls-label:   0.16em;
  --ls-wordmark: 0.30em;

  /* ---------- Tokens: spacing & layout ---------- */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 20px; --space-6: 24px; --space-8: 32px; --space-10: 40px;
  --space-12: 48px; --space-16: 64px; --space-20: 80px; --space-24: 96px;
  --space-32: 128px;

  --section-y:     clamp(64px, 9vw, 128px);
  --container-max: 1280px;
  --container-pad: clamp(20px, 5vw, 64px);

  --radius-xs: 2px; --radius-sm: 4px; --radius-md: 6px;
  --radius-lg: 10px; --radius-pill: 999px;
  --hairline: 1px;

  /* ---------- Tokens: effects ---------- */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.35);
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  --shadow-accent: 0 6px 22px rgba(var(--accent-rgb), 0.30);
  --edge-top: inset 0 1px 0 rgba(255, 255, 255, 0.05);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 420ms;

  --ring: 0 0 0 3px var(--focus-ring);

  --nav-h: 74px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface-base);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: var(--lh-heading);
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font: inherit; }

::selection { background: rgba(var(--accent-rgb),0.35); color: #fff; }

:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: var(--radius-xs);
}

.mx-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.mx-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
}
.mx-eyebrow--gold { color: var(--accent-gold); }

.mx-section-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-display);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
  color: var(--text-primary);
  line-height: var(--lh-heading);
  text-wrap: balance;
}

.mx-rule {
  width: 48px; height: 3px;
  background: var(--grad-accent);
  border-radius: var(--radius-pill);
}

/* Icon sizing helpers (Lucide renders <svg> in place of <i data-lucide>) */
.ico { width: 20px; height: 20px; }
.ico-sm { width: 16px; height: 16px; }
.ico-md { width: 22px; height: 22px; }
.ico-lg { width: 26px; height: 26px; }
.ico-accent { color: var(--accent); }

/* ---------- Page fade-in ---------- */
.mx-fade { animation: mxFade 0.5s var(--ease-out) both; }
@keyframes mxFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mx-fade { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 11, 22, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--dur-base), border-color var(--dur-base);
}
.navbar.is-scrolled {
  background: rgba(6, 11, 22, 0.92);
  border-bottom-color: var(--border-soft);
}
.navbar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-6);
}
.navbar__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar__logo img {
  height: 40px; width: auto; max-width: min(200px, 42vw); display: block; object-fit: contain;
}

.navbar__links { display: flex; align-items: center; gap: var(--space-8); }

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px; font-weight: 500;
  letter-spacing: var(--ls-nav); text-transform: uppercase;
  color: var(--text-secondary);
  position: relative; white-space: nowrap; padding-bottom: 4px;
  transition: color var(--dur-base);
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  height: 2px; width: 0; border-radius: 999px;
  background: var(--border-strong);
  transition: width var(--dur-base) var(--ease-out);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link.is-active { color: var(--accent); }
.nav-link.is-active::after { width: 100%; background: var(--grad-accent); }

.navbar__right { display: flex; align-items: center; gap: var(--space-5); }

.navbar__burger {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm); color: var(--text-primary);
  cursor: pointer;
}
.navbar__burger svg { width: 22px; height: 22px; }

/* Mobile menu panel */
.navbar__mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border-subtle);
  background: rgba(6, 11, 22, 0.97);
  padding: var(--space-4) var(--container-pad) var(--space-6);
  gap: 4px;
}
.navbar__mobile .nav-link {
  padding: 13px 4px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14px;
}
.navbar__mobile .nav-link::after { content: none; }
.navbar__mobile .btn { margin-top: var(--space-4); justify-content: center; }
.navbar.menu-open .navbar__mobile { display: flex; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap; line-height: 1;
  background: var(--accent); color: var(--text-on-accent);
  box-shadow: var(--shadow-accent);
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.btn:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn:active { background: var(--accent-press); transform: translateY(0); }

.btn--sm { padding: 8px 16px; font-size: 12px; gap: 8px; }
.btn--lg { padding: 16px 34px; font-size: 14px; gap: 12px; }

.btn--secondary {
  background: transparent; color: var(--text-primary);
  border-color: var(--border-strong); box-shadow: none;
}
.btn--secondary:hover { background: transparent; border-color: var(--accent); color: var(--accent); }

.btn--ghost {
  background: transparent; color: var(--text-secondary); box-shadow: none;
}
.btn--ghost:hover { background: transparent; color: var(--accent); }

.btn--gold { background: var(--grad-accent); color: var(--text-on-accent); box-shadow: none; }
.btn--gold:hover { background: var(--grad-accent); filter: brightness(1.1); }

.btn .arrow { display: inline-block; transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }

.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-heading); font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: var(--radius-pill); line-height: 1.1;
  padding: 5px 12px; font-size: 11px;
  background: rgba(255,255,255,0.06); color: var(--text-secondary);
  border: 1px solid var(--border-soft);
}
.badge svg { width: 13px; height: 13px; }
.badge--sm { padding: 3px 9px; font-size: 10px; }
.badge--accent { background: rgba(var(--accent-rgb),0.14); color: var(--accent-hover); border-color: rgba(var(--accent-rgb),0.4); }
.badge--gold { background: rgba(212,156,61,0.14); color: var(--accent-gold); border-color: rgba(212,156,61,0.4); }
.badge--solid { background: var(--accent); color: var(--text-on-accent); border-color: transparent; }

/* ---------- Card ---------- */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm), var(--edge-top);
  padding: var(--space-6);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.card--accent { border-color: rgba(var(--accent-rgb),0.45); }
.card--pad-lg { padding: clamp(28px, 4vw, 44px); }
.card--pad-sm { padding: var(--space-5); }
.card--interactive:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--accent-rgb),0.55);
  box-shadow: var(--shadow-md), var(--shadow-accent);
}

/* ---------- Section header ---------- */
.section-header {
  display: flex; flex-direction: column; gap: var(--space-4);
  align-items: flex-start; text-align: left;
}
.section-header__eyebrow { display: flex; align-items: center; gap: 12px; }
.section-header__eyebrow::before {
  content: ""; width: 34px; height: 2px;
  background: var(--grad-accent); border-radius: 999px;
}
.section-header__eyebrow span {
  font-family: var(--font-heading); font-weight: 600; font-size: 13px;
  letter-spacing: var(--ls-eyebrow); text-transform: uppercase;
  color: var(--accent);
}
.section-header--gold .section-header__eyebrow span { color: var(--accent-gold); }
.section-header h1, .section-header h2 {
  font-family: var(--font-heading); font-weight: 700;
  font-size: var(--fs-display); line-height: var(--lh-heading);
  letter-spacing: 0.01em; text-transform: uppercase;
  color: var(--text-primary); text-wrap: balance;
}
.section-header__lead {
  font-family: var(--font-body); font-size: var(--fs-lead);
  line-height: 1.55; color: var(--text-muted); max-width: 620px;
}
.section-header--center {
  align-items: center; text-align: center;
  max-width: 720px; margin-inline: auto;
}

/* Header row with trailing action (e.g. "View all products") */
.section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: var(--space-6); margin-bottom: 44px; flex-wrap: wrap;
}

/* ---------- Icon tile (shared by features/stats/info) ---------- */
.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
  background: rgba(var(--accent-rgb),0.10);
  border: 1px solid rgba(var(--accent-rgb),0.3);
  border-radius: var(--radius-sm);
  width: 44px; height: 44px;
}
.icon-tile--lg {
  width: 52px; height: 52px;
  background: linear-gradient(160deg, rgba(212,156,61,0.12), rgba(var(--accent-rgb),0.06));
  border-radius: var(--radius-md);
}
.icon-tile--xl { width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(212,156,61,0.12), rgba(var(--accent-rgb),0.05)); }
.icon-tile--gold {
  color: var(--accent-gold);
  background: rgba(212,156,61,0.10); border-color: rgba(212,156,61,0.3);
}

/* ---------- StatCard ---------- */
.stat-card {
  display: flex; flex-direction: column; gap: var(--space-3);
  padding: var(--space-6);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--edge-top);
}
.stat-card .icon-tile { width: 40px; height: 40px; border-color: rgba(var(--accent-rgb),0.28); }
.stat-card__value { display: flex; align-items: baseline; gap: 4px; }
.stat-card__value strong {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.75rem); line-height: 1;
  color: var(--text-primary);
}
.stat-card__value span {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.4rem; color: var(--accent-gold);
}
.stat-card__label {
  font-family: var(--font-body); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); line-height: 1.4;
}

/* ---------- FeatureBlock ---------- */
.feature {
  display: flex; flex-direction: column; gap: var(--space-4);
  align-items: flex-start;
}
.feature--row { flex-direction: row; }
.feature__body { display: flex; flex-direction: column; gap: 8px; }
.feature__body h3 {
  font-family: var(--font-heading); font-weight: 600; font-size: 17px;
  letter-spacing: 0.02em; color: var(--text-primary);
}
.feature__body p {
  font-family: var(--font-body); font-size: 14px;
  line-height: 1.6; color: var(--text-muted);
}

/* Value card (Home — core values, centered variant) */
.value-card { text-align: center; }
.value-card__inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.value-card h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 17px;
  text-transform: uppercase; letter-spacing: 0.05em; color: #fff;
}
.value-card p { font-size: 13px; line-height: 1.55; color: var(--text-muted); }

/* ---------- ProductCard ---------- */
.product-card {
  display: flex; flex-direction: column;
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--accent-rgb),0.6);
  box-shadow: var(--shadow-md), var(--shadow-accent);
}
.product-card__img {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--grad-steel);
}
.product-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25); font-size: 13px;
}
.product-card__chip {
  position: absolute; left: 14px; top: 14px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 600;
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(3,7,17,0.7);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  padding: 5px 10px; border-radius: var(--radius-pill);
  border: 1px solid rgba(212,156,61,0.35);
}
.product-card__body {
  padding: var(--space-5);
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.product-card__body h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 20px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-primary);
}
.product-card__body p {
  font-family: var(--font-body); font-size: 13.5px;
  line-height: 1.55; color: var(--text-muted); flex: 1;
}
.product-card__cta {
  margin-top: 4px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--dur-base);
}
.product-card__cta .arrow { transition: transform var(--dur-base); }
.product-card:hover .product-card__cta { color: var(--accent-hover); }
.product-card:hover .product-card__cta .arrow { transform: translateX(4px); }

/* ---------- IndustryCard ---------- */
.industry-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 260px; padding: var(--space-6); overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--surface-raised);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.industry-card:hover { border-color: rgba(var(--accent-rgb),0.55); box-shadow: var(--shadow-md); }
.industry-card__bg {
  position: absolute; inset: 0;
  background: var(--grad-navy);
  background-size: cover; background-position: center;
  transition: transform var(--dur-slow) var(--ease-out);
}
.industry-card:hover .industry-card__bg { transform: scale(1.05); }
.industry-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,7,17,0.25) 0%, rgba(3,7,17,0.9) 80%);
}
.industry-card__content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 10px;
}
.industry-card__content .icon-tile {
  background: rgba(3,7,17,0.6);
  border-color: rgba(var(--accent-rgb),0.4);
  margin-bottom: 4px;
}
.industry-card__content h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 19px;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-primary);
}
.industry-card__content p {
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.55;
  color: var(--text-secondary);
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.industry-card:hover .industry-card__content p { max-height: 120px; opacity: 1; }
/* Touch devices can't hover — keep descriptions visible */
@media (hover: none) {
  .industry-card__content p { max-height: 120px; opacity: 1; }
}

/* ---------- DownloadCard ---------- */
.download-card {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease-out);
}
.download-card:hover { border-color: rgba(var(--accent-rgb),0.5); }
.download-card__meta { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 0; }
.download-card__meta strong {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  color: var(--text-primary); letter-spacing: 0.01em;
}
.download-card__meta span {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint);
}
.download-card__arrow {
  font-family: var(--font-heading); font-size: 18px;
  color: var(--text-muted); transition: color var(--dur-base), transform var(--dur-base);
}
.download-card:hover .download-card__arrow { color: var(--accent); transform: translateY(2px); }

/* ---------- Timeline ---------- */
.timeline {
  position: relative; display: grid;
  grid-template-columns: repeat(var(--timeline-cols, 5), 1fr);
  gap: var(--space-4);
}
.timeline::before {
  content: ""; position: absolute; left: 0; right: 0; top: 21px; height: 2px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),0.15), rgba(var(--accent-rgb),0.6), rgba(var(--accent-rgb),0.15));
}
.timeline__item {
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
}
.timeline__node {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface-deep);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative; z-index: 1;
}
.timeline__node::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.timeline__body { display: flex; flex-direction: column; gap: 6px; }
.timeline__year {
  font-family: var(--font-heading); font-weight: 800; font-size: 22px;
  color: var(--accent-gold); letter-spacing: 0.02em;
}
.timeline__title {
  font-family: var(--font-heading); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-primary);
}
.timeline__text {
  font-family: var(--font-body); font-size: 13px;
  line-height: 1.5; color: var(--text-muted);
}

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: var(--ls-nav); text-transform: uppercase; color: var(--text-muted);
}
.field label .req { color: var(--accent); }
.field input, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 15px; color: var(--text-primary);
  background: var(--surface-inset);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 13px 15px; outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.field textarea { resize: vertical; line-height: 1.6; }
.field input:focus, .field textarea:focus {
  border-color: var(--accent);
  box-shadow: var(--ring);
}
.field .hint { font-size: 12px; color: var(--text-faint); }
.field.has-error input, .field.has-error textarea { border-color: #c0504a; }
.form-error {
  background: rgba(192,80,74,0.12); border: 1px solid rgba(192,80,74,0.45);
  border-radius: var(--radius-sm); color: #e8a09c;
  font-size: 14px; padding: 12px 16px;
}
/* Honeypot — hidden from humans, present for bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.breadcrumbs a, .breadcrumbs span.crumb {
  font-family: var(--font-heading); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint);
}
.breadcrumbs a:hover { color: var(--text-secondary); }
.breadcrumbs .crumb--current { color: var(--accent-gold); }
.breadcrumbs .sep { color: var(--border-strong); font-size: 12px; }

/* ---------- Footer ---------- */
.footer {
  background: var(--surface-deep);
  border-top: 1px solid var(--border-soft);
}
.footer__grid {
  max-width: var(--container-max); margin: 0 auto;
  padding: var(--space-20) var(--container-pad) var(--space-8);
  display: grid;
  /* NOTE: explicit tracks — fr units cannot be combined with
     repeat(auto-fit, …) (invalid declaration -> single column) */
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--space-12) var(--space-8);
  align-items: start;
}
.footer__brand { display: flex; flex-direction: column; gap: var(--space-5); max-width: 300px; }
.footer__brand img {
  height: auto; width: 100%; max-width: 260px; object-fit: contain; align-self: flex-start;
}
.footer__brand .socials { margin-top: 2px; }
.footer__brand .socials a { width: 38px; height: 38px; }
.footer__brand .socials svg { width: 16px; height: 16px; }
.footer__slogan {
  font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--accent-gold); line-height: 1.5;
}
.footer__col { display: flex; flex-direction: column; gap: var(--space-4); }
.footer__col h4 {
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-primary);
}
.footer__col nav { display: flex; flex-direction: column; gap: 11px; }
.footer__col a {
  font-family: var(--font-body); font-size: 14px; color: var(--text-muted);
  transition: color var(--dur-base);
}
.footer__col a:hover { color: var(--accent); }
.footer__legal { border-top: 1px solid var(--border-subtle); }
.footer__legal-inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: var(--space-5) var(--container-pad);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-4); flex-wrap: wrap;
  font-family: var(--font-body); font-size: 12.5px; color: var(--text-faint);
}
.footer__legal-inner nav { display: flex; gap: var(--space-5); }
.footer__legal-inner a { color: var(--text-faint); }
.footer__legal-inner a:hover { color: var(--text-secondary); }

/* ---------- Layout: sections & backdrops ---------- */
.section { padding: var(--section-y) 0; }
.section--deep { background: var(--surface-deep); }
.section--base { background: var(--surface-base); }

/* Technical grid + gradient backdrop */
.tech-bg { position: relative; overflow: hidden; background: var(--grad-navy); }
.tech-bg--deep { background: var(--surface-deep); }
.tech-bg--grid::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse at 70% 20%, #000 0%, transparent 75%);
}
.tech-bg > .tech-bg__content { position: relative; }

/* ---------- Home hero ---------- */
.hero {
  min-height: clamp(560px, calc(100vh - var(--nav-h)), 780px);
  display: grid; place-items: center start;
  overflow: hidden;
}
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 60% center;
  opacity: 0.78; filter: saturate(0.92) contrast(1.08) brightness(0.88);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,7,17,0.96) 0%, rgba(3,7,17,0.84) 34%, rgba(3,7,17,0.38) 72%, rgba(3,7,17,0.48) 100%),
    linear-gradient(180deg, rgba(3,7,17,0.12) 0%, rgba(3,7,17,0.72) 100%);
}
.hero.tech-bg--grid::before { z-index: 2; opacity: 0.28; }
.hero__watermark {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  height: 78%; max-height: 620px; width: auto;
  display: none;
  opacity: 0.07; filter: grayscale(0.2); pointer-events: none; z-index: 3;
}
.hero__inner { width: 100%; padding-block: clamp(48px, 7vw, 86px); position: relative; z-index: 4; }
.hero__stack { max-width: 820px; display: flex; flex-direction: column; align-items: flex-start; gap: 22px; min-width: 0; }
.hero h1 {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2.75rem, 4.2vw, 3.7rem); line-height: 1.04;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: #fff; text-wrap: balance; max-width: 820px;
}
.hero h1 .accent { color: var(--accent); }
.hero__lead {
  font-family: var(--font-body); font-size: var(--fs-lead);
  line-height: 1.6; color: var(--text-secondary); max-width: 600px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.hero__stats { display: none; gap: 40px; margin-top: 20px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat strong {
  font-family: var(--font-heading); font-weight: 800; font-size: 28px; color: #fff;
}
.hero__stat span {
  font-family: var(--font-body); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { border-bottom: 1px solid var(--border-soft); position: relative; overflow: hidden; }
.page-hero__image {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.35; filter: saturate(0.82) contrast(1.08);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3,7,17,0.93) 0%, rgba(3,7,17,0.76) 48%, rgba(3,7,17,0.58) 100%),
    linear-gradient(180deg, rgba(3,7,17,0.18) 0%, rgba(3,7,17,0.76) 100%);
}
.page-hero.tech-bg--grid::before { z-index: 2; opacity: 0.3; }
.page-hero > .tech-bg__content, .page-hero__rule { position: relative; z-index: 3; }
.page-hero__inner {
  padding: 120px 0 64px;
  display: flex; flex-direction: column; gap: 24px;
}
.page-hero__rule { height: 3px; background: var(--grad-accent); opacity: 0.9; }

/* Green sustainability hero */
.green-hero {
  position: relative; overflow: hidden;
  background: var(--grad-green);
  border-bottom: 1px solid var(--border-soft);
}
.green-hero__image {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.2; filter: saturate(0.7) contrast(1.08);
}
.green-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 2; opacity: 0.4;
  background-image: radial-gradient(circle, rgba(120,190,140,0.18) 1.3px, transparent 1.6px);
  background-size: 20px 20px;
}
.green-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(5,29,22,0.92) 0%, rgba(7,42,31,0.75) 56%, rgba(7,42,31,0.58) 100%);
}
.green-hero__inner {
  position: relative; z-index: 3;
  padding: 130px 0 80px;
  display: flex; flex-direction: column; gap: 22px; max-width: 760px;
}
.green-hero__rule { position: relative; z-index: 3; height: 3px; background: linear-gradient(120deg, #5fae74, #d49c3d); }

/* ---------- Benefit strip ---------- */
.benefit-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
}
.benefit-strip__item {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 28px; background: var(--surface-card);
}
.benefit-strip__item .icon-tile { width: 46px; height: 46px; }
.benefit-strip__item span:last-child {
  font-family: var(--font-heading); font-weight: 600; font-size: 15px;
  color: var(--text-primary); letter-spacing: 0.03em; text-transform: uppercase;
}

/* ---------- World map ---------- */
.world-map {
  position: relative; aspect-ratio: 2.2 / 1;
  border-radius: var(--radius-md);
  background-image: url('../img/brand/world-map.png');
  background-size: cover;
  background-position: center;
  background-color: #06111f;
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.world-map::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 40%, rgba(3,7,17,0.55) 100%);
}
.world-map__marker { position: absolute; transform: translate(-50%, -50%); z-index: 1; }
.world-map__dot {
  display: block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 10px rgba(212,156,61,0.6);
}
.world-map__marker--hq .world-map__dot {
  width: 14px; height: 14px; background: var(--accent);
  box-shadow: 0 0 0 6px rgba(var(--accent-rgb),0.18), 0 0 18px rgba(var(--accent-rgb),0.7);
}
.world-map__label {
  position: absolute; left: 20px; top: -4px; white-space: nowrap;
  font-family: var(--font-heading); font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-hover);
}

/* ---------- Filter tabs (Products) ---------- */
.filter-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tab {
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: var(--ls-nav); text-transform: uppercase;
  padding: 10px 20px; border-radius: var(--radius-pill); cursor: pointer;
  color: var(--text-secondary); background: transparent;
  border: 1px solid var(--border-soft);
  transition: color var(--dur-base), background var(--dur-base), border-color var(--dur-base);
}
.filter-tab:hover { color: var(--accent); border-color: rgba(var(--accent-rgb),0.5); }
.filter-tab.is-active {
  color: var(--text-on-accent); background: var(--accent); border-color: transparent;
}

/* ---------- Grids ---------- */
.grid { display: grid; }
.grid--products { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.grid--products-lg { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; }
.grid--industries { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.grid--industries-lg { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.grid--values { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.grid--pillars { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.grid--stats-row { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid--stats-2x2 { grid-template-columns: 1fr 1fr; gap: 18px; }

/* Two-column splits — collapse on mobile (added; missing from the design) */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--start { align-items: flex-start; }
.split--map { grid-template-columns: 1fr 1.3fr; gap: 56px; }
.split--contact { grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: flex-start; }
.split--wide { gap: 56px; }

/* Sustainability split panel (Home) */
.green-split {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border-soft);
}
.green-split__visual {
  background: var(--grad-green);
  position: relative; min-height: 320px; min-width: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: rgba(120,190,140,0.55);
}
.green-split__visual svg { width: 96px; height: 96px; }
.green-split__visual--photo { background: var(--surface-raised); }
.green-split__visual--photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(5,29,22,0.06), rgba(5,29,22,0.3));
}
.green-split__visual--photo img {
  width: 100%; max-width: 100%; height: 100%; min-height: 320px; display: block;
  object-fit: cover; object-position: center;
}
.green-split__body {
  background: var(--surface-card);
  padding: clamp(32px, 5vw, 56px);
  display: flex; flex-direction: column; gap: 22px; justify-content: center; min-width: 0;
}

/* ---------- CTA band ---------- */
.cta-band { border-top: 1px solid var(--border-soft); }
.cta-band__inner {
  padding: 72px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-heading); font-weight: 800; font-size: var(--fs-h1);
  text-transform: uppercase; color: #fff; max-width: 620px; text-wrap: balance;
}

/* ---------- Quote block (About) ---------- */
.quote-block {
  max-width: 820px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; gap: 24px; align-items: center;
}
.quote-block > svg { width: 40px; height: 40px; color: var(--accent); }
.quote-block blockquote {
  margin: 0;
  font-family: var(--font-heading); font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.4;
  color: #fff; text-wrap: balance;
}
.quote-block cite { font-style: normal; display: flex; flex-direction: column; gap: 4px; }
.quote-block cite strong {
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-gold);
}
.quote-block cite span { font-family: var(--font-body); font-size: 13px; color: var(--text-faint); }

/* ---------- Contact ---------- */
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__row { display: flex; gap: 16px; align-items: flex-start; }
.contact-info__row .meta { display: flex; flex-direction: column; gap: 4px; }
.contact-info__row .meta span:first-child {
  font-family: var(--font-heading); font-size: 11px; font-weight: 600;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-faint);
}
.contact-info__row .meta span:last-child {
  font-family: var(--font-body); font-size: 15px; color: var(--text-primary); line-height: 1.5;
}
.socials { display: flex; gap: 10px; margin-top: 6px; }
.socials a {
  display: inline-flex; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--text-muted); background: var(--surface-card);
  border: 1px solid var(--border-soft); border-radius: var(--radius-sm);
  transition: color var(--dur-base), border-color var(--dur-base);
}
.socials a:hover { color: var(--accent); border-color: rgba(var(--accent-rgb),0.5); }
.socials svg { width: 18px; height: 18px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-success {
  text-align: center; padding: 48px 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.form-success__icon {
  display: inline-flex; width: 64px; height: 64px;
  align-items: center; justify-content: center;
  color: var(--accent); background: rgba(var(--accent-rgb),0.12);
  border-radius: 50%; border: 1px solid rgba(var(--accent-rgb),0.4);
}
.form-success__icon svg { width: 30px; height: 30px; }
.form-success h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 22px;
  text-transform: uppercase; color: #fff;
}
.form-success p { color: var(--text-muted); max-width: 360px; }

/* ---------- Prose (legal & long-form marketing pages) ---------- */
.prose {
  max-width: 820px;
  display: flex; flex-direction: column; gap: var(--space-4);
}
.prose h2 {
  font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-h3);
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--text-primary);
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 {
  font-family: var(--font-heading); font-weight: 600; font-size: 16px;
  letter-spacing: 0.02em; color: var(--text-secondary);
  margin-top: var(--space-2);
}
.prose p, .prose li {
  font-family: var(--font-body); font-size: 15px;
  line-height: 1.75; color: var(--text-muted);
}
.prose ul { margin: 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.prose strong { color: var(--text-secondary); font-weight: 600; }
.prose a { color: var(--accent); }
.prose a:hover { color: var(--accent-hover); }
.legal-updated {
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: var(--ls-nav); text-transform: uppercase; color: var(--text-faint);
}

/* ---------- Careers ---------- */
.role-card {
  display: flex; align-items: center; gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.role-card:hover {
  border-color: rgba(var(--accent-rgb),0.55);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md), var(--shadow-accent);
}
.role-card__meta { display: flex; flex-direction: column; gap: 5px; flex: 1; min-width: 0; }
.role-card__meta h3 {
  font-family: var(--font-heading); font-weight: 700; font-size: 17px;
  letter-spacing: 0.02em; color: var(--text-primary);
}
.role-card__tags { display: flex; flex-wrap: wrap; gap: 14px; }
.role-card__tags span {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12.5px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint);
}
.role-card__tags svg { width: 14px; height: 14px; color: var(--accent); }
.role-card__cta {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-family: var(--font-heading); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-secondary);
  transition: color var(--dur-base);
}
.role-card__cta .arrow { transition: transform var(--dur-base); }
.role-card:hover .role-card__cta { color: var(--accent-hover); }
.role-card:hover .role-card__cta .arrow { transform: translateX(4px); }

@media (max-width: 600px) {
  .role-card { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
}

/* ---------- Misc ---------- */
.badges-row { display: flex; flex-wrap: wrap; gap: 12px; }
.badges-row--center { justify-content: center; }
.stack { display: flex; flex-direction: column; }
.stack-12 { gap: 12px; } .stack-16 { gap: 16px; } .stack-20 { gap: 20px; } .stack-24 { gap: 24px; }
.mb-36 { margin-bottom: 36px; } .mb-40 { margin-bottom: 40px; }
.mb-44 { margin-bottom: 44px; } .mb-48 { margin-bottom: 48px; } .mb-56 { margin-bottom: 56px; }
.center { text-align: center; }
.self-start { align-self: flex-start; }

/* ============================================================
   Responsive — breakpoints added for production
   (the prototype shipped desktop-only; auto-fit grids already
   reflow, these collapse the fixed splits + nav)
   ============================================================ */
@media (max-width: 980px) {
  .navbar__links, .navbar__cta-desktop { display: none; }
  .navbar__burger { display: inline-flex; }

  .split, .split--map, .split--contact, .grid-2, .green-split { grid-template-columns: 1fr; }
  .split, .split--map { gap: 40px; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .hero { min-height: auto; }
  .hero__watermark { opacity: 0.05; height: 55%; }
  .hero__inner { padding-block: 72px; }
  .hero h1 { font-size: clamp(2.2rem, 10.8vw, 2.85rem); line-height: 1.06; }
  .hero__lead { font-size: 1.05rem; line-height: 1.65; }
  .hero__stats { gap: 28px; }
  .page-hero__inner { padding: 96px 0 48px; }
  .green-hero__inner { padding: 100px 0 64px; }
  .cta-band__inner { padding: 56px 0; }
  .grid--stats-2x2 { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* Timeline goes vertical */
  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline::before {
    left: 21px; right: auto; top: 0; bottom: 0; width: 2px; height: auto;
    background: linear-gradient(180deg, rgba(var(--accent-rgb),0.15), rgba(var(--accent-rgb),0.6), rgba(var(--accent-rgb),0.15));
  }
  .timeline__item { flex-direction: row; gap: 18px; }

  .section-head-row { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .world-map { aspect-ratio: 1.6 / 1; }
}

@media (max-width: 480px) {
  /* footer keeps 2 link columns side by side (brand spans full width) */
  .footer__grid { gap: var(--space-8) var(--space-6); }
  .hero__actions .btn { width: 100%; }
  .grid--stats-2x2 { grid-template-columns: 1fr; }
}

/* ---------- Print ---------- */
@media print {
  .navbar, .footer, .cta-band { display: none; }
  body { background: #fff; color: #000; }
}

/* ============ Product detail page ============ */
.pd-media {
  border-radius: 16px; overflow: hidden; min-height: 380px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
}
.pd-media img { width: 100%; height: 100%; object-fit: cover; }
.pd-media__ph {
  font-family: var(--font-heading); font-weight: 800; font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.10);
}
.pd-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.pd-label {
  font-family: var(--font-heading); font-size: 11.5px; font-weight: 600;
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-muted);
}
.pd-price { color: var(--text-primary); font-size: 1.15rem; }
.pd-avail {
  display: inline-block; padding: 4px 14px; border-radius: 999px;
  font-size: 12.5px; font-weight: 600;
}
.pd-avail--ok  { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.35); }
.pd-avail--mto { background: rgba(212,156,61,0.12); color: var(--accent-gold); border: 1px solid rgba(212,156,61,0.4); }
.pd-avail--out { background: rgba(248,113,113,0.10); color: #f87171; border: 1px solid rgba(248,113,113,0.35); }
.pd-specs { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.pd-specs li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.55; }
.pd-specs li .ico-sm { flex-shrink: 0; margin-top: 2px; }
