:root {
  --orange: #EC7626;
  --grey: #616161;
  --black: #434242;
  --accent: var(--orange);
  --accent-hover: #d4651a;
  --ink: var(--black);
  --muted: var(--grey);
  --line: #e0e0e0;
  --paper: #f5f5f5;
  --white: #ffffff;
  --section-band-1: #ffffff;
  --section-band-2: #f7f7f8;
  --footer: var(--black);
  --shadow: 0 18px 40px rgba(67, 66, 66, 0.14);
  --radius: 14px;
  --container: 1180px;
  --font: "Poppins", sans-serif;
  --display: "Poppins", sans-serif;

  /* Centralized type scale — matched to homepage */
  --fs-h1: clamp(1.75rem, 2.6vw, 2.35rem);  /* page / hero titles */
  --fs-h2: clamp(1.75rem, 2.6vw, 2.35rem);  /* section headings */
  --fs-h3: 1.05rem;      /* card / tertiary heading */
  --fs-h4: 1rem;         /* small heading */
  --fs-label: 0.72rem;   /* eyebrow / section label */
  --fs-lead: 1rem;       /* subtitle / intro */
  --fs-body: 1rem;       /* paragraph */
  --fs-small: 0.875rem;  /* meta / helper */
  --fs-nav: 0.9375rem;   /* navigation */
  --fs-btn: 0.9375rem;   /* buttons */

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 600;

  --lh-heading: 1.2;
  --lh-body: 1.7;
  --lh-tight: 1.35;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(236, 118, 38, 0.10), transparent 55%),
    linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
  line-height: var(--lh-body);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* Global heading hierarchy — homepage type style */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  color: var(--black);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: var(--fw-semibold); }
h4, h5, h6 { font-size: var(--fs-h4); font-weight: var(--fw-semibold); }

p {
  margin: 0 0 1em;
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--grey);
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}
.narrow { width: min(760px, calc(100% - 2.5rem)); }

/* Section labels / small titles */
.eyebrow,
.clients-title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  color: #EC7626 !important;
  margin-bottom: 0.75rem;
  line-height: var(--lh-tight);
}
.center { text-align: center; }
.muted { color: var(--muted); }

/* Subtitles / lead text */
.lead,
.page-lead,
.section-head p,
.products-head p,
.insights-head p {
  font-size: var(--fs-lead);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--grey);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: var(--fs-btn);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-ghost {
  border-color: rgba(255,255,255,.55);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.btn-ghost-dark {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.text-link {
  color: var(--accent);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
}
.text-link:hover { text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 252, 253, 0.88);
  border-bottom: 1px solid transparent;
  transition: transform .25s ease, border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { height: 68px; width: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.1rem;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.7rem 0.8rem;
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--ink);
  cursor: pointer;
  border-radius: 8px;
}
.nav-link:hover,
.has-sub:hover > .nav-link,
.has-sub.is-open > .nav-link { color: var(--accent); }
.nav-link .chevron {
  transition: transform .2s ease;
  opacity: 0.7;
}
.has-sub:hover > .nav-link .chevron,
.has-sub:focus-within > .nav-link .chevron,
.has-sub.is-open > .nav-link .chevron { transform: rotate(180deg); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  position: relative;
}

.header-tools--mobile {
  display: none;
}

.header-tools--desktop {
  margin-left: 0.65rem;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.header-social a,
.header-search__toggle {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 4px;
  background: #5C5C5C;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.header-social a:hover,
.header-social a:focus-visible,
.header-search__toggle:hover,
.header-search__toggle:focus-visible,
.header-search.is-open .header-search__toggle {
  color: #EC7626;
  background: #5C5C5C;
  outline: none;
}

.header-search {
  position: relative;
}

.header-search__panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 70;
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-width: min(320px, 82vw);
  padding: 0.65rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(20, 24, 31, 0.12);
}

.header-search.is-open .header-search__panel {
  display: flex;
}

.header-search__panel input[type="search"] {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.55rem 0.7rem;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--ink);
  background: #fff;
}

.header-search__panel input[type="search"]:focus {
  outline: none;
  border-color: #EC7626;
}

.header-search__panel button[type="submit"] {
  border: 0;
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  background: #EC7626;
  color: #fff;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.header-search__panel button[type="submit"]:hover {
  background: #d4651a;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.site-search-form input[type="search"] {
  flex: 1 1 16rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem 0.95rem;
  font-family: var(--font);
  font-size: 1rem;
}

.site-search-form input[type="search"]:focus {
  outline: none;
  border-color: #EC7626;
}

.site-search-count {
  margin: 0 0 1rem;
  color: var(--grey);
  font-size: 0.95rem;
}

.site-search-results {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-search-results li {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.site-search-type {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: #EC7626;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-search-results a {
  display: inline-block;
  color: #434242;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
}

.site-search-results a:hover,
.site-search-results a:focus-visible {
  color: #EC7626;
  outline: none;
}

.site-search-results p {
  margin: 0.35rem 0 0;
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.55;
}

.has-sub { position: relative; }
.submenu {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 0;
  min-width: 220px;
  padding: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(20, 24, 31, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 60;
}
.has-sub:hover > .submenu,
.has-sub:focus-within > .submenu,
.has-sub.is-open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.submenu-list { display: grid; gap: 0.1rem; }
.submenu-list a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  transition: background .15s ease, color .15s ease;
}
.submenu-list a:hover {
  background: rgba(236, 118, 38, 0.08);
  color: var(--accent);
}

/* Products-style wide submenu: categories left, items right */
.submenu-wide {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-width: min(560px, 86vw);
  padding: 0;
  overflow: hidden;
}
.submenu-cats {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.55rem;
  background: #f7f8fa;
  border-right: 1px solid var(--line);
}
.submenu-cat {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  font-family: var(--font);
  font-size: var(--fs-nav);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--muted);
  padding: 0.7rem 0.8rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.submenu-cat:hover,
.submenu-cat.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(20, 24, 31, 0.06);
}
.submenu-cat.is-active { color: var(--accent); }

.submenu-panels { position: relative; min-height: 240px; }
.submenu-panel {
  display: none;
  padding: 0.85rem 1rem 1rem;
}
.submenu-panel.is-active { display: block; }
.submenu-viewall {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
  font-size: var(--fs-label);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
}
.submenu-viewall:hover { text-decoration: underline; }
.submenu-panel ul {
  display: grid;
  gap: 0.15rem;
}
.submenu-panel a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
}
.submenu-panel ul a:hover {
  background: rgba(236, 118, 38, 0.08);
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
}

/* Hero — full-bleed video banner */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #0c1016;
}
.hero-video {
  min-height: 0;
  line-height: 0;
}
.hero-video-el {
  display: block;
  width: 100%;
  height: min(86vh, 820px);
  object-fit: cover;
  object-position: center;
  background: #0c1016;
}

/* Shared internal page banner — full-width cinematic industrial */
.page-banner {
  --banner-orange: #EC7626;
  --banner-gutter: max(1.25rem, calc((100% - var(--container)) / 2));
  --banner-x: 70%;
  --banner-y: 40%;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  min-height: clamp(430px, 38vw, 520px);
  isolation: isolate;
  color: #fff;
}
.page-banner__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-banner__image {
  position: absolute;
  inset: -3%;
  background-color: #111;
  background-image: var(--banner-image);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: var(--banner-x) var(--banner-y);
  transform: scale(1.04);
  transition: background-position 0.45s ease-out;
}
.page-banner__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 38%,
      rgba(0, 0, 0, 0.42) 62%,
      rgba(0, 0, 0, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.18) 42%,
      rgba(0, 0, 0, 0.55) 100%
    );
}
.page-banner__tech {
  position: absolute;
  inset: 0;
  opacity: 0.55;
}
.page-banner__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: -1px -1px;
  mask-image: linear-gradient(105deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 85%);
}
.page-banner__marks {
  position: absolute;
  left: var(--banner-gutter);
  right: max(1.25rem, calc(100% - var(--container) - var(--banner-gutter)));
  bottom: 1.35rem;
  height: 14px;
  background-image:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.28) 0 1px,
      transparent 1px 18px
    );
  opacity: 0.35;
  mask-image: linear-gradient(90deg, #000 0%, #000 55%, transparent 100%);
}
.page-banner__marks::before,
.page-banner__marks::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  background: rgba(236, 118, 38, 0.55);
}
.page-banner__marks::before {
  left: 0;
  height: 14px;
}
.page-banner__marks::after {
  left: 72px;
  height: 9px;
  opacity: 0.7;
}
.page-banner__frame {
  position: absolute;
  top: 1.25rem;
  right: var(--banner-gutter);
  width: min(180px, 22vw);
  height: min(110px, 16vw);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left-color: rgba(236, 118, 38, 0.45);
  opacity: 0.55;
}
.page-banner__frame::before,
.page-banner__frame::after {
  content: "";
  position: absolute;
  background: rgba(236, 118, 38, 0.7);
}
.page-banner__frame::before {
  top: -1px;
  left: -1px;
  width: 28px;
  height: 1px;
}
.page-banner__frame::after {
  top: -1px;
  left: -1px;
  width: 1px;
  height: 28px;
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: stretch;
}
.page-banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.35rem;
  width: 100%;
  max-width: calc(var(--container) + (var(--banner-gutter) * 2));
  margin: 0 auto;
  padding:
    clamp(2.25rem, 5vw, 3.5rem)
    var(--banner-gutter)
    clamp(2.5rem, 5.5vw, 3.75rem);
  animation: banner-copy-in 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.page-banner__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  align-items: center;
  margin: 0;
  max-width: 56rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.5;
}
.page-banner__sep {
  color: rgba(236, 118, 38, 0.85);
  opacity: 0.9;
}
.page-banner__breadcrumb a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color .2s ease;
}
.page-banner__breadcrumb a:hover,
.page-banner__breadcrumb a:focus-visible {
  color: var(--banner-orange);
  outline: none;
}
.page-banner__breadcrumb [aria-current="page"] {
  color: rgba(255, 255, 255, 0.88);
}

.page-banner__headline {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  max-width: 40rem;
}
.page-banner__accent {
  flex: 0 0 auto;
  width: 2px;
  align-self: stretch;
  min-height: 3.25rem;
  margin-top: 0.35rem;
  background: linear-gradient(
    180deg,
    var(--banner-orange) 0%,
    rgba(236, 118, 38, 0.35) 70%,
    transparent 100%
  );
}
.page-banner__headline-body {
  min-width: 0;
}
.page-banner__title {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
  text-wrap: balance;
}
.page-banner__lead {
  margin: 1rem 0 0;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
}

.page-banner__label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.55rem;
  margin: 0.35rem 0 0;
  padding: 0.4rem 0.75rem 0.4rem 0.65rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 2px solid var(--banner-orange);
  background: rgba(0, 0, 0, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  animation: banner-label-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}
.page-banner__label-kicker {
  color: var(--banner-orange);
  font-weight: 600;
}
.page-banner__label-sep {
  color: rgba(255, 255, 255, 0.35);
}
.page-banner__label-text {
  color: rgba(255, 255, 255, 0.9);
  word-break: break-word;
}

@keyframes banner-label-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes banner-copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-banner__label,
  .page-banner__copy,
  .page-banner__image {
    animation: none;
    transition: none;
  }
}

/* Laptop */
@media (max-width: 1100px) {
  .page-banner {
    min-height: clamp(400px, 42vw, 480px);
  }
  .page-banner__title {
    font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  }
  .page-banner__frame {
    opacity: 0.4;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .page-banner {
    min-height: 380px;
  }
  .page-banner__shade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.72) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.3) 100%
      );
  }
  .page-banner__copy {
    gap: 1.15rem;
    justify-content: flex-end;
    padding-top: 2.5rem;
    padding-bottom: 2.35rem;
  }
  .page-banner__headline {
    max-width: 34rem;
  }
  .page-banner__title {
    max-width: none;
  }
  .page-banner__frame {
    display: none;
  }
}

/* Mobile — vertical reflow, not a scaled desktop layout */
@media (max-width: 720px) {
  .page-banner {
    min-height: 0;
  }
  .page-banner__image {
    inset: 0;
    transform: none;
    background-position: 62% center;
  }
  .page-banner__shade {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.58) 38%,
        rgba(0, 0, 0, 0.78) 100%
      );
  }
  .page-banner__tech {
    opacity: 0.35;
  }
  .page-banner__marks {
    bottom: 0.85rem;
    opacity: 0.28;
  }
  .page-banner__inner {
    min-height: 0;
  }
  .page-banner__copy {
    gap: 1rem;
    padding: 2rem var(--banner-gutter) 2.15rem;
  }
  .page-banner__breadcrumb {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    row-gap: 0.2rem;
  }
  .page-banner__headline {
    flex-direction: column;
    gap: 0.75rem;
  }
  .page-banner__accent {
    width: 2.75rem;
    min-height: 2px;
    height: 2px;
    margin-top: 0;
    align-self: flex-start;
    background: linear-gradient(
      90deg,
      var(--banner-orange) 0%,
      rgba(236, 118, 38, 0.25) 100%
    );
  }
  .page-banner__title {
    font-size: clamp(1.7rem, 7.2vw, 2.15rem);
    max-width: none;
  }
  .page-banner__lead {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    line-height: 1.6;
    max-width: none;
  }
  .page-banner__label {
    margin-top: 0.15rem;
    padding: 0.35rem 0.65rem 0.35rem 0.55rem;
    font-size: 0.66rem;
    letter-spacing: 0.07em;
  }
}

.page-hero {
  padding: 4.5rem 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(236,118,38,.08), transparent),
    linear-gradient(90deg, rgba(20,24,31,.03), transparent 40%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; }
.page-lead { max-width: 52ch; }
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.product-visual {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.product-visual img { margin: 0 auto; max-height: 360px; object-fit: contain; }

.section { padding: 4.5rem 0; }

/* Alternate section bands — same pattern as About Us (skip designed bands / video heroes) */
main section:not(.page-banner):not(.home-hero):not(.contact-partners):not(.pg-cta):nth-child(odd of :not(.page-banner):not(.home-hero):not(.contact-partners):not(.pg-cta)) {
  background-color: var(--section-band-1);
}

main section:not(.page-banner):not(.home-hero):not(.contact-partners):not(.pg-cta):nth-child(even of :not(.page-banner):not(.home-hero):not(.contact-partners):not(.pg-cta)) {
  background-color: var(--section-band-2);
}

.section-head { max-width: 640px; margin-bottom: 2rem; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.86); }
.section-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
  justify-content: center;
}
.section-head + .section-cta,
.container > .section-cta { justify-content: flex-start; }

.products-section {
  background: #fff;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
}
.products-head {
  max-width: 720px;
  margin-bottom: 2.2rem;
}
.products-head h2 {
  margin-bottom: 0.45em;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
.category-card {
  display: flex;
  flex-direction: column;
  background: #e9e9e9;
  border-radius: 18px;
  overflow: hidden;
  min-height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(20, 24, 31, 0.12);
}
.category-card-media {
  aspect-ratio: 4 / 3;
  min-height: 260px;
  display: grid;
  place-items: center;
  padding: 0.6rem 0.6rem 0.2rem;
  background: #e9e9e9;
}
.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
}
.category-card h3 {
  margin: 0;
  padding: 0.85rem 1.25rem 1.25rem;
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--black);
  letter-spacing: -0.01em;
}

/* Shared product tile styles (category/product pages) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.product-tile {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 18px;
  background: #e9e9e9;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(20, 24, 31, 0.12);
}
.product-tile-media {
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-tile h3 { font-size: var(--fs-h3); margin: 0; }
.product-tile p { color: var(--muted); font-size: var(--fs-small); margin: 0; }

.industries-section {
  background: #fff;
  color: var(--black);
}
.industries-section .section-head h2 { color: var(--black); }
.industries-section .section-head p { color: var(--grey); }
.industries-section .eyebrow { color: var(--orange); }
.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.industry-card {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: end start;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  transition: transform .2s ease;
}
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  transition: transform .35s ease;
}
/* Keep gradient overlay on images only */
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,14,20,.15) 20%, rgba(10,14,20,.78) 100%);
  pointer-events: none;
}
.industry-card span {
  padding: 1rem 1.1rem;
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  line-height: var(--lh-heading);
  color: #fff;
}
.industry-card:hover { transform: translateY(-3px); }
.industry-card:hover img { transform: scale(1.05); }

.clients-section {
  background: #fff;
  
  padding-bottom: 2.5rem;
  overflow: hidden;
}
.clients-title {
  margin-bottom: 1.6rem;
  text-align: center;
}
.clients-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: clientsSlide 38s linear infinite;
  padding: 0.5rem 0;
}
.client-logo {
  flex: 0 0 auto;
  width: 140px;
  height: 72px;
  display: grid;
  place-items: center;
  background: #fff;
}
.client-logo img {
  max-width: 120px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter .2s ease, opacity .2s ease;
}
.client-logo:hover img {
  filter: none;
  opacity: 1;
}
@keyframes clientsSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.insights-section { background: var(--paper); }
.insights-head { max-width: 640px; }
.insights-head .section-cta { justify-content: flex-start; margin-top: 1.4rem; }
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.post-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  overflow: hidden;
}
.post-card > a:first-child {
  display: block;
  margin: -1.35rem -1.35rem 1rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f0f0f0;
}
.post-card > a:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card h2,
.post-card h3 { font-size: var(--fs-h3); }
.post-card p { color: var(--muted); font-size: var(--fs-body); }
.meta {
  color: var(--muted);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  margin-bottom: 0.6rem;
  line-height: var(--lh-tight);
}

.content-wrap, .prose { background: transparent; }
.prose h2 { margin-top: 1.8rem; font-size: var(--fs-h2); }
.prose h3 { font-size: var(--fs-h3); }
.prose p,
.prose li {
  color: var(--grey);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.prose ul { list-style: disc; padding-left: 1.2rem; margin: 0 0 1.2rem; display: grid; gap: 0.4rem; }
.feature-list {
  list-style: disc;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  font-size: var(--fs-body);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0 0 1rem; }
.chip {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(236,118,38,.1);
  color: var(--accent-hover);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-list { display: grid; gap: 0.7rem; }
.contact-form { display: grid; gap: 0.8rem; }
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font-family: var(--font);
  font-size: var(--fs-body);
  background: #fafbfc;
}
.form-note { color: var(--muted); font-size: var(--fs-small); }

/* Product detail extras */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-body);
}
.spec-table th,
.spec-table td {
  border: 1px solid var(--line);
  padding: 0.75rem 0.9rem;
  text-align: left;
}
.spec-table th {
  background: #f7f7f7;
  color: var(--black);
  font-weight: var(--fw-semibold);
}
.faq-list { display: grid; gap: 0.7rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  background: #fff;
}
.faq-item summary {
  cursor: pointer;
  font-weight: var(--fw-semibold);
  color: var(--black);
}
.faq-item p {
  margin: 0.7rem 0 0;
  color: var(--grey);
}

/* ===== Footer ===== */
.site-footer {
  background: #1c1c1c;
  color: #fff;
  padding: 96px 0 0;
  font-family: var(--font);
}
.footer-inner {
  padding-bottom: 0;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px 64px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex: 0 1 320px;
  max-width: 320px;
  padding-top: 4px;
}
.footer-logo img {
  display: block;
  height: 68px;
  width: auto;
  max-width: 100%;
}
.footer-address {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
}
.site-footer .footer-phone,
.site-footer .footer-email {
  margin-top: -6px;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.55;
  text-decoration: none;
  transition: color .2s ease;
}
.site-footer .footer-phone:hover,
.site-footer .footer-phone:focus-visible,
.site-footer .footer-email:hover,
.site-footer .footer-email:focus-visible {
  color: #fff;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, max-content));
  gap: 12px 72px;
  justify-content: end;
  align-items: start;
}
.footer-nav-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-links {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links li {
  margin: 0;
}
.site-footer .footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.55;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.site-footer .footer-links a:hover,
.site-footer .footer-links a:focus-visible {
  color: #fff;
  opacity: 1;
}

.footer-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
  padding-bottom: 56px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #fff;
  transition: background .2s ease, color .2s ease;
}
.footer-social a:hover,
.footer-social a:focus-visible {
  background: #fff;
  color: #1c1c1c;
}
.site-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.55;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}

.footer-cta--sites {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.footer-cta--sites::-webkit-details-marker { display: none; }
.footer-cta--sites::marker { content: ""; }
.footer-cta--sites svg {
  flex: 0 0 auto;
  transition: transform .2s ease;
}
.footer-sites[open] .footer-cta--sites svg {
  transform: rotate(90deg);
}
.site-footer .footer-sites[open] .footer-cta--sites {
  background: #fff;
  border-color: #fff;
  color: #1c1c1c;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding: 28px 0 36px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-copy,
.footer-credit {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.55;
}
.footer-copy {
  max-width: 720px;
}
.footer-credit {
  margin-left: auto;
  text-align: right;
  flex: 0 0 auto;
}
.footer-copy a,
.footer-credit a {
  color: inherit;
  text-decoration: none;
}
.footer-copy a:hover,
.footer-copy a:focus-visible,
.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: #fff;
}
.footer-sites {
  position: relative;
  flex: 0 0 auto;
}
.footer-sites-list {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 240px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  z-index: 5;
}
.footer-sites-list a {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background .2s ease;
}
.footer-sites-list a:hover,
.footer-sites-list a:focus-visible {
  background: #3a3a3a;
}

.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  padding: 0;
}

/* Footer responsive */
@media (max-width: 960px) {
  .site-footer { padding-top: 72px; }
  .footer-top {
    flex-direction: column;
    gap: 36px;
  }
  .footer-nav {
    width: 100%;
    justify-content: start;
    gap: 12px 40px;
  }
  .footer-mid {
    margin-top: 64px;
    padding-bottom: 44px;
  }
}
@media (max-width: 640px) {
  .site-footer { padding-top: 64px; }
  .footer-logo img { height: 68px; }
  .footer-brand { max-width: none; }
  .footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-mid {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 56px;
    padding-bottom: 40px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .footer-credit {
    margin-left: 0;
    text-align: right;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive type scale — keep homepage proportions */
@media (max-width: 960px) {
  :root {
    --fs-h1: clamp(1.6rem, 4vw, 2rem);
    --fs-h2: clamp(1.6rem, 4vw, 2rem);
    --fs-h3: 1.05rem;
    --fs-h4: 1rem;
    --fs-lead: 0.95rem;
  }
}
@media (max-width: 640px) {
  :root {
    --fs-h1: 1.6rem;
    --fs-h2: 1.6rem;
    --fs-h3: 1.05rem;
    --fs-h4: 1rem;
    --fs-lead: 0.95rem;
    --fs-body: 0.95rem;
    --fs-nav: 0.9375rem;
    --fs-btn: 0.875rem;
  }
}

@media (max-width: 1100px) {
  .category-grid,
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 960px) {
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .primary-nav { margin-left: 0; }
  .header-tools--desktop { display: none; }
  .header-tools--mobile {
    display: flex;
    padding: 0.85rem 0.8rem 1.1rem;
    border-top: 1px solid var(--line);
    margin-top: 0.35rem;
  }
  .header-tools--mobile .header-search__panel {
    position: static;
    margin-top: 0.55rem;
    min-width: 0;
    width: 100%;
    box-shadow: none;
  }
  .header-tools--mobile.header-tools,
  .header-tools--mobile {
    flex-wrap: wrap;
  }
  .header-tools--mobile .header-search {
    width: auto;
  }
  .header-tools--mobile .header-search.is-open {
    width: 100%;
  }
  .header-tools--mobile .header-search.is-open .header-search__panel {
    display: flex;
  }
  .primary-nav {
    position: fixed;
    inset: 92px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .primary-nav.is-open {
    max-height: calc(100vh - 92px);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list { flex-direction: column; align-items: stretch; padding: 0.8rem; }
  .has-sub > .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    min-width: 0;
    max-width: none;
    box-shadow: none;
    border: 0;
    padding: 0.2rem 0.4rem 0.6rem;
    background: transparent;
  }
  .has-sub.is-open > .submenu { display: block; }
  .submenu-wide {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .submenu-cats {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    padding: 0.35rem;
  }
  .submenu-cat {
    padding: 0.5rem 0.7rem;
  }
  .submenu-panels { min-height: 0; }
  .submenu-panel { padding: 0.55rem 0.35rem; }
  .product-hero-grid,
  .contact-panel,
  .post-grid,
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .industry-card { min-height: 200px; }
  .category-card-media { min-height: 220px; }
  .category-grid,
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .category-card h3 { padding: 0.7rem 1rem 1rem; }
}
@media (max-width: 640px) {
  .hero-video-el { height: min(62vh, 520px); }
  .category-card-media { min-height: 210px; }
  .industry-card { min-height: 190px; }
  .category-grid,
  .product-grid,
  .industry-grid,
  .post-grid,
  .product-hero-grid,
  .contact-panel { grid-template-columns: 1fr; }
  .section { padding: 3.2rem 0; }
}
