/* ============================================================
   IE Flow Meters — Homepage
   Built from Figma "IE-Home" (node 1:6). Manrope + brand blue.
   ============================================================ */

/* Self-hosted Manrope (variable, latin subset) — removes the render-blocking
   fonts.googleapis.com request. One file covers weights 400–700 via the wght
   axis. font-display:swap keeps text visible immediately (fallback → Manrope). */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --blue:      #0057B8;
  --blue-dark: #00448f;
  --ink:       #0C0D0E;
  --ink-soft:  #25282B;
  --gray:      #757575;
  --muted:     #A2A2A2;
  --bg:        #FFFFFF;
  --bg-light:  #F3F3F7;
  --bg-soft:   #F9FAFA;
  --line:      #E9E9E9;
  --line-mid:  #BEC5C8;

  --maxw: 1440px;
  --content: 1280px;
  --pad-x: 80px;
  --pad-x-wide: 162px;
  /* Fluid side gutter: min 80px, growing to center content at --content max width.
     Applied as padding so section backgrounds stay full-bleed while content caps. */
  --gutter: max(var(--pad-x), calc((100% - var(--content)) / 2));
  --radius: 12px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, p { margin: 0; }

.page {
  max-width: 100%;      /* full width so section backgrounds are full-bleed;
                           content is capped per-section via --gutter */
  margin: 0 auto;
  background: #fff;
  overflow: hidden; /* contain full-bleed media */
}

.icon { width: 24px; height: 24px; display: inline-block; fill: none; stroke: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 26px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space: nowrap;
}
.btn .icon { width: 20px; height: 20px; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dark); }
.btn--ghost { background: transparent; color: var(--muted); border-color: var(--muted); }
.btn--ghost:hover { color: var(--blue); border-color: var(--blue); }

/* ---------- Section scaffolding ---------- */
.section {
  padding: 100px var(--gutter);
}
.section--muted { background: var(--bg-light); }

.section-head { margin-bottom: 44px; }
.eyebrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.section-title {
  color: var(--ink);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
}
.centered-eyebrow {
  text-align: center;
  color: var(--blue);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 44px;
}

/* ===================== HEADER ===================== */
.site-header {
  height: 74px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  z-index: 50;
}
.logo img { width: 208px; height: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
}
.main-nav a {
  padding: 6px 12px;
  color: var(--gray);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 6px;
  transition: color .15s ease;
}
.main-nav a:hover { color: var(--blue); }
.main-nav a.is-active { color: var(--ink-soft); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  display: inline-flex;
  padding: 8px;
  border: 0;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  border-radius: 50%;
}
.icon-btn:hover { color: var(--blue); }
.search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 229px;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-mid);
  border-radius: 100px;
  color: var(--gray);
}
.search .icon { width: 20px; height: 20px; flex: none; }
.search input {
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  width: 100%;
}
.search input::placeholder { color: var(--gray); }

.nav-toggle { display: none; }

/* ===================== HERO ===================== */
.hero { padding: 62px var(--gutter) 0; }
.hero-inner {
  max-width: none;
  margin: 0;
  padding: 0;
}
.hero-title {
  font-weight: 500;
  font-size: 80px;
  line-height: 1.125;
  color: var(--ink-soft);
  max-width: 1031px;
  margin-bottom: 16px;
}
.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.hero-cta { display: flex; gap: 12px; }
.hero-lede {
  max-width: 631px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.0125em;
}
.hero-media { margin-top: 39px; }
.hero-media img { width: 100%; height: auto; }

/* ===================== STATS ===================== */
.stats { background: var(--bg-light); padding: 100px var(--gutter); }
.stats-inner { max-width: none; margin: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--bg-soft);
  border-radius: 11px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  min-height: 174px;
  justify-content: center;
}
.stat-icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(0, 87, 184, .2);
  border-radius: 50%;
  color: var(--blue);
}
.stat-icon .icon { width: 20px; height: 20px; }
.stat-num { font-weight: 600; font-size: 24px; color: var(--ink); }
.stat-label { font-size: 16px; line-height: 1.4; color: var(--ink-soft); }

/* ===================== PRODUCTS ===================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  row-gap: 50px;
}
.product-card {
  position: relative;
  background: var(--bg-light);
  border-radius: var(--radius);
  min-height: 306px;
  padding: 32px;
  overflow: hidden;
}
.product-body { position: relative; z-index: 2; max-width: 62%; }
.product-body h3 { font-weight: 700; font-size: 24px; line-height: 1.25; color: #000; margin-bottom: 12px; }
.product-body p { font-size: 16px; line-height: 1.5; color: var(--gray); margin-bottom: 12px; }
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
}
.link-cta .icon { width: 20px; height: 20px; }
.link-cta:hover { color: var(--blue-dark); }
.product-thumb {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 1;
  max-width: 58%;
  max-height: 74%;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
}

/* ===================== INDUSTRIES ===================== */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  background: #fff;
  border-radius: 10px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.industry-card:hover { box-shadow: 0 12px 30px rgba(12, 13, 14, .08); transform: translateY(-2px); }
.industry-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
}
.industry-label .icon { width: 20px; height: 20px; }
.industry-media {
  display: block;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 361 / 314;
}
.industry-media img { width: 100%; height: 100%; object-fit: cover; }

/* ===================== WHY IE ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-col {
  padding: 32px 20px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border: 1px solid rgba(0, 87, 184, .2);
  border-radius: 50%;
  color: var(--blue);
}
.why-col h3 { font-weight: 700; font-size: 24px; line-height: 1.3; color: #000; }
.why-col p { font-size: 16px; line-height: 1.7; color: var(--gray); }

/* ===================== CONTACT CTA ===================== */
.cta {
  position: relative;
  padding: 60px var(--gutter);
  background: #041b3d url("../assets/img/cta-bg.webp") center/cover no-repeat;
}
.cta-card {
  max-width: 1317px;
  margin: 0 auto;
  min-height: 303px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 24px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, .25);
  backdrop-filter: blur(2.5px);
}
.cta-content {
  max-width: 630px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  color: #fff;
}
.cta-content h2 { font-weight: 700; font-size: 48px; line-height: 1.1; }
.cta-content p { font-size: 18px; line-height: 1.7; max-width: 420px; }

/* ===================== TRUSTED BY ===================== */
.trusted { padding: 100px var(--gutter); text-align: center; }
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
.trusted-logos img { height: 64px; width: auto; object-fit: contain; }

/* ===================== ABOUT PAGE ===================== */
.section-title--sm { font-size: 40px; }

/* About hero — full-width intro paragraph, no buttons */
.about-hero-lede { max-width: 900px; margin-top: 20px; text-align: left; }

/* Manufacturing section */
.about-mfg .mfg-grid {
  display: grid;
  grid-template-columns: 731fr 533fr;
  gap: 16px;
  align-items: stretch;
}
.mfg-left { display: flex; flex-direction: column; justify-content: space-between; gap: 44px; }
.mfg-top {
  display: grid;
  grid-template-columns: 323fr 392fr;
  gap: 16px;
  align-items: start;
}
.mfg-photo { width: 100%; aspect-ratio: 323 / 424; object-fit: cover; border-radius: 12px; }
.mfg-text .eyebrow { margin-bottom: 12px; }
.mfg-text .section-title--sm { margin-bottom: 20px; }
.mfg-body { color: var(--gray); font-size: 16px; line-height: 1.7; }

.lead-heading { font-weight: 700; font-size: 24px; color: #000; margin-bottom: 28px; }
.lead-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 560px; }
.lead-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stars { flex: none; color: #E8944A; }
.stars use { stroke: currentColor; }
.lead-name { display: flex; flex-direction: column; font-size: 16px; color: var(--ink-soft); line-height: 1.4; }
.lead-name span { color: var(--gray); }

.mfg-right { border-radius: 12px; overflow: hidden; }
.mfg-right img { width: 100%; height: 100%; min-height: 100%; object-fit: cover; }

/* Collaboration section */
.collab-img { width: 100%; aspect-ratio: 1280 / 417; object-fit: cover; border-radius: 12px; margin-bottom: 44px; }
.collab-text .eyebrow { margin-bottom: 12px; }
.collab-body { margin-top: 20px; color: var(--gray); font-size: 16px; line-height: 1.6; max-width: 1053px; }

/* ===================== INDUSTRY PAGE ===================== */
/* Hero — headline + single-sentence lede, no buttons */
.industry-hero-lede { max-width: 680px; margin-top: 20px; text-align: left; }

/* Alternating content bands (Applications / Capability / Proof) */
.info-band .band-grid {
  display: grid;
  grid-template-columns: 1fr 630px;
  gap: 60px;
  align-items: center;
}
.info-band--reverse .band-grid { grid-template-columns: 630px 1fr; }
.info-band--reverse .band-media { order: -1; }

.band-text .eyebrow { margin-bottom: 12px; }
.band-text .section-title--sm { margin-bottom: 20px; }
.band-body { color: var(--gray); font-size: 16px; line-height: 1.7; max-width: 523px; }

.band-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 630 / 317;
}
.band-media img { width: 100%; height: 100%; object-fit: cover; }

/* Section head with a right-aligned action (Products band) */
.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.section-head--row .eyebrow { margin-bottom: 12px; }

/* Centered closing CTA */
.industry-cta { text-align: center; }
.industry-cta-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.industry-cta p { color: var(--gray); font-size: 18px; line-height: 1.6; max-width: 480px; }

/* ===================== CAPABILITIES & QUALITY PAGES ===================== */
/* Certifications — two-up credential cards */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 860px;
}
.cert-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.cert-card .why-icon { flex: none; margin-top: 2px; }
.cert-card h3 { font-weight: 700; font-size: 20px; line-height: 1.3; color: #000; margin-bottom: 6px; }
.cert-card p { font-size: 15px; line-height: 1.6; color: var(--gray); }

/* Quality-assurance plan — tighter row gap for the 6-up why-grid */
.qa-grid { row-gap: 44px; }

/* ===================== FOOTER ===================== */
.site-footer {
  background: #071b33;
  color: #b9c5d6;
  padding: 72px var(--gutter) 0;
}
.footer-inner { max-width: none; margin: 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.2fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand { max-width: 300px; }
.footer-logo { display: inline-block; background: #fff; padding: 9px 13px; border-radius: 8px; line-height: 0; }
.footer-logo img { height: 30px; width: auto; }
.footer-blurb { margin-top: 18px; font-size: 15px; line-height: 1.7; color: #97a6bc; }
.footer-badge {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #7f90a8;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #b9c5d6; font-size: 15px; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-dl { margin-top: 4px; }
.footer-dl a { color: #7fb0ec; font-weight: 600; }
.footer-dl a:hover { color: #fff; }
.footer-dl a::before { content: "\2193\00a0"; }

.footer-contact { font-style: normal; }
.footer-contact .fc-block { margin-bottom: 16px; }
.footer-contact .fc-label {
  display: block;
  color: #7f90a8;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-contact p { font-size: 15px; line-height: 1.6; color: #b9c5d6; }
.footer-contact a { color: #b9c5d6; transition: color .15s ease; }
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  color: #7f90a8;
}
.footer-bottom .footer-tag { color: #97a6bc; }

/* ===================== PRODUCT CATALOGUE PAGE ===================== */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px 32px 0;
  min-height: 447px;
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.cat-card:hover { box-shadow: 0 14px 34px rgba(12, 13, 14, .08); transform: translateY(-3px); }
.cat-card .eyebrow { font-size: 14px; margin-bottom: 14px; }
.cat-card h3 { font-weight: 700; font-size: 22px; line-height: 1.25; color: #000; margin-bottom: 12px; }
.cat-card p { font-size: 15px; line-height: 1.55; color: var(--gray); }
.cat-card-media {
  margin-top: auto;
  padding-top: 20px;
  height: 250px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cat-card-media img { max-height: 250px; max-width: 88%; width: auto; object-fit: contain; }

/* ---- Per-product catalogue (37 products grouped into 8 families) ---- */
.cat-family { padding-top: 56px; padding-bottom: 8px; }
.cat-family:first-of-type { padding-top: 40px; }
.cat-family .section-head { margin-bottom: 26px; }
.cat-blurb { color: var(--gray); font-size: 16px; line-height: 1.6; max-width: 660px; margin-top: 10px; }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}
.prod-card:hover { box-shadow: 0 14px 34px rgba(12, 13, 14, .08); transform: translateY(-3px); }
.prod-card-media {
  height: 190px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.prod-card-media img { max-height: 100%; max-width: 100%; object-fit: contain; }
.prod-card-text { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; }
.prod-card-text .eyebrow { font-size: 12.5px; margin: 0; }
.prod-card-text h3 { font-weight: 700; font-size: 16px; line-height: 1.3; color: #000; margin: 0; }
.prod-card-text p { font-size: 13.5px; line-height: 1.5; color: var(--gray); margin: 0; }

/* ===================== PRODUCT DETAIL PAGE ===================== */
.product-detail { padding-top: 40px; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 28px;
}
.back-link .icon { width: 20px; height: 20px; }
.back-link:hover { color: var(--blue-dark); }

.pd-hero {
  display: grid;
  grid-template-columns: 637fr 563fr;
  gap: 40px;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 40px;
}
.pd-gallery { display: flex; flex-direction: column; gap: 20px; }
.pd-main {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 637 / 466;
  overflow: hidden;
  padding: 24px;
}
.pd-main img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pd-thumbs { display: flex; gap: 10px; }
.pd-thumb {
  width: 100px;
  height: 100px;
  flex: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }

.pd-info { padding-top: 8px; }
.pd-models {
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 16px;
}
.pd-title { font-weight: 700; font-size: 32px; line-height: 1.2; color: var(--ink); margin-bottom: 12px; }
.pd-subtitle { font-weight: 600; font-size: 17px; color: var(--ink-soft); margin-bottom: 20px; }
.pd-desc { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 16px; }
.pd-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }

.pd-tabs-wrap { margin-top: 56px; }
.pd-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.pd-tab {
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  color: var(--gray);
  padding: 12px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .15s ease, border-color .15s ease;
}
.pd-tab:hover { color: var(--ink-soft); }
.pd-tab.is-active { color: var(--blue); border-bottom-color: var(--blue); }
.pd-panel { display: none; padding-top: 40px; }
.pd-panel.is-active { display: block; }

.pd-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.pd-cols h3 { font-weight: 700; font-size: 28px; color: var(--ink); margin-bottom: 20px; }
.pd-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.pd-list li { position: relative; padding-left: 26px; color: var(--gray); font-size: 15px; line-height: 1.6; }
.pd-list li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
  padding: 16px 8px;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th { text-align: left; color: var(--gray); font-weight: 500; width: 42%; }
.spec-table td { text-align: right; color: var(--ink-soft); font-weight: 600; }

.doc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; max-width: 720px; }
.doc-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
  transition: color .15s ease;
}
.doc-list a:hover { color: var(--blue); }
.doc-list .icon { width: 20px; height: 20px; color: var(--blue); flex: none; }
.doc-note { color: var(--gray); font-size: 15px; line-height: 1.7; max-width: 640px; }

/* ===================== CLIENTS PAGE ===================== */
/* Industries served — inline pill list */
.sector-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.sector-list li { display: flex; }
.sector-list a,
.sector-list span {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink-soft);
}
.sector-list a {
  transition: border-color .18s ease, color .18s ease;
}
.sector-list a:hover { border-color: var(--blue); color: var(--blue); }
.sector-list span { color: var(--gray); }

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card h3 { font-weight: 700; font-size: 20px; line-height: 1.3; color: #000; }
.contact-card p { font-size: 16px; line-height: 1.7; color: var(--gray); }
.contact-card a { color: var(--blue); }
.contact-card a:hover { text-decoration: underline; }
.contact-note { font-size: 15px; color: var(--muted); }

/* Enquiry form */
.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  max-width: 900px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 15px; font-weight: 600; color: var(--ink-soft); }
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  padding: 12px 14px;
  border: 1px solid var(--line-mid);
  border-radius: 5px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 87, 184, .12);
}
.form-actions { flex-direction: row; align-items: center; gap: 20px; flex-wrap: wrap; }
.form-note { font-size: 15px; color: var(--gray); }
.form-note a { color: var(--blue); }
.form-note a:hover { text-decoration: underline; }

/* Submission feedback */
.form-status {
  font-size: 15px;
  line-height: 1.55;
  padding: 12px 16px;
  border-radius: 5px;
  border: 1px solid var(--line-mid);
  color: var(--ink-soft);
  background: #fff;
}
.form-status--pending { color: var(--gray); }
.form-status--ok { border-color: #1E7A46; color: #14562F; background: #F2F9F4; }
.form-status--error { border-color: #B3261E; color: #8C1D18; background: #FDF3F2; }

/* Honeypot — off-screen rather than display:none, which bots skip */
.ef-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ===================== ENQUIRY MODAL ===================== */
.ef-modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 24px; }
.ef-modal[hidden] { display: none; }
.ef-backdrop { position: absolute; inset: 0; background: rgba(20, 24, 28, .55); }
body.ef-open { overflow: hidden; }
.ef-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  width: min(720px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}
.ef-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; line-height: 1;
  color: var(--gray);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.ef-close:hover { background: var(--bg-light); color: var(--ink); }
.ef-heading { font-size: 28px; line-height: 1.2; margin-top: 6px; }
.ef-sub { margin-top: 10px; color: var(--gray); font-size: 16px; line-height: 1.6; }
.ef-form { margin-top: 28px; max-width: none; }
.ef-form[hidden] { display: none; }
.ef-done { margin-top: 28px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.ef-done[hidden] { display: none; }
.ef-done-msg { font-size: 17px; line-height: 1.6; color: var(--ink-soft); }

/* Map */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1280 / 460;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-links {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
}
.map-links li { display: flex; align-items: center; gap: 10px; font-size: 16px; }
.map-links .icon { width: 20px; height: 20px; color: var(--blue); flex: none; }
.map-links a { color: var(--ink-soft); transition: color .15s ease; }
.map-links a:hover { color: var(--blue); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1200px) {
  :root { --pad-x: 48px; --pad-x-wide: 64px; }
  .hero-title { font-size: 64px; }
  .section-title, .cta-content h2 { font-size: 40px; }
}

@media (max-width: 900px) {
  .section, .stats, .trusted, .cta, .hero, .site-header, .site-footer { padding-left: 32px; padding-right: 32px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .stats, .trusted { padding-top: 72px; padding-bottom: 72px; }

  .main-nav {
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 8px 32px 16px;
    margin: 0;
    display: none;
  }
  body.nav-open .main-nav { display: flex; }
  .main-nav a { width: 100%; padding: 12px 0; font-size: 16px; }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    border: 0; background: transparent; cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; }
  .search { width: 180px; }

  .hero-title { font-size: 48px; }
  .hero-row { flex-direction: column; align-items: flex-start; gap: 24px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-col { padding: 0; }

  .about-mfg .mfg-grid { grid-template-columns: 1fr; }
  .mfg-right { min-height: 320px; }
  .mfg-right img { min-height: 320px; }
  .section-title--sm { font-size: 32px; }

  .info-band .band-grid,
  .info-band--reverse .band-grid { grid-template-columns: 1fr; gap: 32px; }
  .info-band--reverse .band-media { order: 0; }
  .band-body { max-width: none; }
  .section-head--row { flex-direction: column; align-items: flex-start; }
  .cert-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .map-embed { aspect-ratio: 4 / 3; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 40px; }
  .footer-brand { grid-column: 1 / -1; max-width: 420px; }

  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-family { padding-top: 44px; }
  .pd-hero { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .pd-cols { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  :root { --pad-x: 20px; }
  .site-header { gap: 10px; padding: 0 20px; }
  .logo img { width: 150px; }
  .icon-btn, .search { display: none; }

  .hero { padding-top: 40px; }
  .hero-inner { padding: 0 20px; }
  .hero-title { font-size: 36px; }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; }
  .btn { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .product-body { max-width: 100%; }
  .product-thumb { position: static; max-width: 60%; margin: 16px auto 0; }

  .section-title, .cta-content h2 { font-size: 30px; }
  .centered-eyebrow { font-size: 20px; }
  .cta-content p { font-size: 16px; }
  .trusted-logos { gap: 28px; }
  .trusted-logos img { height: 48px; }

  .mfg-top { grid-template-columns: 1fr; }
  .mfg-photo { aspect-ratio: 16 / 10; }
  .lead-cards { grid-template-columns: 1fr; gap: 0; }
  .lead-card:last-child { border-top: 0; padding-top: 8px; }

  .site-footer { padding-left: 20px; padding-right: 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .catalogue-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .enquiry-form { grid-template-columns: 1fr; }
  .ef-modal { padding: 12px; }
  .ef-card { padding: 28px 22px; max-height: calc(100vh - 24px); }
  .ef-heading { font-size: 24px; }
  .map-embed { aspect-ratio: 1 / 1; }
  .map-links { gap: 12px; }
  .cat-card { min-height: 0; }
  .pd-hero { padding: 20px; }
  .pd-main { aspect-ratio: 4 / 3; }
  .pd-title { font-size: 26px; }
  .pd-thumb { width: 84px; height: 84px; }
  .spec-table th { width: 52%; }
}
