@import url('https://api.fontshare.com/v2/css?f[]=glacial-indifference@400,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

:root {
  --olive: #3B4A2F;
  --olive-light: #4e6340;
  --olive-dark: #2a3521;
  --brown: #6B4C2A;
  --white: #ffffff;
  --off-white: #f8f8f6;
  --light-grey: #f2f2f0;
  --mid-grey: #e0e0dc;
  --text: #1a1a14;
  --text-muted: #6b6b60;
  --font: 'Glacial Indifference', 'Inter', system-ui, sans-serif;
  --nav-h: 80px;
  --max: 1200px;
  --radius: 5px;
  --transition: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(59,74,47,0.08);
  --shadow-md: 0 8px 32px rgba(59,74,47,0.12);
  --shadow-lg: 0 20px 60px rgba(59,74,47,0.16);
  --variant-transition: 0.3s ease;
  --card-border: #eaeaea;
}

/* ── SHARED UTILITIES ── */
.coming-badge { display: inline-block; background: var(--brown); color: #fff; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; animation: pulseSoft 2s infinite; margin: 0; }
@keyframes pulseSoft {
  0% { box-shadow: 0 0 0 0 rgba(168, 142, 107, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(168, 142, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 142, 107, 0); }
}
.launch-line { display: block; font-size: 0.9rem; font-weight: 800; color: var(--olive-light); margin-top: 20px; }

/* New Product pill — shared base + animated sage glow.
   Used on weighpro-wireless.html hero (where inline rules also set
   background/color/padding) and on index.html Wireless product card. */
.new-product-badge {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 4px 12px;
  background: #ffffff;
  color: #2a3521;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  position: relative;
  isolation: isolate;
  animation: np-pulse 2.8s ease-in-out infinite;
}
.new-product-badge::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from var(--np-angle, 0deg),
    rgba(143, 184, 154, 0) 0deg,
    rgba(143, 184, 154, 0) 260deg,
    rgba(143, 184, 154, 0.7) 320deg,
    #b8d8c1 355deg,
    rgba(143, 184, 154, 0) 360deg);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask-composite: exclude;
  animation: np-trace 4s linear infinite;
  z-index: -1;
  pointer-events: none;
}
@property --np-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes np-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(143, 184, 154, 0),
      0 0 8px 0 rgba(143, 184, 154, 0.25);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(143, 184, 154, 0.10),
      0 0 14px 2px rgba(143, 184, 154, 0.60);
  }
}
@keyframes np-trace { to { --np-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) {
  .new-product-badge {
    animation: none;
    box-shadow:
      0 0 0 2px rgba(143, 184, 154, 0.12),
      0 0 12px 1px rgba(143, 184, 154, 0.45);
  }
  .new-product-badge::before {
    animation: none;
    background: rgba(143, 184, 154, 0.5);
  }
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; border-radius: 5px; box-shadow: 0 6px 20px rgba(0,0,0,0.10); }
/* No shadow/radius for logos, full-bleed backgrounds, or overflow-clipped images */
.nav-logo img, .footer-logo-wrap img,
.hero-bg img, .about-hero-bg img, .industries-hero-bg img,
.product-card-img img, .why-img img, .digital-img-wrap img,
.proof-img-main img, .proof-img-sm img,
.story-main-img img, .mfg-img-tall img, .mfg-img-sm img, .made-img img,
.industry-img img, .map-placeholder img, .carousel-slide img,
.display-callout img { border-radius: 0; box-shadow: none; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1280px) { .container { padding: 0 64px; } }

.section-label, .pill-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 24px;
}

.pill-label { 
    display: inline-block; 
    font-size: 0.8rem; 
    font-weight: 800; 
    letter-spacing: 2px; 
    color: var(--olive); 
}

.bg-dark .pill-label { 
    color: #fff; 
    background: rgba(255,255,255,0.1); 
    padding: 4px 12px; 
    border-radius: 20px; 
}

/* ── REVEAL ANIMATIONS ── */
/* shared reveal animations used in both .reveal (standard) and [data-animate] (product-style) */
.reveal, [data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease-out, transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.visible, [data-animate].is-visible, [data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fallback: never leave content invisible if JS is slow */
@media (prefers-reduced-motion: reduce) {
  .reveal, [data-animate] { opacity: 1; transform: none; transition: none; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow var(--transition);
  white-space: nowrap;
  border-radius: 0;
  transform: skewX(-8deg);
}
.btn:focus-visible { outline: 3px solid var(--olive); outline-offset: 3px; }
.btn:active { transform: skewX(-8deg) scale(0.97) !important; }

.btn-primary {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
  transform: skewX(-8deg) translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--olive);
  border-color: var(--olive);
}
.btn-outline:hover {
  background: var(--olive);
  color: var(--white);
  transform: skewX(-8deg) translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-white {
  background: var(--white);
  color: var(--olive);
  border-color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  transform: skewX(-8deg) translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: skewX(-8deg) translateY(-2px);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--mid-grey);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 73px;
  width: auto;
  transition: opacity var(--transition);
  margin-left: -20px;
}
.nav-logo:hover img { opacity: 0.8; }

.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-actions {
  display: none;
  flex-shrink: 0;
}
@media (min-width: 900px) { .nav-actions { display: flex; } }

.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--olive);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--olive); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
@media (min-width: 900px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--olive);
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--mid-grey);
  padding: 20px 24px 28px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--light-grey);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--olive); }
.mobile-menu .btn {
  margin-top: 16px;
  justify-content: center;
  width: 100%;
  padding: 12px 22px;
  border-bottom: none;
  font-size: 0.75rem;
  box-sizing: border-box;
  color: var(--white) !important;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 190px;
  /* padding-top creates visual gap without breaking hover */
  padding: 16px 0 10px;
  z-index: 200;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Small caret pointer */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 10px;
  background: var(--white);
  border-left: 1px solid var(--mid-grey);
  border-top: 1px solid var(--mid-grey);
  rotate: 45deg;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-dropdown-menu li a::after { display: none; }
.nav-dropdown-menu li a:hover {
  color: var(--olive);
  background: var(--light-grey);
}

/* Dropdown arrow on trigger link */
.nav-dropdown > a .nav-drop-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.55rem;
  vertical-align: middle;
  transition: transform var(--transition);
}
.nav-dropdown:hover > a .nav-drop-arrow { transform: rotate(180deg); }

/* Mobile dropdown sub-links */
.mobile-submenu {
  display: none;
  flex-direction: column;
  padding-left: 16px;
  gap: 0;
}
.mobile-submenu.open { display: flex; }
.mobile-submenu a {
  padding: 9px 0;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--light-grey);
  color: var(--text-muted);
}
.mobile-submenu a:hover { color: var(--olive); }

/* Mobile products toggle */
.mobile-products-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--light-grey);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  transition: color var(--transition);
}
.mobile-products-toggle:hover { color: var(--olive); }
.mobile-products-toggle .mob-arrow {
  font-size: 0.6rem;
  transition: transform 0.2s ease;
}
.mobile-products-toggle.open .mob-arrow { transform: rotate(180deg); }

/* ── FOOTER ── */
.footer {
  background: #0b0f07;
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}
/* Layered radial gradient glows */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at -10% 120%, rgba(59,74,47,0.60) 0%, transparent 52%),
    radial-gradient(ellipse 55% 45% at 108% 5%,  rgba(78,99,64,0.22) 0%, transparent 50%),
    radial-gradient(ellipse 70% 55% at 55% 110%, rgba(42,53,33,0.50) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
/* SVG grain texture */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
.footer > * { position: relative; z-index: 1; }
/* Inner grid */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
@media (min-width: 640px) and (max-width: 1023px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
  }
  .footer-inner > div:first-child {
    grid-column: 1 / -1;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 40px; } }
/* Brand column */
.footer-logo-wrap { margin-bottom: 20px; margin-left: 0; }
.footer-logo-wrap img { width: 253px; height: auto; display: block; filter: brightness(0) invert(1); margin: 0; margin-left: -20px; }
@media (max-width: 639px) {
  .footer-logo-wrap img { width: 209px; }
}
.footer-tagline {
  font-size: 0.84rem; color: rgba(255,255,255,0.70);
  line-height: 1.8; max-width: 268px; margin-bottom: 28px;
}
/* Social icons */
.footer-social { display: flex; gap: 9px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.28);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
.footer-social a:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
  transform: translateY(-3px);
}
/* Nav column headings */
.footer-col-heading {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* Nav links */
.footer-nav-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav-links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.78);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.footer-nav-links a:hover { color: #fff; transform: translateX(4px); }
.footer-nav-links .footer-address {
  font-size: 0.82rem; color: rgba(255,255,255,0.50); cursor: default;
}
/* Gradient divider */
.footer-sep {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.18) 20%, rgba(255,255,255,0.18) 80%, transparent);
}
/* Bottom bar */
.footer-bottom {
  padding: 24px 0;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 10px;
}
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.50); }
.footer-copy-link { font-size: 0.74rem; color: rgba(255,255,255,0.50); text-decoration: none; transition: color 0.2s; }
.footer-copy-link:hover { color: #fff; }
.footer-dealer { color: rgba(255,255,255,0.72); font-weight: 700; letter-spacing: 0.04em; transition: color 0.2s ease; }
.footer-dealer:hover { color: #fff; }
@media (max-width: 639px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-tagline { max-width: 100%; }
}

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 60px;
  background: var(--off-white);
  border-bottom: 1px solid var(--mid-grey);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--olive);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--mid-grey);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ── SPEC TABLE ── */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--mid-grey);
  border: 1px solid var(--mid-grey);
}
.spec-item {
  background: var(--white);
  padding: 16px 20px;
}
.spec-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 4px;
}
.spec-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--olive);
}

/* ── STAT BLOCKS ── */
.stat-number {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--olive);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── FORM ── */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}
.form-input {
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 13px 16px;
  border: 1.5px solid var(--mid-grey);
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(59,74,47,0.1);
}
.form-input::placeholder { color: #b0b0a8; }

/* ── IMAGE HOVER ── */
.img-zoom { overflow: hidden; }
.img-zoom img { transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.img-zoom:hover img { transform: scale(1.04); }

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--mid-grey); }

/* ── MOBILE OVERRIDES ── */
@media (max-width: 767px) {
  /* Hide vertical stat dividers on mobile */
  .hero-stat-divider { display: none; }

  /* Stack two-col grids */
  .two-col { grid-template-columns: 1fr !important; gap: 36px !important; }

  /* Pillar cards two-col on small */
  .pillars { grid-template-columns: 1fr 1fr; }

  /* ── Reduce section vertical padding on mobile ── */
  .products-strip, .why-section, .stats-band, .digital-section,
  .story-section, .founder-section, .mfg-section,
  .proof-section, .made-section, .pillars-section,
  .compare-section, .map-section, .contact-section,
  .intro-strip { padding-top: 56px; padding-bottom: 56px; }
  .industry-block { padding-top: 56px !important; padding-bottom: 56px !important; }
  .cta-band { padding-top: 60px; padding-bottom: 60px; }
  .page-hero { padding-top: calc(var(--nav-h) + 36px); padding-bottom: 40px; }
  .stats-section { padding-top: 48px; padding-bottom: 48px; }

  /* ── Centre ALL text on mobile ── */
  .section-label { text-align: center; }

  /* Page hero (products, etc.) */
  .page-hero h1, .page-hero p { text-align: center; }

  /* Hero content sections (index) */
  .hero-content h1 { font-size: clamp(2rem, 8vw, 4.8rem) !important; max-width: 100% !important; word-break: break-word; text-align: left; }
  .hero-lead { text-align: left; max-width: 100% !important; }

  /* Section headings in two-col grids */
  .why-content h2, .why-content p,
  .digital-content h2, .digital-content p,
  .product-info h2, .product-info .product-tagline, .product-info .product-desc,
  .proof-text h2, .proof-text p,
  .made-text h2, .made-text p,
  .mfg-text h2, .mfg-text p,
  .founder-text h2, .founder-text p,
  .story-text h2, .story-text p,
  .map-text h2, .map-text p,
  .industry-text h2, .industry-text p,
  .pillars-section h2,
  .compare-section h2 { text-align: left; } /* content sections stay left */

  /* Full-width band headings */
  .stats-band .stat-number, .stats-band .stat-label,
  .cta-band h2, .cta-band p { text-align: center; }
  .cta-inner { justify-content: center; }
  .cta-btns { justify-content: center; }

  /* Strip header */
  .strip-header { justify-content: center; text-align: center; }
  .strip-header h2 { text-align: center; }

  /* Hero page variants — use !important to beat inline page styles */
  .why-hero { text-align: center; }
  .why-hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem) !important; max-width: 100% !important; word-break: break-word; }
  .why-hero p { max-width: 100% !important; }
  .contact-hero { text-align: center; }
  .contact-hero h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem) !important; max-width: 100% !important; word-break: break-word; }
  .contact-hero p { max-width: 100% !important; }
  .about-hero-content h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem) !important; max-width: 100% !important; word-break: break-word; text-align: left; }
  .about-hero-content p { text-align: left; max-width: 100% !important; }
  .industries-hero-content h1 { font-size: clamp(1.6rem, 6.5vw, 2.4rem) !important; max-width: 100% !important; word-break: break-word; text-align: left; }
  .industries-hero-content p { text-align: left; max-width: 100% !important; }

  /* Stats Band Dark */
  .stats-band-dark {
    padding: 80px 0;
    background-color: var(--olive-dark);
    color: #fff;
    text-align: center;
  }
  .stats-band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  }
  .stat-dark-num {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 8px;
    color: #fff;
  }
  .stat-dark-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
  }

  @media (max-width: 768px) {
    .stats-band-grid { grid-template-columns: 1fr 1fr; }
    .stat-dark-num { font-size: 2.5rem; }
  }

  /* Hero stats and buttons centre */
  .hero-stats { justify-content: flex-start; }
  .hero-btns { flex-direction: column !important; align-items: stretch !important; }
  .hero-btns .btn { width: 100% !important; justify-content: center !important; }

  /* Product CTA buttons */
  .product-cta { justify-content: flex-start; }

  /* Footer */
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-tagline { max-width: 100%; }
}

@media (max-width: 420px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ── PRODUCT PAGE SPECIFICS ── */
.section-pad { padding: 100px 0; }
.bg-dark { background: var(--olive-dark); color: #fff; }
.bg-light { background: #f9f9f9; }
.bg-white { background: #fff; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .v-img-wrapper { aspect-ratio: 16/10; max-height: 400px; }
}

/* Variant Toggle */
.variant-toggle { display: inline-flex; background: rgba(255,255,255,0.15); padding: 6px; border-radius: 40px; margin-bottom: 40px; position: relative; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.vt-btn { background: transparent; color: rgba(255,255,255,0.6); border: none; padding: 9px 22px; border-radius: 40px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: color 0.3s ease; position: relative; z-index: 2; white-space: nowrap; }
body[data-variant="cabin"] .vt-btn:nth-of-type(1) { color: #fff; }
body[data-variant="top-seat"] .vt-btn:nth-of-type(2) { color: #fff; }
.vt-slider { position: absolute; top: 6px; bottom: 6px; left: 6px; width: calc(50% - 6px); background: var(--olive); border-radius: 40px; transition: transform 0.3s cubic-bezier(0.2,0.8,0.2,1); z-index: 1; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
body[data-variant="top-seat"] .vt-slider { transform: translateX(100%); }

@media (max-width: 768px) {
  .variant-toggle { display: flex; width: 100%; white-space: nowrap; }
  .vt-btn { flex: 1; text-align: center; padding: 14px 4px; font-size: 0.9rem; letter-spacing: -0.5px; }
}

/* Variant Crossfade Visibility */
.v-img-wrapper { position: relative; aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; }
.v-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity var(--variant-transition); }
body[data-variant="cabin"] .v-img.cabin { opacity: 1; }
body[data-variant="top-seat"] .v-img.top-seat { opacity: 1; }
.v-text { display: none; }
body[data-variant="cabin"] .v-text.cabin { display: block; animation: smoothFadeIn 0.3s ease forwards; }
body[data-variant="top-seat"] .v-text.top-seat { display: block; animation: smoothFadeIn 0.3s ease forwards; }
@keyframes smoothFadeIn { from {opacity:0} to {opacity:1} }

/* FEAT CARDS */
.feat-card {
  background: var(--card-bg); border: 1px solid var(--card-border); padding: 30px; border-radius: 12px;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.feat-icon { color: var(--olive); margin-bottom: 20px; }
.feat-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.feat-card p { font-size: 0.95rem; color: var(--text-muted); }

/* HOW IT WORKS / HIW-GRID */
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; margin-top: 60px; }
.hiw-line { position: absolute; top: 40px; left: 0; width: 0; height: 2px; background: rgba(255,255,255,0.2); transition: width 1s ease 0.3s; z-index: 1; }
.hiw-grid.visible .hiw-line, .hiw-grid.is-visible .hiw-line { width: 100%; }
.hiw-step { position: relative; z-index: 2; padding-top: 20px; }
.hiw-num { font-size: 5rem; font-weight: 800; color: var(--olive-light); line-height: 1; margin-bottom: 20px; display:block; }
@media (max-width: 768px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 60px; }
  .hiw-line { width: 2px; height: 0; top: 0; left: 40px; transition: height 1s ease 0.3s; }
  .hiw-grid.visible .hiw-line, .hiw-grid.is-visible .hiw-line { height: 100%; width: 2px; }
}

/* FIND YOUR KIT (FYK) */
.fyk { background: #f5f5f7; }
.fyk-step { display: none; margin-bottom: 60px; }
.fyk-step.is-active { display: block; animation: dropIn 0.4s ease forwards; }
@keyframes dropIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.tc-card { background: #fff; border: 2px solid transparent; border-radius: 12px; padding: 40px; text-align: center; cursor: pointer; transition: all 0.2s; position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.tc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.tc-card.selected { border-color: var(--olive); }
.tc-card .check-circle { position: absolute; top: 20px; right: 20px; width: 24px; height: 24px; background: var(--olive); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0.5); transition: 0.2s; }
.tc-card.selected .check-circle { opacity: 1; transform: scale(1); }
.tc-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; }
.pill-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.make-pill { background: #fff; border: 1px solid #ddd; padding: 12px 24px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: 0.2s; font-size: 0.95rem; white-space: nowrap; }
.make-pill:hover { border-color: var(--olive); }
.make-pill.selected { background: var(--olive); color: #fff; border-color: var(--olive); }
.res-card { background: #fff; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); overflow: hidden; }
.res-inner { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.res-images { display: flex; gap: 20px; }
.res-img-wrap { flex: 1; min-width: 0; aspect-ratio: 4/3; background: #eee; border-radius: 8px; overflow: hidden; position: relative; }
.res-img-wrap img { width: 100%; height: 100%; object-fit: cover; animation: zoomIn 0.8s cubic-bezier(0.2,0.8,0.2,1) forwards; }
@keyframes zoomIn { from { transform: scale(0.95); } to { transform: scale(1); } }
.placeholder-div { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; background: #e5e5e5; color: #888; font-weight: 700; text-align: center; padding: 20px; }
.res-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.res-btns .btn { flex: 1 1 auto; min-width: 140px; text-align: center; justify-content: center; padding: 12px 20px; }
@media (max-width: 900px) {
  .res-inner { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
  .res-images { gap: 12px; }
}
@media (max-width: 600px) {
  .tc-card { padding: 28px 20px; }
  .tc-card h3 { font-size: 1.2rem; }
  .make-pill { padding: 10px 18px; font-size: 0.88rem; }
  .res-images { flex-direction: column; }
  .res-img-wrap { aspect-ratio: 4/3; }
  .res-btns { flex-direction: column; }
  .res-btns .btn { width: 100%; min-width: unset; }
}

/* COMPARE TABLE */
.compare-table { display: grid; background: #fff; border-radius: 12px; overflow: hidden; border: 1px solid var(--card-border); }
.ct-row { display: grid; grid-template-columns: 2fr 1.5fr 1.5fr; border-bottom: 1px solid var(--card-border); }
.ct-row:last-child { border-bottom: none; }
.ct-head { background: #f9f9f9; font-weight: 800; font-size: 0.85rem; text-transform: uppercase; color: var(--text-muted); }
.ct-cell { padding: 20px 24px; display: flex; align-items: center; }
.ct-feature { font-weight: 800; color: var(--text); }
.ct-pro { color: var(--olive); font-weight: 700; }
.ct-other { color: var(--text-muted); }
@media (max-width: 768px) {
  .compare-table { display: block; border: none; background: transparent; }
  .ct-row.ct-head { display: none; }
  .ct-row { display: block; background: #fff; border: 1px solid var(--card-border); border-radius: 12px; padding: 20px; margin-bottom: 12px; }
  .ct-cell { padding: 10px 0; border-bottom: 1px solid #eee; display: block; }
  .ct-cell:last-child { border-bottom: none; }
  .ct-pro::before { content: 'WeighPro: '; font-size: 0.8rem; text-transform: uppercase; display: block; color: var(--text-muted); margin-bottom: 4px; }
  .ct-other::before { content: 'Other Systems: '; font-size: 0.8rem; text-transform: uppercase; display: block; color: var(--text-muted); margin-bottom: 4px; }
}

/* GALLERY / ACCORDIONS */
.gal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 768px) { .gal-grid { grid-template-columns: 1fr; } }
.gal-item { border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; position: relative; background: #eee; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: flex-end; padding: 24px; opacity: 0; transition: opacity 0.3s; }
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span { color: #fff; font-weight: 800; font-size: 1.2rem; transform: translateY(10px); transition: transform 0.3s; }
.gal-item:hover .gal-overlay span { transform: translateY(0); }

.acc-item { border-bottom: 1px solid var(--card-border); }
.acc-item:first-child { border-top: 1px solid var(--card-border); }
.acc-btn { width: 100%; background: transparent; border: none; padding: 24px 0; text-align: left; font-size: 1.1rem; font-weight: 800; cursor: pointer; display: flex; justify-content: space-between; color: var(--text); }
.acc-btn::before { content: ''; width: 4px; height: 0; background: var(--olive); position: absolute; left: -20px; transition: height 0.3s; }
.acc-item { position: relative; }
.acc-item.is-open .acc-btn::before { height: 24px; }
.acc-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.acc-inner { padding-bottom: 24px; color: var(--text-muted); line-height: 1.6; }
.acc-icon { transition: transform 0.3s; }
.acc-item.is-open .acc-icon { transform: rotate(180deg); }

/* MISC PRODUCT PAGE */
.callout-box { border-left: 4px solid var(--olive); padding-left: 20px; margin-top: 30px; opacity: 0.8; font-size: 0.95rem; }
.testi-quote { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.4; margin-bottom: 30px; position:relative; z-index:2; }
.testi-author { font-size:1.1rem; color:var(--olive-light); font-weight:700; }
.cb-xsell { font-size: 0.9rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--olive-light); margin-bottom: 20px; display: inline-block; transition: opacity 0.2s; }
.cb-xsell:hover { opacity: 0.8; }
.hero-btns { display: flex; gap: 16px; margin-top: 40px; }
@media (max-width: 500px) {
  .hero-btns { flex-direction: column; gap: 12px; }
  .hero-btns .btn { width: 100%; text-align: center; justify-content: center; }
}

/* ── LEGAL / COMPLIANCE PAGES ── */
.legal-section {
  padding: 56px 0 88px;
  background: var(--white);
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-updated {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 26px;
}
.legal-content > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--olive-dark);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin: 36px 0 14px;
  padding-top: 30px;
  border-top: 1px solid var(--mid-grey);
}
.legal-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.legal-content li {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 6px;
}
.legal-content a {
  color: var(--olive);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.legal-content a:hover { color: var(--olive-dark); }
.legal-content strong { color: var(--olive-dark); font-weight: 700; }
.legal-contact-block {
  margin: 4px 0 16px;
  padding: 20px 24px;
  background: var(--off-white);
  border-left: 2px solid var(--olive);
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--text-muted);
}
.legal-contact-block strong { display: inline-block; min-width: 64px; }
@media (max-width: 767px) {
  .legal-section { padding: 40px 0 64px; }
  .legal-content h2 { margin-top: 28px; padding-top: 24px; }
}

/* ── COOKIE CONSENT ── */
.cookie-consent {
  position: fixed;
  z-index: 9000;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 420px;
  margin-left: auto;
  background: #ffffff;
  border: 1px solid var(--mid-grey);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 22px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-text {
  font-family: var(--font);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 18px;
}
.cookie-consent-text a {
  color: var(--olive);
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.cookie-consent-text a:hover { color: var(--olive-dark); }
.cookie-consent-actions {
  display: flex;
  gap: 16px;
}
.cookie-consent .cookie-btn {
  flex: 1 1 0;
  justify-content: center;
}
@media (max-width: 600px) {
  .cookie-consent {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: none;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: opacity 0.2s ease; transform: none; }
  .cookie-consent.is-visible { transform: none; }
}
