/* ==========================================================================
   VS Racking Solutions — Global Stylesheet
   Palette: steel navy / industrial blue / grey, with safety-amber accent
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #0d1b2a;
  --navy-800: #14263a;
  --navy-700: #1b3350;
  --blue-600: #1c5fa8;
  --blue-500: #2477c9;
  --blue-400: #3d92e0;
  --blue-050: #eaf2fb;

  /* Steel greys */
  --steel-900: #212a33;
  --steel-700: #3f4c5a;
  --steel-500: #64748b;
  --steel-400: #8b97a5;
  --steel-300: #c3cbd4;
  --steel-200: #dde3e9;
  --steel-100: #eef1f5;
  --steel-050: #f6f8fa;
  --white: #ffffff;

  /* Accent — safety amber, used sparingly */
  --amber: #f0a500;
  --amber-dark: #c98700;

  /* Logo — icon body and wordmark use the site's visible brand blue, not black or near-black navy */
  --vs-graphite: var(--blue-600);
  --vs-steel-blue: #2b6ca3;
  --vs-off-white: #fbfaf8;
  --vs-ink-muted: #4a4a46;
  --vs-ink-dim: #b7b7b2;
  --font-logo: "Archivo", Helvetica, "Helvetica Neue", Arial, sans-serif;

  /* Semantic */
  --bg: var(--white);
  --bg-alt: var(--steel-050);
  --text: var(--steel-900);
  --text-muted: var(--steel-500);
  --border: var(--steel-200);

  /* Type */
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-head: "Barlow Condensed", "Inter", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Space & shape */
  --container: 1180px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(13, 27, 42, 0.06),
    0 2px 8px rgba(13, 27, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(13, 27, 42, 0.08),
    0 12px 28px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 18px 48px rgba(13, 27, 42, 0.16);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-500); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.2rem, 4.7vw, 3.5rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 600; color: var(--navy-800); }

:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 860px; }

.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: var(--bg-alt); }
.section--navy {
  background: var(--navy-900);
  color: var(--steel-200);
}
.section--navy h2,
.section--navy h3 { color: var(--white); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 20px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  color: var(--white);
}

/* Section heading block */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--amber);
}
.section--navy .eyebrow { color: var(--blue-400); }

.section-head { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p {
  font-size: 1.06rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.section--navy .section-head p { color: var(--steel-300); }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: var(--steel-700);
}

/* Generic responsive grid */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { flex: none; }

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--amber);
  color: var(--navy-900);
}
.btn--accent:hover { background: var(--amber-dark); color: var(--navy-900); }

.btn--outline {
  background: transparent;
  border-color: var(--steel-300);
  color: var(--navy-800);
}
.btn--outline:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
  background: var(--blue-050);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
  color: var(--white);
}

.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* Inline text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}
.link-arrow svg { transition: transform 0.2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.topbar {
  background: var(--navy-900);
  color: var(--steel-300);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
  padding-block: 6px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  letter-spacing: 0.03em;
}
.topbar-tagline .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  flex: none;
}
.topbar-contact { display: flex; gap: 22px; align-items: center; }
.topbar-contact a {
  color: var(--steel-300);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.topbar-contact a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s var(--ease);
}
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

/* Logo — horizontal lockup, per brand handoff (icon 58x50, 22px gap, wordmark left-aligned) */
.brand { display: inline-flex; align-items: center; gap: 22px; transition: opacity 150ms ease; }
.brand:hover { color: inherit; opacity: 0.85; }
.brand-icon { width: 58px; height: 50px; flex: none; }
.brand-icon-body { fill: var(--vs-graphite); }
.brand-icon-bay { fill: var(--vs-off-white); }
.brand-word { display: flex; flex-direction: column; }
.brand-word-main {
  font-family: var(--font-logo);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--vs-graphite);
}
.brand-word-sub {
  font-family: var(--font-logo);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--vs-ink-muted);
  margin-top: 6px;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  padding: 10px 15px;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--steel-700);
  position: relative;
  transition: color 0.18s var(--ease), background 0.18s var(--ease);
}
.main-nav a:hover { color: var(--navy-900); background: var(--steel-100); }
.main-nav a.is-active { color: var(--blue-600); font-weight: 600; }
.main-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 2px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 12px; }

/* The in-drawer CTA only appears in the mobile menu */
.main-nav .btn { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  position: relative;
  transition: background 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--navy-800);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), top 0.2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--steel-200);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* steel gradient wash */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 78% 12%, rgba(36, 119, 201, 0.42), transparent 62%),
    radial-gradient(700px 420px at 8% 92%, rgba(27, 51, 80, 0.9), transparent 65%),
    linear-gradient(155deg, var(--navy-900) 0%, #10233a 55%, var(--navy-800) 100%);
  z-index: -2;
}
.hero::after {
  /* faint structural grid, like racking bays */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 85%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 85%);
  z-index: -1;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(56px, 7vw, 92px);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em {
  font-style: normal;
  color: var(--blue-400);
  display: block;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel-200);
  margin-bottom: 24px;
}
.hero-badge .dot {
  position: relative;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.18);
}
.hero-badge .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--amber);
}
.hero-copy p {
  font-size: clamp(1.03rem, 1.6vw, 1.16rem);
  color: var(--steel-300);
  max-width: 54ch;
}
.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  color: var(--steel-200);
  margin: 0;
}
.hero-points svg { flex: none; color: var(--amber); }

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg);
}
.hero-visual svg {
  border-radius: var(--radius); width: 100%; height: auto;
  will-change: transform; /* JS-driven parallax on scroll — pre-promote to its own layer */
}
.hero-visual figcaption {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-400);
  padding: 12px 8px 4px;
  text-align: center;
}

/* Page (inner) hero */
.page-hero {
  background:
    linear-gradient(150deg, var(--navy-900) 0%, #12263c 60%, var(--navy-700) 100%);
  color: var(--steel-200);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(120% 100% at 80% 0%, rgba(0,0,0,0.9), transparent 70%);
  -webkit-mask-image: radial-gradient(120% 100% at 80% 0%, rgba(0,0,0,0.9), transparent 70%);
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(48px, 6.5vw, 84px);
  max-width: 900px;
  margin-inline: 0;
  margin-left: max(24px, calc((100vw - var(--container)) / 2 + 24px));
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  color: var(--steel-300);
  max-width: 62ch;
  margin-bottom: 0;
}

/* Breadcrumb */
.crumbs {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--steel-400);
  margin-bottom: 18px;
  display: flex;
  gap: 9px;
  align-items: center;
}
.crumbs a { color: var(--steel-300); }
.crumbs a:hover { color: var(--white); }
.crumbs span { color: var(--steel-500); }

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
  height: 100%;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--steel-300);
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 0; }

.card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: var(--blue-050);
  color: var(--blue-600);
  margin-bottom: 20px;
  border: 1px solid rgba(28, 95, 168, 0.14);
}
.card-icon svg { width: 25px; height: 25px; }

.card--numbered { position: relative; padding-top: 34px; }
.card-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--steel-200);
  margin-bottom: 12px;
  display: block;
}
.card--numbered:hover .card-num { color: var(--blue-400); }

/* Dark cards on navy sections */
.section--navy .card {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.12);
}
.section--navy .card:hover { border-color: rgba(255, 255, 255, 0.28); }
.section--navy .card p { color: var(--steel-300); }
.section--navy .card-icon {
  background: rgba(61, 146, 224, 0.14);
  color: var(--blue-400);
  border-color: rgba(61, 146, 224, 0.26);
}
.section--navy .card-num { color: rgba(255, 255, 255, 0.16); }

/* Product cards */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  height: 100%;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-figure {
  background: linear-gradient(160deg, var(--steel-100), var(--steel-200));
  border-bottom: 1px solid var(--border);
  padding: 26px 26px 18px;
  position: relative;
}
.product-figure svg { width: 100%; height: auto; }
.product-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
}
/* A figure used on its own, as a framed diagram */
.product-card > .product-figure:last-child {
  border-bottom: 0;
  padding-bottom: 26px;
}

.product-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { margin-bottom: 10px; }
.product-body > p { color: var(--text-muted); font-size: 0.96rem; }
.product-specs {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.product-specs li {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 6px 0;
  margin: 0;
  border-bottom: 1px dashed var(--steel-200);
}
.product-specs li:last-child { border-bottom: 0; }
.product-specs dt, .product-specs .spec-label {
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.product-specs .spec-value { font-weight: 600; color: var(--navy-800); text-align: right; }
.product-body .link-arrow { margin-top: auto; }

/* Feature list with checks */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 0.97rem;
  color: var(--steel-700);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.42em;
  width: 16px; height: 16px;
  border-radius: 3px;
  background: var(--blue-050);
  border: 1px solid rgba(28, 95, 168, 0.28);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 0.66em;
  width: 5px; height: 9px;
  border: solid var(--blue-600);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.section--navy .check-list li { color: var(--steel-300); }
.section--navy .check-list li::before {
  background: rgba(61, 146, 224, 0.16);
  border-color: rgba(61, 146, 224, 0.4);
}
.section--navy .check-list li::after { border-color: var(--blue-400); }

/* --------------------------------------------------------------------------
   8. Split / media blocks
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.split--reverse .split-media { order: 2; }

.panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: var(--shadow-sm);
}
.panel--navy {
  background: linear-gradient(155deg, var(--navy-800), var(--navy-900));
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--steel-200);
}
.panel--navy h3 { color: var(--white); }
.panel--navy strong,
.section--navy strong { color: var(--white); }
.panel--navy .eyebrow { color: var(--blue-400); }
.panel--navy .check-list li { color: var(--steel-300); }
.panel--navy .check-list li::before {
  background: rgba(61, 146, 224, 0.16);
  border-color: rgba(61, 146, 224, 0.4);
}
.panel--navy .check-list li::after { border-color: var(--blue-400); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat { background: var(--white); padding: 26px 24px; text-align: center; }
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.section--navy .stats { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.12); }
.section--navy .stat { background: var(--navy-900); }
.section--navy .stat-value { color: var(--blue-400); }
.section--navy .stat-label { color: var(--steel-400); }

/* Process timeline (horizontal steps) */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; }
.step { position: relative; padding: 0 22px 0 0; }
.step-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.step-badge {
  width: 40px; height: 40px;
  flex: none;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 2px solid var(--blue-600);
  color: var(--blue-600);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1;
}
.step-line {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(
    to right, var(--steel-300) 0 6px, transparent 6px 12px
  );
}
.step:last-child .step-line { display: none; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: 0.93rem; color: var(--text-muted); margin: 0; }

/* Roadmap (vertical, About page) */
.roadmap { list-style: none; padding: 0; margin: 0; position: relative; }
.roadmap::before {
  content: "";
  position: absolute;
  left: 19px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-600), var(--steel-300));
}
.roadmap li {
  position: relative;
  padding-left: 62px;
  margin-bottom: 34px;
}
.roadmap li:last-child { margin-bottom: 0; }
.roadmap-dot {
  position: absolute;
  left: 0; top: 2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-600);
  display: grid;
  place-items: center;
  color: var(--blue-600);
}
.roadmap li.is-future .roadmap-dot {
  border-color: var(--steel-300);
  color: var(--steel-400);
}
.roadmap-phase {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 6px;
}
.roadmap li.is-future .roadmap-phase { color: var(--steel-500); }
.roadmap h3 { margin-bottom: 8px; }
.roadmap p { color: var(--text-muted); margin-bottom: 0; font-size: 0.97rem; }

/* Sector chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
.chips li {
  margin: 0;
  padding: 9px 17px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--steel-700);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.chips li:hover { border-color: var(--blue-400); color: var(--blue-600); }

/* Quote / callout */
.callout {
  border-left: 3px solid var(--amber);
  background: var(--steel-050);
  padding: 22px 26px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.02rem;
  color: var(--steel-700);
}
.callout strong { color: var(--navy-900); }

.brochure-card {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.brochure-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-lg);
  background: var(--steel-050);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.brochure-body { flex: 1 1 320px; min-width: 0; }
.brochure-body h3 { margin: 4px 0 6px; }
.brochure-body p { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 0; }
.brochure-card .btn { flex: none; }
@media (max-width: 640px) {
  .brochure-card { text-align: center; justify-content: center; }
  .brochure-card .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   9. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(700px 320px at 15% 20%, rgba(36, 119, 201, 0.4), transparent 60%),
    linear-gradient(120deg, var(--navy-900), var(--navy-700));
  color: var(--steel-200);
  position: relative;
  overflow: hidden;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-block: clamp(44px, 6vw, 68px);
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: var(--steel-300); margin: 0; max-width: 56ch; }
.cta-band .btn-row { margin-top: 0; }

/* --------------------------------------------------------------------------
   10. Forms
   -------------------------------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field--hp {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; left: -9999px;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}
.field label .req { color: #c0392b; margin-left: 2px; }
.field .hint { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  padding: 12px 14px;
  border: 1px solid var(--steel-300);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(36, 119, 201, 0.16);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--steel-400); }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c0392b; }
.field-error {
  font-size: 0.79rem;
  color: #c0392b;
  display: none;
}
.field.has-error .field-error { display: block; }

.checkbox-row {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--text-muted);
}
.checkbox-row input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--blue-600); }

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 16px;
}

.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  font-size: 0.94rem;
  border: 1px solid;
}
.form-status.is-visible { display: block; }
.form-status--success {
  background: #eaf7ef;
  border-color: #a9d9bd;
  color: #1d6b40;
}

/* Contact info list */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  gap: 15px;
  padding: 17px 0;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.contact-list li:first-child { padding-top: 0; }
.contact-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-list .ci-icon {
  width: 40px; height: 40px;
  flex: none;
  border-radius: var(--radius);
  background: var(--blue-050);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  border: 1px solid rgba(28, 95, 168, 0.14);
}
.contact-list .ci-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-list .ci-value { font-weight: 500; color: var(--navy-800); }
.contact-list .ci-value a { color: var(--navy-800); }
.contact-list .ci-value a:hover { color: var(--blue-600); }

/* FAQ / accordion */
.faq { border-top: 1px solid var(--border); }
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq summary {
  cursor: pointer;
  padding: 20px 40px 20px 0;
  font-weight: 600;
  color: var(--navy-800);
  position: relative;
  list-style: none;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: 6px; top: 27px;
  width: 9px; height: 9px;
  border-right: 2px solid var(--steel-500);
  border-bottom: 2px solid var(--steel-500);
  transform: rotate(45deg);
  transition: transform 0.22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 30px; }
.faq details p {
  padding: 0 20px 22px 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  margin: 0;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--steel-400);
  font-size: 0.92rem;
  padding-top: clamp(48px, 6vw, 72px);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
}
.site-footer .brand-icon-body { fill: var(--vs-off-white); }
.site-footer .brand-icon-bay { fill: var(--blue-600); }
.site-footer .brand-word-main { color: var(--vs-off-white); }
.site-footer .brand-word-sub { color: var(--vs-ink-dim); }
.footer-tagline {
  font-family: "Noto Sans Devanagari", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--amber);
  margin-top: 8px;
}
.footer-about { max-width: 34ch; margin-top: 18px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--steel-400); }
.footer-col a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 4px; color: var(--blue-400); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: var(--steel-500);
}
.footer-bottom a { color: var(--steel-500); }
.footer-bottom a:hover { color: var(--steel-200); }

/* --------------------------------------------------------------------------
   12. Motion — cross-page transitions (progressive enhancement)
   Opts every same-origin navigation into the browser's native View
   Transitions. Unsupported browsers ignore the at-rule entirely and just
   navigate normally — no JS, no fallback code needed.
   -------------------------------------------------------------------------- */
@view-transition {
  navigation: auto;
}

@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) { animation: vt-fade-out 0.32s var(--ease) both; }
  ::view-transition-new(root) { animation: vt-fade-in 0.32s var(--ease) both; }
}
@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(*),
  ::view-transition-old(*),
  ::view-transition-new(*) { animation: none !important; }
}
@keyframes vt-fade-out {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-8px); }
}
@keyframes vt-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   13. Motion — scroll reveal
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 0; }
  .step:nth-child(2) .step-line { display: none; }
}

@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .page-hero .container { margin-left: auto; max-width: var(--container); }
}

@media (max-width: 880px) {
  .topbar-tagline { display: none; }
  .topbar .container { justify-content: center; }

  .header-cta .btn { display: none; }
  .nav-toggle { display: grid; }

  .main-nav {
    position: fixed;
    inset: calc(var(--header-h)) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 12px 24px 22px;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease),
      visibility 0.22s;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.is-open {
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav a {
    padding: 14px 8px;
    border-bottom: 1px solid var(--steel-100);
    border-radius: 0;
    font-size: 1rem;
  }
  .main-nav a.is-active::after { left: 8px; right: auto; width: 22px; bottom: 8px; }
  .main-nav .btn {
    margin-top: 16px;
    display: inline-flex;
    border-bottom: 0;
  }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 720px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .step { padding-right: 0; }
  .step-line { display: none !important; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .topbar-contact { gap: 16px; font-size: 0.78rem; }
  .hero-points { flex-direction: column; gap: 9px; }
}

@media (max-width: 520px) {
  .container { padding-inline: 18px; }
  .brand-word-sub { display: none; }
  .brand-word-main { font-size: 19px; }
  .brand-icon { width: 46px; height: 40px; }
  .brand { gap: 14px; }
  .stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .topbar-contact .tb-email { display: none; }
  .topbar-contact .tb-phone-2 { display: none; }
  .card { padding: 26px 22px; }
}

/* Print */
@media print {
  .site-header, .topbar, .cta-band, .nav-toggle, .site-footer,
  .scroll-progress, .to-top, .whatsapp-btn { display: none; }
  body { color: #000; }
}

/* ==========================================================================
   15. Motion layer
   Entrance animations, scroll choreography and hover micro-interactions.
   Everything here is switched off under `prefers-reduced-motion` (section 15).
   ========================================================================== */

/* ---- Keyframes ---------------------------------------------------------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(34px); }
  to   { opacity: 1; transform: none; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: none; }
}
@keyframes growX {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes driveIn {
  0%   { opacity: 0; transform: translateX(90px); }
  70%  { opacity: 1; transform: translateX(-6px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes pulseRing {
  /* transform + opacity only — compositor-only, no paint work per frame */
  0%   { transform: scale(1); opacity: 0.5; }
  70%  { transform: scale(3.4); opacity: 0; }
  100% { transform: scale(3.4); opacity: 0; }
}
@keyframes shine {
  from { transform: translateX(-120%) skewX(-18deg); }
  to   { transform: translateX(320%) skewX(-18deg); }
}
@keyframes popIn {
  0%   { opacity: 0; transform: scale(0.5); }
  60%  { opacity: 1; transform: scale(1.12); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%      { transform: translateX(-6px); }
  40%      { transform: translateX(5px); }
  60%      { transform: translateX(-3px); }
  80%      { transform: translateX(2px); }
}
@keyframes drawLine {
  from { background-size: 0% 2px; }
  to   { background-size: 100% 2px; }
}

/* ---- Hero entrance ------------------------------------------------------ */
.hero-copy > *,
.hero-copy .btn-row { animation: fadeUp 0.85s var(--ease) both; }
.hero-copy > .hero-badge  { animation-delay: 0.05s; }
.hero-copy > h1           { animation-delay: 0.16s; }
.hero-copy > p            { animation-delay: 0.28s; }
.hero-copy > .hero-points { animation-delay: 0.38s; }
.hero-copy > .btn-row     { animation-delay: 0.48s; }

.hero-badge .dot::after {
  animation: pulseRing 2.6s ease-out 1.4s infinite;
  will-change: transform, opacity;
}

.hero-visual {
  animation: zoomIn 1s var(--ease) 0.3s both;
}
.hero-visual::before {
  /* slow sheen across the framed illustration */
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: var(--radius);
  background: linear-gradient(100deg, transparent 35%,
    rgba(255, 255, 255, 0.09) 50%, transparent 65%);
  pointer-events: none;
  z-index: 2;
  animation: shine 7s ease-in-out 2s infinite;
  will-change: transform;
}

/* Hero illustration parts */
.hv-upright  { animation: fadeUp 0.7s var(--ease) 0.55s both; }
.hv-beam rect {
  transform-box: fill-box;
  transform-origin: left center;
  animation: growX 0.6s var(--ease) both;
}
.hv-beam rect:nth-child(1) { animation-delay: 0.75s; }
.hv-beam rect:nth-child(2) { animation-delay: 0.87s; }
.hv-beam rect:nth-child(3) { animation-delay: 0.99s; }
.hv-beam rect:nth-child(4) { animation-delay: 1.11s; }
.hv-load { animation: fadeDown 0.55s var(--ease) both; }
.hv-load-1 { animation-delay: 1.15s; }
.hv-load-2 { animation-delay: 1.28s; }
.hv-load-3 { animation-delay: 1.41s; }
.hv-forklift { animation: driveIn 1.5s var(--ease) 1.5s both; }
.hv-forklift g { animation: bob 3.4s ease-in-out 3s infinite; will-change: transform; }

/* Page (inner) hero */
.page-hero .crumbs { animation: fadeDown 0.6s var(--ease) both; }
.page-hero h1      { animation: fadeUp 0.75s var(--ease) 0.08s both; }
.page-hero > .container > p { animation: fadeUp 0.75s var(--ease) 0.2s both; }

/* ---- Scroll reveal: directional variants -------------------------------- */
.reveal--left  { transform: translateX(-26px); }
.reveal--right { transform: translateX(26px); }
.reveal--scale { transform: scale(0.96); }
.reveal.is-visible { transform: none; }

/* ---- Staggered lists (class applied by main.js) ------------------------- */
.js .stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc(var(--i, 0) * 75ms);
}
.stagger.is-visible > * { opacity: 1; transform: none; }

.chips.stagger > * { transform: translateY(10px) scale(0.94); }
.chips.stagger.is-visible > * { transform: none; }

/* ---- Section heading accent line --------------------------------------- */
.eyebrow::before { transform-origin: left center; }
.reveal.is-visible .eyebrow::before,
.section-head .eyebrow::before { animation: growX 0.55s var(--ease) 0.15s both; }

/* ---- Scroll progress bar (injected by main.js) -------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--blue-500), var(--amber));
  z-index: 200;
  pointer-events: none;
  will-change: transform;
}

/* ---- Back to top (injected by main.js) ---------------------------------- */
.whatsapp-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  z-index: 150;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 84px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-800);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.9);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease),
    visibility 0.28s, background 0.2s var(--ease), color 0.2s var(--ease);
  z-index: 150;
  padding: 0;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  transform: translateY(-3px);
}

/* ---- Button micro-interactions ------------------------------------------ */
.btn { position: relative; overflow: hidden; }
.btn--primary::after,
.btn--accent::after {
  content: "";
  position: absolute;
  top: -30%;
  left: 0;
  width: 42%;
  height: 160%;
  background: linear-gradient(90deg, transparent,
    rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}
.btn--primary:hover::after,
.btn--accent:hover::after { animation: shine 0.75s var(--ease) forwards; }

.btn--accent:hover { box-shadow: 0 6px 18px rgba(240, 165, 0, 0.32); }

/* ---- Nav underline ------------------------------------------------------ */
.main-nav a::before {
  content: "";
  position: absolute;
  left: 15px; right: 15px; bottom: 4px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease);
}
.main-nav a:hover::before { transform: scaleX(1); }
.main-nav a.is-active::before { display: none; }
.main-nav .btn::before { display: none; }

/* ---- Card hover --------------------------------------------------------- */
.card-icon {
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease);
}
.card:hover .card-icon {
  transform: translateY(-2px) scale(1.07);
  background: var(--blue-600);
  color: var(--white);
}
.section--navy .card:hover .card-icon,
.card--numbered:hover .card-icon { background: var(--blue-500); color: var(--white); }

.card-num { transition: color 0.3s var(--ease), transform 0.35s var(--ease); }
.card--numbered:hover .card-num { transform: translateX(3px); }

.product-card .product-figure svg {
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-figure svg { transform: scale(1.035); }

/* Chips */
.chips li { transition: border-color 0.2s var(--ease), color 0.2s var(--ease),
  transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.chips li:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Stat counters */
.stat { transition: background 0.3s var(--ease); }
.stat:hover { background: var(--blue-050); }
.section--navy .stat:hover { background: rgba(61, 146, 224, 0.1); }

/* Step badges pop in when the row is revealed */
.step.is-visible .step-badge { animation: popIn 0.5s var(--ease) both; }
.step.is-visible .step-line  { animation: growX 0.6s var(--ease) 0.18s both;
  transform-origin: left center; }

/* Roadmap dots */
.roadmap li { transition: transform 0.3s var(--ease); }
.roadmap li:hover { transform: translateX(4px); }
.roadmap-dot { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.roadmap li:hover .roadmap-dot {
  transform: scale(1.08);
  box-shadow: 0 0 0 6px rgba(28, 95, 168, 0.1);
}

/* FAQ */
.faq details[open] > p { animation: fadeUp 0.35s var(--ease) both; }
.faq summary { transition: color 0.2s var(--ease), padding-left 0.25s var(--ease); }
.faq summary:hover { color: var(--blue-600); padding-left: 6px; }

/* Form fields */
.field label { transition: color 0.2s var(--ease); }
.field:focus-within label { color: var(--blue-600); }
.form-status.is-visible { animation: fadeUp 0.45s var(--ease) both; }

/* Contact list icons */
.contact-list .ci-icon { transition: transform 0.3s var(--ease),
  background 0.3s var(--ease), color 0.3s var(--ease); }
.contact-list li:hover .ci-icon {
  transform: scale(1.08);
  background: var(--blue-600);
  color: var(--white);
}

/* Footer links */
.footer-col a { transition: color 0.2s var(--ease), padding-left 0.2s var(--ease); }
.footer-col a:hover { padding-left: 4px; }

/* Link arrows already animate; add a soft colour shift */
.link-arrow { transition: color 0.2s var(--ease); }

/* Callout */
.callout { transition: border-color 0.3s var(--ease), transform 0.3s var(--ease); }
.callout:hover { transform: translateX(3px); }

/* Header compresses slightly once scrolled */
.site-header .container { transition: min-height 0.3s var(--ease); }
.site-header.is-stuck .container { min-height: 64px; }

/* ==========================================================================
   16. Reduced motion — everything above collapses to a static page
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-copy > *,
  .hero-visual,
  .hero-visual::before,
  .hv-upright, .hv-beam rect, .hv-load, .hv-forklift, .hv-forklift g,
  .page-hero .crumbs, .page-hero h1, .page-hero > .container > p,
  .eyebrow::before, .step.is-visible .step-badge, .step.is-visible .step-line,
  .faq details[open] > p, .form-status.is-visible {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .scroll-progress { display: none; }
}
