:root {
  --ink: #13242b;
  --ink-soft: #40545c;
  --muted: #66777e;
  --teal-950: #04343d;
  --teal-900: #073f49;
  --teal-800: #075764;
  --teal-700: #087584;
  --teal-600: #118f9e;
  --teal-500: #27adba;
  --aqua: #62d2d9;
  --aqua-soft: #dff5f6;
  --orange: #e98b20;
  --orange-soft: #fff0dd;
  --green: #23a66f;
  --red: #d95146;
  --surface: #ffffff;
  --surface-2: #f4f8f9;
  --surface-3: #eaf2f4;
  --line: #d8e4e7;
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow-sm: 0 10px 30px rgba(12, 49, 58, 0.08);
  --shadow-md: 0 24px 70px rgba(8, 47, 56, 0.13);
  --shadow-lg: 0 40px 100px rgba(5, 37, 44, 0.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

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

button, input, textarea, select { font: inherit; }
button { color: inherit; }

a { color: inherit; text-decoration: none; }

p, h1, h2, h3, h4 { margin-top: 0; }
p:last-child { margin-bottom: 0; }

::selection { color: var(--teal-950); background: var(--aqua); }

:focus-visible {
  outline: 3px solid rgba(39, 173, 186, 0.45);
  outline-offset: 4px;
  border-radius: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #fff;
  background: var(--teal-900);
  border-radius: 8px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(78px, 8vw, 126px);
}


h1, h2, h3 {
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight: 670;
}

h1 em {
  color: var(--teal-600);
  font-style: normal;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 650;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 680;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background-color .22s ease, border-color .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button--small { min-height: 42px; padding: 10px 17px; font-size: 14px; }
.button--primary {
  color: #fff;
  background: var(--teal-700);
  box-shadow: 0 10px 24px rgba(8, 117, 132, .24);
}
.button--primary:hover { background: var(--teal-800); box-shadow: 0 15px 32px rgba(8, 117, 132, .3); }
.button--ghost {
  color: var(--teal-900);
  border-color: rgba(7, 63, 73, .2);
  background: rgba(255, 255, 255, .72);
}
.button--ghost:hover { border-color: var(--teal-600); background: #fff; }
.button--light { color: var(--teal-950); background: #fff; box-shadow: 0 14px 35px rgba(0,0,0,.18); }
.button--light:hover { background: var(--aqua-soft); }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.05); }
.button--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(7, 63, 73, .08);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 12px 40px rgba(9, 49, 58, .08); background: rgba(255,255,255,.95); }
.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; width: 126px; }
.brand img { width: 126px; max-height: 69px; }
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}
.site-nav a, .text-link {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color .2s ease;
}
.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--teal-600);
  transition: transform .25s var(--ease);
}
.site-nav a:hover, .text-link:hover { color: var(--teal-700); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.menu-toggle__label { font-size: 13px; font-weight: 800; }
.menu-toggle__icon { display: grid; width: 24px; gap: 5px; }
.menu-toggle__icon i { display: block; height: 2px; background: var(--ink); transform-origin: center; transition: transform .25s ease, opacity .2s ease; }

/* Hero */
.hero {
  min-height: min(820px, calc(100vh - var(--header-height)));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(58px, 7vw, 100px);
  background:
    radial-gradient(circle at 12% 10%, rgba(98, 210, 217, .15), transparent 27%),
    linear-gradient(180deg, #fbfdfd 0%, #f5f9fa 100%);
}
.hero::after {
  position: absolute;
  right: -11vw;
  bottom: -30vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(8, 117, 132, .09);
  border-radius: 50%;
  content: "";
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}
.hero-glow--one {
  top: 8%;
  right: 8%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(98,210,217,.22), transparent 66%);
}
.hero-glow--two {
  bottom: 0;
  left: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(233,139,32,.08), transparent 68%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(520px, 1.07fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
}
.hero-copy { position: relative; z-index: 3; }
.hero-lead {
  max-width: 680px;
  margin-bottom: 31px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  display: grid;
  max-width: 590px;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.hero-stats div { display: grid; gap: 2px; padding-right: 18px; }
.hero-stats div + div { padding-left: 20px; border-left: 1px solid var(--line); }
.hero-stats strong { color: var(--teal-800); font-size: clamp(24px, 2.6vw, 34px); line-height: 1; letter-spacing: -.04em; }
.hero-stats span { color: var(--muted); font-size: 12px; font-weight: 700; line-height: 1.35; }

.hero-stage {
  position: relative;
  min-height: 600px;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,.88);
  background: var(--surface-3);
  box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media--control {
  z-index: 1;
  top: 20px;
  right: 0;
  width: 78%;
  aspect-ratio: 4 / 3;
  border-radius: 48px 48px 48px 140px;
  transform: rotate(1.4deg);
}
.hero-media--genset {
  z-index: 3;
  bottom: 24px;
  left: 0;
  width: 37%;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  transform: rotate(-3.5deg);
}
.software-card {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 22px;
  width: 66%;
  overflow: hidden;
  border: 1px solid rgba(7,63,73,.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(7, 45, 53, .25);
  transform: rotate(-1deg);
}
.software-card__bar {
  display: flex;
  height: 29px;
  align-items: center;
  gap: 5px;
  padding-inline: 11px;
  color: rgba(255,255,255,.8);
  background: var(--teal-900);
}
.software-card__bar span { width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); }
.software-card__bar span:nth-child(2) { background: #f1b55b; }
.software-card__bar span:nth-child(3) { background: #ee756d; }
.software-card__bar b { margin-left: 6px; font-size: 8px; font-weight: 600; letter-spacing: .02em; }
.software-card img { width: 100%; }
.live-chip {
  position: absolute;
  z-index: 5;
  top: 13%;
  left: 4%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--teal-950);
  border: 1px solid rgba(7, 63, 73, .08);
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 800;
}
.live-chip span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(35,166,111,.13); }
.hero-ring {
  position: absolute;
  z-index: 0;
  right: -22%;
  bottom: -13%;
  width: 76%;
  fill: none;
  stroke: rgba(39,173,186,.24);
  stroke-width: 2;
  stroke-dasharray: 3 10;
  animation: rotateRing 38s linear infinite;
}
@keyframes rotateRing { to { transform: rotate(360deg); } }

/* Trust strip */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip__inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.trust-strip__label { color: var(--ink-soft); font-size: 13px; font-weight: 800; }
.role-list { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; }
.role-list span { padding: 7px 11px; color: var(--teal-800); border-radius: 999px; background: var(--aqua-soft); font-size: 12px; font-weight: 750; }
.trust-strip a, .arrow-link { color: var(--teal-700); font-size: 13px; font-weight: 800; }
.trust-strip a:hover, .arrow-link:hover { color: var(--teal-950); }

/* General section headings */
.section-heading { margin-bottom: clamp(42px, 5vw, 72px); }
.section-heading--split { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); align-items: end; gap: 70px; }
.section-heading--split h2 { max-width: 790px; margin-bottom: 0; }
.section-heading--split > p { margin: 0 0 5px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.section-heading--center { max-width: 770px; margin-inline: auto; text-align: center; }
.section-heading--center > p:last-child { color: var(--muted); font-size: 18px; }
.section-heading--inverse h2, .section-heading--inverse > p { color: #fff; }
.section-heading--inverse > p { color: rgba(255,255,255,.7); }

/* Architecture */
.platform { background: var(--surface); }
.architecture-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0 0 clamp(78px, 9vw, 126px);
  padding: 0;
  list-style: none;
  counter-reset: flow;
}
.architecture-flow li {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, #fff, #f6fafb);
  box-shadow: 0 12px 35px rgba(7, 63, 73, .05);
}
.architecture-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 58px;
  right: -27px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "→";
  display: grid;
  place-items: center;
  color: var(--teal-600);
  background: #fff;
  font-weight: 800;
}
.architecture-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 35px;
  place-items: center;
  border-radius: 15px;
  color: var(--teal-700);
  background: var(--aqua-soft);
}
.architecture-icon svg, .benefit-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-number {
  position: absolute;
  top: 28px;
  right: 25px;
  color: rgba(7, 63, 73, .2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
}
.architecture-flow h3 { font-size: 22px; }
.architecture-flow p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Fleet and applications */
.fleet-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr); align-items: center; gap: clamp(50px, 7vw, 96px); }
.application-mosaic { display: grid; height: 520px; grid-template-columns: .92fr 1.08fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.application-tile { position: relative; margin: 0; overflow: hidden; border-radius: 22px; background: var(--surface-3); }
.application-tile--wide { grid-column: span 1; }
.application-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.application-tile:hover img { transform: scale(1.045); }
.application-tile::after { position: absolute; inset: 38% 0 0; content: ""; background: linear-gradient(transparent, rgba(2,24,29,.72)); }
.application-tile figcaption { position: absolute; z-index: 2; right: 18px; bottom: 14px; left: 18px; color: #fff; font-size: 13px; font-weight: 800; }
.application-tile:nth-child(1) { border-radius: 40px 20px 20px 20px; }
.application-tile:nth-child(4) { border-radius: 20px 20px 40px 20px; }
.fleet-copy > p { margin-bottom: 28px; color: var(--muted); font-size: 18px; }
.compatibility-group { display: grid; grid-template-columns: 82px 1fr; align-items: start; gap: 14px; margin-top: 19px; }
.compatibility-label { padding-top: 5px; color: var(--ink-soft); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.chip-list, .protocol-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-list span, .protocol-list span { padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--teal-800); background: #fff; font-size: 12px; font-weight: 750; }
.check-list { display: grid; gap: 13px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 29px; color: var(--ink-soft); }
.check-list li::before { position: absolute; top: 2px; left: 0; width: 19px; height: 19px; content: "✓"; display: grid; place-items: center; color: var(--teal-800); border-radius: 50%; background: var(--aqua-soft); font-size: 12px; font-weight: 900; }
.check-list--compact { margin-top: 30px; gap: 9px; }
.check-list--compact li { font-size: 14px; }

/* Tasks */
.tasks {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(98,210,217,.16), transparent 28%),
    linear-gradient(145deg, #062f37 0%, #073f49 55%, #0a5661 100%);
}
.tasks::before {
  position: absolute;
  top: -250px;
  left: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(98,210,217,.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(98,210,217,.03), 0 0 0 160px rgba(98,210,217,.025);
}
.task-tabs {
  position: relative;
  display: flex;
  margin-bottom: 24px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-dark);
  scrollbar-width: thin;
  scrollbar-color: rgba(98,210,217,.45) transparent;
}
.task-tabs button {
  flex: 0 0 auto;
  padding: 16px 18px 17px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: rgba(255,255,255,.58);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.task-tabs button:hover { color: #fff; background: rgba(255,255,255,.04); }
.task-tabs button[aria-selected="true"] { color: #fff; border-bottom-color: var(--aqua); }
.task-panel {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(350px, .78fr) minmax(480px, 1.22fr);
  align-items: center;
  gap: clamp(45px, 7vw, 95px);
  padding: clamp(32px, 5vw, 62px);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 30px 90px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
}
.task-panel::after { position: absolute; right: -15%; bottom: -55%; width: 510px; height: 510px; border-radius: 50%; content: ""; background: radial-gradient(circle, rgba(98,210,217,.18), transparent 67%); pointer-events: none; }
.task-panel__copy { position: relative; z-index: 2; }
.task-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 25px; }
.task-meta span { padding: 7px 10px; color: var(--aqua); border: 1px solid rgba(98,210,217,.22); border-radius: 999px; background: rgba(98,210,217,.07); font-size: 11px; font-weight: 800; letter-spacing: .03em; }
.task-panel h3 { margin-bottom: 17px; color: #fff; font-size: clamp(33px, 4vw, 51px); }
.task-panel__copy > p { margin-bottom: 25px; color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.65; }
.task-points { display: grid; gap: 13px; margin: 0 0 28px; padding: 0; list-style: none; }
.task-points li { position: relative; padding-left: 28px; color: rgba(255,255,255,.9); font-size: 14px; }
.task-points li::before { position: absolute; top: 2px; left: 0; content: "✓"; color: var(--aqua); font-weight: 900; }
.task-panel .protocol-list span { color: rgba(255,255,255,.78); border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.05); }
.task-panel__visual { position: relative; z-index: 2; }
.task-screen {
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
  transition: opacity .16s ease, transform .16s ease;
}
.task-screen.is-changing { opacity: .3; transform: translateY(5px) scale(.99); }
.task-screen img { width: 100%; }
.task-screen__caption { position: absolute; right: 22px; bottom: -18px; display: flex; align-items: center; gap: 8px; padding: 10px 14px; color: var(--teal-950); border-radius: 999px; background: #fff; box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 800; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(35,166,111,.13); }

/* Billing */
.billing-band { padding-block: clamp(72px, 7vw, 104px); background: var(--surface-2); }
.billing-grid { display: grid; grid-template-columns: .8fr 1.1fr .85fr; align-items: center; gap: clamp(35px, 5vw, 70px); }
.billing-grid h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 50px); }
.billing-points { display: grid; gap: 23px; }
.billing-points div { display: grid; gap: 5px; padding-left: 20px; border-left: 2px solid var(--aqua); }
.billing-points strong { color: var(--teal-900); font-size: 15px; }
.billing-points span { color: var(--muted); font-size: 13px; line-height: 1.55; }
.subscription-card { padding: 17px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: var(--shadow-md); transform: rotate(1.5deg); }
.subscription-card__header { display: flex; justify-content: space-between; gap: 14px; padding: 5px 5px 15px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 12px; }
.subscription-card__header b { color: var(--teal-700); }
.subscription-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 5px; border-bottom: 1px solid #edf2f3; font-size: 12px; }
.subscription-row > span { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); font-weight: 700; }
.subscription-row b { color: var(--green); font-size: 10px; text-transform: uppercase; letter-spacing: .06em; }
.task-color { display: block; width: 7px; height: 22px; border-radius: 4px; background: var(--teal-500); }
.task-color--engine { background: var(--orange); }
.task-color--maintenance { background: #836fca; }
.subscription-card__footer { display: flex; justify-content: space-between; padding: 14px 5px 3px; color: var(--teal-700); font-size: 11px; font-weight: 800; }

/* Equipment */
.equipment { background: #fff; }
.equipment-architecture {
  display: grid;
  grid-template-columns: minmax(340px, .82fr) minmax(480px, 1.18fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: 34px;
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(135deg, #f8fbfb, #eef5f6);
}
.section-kicker { display: inline-flex; margin-bottom: 15px; padding: 7px 10px; color: var(--teal-800); border-radius: 999px; background: var(--aqua-soft); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .06em; }
.equipment-architecture h3 { max-width: 520px; font-size: clamp(28px, 3.3vw, 43px); }
.equipment-architecture__image { overflow: hidden; border-radius: 22px; background: #fff; box-shadow: var(--shadow-sm); }
.equipment-architecture__image img { width: 100%; mix-blend-mode: normal; }
.equipment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.equipment-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(7,63,73,.05);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.equipment-card:hover { transform: translateY(-6px); border-color: rgba(17,143,158,.35); box-shadow: var(--shadow-md); }
.equipment-card__image, .equipment-card__dual { display: grid; height: 192px; place-items: center; padding: 18px; background: var(--surface-2); }
.equipment-card__image img { max-height: 158px; object-fit: contain; }
.equipment-card__dual { grid-template-columns: 1fr 1fr; gap: 4px; }
.equipment-card__dual img { max-height: 125px; object-fit: contain; }
.equipment-card__body { position: relative; flex: 1; padding: 25px 23px 24px; }
.equipment-index { position: absolute; top: 26px; right: 22px; color: rgba(7,63,73,.2); font-size: 11px; font-weight: 850; }
.equipment-card h3 { max-width: 86%; margin-bottom: 12px; font-size: 21px; }
.equipment-card p { margin-bottom: 20px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.equipment-card .protocol-list { margin-top: auto; }
.equipment-card .protocol-list span { padding: 5px 8px; font-size: 10px; }

/* Benefits */
.benefits { background: var(--surface-2); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit-card { min-height: 280px; padding: 31px; border: 1px solid var(--line); border-radius: 24px; background: #fff; }
.benefit-icon { display: grid; width: 56px; height: 56px; margin-bottom: 36px; place-items: center; color: var(--teal-700); border-radius: 17px; background: var(--aqua-soft); }
.benefit-card:nth-child(2) .benefit-icon { color: #bd6b10; background: var(--orange-soft); }
.benefit-card h3 { font-size: 21px; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Cases */
.cases { background: #fff; }
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.case-card { overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 12px 40px rgba(7,63,73,.06); }
.case-card__image { position: relative; display: block; height: 330px; overflow: hidden; }
.case-card__image::after { position: absolute; inset: 55% 0 0; content: ""; background: linear-gradient(transparent, rgba(3,29,34,.45)); }
.case-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.case-card:hover .case-card__image img { transform: scale(1.035); }
.case-result { position: absolute; z-index: 2; right: 22px; bottom: 21px; display: grid; padding: 12px 15px; color: var(--teal-950); border-radius: 14px; background: rgba(255,255,255,.94); box-shadow: var(--shadow-sm); font-size: 11px; font-weight: 800; line-height: 1.1; }
.case-result strong { color: var(--teal-700); font-size: 26px; letter-spacing: -.04em; }
.case-card__body { padding: 29px 30px 31px; }
.case-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.case-meta span { padding: 6px 9px; color: var(--teal-800); border-radius: 999px; background: var(--aqua-soft); font-size: 10px; font-weight: 800; }
.case-card h3 { max-width: 520px; margin-bottom: 24px; font-size: clamp(23px, 2.5vw, 31px); }
.case-change { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
.case-change > div { padding: 15px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); }
.case-change span { display: inline-flex; margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.case-change div:last-child span { color: var(--teal-700); }
.case-change p { margin: 0; color: var(--ink-soft); font-size: 12px; line-height: 1.55; }
.arrow-link { display: inline-flex; align-items: center; gap: 7px; }

/* CTA */
.cta-section { padding: 0 0 clamp(72px, 8vw, 110px); background: #fff; }
.cta-card {
  position: relative;
  display: grid;
  min-height: 510px;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  color: #fff;
  border-radius: 38px;
  background: linear-gradient(135deg, #073f49 0%, #096b78 66%, #0c8290 100%);
  box-shadow: var(--shadow-lg);
}
.cta-card::before { position: absolute; top: -220px; right: -180px; width: 530px; height: 530px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; content: ""; }
.cta-copy { position: relative; z-index: 2; }
.cta-copy h2 { max-width: 700px; color: #fff; }
.cta-copy > p { max-width: 650px; margin-bottom: 30px; color: rgba(255,255,255,.72); font-size: 17px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.cta-contact { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.cta-contact a { color: rgba(255,255,255,.8); font-size: 12px; font-weight: 700; }
.cta-contact a:hover { color: #fff; }
.cta-visual { position: relative; z-index: 1; min-height: 360px; }
.cta-visual img { position: absolute; z-index: 2; right: -12%; bottom: -9%; width: 108%; mix-blend-mode: normal; filter: none; }
.cta-orbit { position: absolute; border: 1px dashed rgba(98,210,217,.37); border-radius: 50%; }
.cta-orbit--one { top: -8%; right: -5%; width: 360px; height: 360px; }
.cta-orbit--two { top: 16%; right: 19%; width: 210px; height: 210px; }
.cta-status { position: absolute; z-index: 3; top: 13%; left: 0; display: grid; grid-template-columns: auto 1fr; column-gap: 9px; padding: 12px 15px; color: var(--teal-950); border-radius: 15px; background: #fff; box-shadow: var(--shadow-md); transform: rotate(-2deg); }
.cta-status span { grid-row: span 2; align-self: center; width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(35,166,111,.12); }
.cta-status b { font-size: 12px; line-height: 1.2; }
.cta-status small { color: var(--muted); font-size: 9px; }

/* Footer */
.site-footer { padding-top: 70px; color: rgba(255,255,255,.72); background: #062c34; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .95fr .8fr; gap: clamp(50px, 7vw, 100px); padding-bottom: 55px; }
.footer-brand img { width: 160px; margin-bottom: 20px; filter: none; opacity: 1; }
.footer-brand p { max-width: 360px; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.site-footer h2 { margin-bottom: 18px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.footer-links a, .footer-contact a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.68); font-size: 13px; transition: color .2s ease; }
.footer-links a:hover, .footer-contact a:hover { color: var(--aqua); }
.footer-contact p { margin-top: 18px; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.65; }
.footer-bottom { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-bottom p { margin: 0; font-size: 11px; }
.developed-by { color: rgba(255,255,255,.56); font-size: 11px; font-weight: 600; letter-spacing: .03em; }

/* Reveal animation */
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1120px) {
  :root { --container: 1040px; }
  .hero-grid { grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr); gap: 42px; }
  .hero-stage { min-height: 550px; }
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .equipment-card { min-height: 410px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .billing-grid { grid-template-columns: .85fr 1.15fr; }
  .subscription-card { grid-column: 1 / -1; width: min(520px, 100%); justify-self: center; transform: none; }
}

@media (max-width: 960px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 18px; }
  .brand, .brand img { width: 114px; }
  .menu-toggle { display: inline-flex; justify-self: end; }
  .header-actions { display: none; }
  .site-nav {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    left: 0;
    height: calc(100vh - var(--header-height));
    display: flex;
    padding: 42px 28px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 28px 55px rgba(7,63,73,.14);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .nav-open .site-nav { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav a { padding: 16px 2px; border-bottom: 1px solid var(--line); font-size: 24px; }
  .site-nav a::after { display: none; }
  .nav-open .menu-toggle__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .menu-toggle__icon i:nth-child(2) { opacity: 0; }
  .nav-open .menu-toggle__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { min-height: auto; padding-bottom: 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-stage { width: min(720px, 100%); min-height: 580px; margin: 0 auto; }
  .hero-media--control { width: 74%; }
  .software-card { width: 62%; }

  .trust-strip__inner { grid-template-columns: 1fr auto; gap: 18px; padding-block: 17px; }
  .trust-strip__label { grid-column: 1 / -1; }
  .section-heading--split { grid-template-columns: 1fr; gap: 20px; }
  .section-heading--split > p { max-width: 720px; }
  .architecture-flow { grid-template-columns: repeat(2, 1fr); }
  .architecture-flow li:nth-child(2)::after { display: none; }
  .fleet-grid { grid-template-columns: 1fr; }
  .application-mosaic { order: 2; }
  .fleet-copy { order: 1; max-width: 720px; }

  .task-panel { grid-template-columns: 1fr; gap: 38px; }
  .task-panel__copy { max-width: 720px; }
  .task-panel__visual { width: min(760px, 100%); margin-inline: auto; }

  .equipment-architecture { grid-template-columns: 1fr; }
  .equipment-architecture__image { order: -1; }
  .case-card__image { height: 290px; }
  .case-change { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .cta-copy { max-width: 760px; }
  .cta-visual { min-height: 300px; }
  .cta-visual img { right: 4%; width: 70%; }
  .cta-status { left: 16%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .section { padding-block: 76px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: clamp(40px, 12vw, 56px); }
  h2 { font-size: clamp(32px, 10vw, 44px); }
  .hero { padding-top: 52px; }
  .hero-lead { font-size: 18px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .hero-stats div { grid-template-columns: 110px 1fr; align-items: center; padding: 0 0 14px; border-bottom: 1px solid var(--line); }
  .hero-stats div + div { padding-left: 0; border-left: 0; }
  .hero-stats strong { font-size: 28px; }
  .hero-stage { min-height: 490px; }
  .hero-media--control { top: 10px; width: 86%; border-radius: 34px 34px 34px 80px; }
  .hero-media--genset { bottom: 28px; width: 39%; border-width: 4px; border-radius: 20px; }
  .software-card { right: 0; bottom: 22px; width: 72%; border-radius: 13px; }
  .software-card__bar { height: 24px; }
  .live-chip { top: 7%; left: 0; }

  .trust-strip__inner { grid-template-columns: 1fr; }
  .role-list { gap: 6px; }
  .trust-strip a { justify-self: start; }
  .architecture-flow { grid-template-columns: 1fr; }
  .architecture-flow li { min-height: 220px; }
  .architecture-flow li::after { display: none; }
  .architecture-icon { margin-bottom: 25px; }
  .application-mosaic { height: 480px; grid-template-columns: 1fr 1fr; }
  .application-tile:nth-child(1), .application-tile:nth-child(4) { border-radius: 20px; }
  .compatibility-group { grid-template-columns: 1fr; gap: 4px; }

  .task-tabs { margin-right: -12px; margin-left: -12px; padding-inline: 12px; }
  .task-tabs button { padding-inline: 14px; }
  .task-panel { min-height: auto; padding: 25px 20px 34px; border-radius: 24px; }
  .task-panel h3 { font-size: 36px; }
  .task-panel__copy > p { font-size: 16px; }
  .task-screen { border-width: 5px; border-radius: 16px; }
  .task-screen__caption { position: static; width: fit-content; margin: 14px auto 0; }

  .billing-grid { grid-template-columns: 1fr; }
  .subscription-card { width: 100%; }
  .equipment-architecture { padding: 25px 20px; border-radius: 22px; }
  .equipment-grid, .benefit-grid, .case-grid { grid-template-columns: 1fr; }
  .equipment-card { min-height: auto; }
  .equipment-card__image, .equipment-card__dual { height: 205px; }
  .benefit-card { min-height: 235px; }
  .case-card__image { height: 270px; }
  .case-card__body { padding: 24px 21px 26px; }
  .case-change { grid-template-columns: 1fr; }

  .cta-section { padding-inline: 0; }
  .cta-card { min-height: 0; padding: 39px 25px 28px; border-radius: 28px; }
  .cta-copy > p { font-size: 16px; }
  .cta-actions .button { flex: 1 1 100%; }
  .cta-contact { flex-direction: column; gap: 8px; }
  .cta-visual { min-height: 230px; }
  .cta-visual img { right: -10%; bottom: -18%; width: 105%; }
  .cta-status { top: 6%; left: 2%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; padding-block: 24px; flex-direction: column; }
}

@media (max-width: 440px) {
  .brand, .brand img { width: 108px; }
  .menu-toggle__label { display: none; }
  .hero-stage { min-height: 430px; }
  .hero-media--control { width: 92%; }
  .hero-media--genset { width: 42%; }
  .software-card { width: 79%; }
  .live-chip { font-size: 10px; padding: 8px 10px; }
  .application-mosaic { height: 440px; gap: 9px; }
  .application-tile figcaption { right: 11px; bottom: 10px; left: 11px; font-size: 11px; }
  .task-panel h3 { font-size: 31px; }
  .equipment-card__body { padding-inline: 20px; }
  .case-card__image { height: 235px; }
  .footer-links { grid-template-columns: 1fr; }
}

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

.nav-mobile-actions { display: none; }
@media (max-width: 960px) {
  .nav-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    margin-top: 28px;
  }
  .site-nav .nav-mobile-actions a {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }
  .site-nav .nav-mobile-actions .button--primary {
    color: #fff;
    border-color: transparent;
  }
}
@media (max-width: 440px) {
  .nav-mobile-actions { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .architecture-flow li:not(:last-child)::after { display: none; }
}

/* ==========================================================================
   2026 visual revision — official UNUM palette, source-faithful imagery
   ========================================================================== */
:root {
  --ink: #1d1d1c;
  --ink-soft: #394d56;
  --muted: #66777e;
  --teal-950: #102f40;
  --teal-900: #1d4459;
  --teal-800: #256277;
  --teal-700: #147b89;
  --teal-600: #2498a3;
  --teal-500: #3aafb8;
  --aqua: #53bcc1;
  --aqua-soft: #ebf4f6;
  --orange: #f47b20;
  --orange-soft: #fff0df;
  --surface-2: #f4f8f9;
  --surface-3: #ebf4f6;
  --line: #d6e4e7;
  --header-height: 90px;
}

/* Correct source logos */
.site-header { background: rgba(255, 255, 255, .96); }
.brand {
  width: 68px;
  height: 76px;
  justify-content: center;
  overflow: hidden;
}
.brand img {
  width: 66px;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none;
}

/* Full-bleed, source-faithful hero */
.hero {
  position: relative;
  min-height: min(790px, calc(100svh - var(--header-height)));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--teal-900);
  isolation: isolate;
}
.hero::after { display: none; }
.hero-backdrop,
.hero-backdrop__overlay {
  position: absolute;
  inset: 0;
}
.hero-backdrop { z-index: 0; overflow: hidden; }
.hero-backdrop img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none;
  mix-blend-mode: normal;
}
.hero-backdrop__genset {
  z-index: 0;
  object-position: 34% center;
}
.hero-backdrop__control {
  z-index: 1;
  object-position: right center;
}
.hero-backdrop__overlay {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(16, 47, 64, .08) 0%, transparent 32%, transparent 70%, rgba(16, 47, 64, .32) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding-block: clamp(58px, 7vw, 88px);
}
.hero-copy {
  width: min(690px, 100%);
  padding: clamp(30px, 4.3vw, 56px);
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 34px;
  background: rgba(16, 47, 64, .88);
  box-shadow: 0 32px 90px rgba(7, 31, 43, .34);
  backdrop-filter: blur(8px);
}
.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(52px, 5.7vw, 82px);
  font-weight: 690;
  line-height: .99;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.hero h1 em { color: var(--aqua); }
.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 1.55vw, 21px);
  line-height: 1.55;
}
.hero .button--primary {
  color: var(--teal-950);
  background: var(--aqua);
  box-shadow: 0 16px 34px rgba(83, 188, 193, .25);
}
.hero .button--primary:hover { color: var(--teal-950); background: #78d1d5; }
.hero .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
}
.hero .button--ghost:hover { color: var(--teal-950); border-color: #fff; background: #fff; }
.hero-stats {
  display: grid;
  max-width: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 38px;
  padding-top: 0;
  border-top: 0;
}
.hero-stats div {
  min-height: 92px;
  display: flex;
  padding: 15px 14px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
}
.hero-stats div + div { padding-left: 14px; border-left: 1px solid rgba(255, 255, 255, .14); }
.hero-stats strong { color: #fff; font-size: clamp(25px, 2.5vw, 34px); }
.hero-stats span { color: rgba(255, 255, 255, .67); font-size: 11px; }

/* Brighter block separation using the official site palette */
.trust-strip {
  color: var(--teal-950);
  border-color: rgba(29, 68, 89, .16);
  background: var(--aqua);
}
.trust-strip__label { color: var(--teal-950); }
.role-list span {
  color: var(--teal-900);
  border: 1px solid rgba(29, 68, 89, .12);
  background: rgba(255, 255, 255, .76);
}
.trust-strip a { color: var(--teal-950); }
.trust-strip a:hover { color: #fff; }
.platform { background: #fff; }
.billing-band { background: var(--aqua-soft); }
.benefits { background: var(--aqua-soft); }
.tasks {
  background:
    radial-gradient(circle at 84% 18%, rgba(83, 188, 193, .18), transparent 31%),
    linear-gradient(145deg, #102f40 0%, #1d4459 57%, #256277 100%);
}
.architecture-flow li:nth-child(2n),
.benefit-card:nth-child(2n) { background: #f9fcfc; }
.benefit-card { border-top: 4px solid var(--aqua); }
.benefit-card:nth-child(2) { border-top-color: var(--orange); }
.benefit-card:nth-child(3) { border-top-color: #278fa1; }
.benefit-card:nth-child(4) { border-top-color: #6b7fc8; }

/* Source images are displayed without recolouring or blend effects. */
.application-tile img,
.case-card__image img,
.equipment-card img,
.equipment-architecture__image img,
.cta-visual img,
.footer-brand img,
.application-tile:hover img,
.case-card:hover .case-card__image img { transform: none; }
.equipment-architecture__image img { height: auto; object-fit: contain; }

/* CTA: keep the source product image on its original light ground. */
.cta-card {
  background: linear-gradient(135deg, #102f40 0%, #1d4459 62%, #256277 100%);
}
.cta-visual {
  min-height: 355px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 65px rgba(0, 0, 0, .22);
}
.cta-visual img {
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
}
.cta-orbit { display: none; }
.cta-status { top: 20px; left: 20px; transform: none; }

/* Footer logos stay in their original colours on white cards. */
.site-footer { color: rgba(255,255,255,.76); background: #102f40; }
.footer-logo-card {
  width: 96px;
  margin-bottom: 20px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}
.footer-brand img {
  width: 100%;
  margin: 0;
  opacity: 1;
}

@media (max-width: 960px) {
  :root { --header-height: 78px; }
  .brand, .brand img { width: 58px; }
  .brand { height: 68px; }
  .hero {
    min-height: 760px;
    padding: 0;
  }
  .hero-content { padding-block: 44px; }
  .hero-copy { width: min(660px, 100%); }
  .hero-backdrop__genset { object-position: 28% center; }
  .hero-backdrop__control { object-position: 72% center; }
}

@media (max-width: 700px) {
  .hero {
    min-height: 790px;
    padding: 0;
  }
  .hero-content { align-items: flex-end; padding-block: 28px; }
  .hero-copy {
    padding: 28px 22px 22px;
    border-radius: 26px;
    background: rgba(16, 47, 64, .91);
    backdrop-filter: blur(5px);
  }
  .hero h1 { margin-bottom: 18px; font-size: clamp(42px, 12.5vw, 58px); line-height: 1.01; }
  .hero-lead { margin-bottom: 24px; font-size: 17px; }
  .hero-actions { gap: 9px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 24px; }
  .hero-stats div,
  .hero-stats div + div {
    min-height: 86px;
    display: flex;
    padding: 12px 8px;
    border: 1px solid rgba(255,255,255,.14);
    text-align: left;
  }
  .hero-stats strong { font-size: 23px; }
  .hero-stats span { font-size: 9px; }
  .hero-backdrop__genset { object-position: 27% center; }
  .hero-backdrop__control { object-position: 72% center; }
  .trust-strip__inner { padding-block: 22px; }
  .cta-visual { min-height: 245px; }
  .cta-visual img { right: auto; bottom: auto; width: 100%; padding: 14px; }
  .cta-status { top: 14px; left: 14px; }
}

@media (max-width: 440px) {
  .brand, .brand img { width: 54px; }
  .hero { min-height: 820px; }
  .hero-copy { padding-inline: 18px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .footer-logo-card { width: 88px; }
}

/* Hero proportion refinement for wide screens. */
@media (min-width: 961px) {
  .hero { min-height: min(800px, calc(100svh - var(--header-height))); }
  .hero-copy { width: min(780px, 100%); padding: 44px 46px; }
  .hero h1 { max-width: 690px; font-size: clamp(56px, 4.65vw, 68px); line-height: 1; }
  .hero h1 em { display: inline-block; }
  .hero-lead { max-width: 660px; }
}

@media (min-width: 961px) {
  .task-tabs button { padding-right: 10px; padding-left: 10px; }
}

/* ==========================================================================
   2026 revision v3 — simplified hero, official hardware imagery
   ========================================================================== */
:root {
  --cta-red: #d7282f;
  --cta-red-dark: #b51f26;
  --cta-red-soft: #fff0f1;
}

.button--danger {
  color: #fff;
  border-color: var(--cta-red);
  background: var(--cta-red);
  box-shadow: 0 12px 28px rgba(215, 40, 47, .24);
}
.button--danger:hover {
  color: #fff;
  border-color: var(--cta-red-dark);
  background: var(--cta-red-dark);
  box-shadow: 0 17px 36px rgba(181, 31, 38, .28);
}
.site-nav .button--danger::after { display: none; }
.site-nav .button--danger:hover { color: #fff; }

/* A calmer split hero: one source image, natural aspect ratio, no overlays. */
.hero.hero--split {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: clamp(58px, 6.4vw, 88px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 9% 9%, rgba(83, 188, 193, .18), transparent 27%),
    linear-gradient(135deg, #102f40 0%, #1d4459 62%, #256277 100%);
  isolation: isolate;
}
.hero.hero--split::before {
  position: absolute;
  z-index: -1;
  right: -180px;
  bottom: -300px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
  content: "";
}
.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}
.hero--split .hero-copy {
  width: auto;
  max-width: 620px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero--split h1 {
  max-width: 620px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(48px, 4.85vw, 68px);
  font-weight: 690;
  line-height: 1.01;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.hero--split h1 em { color: var(--aqua); }
.hero--split .hero-lead {
  max-width: 590px;
  margin-bottom: 31px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.62;
}
.hero--split .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.hero--split .button--danger {
  color: #fff;
  background: var(--cta-red);
  box-shadow: 0 16px 34px rgba(215, 40, 47, .28);
}
.hero--split .button--danger:hover { color: #fff; background: var(--cta-red-dark); }
.hero-text-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(255, 255, 255, .38);
  font-size: 14px;
  font-weight: 780;
  transition: color .2s ease, border-color .2s ease;
}
.hero-text-link:hover { color: #fff; border-color: #fff; }
.hero-visual { min-width: 0; }
.hero-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1533 / 1333;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 36px;
  background: #102f40;
  box-shadow: 0 34px 90px rgba(4, 27, 38, .36);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Hardware overview and product images from the original UNUM/Technoton sources. */
.hardware-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, .62fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  margin-bottom: 24px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, #f8fbfb 0%, #eaf3f5 100%);
}
.hardware-overview__diagram {
  overflow: hidden;
  padding: 15px;
  border: 1px solid rgba(29, 68, 89, .10);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(12, 49, 58, .08);
}
.hardware-overview__diagram img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hardware-overview__copy { padding: 8px 4px; }
.hardware-overview__copy h3 {
  max-width: 470px;
  margin-bottom: 24px;
  font-size: clamp(28px, 3vw, 42px);
}
.hardware-overview__copy .check-list { gap: 13px; }
.hardware-overview__copy .check-list li { color: var(--ink-soft); font-size: 14px; }

.hardware-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.hardware-product {
  display: grid;
  min-height: 292px;
  grid-template-columns: minmax(190px, .86fr) minmax(0, 1.14fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 27px;
  background: #fff;
  box-shadow: 0 12px 38px rgba(7, 63, 73, .06);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s ease;
}
.hardware-product:hover {
  transform: translateY(-4px);
  border-color: rgba(17, 143, 158, .30);
  box-shadow: 0 24px 55px rgba(7, 63, 73, .11);
}
.hardware-product__image {
  display: flex;
  min-width: 0;
  min-height: 292px;
  align-items: center;
  justify-content: center;
  padding: 22px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #fff;
}
.hardware-product__image > img {
  width: 100%;
  max-width: 100%;
  max-height: 228px;
  object-fit: contain;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hardware-product:nth-child(1) .hardware-product__image > img { max-width: 250px; }
.hardware-product:nth-child(2) .hardware-product__image > img { max-height: 215px; }
.hardware-product:nth-child(3) .hardware-product__image > img { max-width: 235px; }
.hardware-product__body {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 31px 28px 28px;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(150deg, #fff 0%, #f6fafb 100%);
}
.hardware-product__body h3 {
  max-width: calc(100% - 24px);
  margin-bottom: 13px;
  font-size: clamp(22px, 2vw, 27px);
}
.hardware-product__body p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
}
.hardware-product__body .equipment-index { top: 29px; right: 25px; }
.hardware-product__body .protocol-list { margin-top: auto; }
.hardware-product__body .protocol-list span { padding: 6px 9px; font-size: 10px; }
.hardware-product__image--dual {
  display: grid;
  grid-template-columns: 1.38fr .62fr;
  align-items: stretch;
  gap: 9px;
  padding: 14px;
}
.hardware-product__image--dual figure {
  min-width: 0;
  display: flex;
  margin: 0;
  padding: 12px 9px 9px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}
.hardware-product__image--dual img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hardware-product__image--dual figure:last-child img { max-width: 145px; max-height: 135px; }
.hardware-product__image--dual figcaption {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

/* Original live contact form from unum-genset.com. */
.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 12%, rgba(83, 188, 193, .24), transparent 25%),
    linear-gradient(135deg, #102f40 0%, #1d4459 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(570px, 1.28fr);
  align-items: start;
  gap: clamp(38px, 6vw, 74px);
}
.contact-copy { padding-top: 22px; color: #fff; }
.contact-copy h2 {
  max-width: 520px;
  color: #fff;
  font-size: clamp(39px, 4vw, 58px);
}
.contact-copy > p {
  max-width: 520px;
  margin-bottom: 29px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.65;
}
.contact-copy .button--danger { margin-bottom: 39px; }
.contact-details {
  display: grid;
  gap: 19px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.contact-details > div { display: grid; gap: 3px; }
.contact-details span {
  color: var(--aqua);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.contact-details a,
.contact-details p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.55;
}
.contact-details a:hover { color: #fff; }
.contact-form-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(5, 28, 38, .34);
}
.contact-form-card__header {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.contact-form-card__header h3 { margin: 0; font-size: 25px; }
.contact-form-card__header p { margin: 0; color: var(--muted); font-size: 11px; }
.contact-form-shell {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #fff;
}
.contact-form-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 7px;
  padding: 30px;
  color: var(--ink-soft);
  text-align: center;
  background: #fff;
}
.contact-form-placeholder strong { color: var(--teal-900); font-size: 18px; }
.contact-form-placeholder span { color: var(--muted); font-size: 12px; }
.contact-form-shell iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: transparent;
}

@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr); gap: 42px; }
  .hardware-overview { grid-template-columns: 1fr; }
  .hardware-overview__copy { max-width: 760px; }
  .hardware-products { grid-template-columns: 1fr; }
  .hardware-product { grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr); }
  .contact-grid { grid-template-columns: minmax(280px, .62fr) minmax(520px, 1.38fr); gap: 36px; }
}

@media (max-width: 960px) {
  .site-nav .nav-mobile-actions .button--danger {
    color: #fff;
    border-color: var(--cta-red);
    background: var(--cta-red);
  }
  .hero.hero--split { min-height: 0; padding: 58px 0 66px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero--split .hero-copy { max-width: 720px; }
  .hero-visual { width: min(720px, 100%); }
  .hero-photo { border-radius: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 720px; padding-top: 0; }
  .contact-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .hero.hero--split { padding: 47px 0 54px; }
  .hero--split h1 { margin-bottom: 20px; font-size: clamp(42px, 12vw, 56px); }
  .hero--split .hero-lead { margin-bottom: 25px; font-size: 17px; }
  .hero--split .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero--split .hero-actions .button { flex: none; width: 100%; }
  .hero-text-link { width: fit-content; min-height: 42px; }
  .hero-photo { border-radius: 24px; }

  .hardware-overview { padding: 18px; border-radius: 24px; }
  .hardware-overview__diagram { padding: 8px; border-radius: 17px; }
  .hardware-overview__copy { padding: 8px 2px 2px; }
  .hardware-overview__copy h3 { font-size: 30px; }
  .hardware-product { grid-template-columns: 1fr; min-height: 0; border-radius: 23px; }
  .hardware-product__image { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .hardware-product__image > img { max-height: 195px; }
  .hardware-product__body { min-height: 245px; padding: 28px 23px 24px; }
  .hardware-product__body .equipment-index { top: 27px; right: 21px; }
  .hardware-product__image--dual { min-height: 245px; grid-template-columns: 1.25fr .75fr; }

  .contact-form-card { border-radius: 24px; }
  .contact-form-card__header { align-items: flex-start; padding: 20px 21px; flex-direction: column; gap: 3px; }
  .contact-form-shell,
  .contact-form-shell iframe { height: 760px; min-height: 760px; }
  .contact-details { grid-template-columns: 1fr; }
}

@media (max-width: 440px) {
  .hero.hero--split { padding-top: 40px; }
  .hardware-product__image--dual { grid-template-columns: 1fr; }
  .hardware-product__image--dual figure { min-height: 150px; }
  .contact-form-shell,
  .contact-form-shell iframe { height: 800px; min-height: 800px; }
}

/* v3.1 refinements: clean source crop and native red contact form. */
.hero-photo { aspect-ratio: 1403 / 1333; }

.button--danger-outline {
  color: var(--cta-red);
  border-color: var(--cta-red);
  background: #fff;
  box-shadow: none;
}
.button--danger-outline:hover {
  color: #fff;
  border-color: var(--cta-red-dark);
  background: var(--cta-red-dark);
  box-shadow: 0 14px 30px rgba(181, 31, 38, .22);
}

.contact-form {
  padding: 28px;
  background: #fff;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.form-field {
  display: grid;
  min-width: 0;
  gap: 8px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field > span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .015em;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbdadd;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.form-field input {
  min-height: 50px;
  padding: 0 14px;
}
.form-field textarea {
  min-height: 132px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #98a8ad; }
.form-field input:hover,
.form-field textarea:hover { border-color: #9fb8be; }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal-600);
  background: #fbfefe;
  box-shadow: 0 0 0 4px rgba(83, 188, 193, .16);
}
.form-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 22px;
}
.form-actions .button { min-width: 170px; }
.form-status {
  min-height: 20px;
  margin: 13px 0 0;
  color: var(--teal-800);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 700px) {
  .contact-form { padding: 22px 20px 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .form-field--full { grid-column: auto; }
  .form-actions { flex-direction: column; }
  .form-actions .button { width: 100%; }
}

/* ==========================================================================
   v3.2 final refinements — sharp compact hero, five official product images,
   native contact form with red actions
   ========================================================================== */

/* Hero: one untouched source image at its natural aspect ratio. */
.hero.hero--split.hero--compact {
  padding: clamp(48px, 5.5vw, 72px) 0;
}
.hero.hero--split.hero--compact::before { display: none; }
.hero--compact .hero-layout {
  grid-template-columns: minmax(0, .82fr) minmax(470px, 1.18fr);
  gap: clamp(34px, 5vw, 68px);
}
.hero--compact .hero-copy { max-width: 570px; }
.hero--compact h1 {
  max-width: 570px;
  margin-bottom: 21px;
  font-size: clamp(45px, 4.4vw, 62px);
  line-height: 1.02;
}
.hero--compact .hero-lead {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(17px, 1.3vw, 19px);
}
.hero--compact .hero-actions { gap: 0; }
.hero--compact .hero-photo {
  width: 100%;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 30px;
  background: transparent;
  box-shadow: 0 28px 70px rgba(4, 27, 38, .30);
}
.hero--compact .hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  image-rendering: auto;
}

/* Hardware: every product gets its own source-faithful image and card. */
.hardware-products--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}
.hardware-products--five .hardware-product {
  min-height: 0;
  grid-column: span 2;
  grid-template-columns: 1fr;
  border-radius: 25px;
}
.hardware-products--five .hardware-product:nth-last-child(2),
.hardware-products--five .hardware-product:nth-last-child(1) {
  grid-column: span 3;
}
.hardware-products--five .hardware-product__image {
  min-height: 225px;
  padding: 22px;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}
.hardware-products--five .hardware-product__image > img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 180px;
  object-fit: contain;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hardware-products--five .hardware-product:nth-child(1) .hardware-product__image > img { max-width: 225px; }
.hardware-products--five .hardware-product:nth-child(2) .hardware-product__image > img { max-width: 90%; max-height: 182px; }
.hardware-products--five .hardware-product:nth-child(3) .hardware-product__image > img { max-width: 185px; max-height: 185px; }
.hardware-products--five .hardware-product:nth-child(4) .hardware-product__image > img { max-width: 92%; max-height: 170px; }
.hardware-products--five .hardware-product:nth-child(5) .hardware-product__image > img { width: 165px; max-width: 165px; max-height: 145px; }
.hardware-products--five .hardware-product__body {
  min-height: 235px;
  padding: 28px 25px 25px;
  justify-content: flex-start;
}
.hardware-products--five .hardware-product__body h3 {
  max-width: calc(100% - 22px);
  font-size: 23px;
}
.hardware-products--five .hardware-product__body p {
  min-height: 63px;
  margin-bottom: 18px;
}

/* Native form based on the fields used by the original UNUM Genset form. */
.contact-grid--native {
  grid-template-columns: minmax(300px, .72fr) minmax(580px, 1.28fr);
  align-items: start;
}
.contact-form-native {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(5, 28, 38, .34);
}
.contact-form-native__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-form-native__header h3 { margin: 0; font-size: 27px; }
.contact-form-native__header p { margin: 0; color: var(--muted); font-size: 11px; }
.contact-form-native .form-grid { gap: 16px; }
.contact-form-native .form-field { gap: 8px; }
.contact-form-native .form-field > span {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
}
.contact-form-native .form-field b { color: var(--cta-red); }
.contact-form-native input,
.contact-form-native select,
.contact-form-native textarea {
  width: 100%;
  border: 1px solid #cbdadd;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form-native input,
.contact-form-native select {
  min-height: 50px;
  padding: 0 14px;
}
.contact-form-native select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #6c8187 50%),
    linear-gradient(135deg, #6c8187 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 14px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.contact-form-native textarea {
  min-height: 132px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}
.contact-form-native input::placeholder,
.contact-form-native textarea::placeholder { color: #98a8ad; }
.contact-form-native input:hover,
.contact-form-native select:hover,
.contact-form-native textarea:hover { border-color: #9fb8be; }
.contact-form-native input:focus,
.contact-form-native select:focus,
.contact-form-native textarea:focus {
  border-color: var(--teal-600);
  background-color: #fbfefe;
  box-shadow: 0 0 0 4px rgba(83, 188, 193, .16);
}
.contact-form-native .form-actions {
  margin-top: 2px;
}
.contact-form-native .button--danger,
.contact-form-native .button--danger-outline {
  min-width: 175px;
}
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}
.contact-form-native .form-note { margin: 0; }
.contact-form-native .form-status { margin: -4px 0 0; }

@media (max-width: 1100px) {
  .hero--compact .hero-layout {
    grid-template-columns: minmax(0, .84fr) minmax(420px, 1.16fr);
    gap: 34px;
  }
  .hardware-products--five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hardware-products--five .hardware-product,
  .hardware-products--five .hardware-product:nth-last-child(2),
  .hardware-products--five .hardware-product:nth-last-child(1) { grid-column: auto; }
  .hardware-products--five .hardware-product:last-child { grid-column: 1 / -1; }
  .contact-grid--native { grid-template-columns: minmax(280px, .62fr) minmax(520px, 1.38fr); gap: 36px; }
}

@media (max-width: 960px) {
  .hero.hero--split.hero--compact { padding: 50px 0 58px; }
  .hero--compact .hero-layout { grid-template-columns: 1fr; gap: 34px; }
  .hero--compact .hero-copy { max-width: 680px; }
  .hero--compact .hero-visual { width: min(660px, 100%); }
  .contact-grid--native { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .hero.hero--split.hero--compact { padding: 40px 0 46px; }
  .hero--compact h1 { font-size: clamp(40px, 11.4vw, 52px); }
  .hero--compact .hero-lead { font-size: 16px; }
  .hero--compact .hero-actions { display: block; }
  .hero--compact .hero-actions .button { width: 100%; }
  .hero--compact .hero-photo { border-radius: 22px; }

  .hardware-products--five { grid-template-columns: 1fr; }
  .hardware-products--five .hardware-product:last-child { grid-column: auto; }
  .hardware-products--five .hardware-product__image { min-height: 215px; }
  .hardware-products--five .hardware-product__body { min-height: 0; }
  .hardware-products--five .hardware-product__body p { min-height: 0; }

  .contact-form-native { padding: 22px 20px 24px; border-radius: 24px; }
  .contact-form-native__header { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-form-native .form-grid { grid-template-columns: 1fr; gap: 15px; }
  .contact-form-native .form-actions { flex-direction: column; }
  .contact-form-native .form-actions .button { width: 100%; }
}

/* ==========================================================================
   v4 — first-screen hero inspired by the supplied reference
   ========================================================================== */
:root { --header-height: 76px; }

/* Dark first-screen navigation with the original UNUM Genset logo unchanged. */
.site-header {
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(11, 35, 54, .97);
  backdrop-filter: blur(15px) saturate(125%);
}
.site-header.is-scrolled {
  background: rgba(11, 35, 54, .985);
  box-shadow: 0 14px 38px rgba(3, 17, 28, .24);
}
.header-inner { gap: clamp(20px, 2.5vw, 38px); }
.brand {
  width: 58px;
  height: 62px;
  padding: 5px;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(2, 16, 26, .20);
}
.brand img {
  width: 48px;
  height: auto;
  max-height: none;
  object-fit: contain;
  filter: none !important;
}
.site-nav { gap: clamp(16px, 1.8vw, 29px); }
.site-nav a,
.text-link { color: rgba(255,255,255,.78); }
.site-nav a:hover,
.text-link:hover { color: #fff; }
.site-nav a::after { background: var(--aqua); }
.menu-toggle { color: #fff; }
.menu-toggle__icon i { background: #fff; }
.header-actions .button--danger { box-shadow: 0 10px 24px rgba(215,40,47,.28); }

/* Full first-screen hero. Source visuals keep their native proportions. */
.hero.hero--showcase {
  position: relative;
  display: block;
  height: calc(100svh - var(--header-height));
  min-height: 650px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: #0d2940;
  isolation: isolate;
}
.hero.hero--showcase::before,
.hero.hero--showcase::after { display: none; }
.hero-showcase__background,
.hero-showcase__overlay {
  position: absolute;
  inset: 0;
}
.hero-showcase__background { z-index: 0; overflow: hidden; background: #0d2940; }
.hero-showcase__genset {
  position: absolute;
  inset: 0 auto 0 0;
  width: 64%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% center;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-showcase__overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 25, 40, .20) 0%, rgba(7, 25, 40, .05) 45%, rgba(7, 25, 40, .34) 100%),
    linear-gradient(90deg, rgba(7, 28, 46, .70) 0%, rgba(7, 28, 46, .76) 34%, rgba(13, 41, 64, .93) 57%, #0d2940 76%, #0d2940 100%);
}
.hero-showcase__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(470px, 1.08fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding-top: clamp(38px, 5vh, 62px);
  padding-bottom: 166px;
}
.hero--showcase .hero-copy {
  z-index: 4;
  width: auto;
  max-width: 660px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero--showcase h1 {
  max-width: 660px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(47px, 4.6vw, 66px);
  font-weight: 720;
  line-height: 1.02;
  letter-spacing: -.052em;
  text-wrap: balance;
  text-shadow: 0 5px 25px rgba(0,0,0,.22);
}
.hero--showcase .hero-lead {
  max-width: 605px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
  text-shadow: 0 3px 18px rgba(0,0,0,.20);
}
.hero--showcase .hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero--showcase .button { min-height: 54px; padding-inline: 24px; }
.button--hero-outline {
  color: #fff;
  border-color: rgba(255,255,255,.55);
  background: rgba(8, 28, 45, .24);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}
.button--hero-outline:hover {
  color: var(--teal-950);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
}
.hero-dashboard {
  position: relative;
  z-index: 2;
  width: min(114%, 780px);
  justify-self: end;
}
.hero-dashboard__glow {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: 5%;
  width: 76%;
  height: 64%;
  border-radius: 50%;
  background: rgba(83,188,193,.22);
  filter: blur(70px);
}
.hero-dashboard img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 44px rgba(0,0,0,.44));
  mix-blend-mode: normal;
}
.hero-metrics {
  position: absolute;
  z-index: 6;
  right: 0;
  bottom: 20px;
  left: 0;
  width: min(calc(100% - 40px), 1110px);
  min-height: 124px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-inline: auto;
  overflow: hidden;
  color: var(--teal-950);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: 25px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 24px 60px rgba(3,22,35,.26);
  backdrop-filter: blur(14px);
}
.hero-metrics > div {
  min-width: 0;
  display: flex;
  padding: 18px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}
.hero-metrics > div + div { border-left: 1px solid #dce7e9; }
.hero-metrics strong {
  color: #102f40;
  font-size: clamp(27px, 2.55vw, 35px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -.045em;
}
.hero-metrics strong sup {
  position: relative;
  top: -.18em;
  margin-left: 2px;
  color: var(--aqua);
  font-size: .52em;
}
.hero-metrics strong small {
  margin-left: 3px;
  color: var(--cta-red);
  font-size: .50em;
  letter-spacing: 0;
}
.hero-metrics strong.hero-metrics__text {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -.035em;
}
.hero-metrics span {
  max-width: 190px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .site-nav { gap: 17px; }
  .hero-showcase__content {
    grid-template-columns: minmax(0, .96fr) minmax(400px, 1.04fr);
    gap: 20px;
  }
  .hero--showcase h1 { font-size: clamp(44px, 5.2vw, 59px); }
  .hero-dashboard { width: 110%; }
  .hero-metrics { width: min(calc(100% - 32px), 1040px); }
  .hero-metrics > div { padding-inline: 15px; }
}

@media (max-width: 960px) {
  :root { --header-height: 72px; }
  .site-header { height: var(--header-height); }
  .brand { width: 53px; height: 58px; padding: 5px; }
  .brand img { width: 43px; }
  .site-nav {
    color: #fff;
    background: #0d2940;
    box-shadow: 0 28px 60px rgba(1, 15, 24, .32);
  }
  .site-nav a { color: rgba(255,255,255,.88); border-bottom-color: rgba(255,255,255,.12); }
  .site-nav a:hover { color: #fff; }
  .site-nav .nav-mobile-actions a { color: #fff; border-color: rgba(255,255,255,.22); }
  .site-nav .nav-mobile-actions .button--danger { border-color: var(--cta-red); }

  .hero.hero--showcase { min-height: 650px; }
  .hero-showcase__genset { width: 82%; object-position: 57% center; }
  .hero-showcase__overlay {
    background:
      linear-gradient(180deg, rgba(7,25,40,.28), rgba(7,25,40,.34)),
      linear-gradient(90deg, rgba(7,28,46,.84) 0%, rgba(7,28,46,.82) 50%, rgba(13,41,64,.96) 82%, #0d2940 100%);
  }
  .hero-showcase__content {
    display: block;
    padding-top: clamp(54px, 8vh, 76px);
    padding-bottom: 160px;
  }
  .hero--showcase .hero-copy { position: relative; z-index: 4; max-width: 625px; }
  .hero-dashboard {
    position: absolute;
    z-index: 2;
    top: 19%;
    right: -12%;
    width: 66%;
    opacity: .58;
  }
  .hero-dashboard__glow { opacity: .72; }
  .hero-metrics { min-height: 120px; }
  .hero-metrics span { font-size: 11px; }
}

@media (max-width: 700px) {
  :root { --header-height: 70px; }
  .header-inner { gap: 12px; }
  .brand { width: 51px; height: 56px; padding: 5px; border-radius: 11px; }
  .brand img { width: 41px; }

  .hero.hero--showcase {
    height: calc(100svh - var(--header-height));
    min-height: 680px;
  }
  .hero-showcase__genset {
    width: 100%;
    height: 100%;
    object-position: 58% center;
    opacity: .86;
  }
  .hero-showcase__overlay {
    background:
      linear-gradient(180deg, rgba(8,29,46,.79) 0%, rgba(8,29,46,.82) 46%, rgba(13,41,64,.94) 73%, #0d2940 100%),
      linear-gradient(90deg, rgba(7,27,44,.52), rgba(13,41,64,.24));
  }
  .hero-showcase__content {
    padding-top: 42px;
    padding-bottom: 185px;
  }
  .hero--showcase .hero-copy { max-width: none; }
  .hero--showcase h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(39px, 10.8vw, 48px);
    line-height: 1.01;
  }
  .hero--showcase .hero-lead {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 15.5px;
    line-height: 1.52;
  }
  .hero--showcase .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
  .hero--showcase .button { min-height: 49px; padding: 11px 13px; font-size: 13px; }
  .hero-dashboard { display: none; }

  .hero-metrics {
    bottom: 12px;
    width: calc(100% - 24px);
    min-height: 164px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 20px;
  }
  .hero-metrics > div { min-height: 82px; padding: 12px 10px; gap: 5px; }
  .hero-metrics > div + div { border-left: 0; }
  .hero-metrics > div:nth-child(2n) { border-left: 1px solid #dce7e9; }
  .hero-metrics > div:nth-child(n+3) { border-top: 1px solid #dce7e9; }
  .hero-metrics strong { font-size: 25px; }
  .hero-metrics strong.hero-metrics__text { font-size: 20px; }
  .hero-metrics span { max-width: 150px; font-size: 10px; }
}

@media (max-width: 430px) {
  .hero.hero--showcase { min-height: 670px; }
  .hero-showcase__content { padding-top: 34px; }
  .hero--showcase h1 { font-size: clamp(36px, 10.3vw, 44px); }
  .hero--showcase .hero-lead { font-size: 14.5px; }
  .hero--showcase .button { font-size: 12px; }
}

@media (max-height: 720px) and (min-width: 701px) {
  .hero.hero--showcase { min-height: 600px; }
  .hero-showcase__content { padding-top: 28px; padding-bottom: 140px; }
  .hero--showcase h1 { margin-bottom: 16px; font-size: clamp(42px, 4.4vw, 56px); }
  .hero--showcase .hero-lead { margin-bottom: 20px; font-size: 16px; }
  .hero--showcase .button { min-height: 48px; }
  .hero-dashboard { max-height: 390px; }
  .hero-metrics { bottom: 14px; min-height: 108px; }
  .hero-metrics > div { padding-block: 12px; }
}

/* ==========================================================================
   v4.1 immersive first-screen hero — official UNUM source imagery and colours
   ========================================================================== */
:root {
  --brand-aqua: #53bcc1;
  --brand-aqua-light: #7fd5d9;
}

.button--brand {
  color: #102f40;
  border-color: var(--brand-aqua);
  background: var(--brand-aqua);
  box-shadow: 0 14px 32px rgba(83, 188, 193, .27);
}
.button--brand:hover {
  color: #102f40;
  border-color: var(--brand-aqua-light);
  background: var(--brand-aqua-light);
  box-shadow: 0 18px 38px rgba(83, 188, 193, .34);
}
.site-nav .button--brand::after { display: none; }
.site-nav .button--brand:hover { color: #102f40; }

/* The real UNUM Genset logo remains unchanged inside a clean white logo card. */
.site-header .brand {
  width: 62px;
  height: 62px;
  padding: 5px;
}
.site-header .brand img { width: 50px; }
.header-actions .button--brand { box-shadow: 0 10px 24px rgba(83, 188, 193, .24); }

.hero-showcase__background picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero-showcase__scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 50%;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-showcase__overlay {
  background:
    linear-gradient(180deg, rgba(7, 25, 40, .14) 0%, rgba(7, 25, 40, .10) 48%, rgba(7, 25, 40, .42) 100%),
    linear-gradient(90deg, rgba(7, 28, 46, .90) 0%, rgba(7, 28, 46, .82) 34%, rgba(7, 28, 46, .58) 58%, rgba(13, 41, 64, .34) 100%);
}
.hero-showcase__content {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 166px;
}
.hero--showcase .hero-copy {
  max-width: 760px;
  margin-top: -4px;
}
.hero--showcase h1 {
  max-width: 760px;
  font-size: clamp(48px, 4.8vw, 69px);
}
.hero--showcase .hero-lead { max-width: 690px; }
.hero--showcase .button--brand { min-width: 164px; }
.hero-metrics {
  border-top: 4px solid var(--brand-aqua);
}
.hero-metrics strong.hero-metrics__dual {
  font-size: clamp(22px, 2vw, 29px);
  letter-spacing: -.04em;
}

@media (max-width: 1100px) {
  .hero-showcase__content {
    display: flex;
    padding-top: 0;
    padding-bottom: 156px;
  }
  .hero--showcase .hero-copy { max-width: 690px; }
  .hero--showcase h1 { max-width: 690px; }
}

@media (max-width: 960px) {
  .site-header .brand { width: 56px; height: 58px; padding: 5px; }
  .site-header .brand img { width: 44px; }
  .site-nav .nav-mobile-actions .button--brand {
    color: #102f40;
    border-color: var(--brand-aqua);
    background: var(--brand-aqua);
  }
  .hero-showcase__scene { object-position: center center; }
  .hero-showcase__overlay {
    background:
      linear-gradient(180deg, rgba(7,25,40,.30) 0%, rgba(7,25,40,.33) 50%, rgba(13,41,64,.82) 100%),
      linear-gradient(90deg, rgba(7,28,46,.88) 0%, rgba(7,28,46,.72) 58%, rgba(13,41,64,.42) 100%);
  }
  .hero-showcase__content {
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 158px;
  }
  .hero--showcase .hero-copy { max-width: 660px; }
}

@media (max-width: 700px) {
  .site-header .brand { width: 54px; height: 56px; }
  .site-header .brand img { width: 42px; }
  .hero.hero--showcase {
    height: calc(100svh - var(--header-height));
    min-height: 700px;
  }
  .hero-showcase__scene { object-position: center center; }
  .hero-showcase__overlay {
    background:
      linear-gradient(180deg, rgba(7,28,46,.84) 0%, rgba(7,28,46,.78) 43%, rgba(13,41,64,.86) 67%, #0d2940 100%),
      linear-gradient(90deg, rgba(7,27,44,.34), rgba(13,41,64,.18));
  }
  .hero-showcase__content {
    display: flex;
    align-items: flex-start;
    padding-top: 36px;
    padding-bottom: 190px;
  }
  .hero--showcase h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.6vw, 47px);
  }
  .hero--showcase .hero-lead {
    font-size: 15px;
    line-height: 1.48;
  }
  .hero--showcase .hero-actions { grid-template-columns: 1fr 1fr; }
  .hero--showcase .button--brand { min-width: 0; }
  .hero-metrics { border-top-width: 3px; }
  .hero-metrics strong.hero-metrics__dual { font-size: 20px; }
}

@media (max-width: 430px) {
  .hero.hero--showcase { min-height: 690px; }
  .hero-showcase__content { padding-top: 30px; }
  .hero--showcase h1 { font-size: clamp(35px, 10vw, 42px); }
  .hero--showcase .hero-lead { font-size: 14px; }
}

@media (max-height: 720px) and (min-width: 701px) {
  .hero-showcase__content { padding-bottom: 136px; }
  .hero--showcase h1 { font-size: clamp(40px, 4.25vw, 55px); }
  .hero--showcase .hero-lead { max-width: 650px; }
}

/* Keep all primary contact-form calls red, as specified in the previous revision. */
.button--brand,
.site-nav .nav-mobile-actions .button--brand {
  color: #fff;
  border-color: var(--cta-red);
  background: var(--cta-red);
  box-shadow: 0 14px 32px rgba(215, 40, 47, .28);
}
.button--brand:hover,
.site-nav .button--brand:hover {
  color: #fff;
  border-color: var(--cta-red-dark);
  background: var(--cta-red-dark);
  box-shadow: 0 18px 38px rgba(181, 31, 38, .32);
}
.header-actions .button--brand { box-shadow: 0 10px 24px rgba(215, 40, 47, .25); }

/* Final UNUM accent buttons for the dark header and hero. Contact-form actions keep their red classes. */
.button--aqua {
  color: #102f40;
  border-color: var(--brand-aqua);
  background: var(--brand-aqua);
  box-shadow: 0 14px 32px rgba(83, 188, 193, .27);
}
.button--aqua:hover {
  color: #102f40;
  border-color: var(--brand-aqua-light);
  background: var(--brand-aqua-light);
  box-shadow: 0 18px 38px rgba(83, 188, 193, .34);
}
.site-nav .button--aqua::after { display: none; }
.site-nav .button--aqua:hover { color: #102f40; }
.header-actions .button--aqua { box-shadow: 0 10px 24px rgba(83, 188, 193, .24); }
.hero--showcase .button--aqua { min-width: 164px; }
@media (max-width: 960px) {
  .site-nav .nav-mobile-actions .button--aqua {
    color: #102f40;
    border-color: var(--brand-aqua);
    background: var(--brand-aqua);
  }
}
@media (max-width: 700px) {
  .hero--showcase .button--aqua { min-width: 0; }
}

/* v4.2 — primary calls to the contact form remain red. */
.button--brand,
.site-nav .nav-mobile-actions .button--brand {
  color: #fff;
  border-color: var(--cta-red);
  background: var(--cta-red);
  box-shadow: 0 14px 32px rgba(215, 40, 47, .30);
}
.button--brand:hover,
.site-nav .button--brand:hover {
  color: #fff;
  border-color: var(--cta-red-dark);
  background: var(--cta-red-dark);
  box-shadow: 0 18px 38px rgba(181, 31, 38, .34);
}
.header-actions .button--brand { box-shadow: 0 10px 24px rgba(215, 40, 47, .27); }

/* Final: all buttons that lead to the contact form are red. */
a.button--aqua[href="#contact"],
.site-nav .nav-mobile-actions a.button--aqua[href="#contact"] {
  color: #fff;
  border-color: var(--cta-red);
  background: var(--cta-red);
  box-shadow: 0 14px 32px rgba(215, 40, 47, .30);
}
a.button--aqua[href="#contact"]:hover,
.site-nav a.button--aqua[href="#contact"]:hover {
  color: #fff;
  border-color: var(--cta-red-dark);
  background: var(--cta-red-dark);
  box-shadow: 0 18px 38px rgba(181, 31, 38, .34);
}

/* ==========================================================================
   v5 - source-led redesign refinements
   ========================================================================== */

/* Hero: generator + monitoring process, both kept clearly visible. */
.hero-v5 {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-height));
  min-height: 680px;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 76% 24%, rgba(83, 188, 193, .19), transparent 31%),
    radial-gradient(circle at 8% 92%, rgba(83, 188, 193, .10), transparent 28%),
    linear-gradient(135deg, #0b2336 0%, #102f40 53%, #0b2336 100%);
  isolation: isolate;
}
.hero-v5::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 82%, transparent);
}
.hero-v5__main {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(390px, .88fr) minmax(570px, 1.12fr);
  align-items: center;
  gap: clamp(34px, 4.2vw, 68px);
  padding-top: clamp(25px, 4vh, 44px);
}
.hero-v5__copy {
  min-width: 0;
  padding-bottom: 10px;
}
.hero-v5 h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(47px, 4.55vw, 68px);
  font-weight: 730;
  line-height: 1.015;
  letter-spacing: -.053em;
  text-wrap: balance;
}
.hero-v5__lead {
  max-width: 630px;
  margin-bottom: 28px;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.28vw, 19px);
  line-height: 1.55;
}
.hero-v5__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-v5__actions .button {
  min-height: 52px;
  padding-inline: 23px;
}
.hero-v5__demo {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.055);
  box-shadow: none;
  backdrop-filter: blur(9px);
}
.hero-v5__demo:hover {
  color: #102f40;
  border-color: #fff;
  background: #fff;
}
.hero-v5__visual {
  position: relative;
  min-width: 0;
}
.hero-v5__visual::before {
  position: absolute;
  z-index: -1;
  inset: 10% 3% -7% 14%;
  content: "";
  border-radius: 50%;
  background: rgba(83, 188, 193, .18);
  filter: blur(60px);
}
.hero-v5__visual-frame {
  position: relative;
  display: grid;
  height: clamp(370px, 52vh, 510px);
  grid-template-columns: 43% 57%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 30px;
  background: #0a1d2c;
  box-shadow: 0 32px 85px rgba(2, 15, 25, .42);
}
.hero-v5__pane {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #0c2639;
}
.hero-v5__pane + .hero-v5__pane {
  border-left: 1px solid rgba(255,255,255,.16);
}
.hero-v5__pane img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v5__pane--genset img { object-position: 51% center; }
.hero-v5__pane--monitoring img { object-position: 48% center; }
.hero-v5__pane::after {
  position: absolute;
  inset: 38% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(4, 22, 34, .74));
  pointer-events: none;
}
.hero-v5__pane figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .01em;
}
.hero-v5__pane figcaption span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #102f40;
  border-radius: 50%;
  background: var(--brand-aqua);
  font-size: 10px;
  font-weight: 850;
}
.hero-v5__bridge {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 43%;
  display: flex;
  min-width: 104px;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transform: translate(-50%, -50%);
  color: #102f40;
  border: 4px solid #102f40;
  border-radius: 999px;
  background: var(--brand-aqua);
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.hero-v5__bridge i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #102f40;
}
.hero-v5__metrics {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 104px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
  overflow: hidden;
  color: #102f40;
  border: 1px solid rgba(255,255,255,.75);
  border-top: 4px solid var(--brand-aqua);
  border-radius: 23px;
  background: rgba(255,255,255,.985);
  box-shadow: 0 24px 62px rgba(2, 17, 29, .29);
}
.hero-v5__metrics > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 15px 20px;
  text-align: center;
}
.hero-v5__metrics > div + div { border-left: 1px solid #dce7e9; }
.hero-v5__metrics strong {
  color: #102f40;
  font-size: clamp(27px, 2.45vw, 35px);
  font-weight: 830;
  line-height: 1;
  letter-spacing: -.045em;
}
.hero-v5__metrics .hero-v5__metric-text {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -.035em;
}
.hero-v5__metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.35;
}

/* Source-backed platform flow, replacing generic invented cards. */
.platform-v5 { overflow: hidden; }
.platform-v5 .section-heading { margin-bottom: clamp(38px, 5vw, 60px); }
.source-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) 44px minmax(0, 1fr);
  align-items: stretch;
  gap: 12px;
  padding: 6px 0 58px;
}
.source-flow::before {
  position: absolute;
  top: 151px;
  right: 7%;
  left: 7%;
  z-index: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(8,117,132,.30) 12%, rgba(8,117,132,.30) 88%, transparent);
}
.source-flow__item {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0 7px;
  text-align: center;
}
.source-flow__visual {
  display: grid;
  height: 205px;
  margin-bottom: 23px;
  place-items: center;
  padding: 15px;
}
.source-flow__visual img {
  width: auto;
  max-width: 100%;
  max-height: 175px;
  object-fit: contain;
  filter: none !important;
}
.source-flow__item > div:last-child > span {
  display: inline-grid;
  width: 31px;
  height: 31px;
  margin-bottom: 12px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--teal-700);
  font-size: 10px;
  font-weight: 850;
}
.source-flow__item h3 { margin-bottom: 8px; font-size: 23px; }
.source-flow__item p {
  max-width: 315px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.source-flow__connector {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-top: 125px;
}
.source-flow__connector::after {
  width: 9px;
  height: 9px;
  content: "";
  transform: rotate(45deg);
  border-top: 2px solid var(--teal-600);
  border-right: 2px solid var(--teal-600);
}
.source-flow__connector b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-aqua);
}
.fleet-grid--official {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  gap: clamp(42px, 6vw, 82px);
  padding-top: clamp(50px, 6vw, 78px);
  border-top: 1px solid var(--line);
}
.fleet-official-image {
  display: grid;
  min-width: 0;
  min-height: 365px;
  margin: 0;
  place-items: center;
  padding: clamp(24px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(83,188,193,.10), transparent 57%),
    #fff;
  box-shadow: var(--shadow-sm);
}
.fleet-official-image img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  filter: none !important;
}
.fleet-copy h2 { font-size: clamp(37px, 4vw, 55px); }
.fleet-copy > p { margin-bottom: 22px; }
.fleet-brand-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.fleet-brand-lines p {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}
.fleet-brand-lines strong {
  color: var(--teal-900);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .07em;
  text-transform: uppercase;
}

/* Compact hardware overview. */
.equipment-v5 { background: #fff; }
.equipment-v5 .section-heading { margin-bottom: clamp(38px, 4.7vw, 58px); }
.hardware-compact {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
  align-items: stretch;
  gap: 24px;
}
.hardware-compact__diagram {
  display: grid;
  min-width: 0;
  min-height: 470px;
  margin: 0;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #f8fbfb;
}
.hardware-compact__diagram img {
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  filter: none !important;
}
.hardware-compact__side {
  display: grid;
  min-width: 0;
  grid-template-rows: auto 1fr;
  gap: 16px;
}
.hardware-compact__summary {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
}
.hardware-compact__summary li {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
}
.hardware-compact__summary li + li { border-top: 1px solid var(--line); }
.hardware-compact__summary strong {
  color: var(--teal-800);
  font-size: 13px;
  font-weight: 830;
}
.hardware-compact__summary span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.hardware-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.hardware-mini-grid article {
  display: grid;
  min-width: 0;
  min-height: 97px;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.hardware-mini-grid article:last-child { grid-column: 1 / -1; }
.hardware-mini-grid img {
  width: 78px;
  height: 67px;
  object-fit: contain;
  filter: none !important;
}
.hardware-mini-grid h3 { margin: 0 0 3px; font-size: 16px; letter-spacing: -.02em; }
.hardware-mini-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.35; }

/* Presentation-derived benefit icons. */
.benefits-v5 { background: var(--aqua-soft); }
.benefits-v5 .section-heading { margin-bottom: clamp(35px, 4.6vw, 55px); }
.benefits-v5 .section-heading > p { max-width: 650px; }
.benefit-grid--six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.benefit-card--source {
  display: grid;
  min-height: 196px;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 24px 25px;
  border-top: 0;
  border-radius: 22px;
}
.benefit-card--source:nth-child(n) { border-top-color: transparent; background: #fff; }
.benefit-card--source img {
  width: 96px;
  height: 74px;
  object-fit: contain;
  filter: none !important;
}
.benefit-card--source h3 { margin-bottom: 7px; font-size: 20px; }
.benefit-card--source p { font-size: 13px; line-height: 1.55; }

/* Three compact real-world cases. */
.cases-v5 .section-heading { margin-bottom: clamp(38px, 4.8vw, 58px); }
.case-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.case-card--compact {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-radius: 23px;
}
.case-card--compact .case-card__image { height: 205px; }
.case-card--compact .case-result {
  right: 15px;
  bottom: 14px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 10px;
}
.case-card--compact .case-result strong { font-size: 22px; }
.case-card--compact .case-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 23px;
}
.case-card--compact .case-meta { margin-bottom: 12px; }
.case-card--compact h3 {
  margin-bottom: 13px;
  font-size: clamp(20px, 1.75vw, 25px);
  line-height: 1.13;
}
.case-card--compact .case-card__body > p {
  margin-bottom: 19px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}
.case-card--compact .arrow-link { margin-top: auto; }

/* The imported native contact form keeps one clear red submit button. */
.contact-form-native .form-actions { justify-content: flex-start; }
.contact-form-native .form-actions:empty { display: none; }
.contact-form-native .button--danger { min-width: 170px; }

@media (max-width: 1120px) {
  .hero-v5__main {
    grid-template-columns: minmax(350px, .88fr) minmax(500px, 1.12fr);
    gap: 28px;
  }
  .hero-v5 h1 { font-size: clamp(44px, 5.1vw, 61px); }
  .hero-v5__visual-frame { height: clamp(360px, 49vh, 475px); }
  .hardware-compact { grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); }
  .hardware-mini-grid article { grid-template-columns: 70px minmax(0, 1fr); }
  .hardware-mini-grid img { width: 66px; height: 58px; }
}

@media (max-width: 960px) {
  .hero-v5 {
    height: auto;
    min-height: calc(100svh - var(--header-height));
    grid-template-rows: auto auto;
    padding-bottom: 14px;
  }
  .hero-v5__main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 40px;
  }
  .hero-v5__copy { max-width: 710px; padding-bottom: 0; }
  .hero-v5 h1 { max-width: 720px; font-size: clamp(45px, 7.6vw, 64px); }
  .hero-v5__lead { max-width: 690px; }
  .hero-v5__visual-frame { height: clamp(330px, 46vw, 430px); }
  .hero-v5__metrics { margin-bottom: 0; }

  .source-flow {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-bottom: 46px;
  }
  .source-flow::before { display: none; }
  .source-flow__item {
    display: grid;
    grid-template-columns: minmax(210px, .8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 26px;
    text-align: left;
  }
  .source-flow__visual { height: 172px; margin: 0; }
  .source-flow__item p { max-width: none; margin: 0; }
  .source-flow__connector { height: 25px; padding: 0 0 0 118px; justify-content: flex-start; }
  .source-flow__connector::after { transform: rotate(135deg); }
  .fleet-grid--official { grid-template-columns: 1fr; gap: 38px; }
  .fleet-official-image { min-height: 300px; }

  .hardware-compact { grid-template-columns: 1fr; }
  .hardware-compact__diagram { min-height: 390px; }
  .hardware-compact__side { grid-template-columns: .8fr 1.2fr; grid-template-rows: auto; }
  .hardware-compact__summary li { grid-template-columns: 112px 1fr; }

  .benefit-grid--six { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid--three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .case-grid--three .case-card:last-child { grid-column: 1 / -1; }
  .case-grid--three .case-card:last-child { display: grid; grid-template-columns: .9fr 1.1fr; }
  .case-grid--three .case-card:last-child .case-card__image { height: 100%; min-height: 270px; }
}

@media (max-width: 700px) {
  .hero-v5 {
    min-height: calc(100svh - var(--header-height));
    gap: 10px;
    padding-bottom: 10px;
  }
  .hero-v5__main {
    gap: 18px;
    padding-top: 24px;
  }
  .hero-v5 h1 {
    margin-bottom: 15px;
    font-size: clamp(35px, 10.2vw, 45px);
    line-height: 1.01;
  }
  .hero-v5__lead {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.45;
  }
  .hero-v5__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-v5__actions .button {
    min-height: 45px;
    padding: 10px 12px;
    font-size: 12px;
  }
  .hero-v5__visual-frame {
    height: clamp(210px, 58vw, 250px);
    grid-template-columns: 47% 53%;
    border-radius: 20px;
  }
  .hero-v5__pane--genset img { object-position: 50% center; }
  .hero-v5__pane--monitoring img { object-position: 48% center; }
  .hero-v5__pane figcaption {
    right: 10px;
    bottom: 9px;
    left: 10px;
    gap: 6px;
    font-size: 9px;
  }
  .hero-v5__pane figcaption span { width: 21px; height: 21px; font-size: 8px; }
  .hero-v5__bridge { left: 47%; min-width: 42px; min-height: 31px; padding: 0 8px; border-width: 3px; }
  .hero-v5__bridge span { display: none; }
  .hero-v5__bridge i { width: 3px; height: 3px; }
  .hero-v5__metrics {
    min-height: 142px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
    border-radius: 19px;
    border-top-width: 3px;
  }
  .hero-v5__metrics > div { min-height: 69px; padding: 10px 8px; }
  .hero-v5__metrics > div + div { border-left: 0; }
  .hero-v5__metrics > div:nth-child(2n) { border-left: 1px solid #dce7e9; }
  .hero-v5__metrics > div:nth-child(n+3) { border-top: 1px solid #dce7e9; }
  .hero-v5__metrics strong { font-size: 23px; }
  .hero-v5__metrics .hero-v5__metric-text { font-size: 18px; }
  .hero-v5__metrics span { font-size: 9px; }

  .source-flow__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-block: 4px;
    text-align: center;
  }
  .source-flow__visual { height: 145px; }
  .source-flow__visual img { max-height: 130px; }
  .source-flow__connector { height: 20px; padding: 0; justify-content: center; }
  .fleet-grid--official { padding-top: 42px; }
  .fleet-official-image { min-height: 210px; padding: 20px 14px; border-radius: 22px; }
  .fleet-copy h2 { font-size: clamp(34px, 10vw, 44px); }
  .fleet-brand-lines p { grid-template-columns: 78px 1fr; gap: 8px; }

  .hardware-compact__diagram { min-height: 265px; padding: 15px; border-radius: 21px; }
  .hardware-compact__side { grid-template-columns: 1fr; }
  .hardware-compact__summary li { grid-template-columns: 104px 1fr; padding: 14px 15px; }
  .hardware-mini-grid article { min-height: 88px; grid-template-columns: 68px minmax(0, 1fr); }
  .hardware-mini-grid img { width: 63px; height: 55px; }

  .benefit-grid--six { grid-template-columns: 1fr; gap: 12px; }
  .benefit-card--source {
    min-height: 0;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 17px;
    padding: 19px 20px;
  }
  .benefit-card--source img { width: 78px; height: 59px; }
  .benefit-card--source h3 { font-size: 18px; }

  .case-grid--three { grid-template-columns: 1fr; gap: 15px; }
  .case-grid--three .case-card:last-child {
    display: flex;
    grid-column: auto;
  }
  .case-grid--three .case-card:last-child .case-card__image,
  .case-card--compact .case-card__image { height: 200px; min-height: 0; }
}

@media (max-width: 430px) {
  .hero-v5__main { padding-top: 18px; }
  .hero-v5 h1 { font-size: clamp(33px, 9.6vw, 40px); }
  .hero-v5__lead { font-size: 13px; }
  .hero-v5__visual-frame { height: 210px; }
  .hero-v5__metrics { min-height: 132px; }
  .hero-v5__metrics > div { min-height: 64px; }
  .hardware-mini-grid { grid-template-columns: 1fr; }
  .hardware-mini-grid article:last-child { grid-column: auto; }
}

@media (max-height: 760px) and (min-width: 961px) {
  .hero-v5 { min-height: 620px; gap: 10px; }
  .hero-v5__main { padding-top: 18px; }
  .hero-v5 h1 { margin-bottom: 15px; font-size: clamp(42px, 4.25vw, 57px); }
  .hero-v5__lead { margin-bottom: 18px; font-size: 15px; }
  .hero-v5__actions .button { min-height: 47px; }
  .hero-v5__visual-frame { height: clamp(340px, 48vh, 410px); }
  .hero-v5__metrics { min-height: 92px; margin-bottom: 10px; }
  .hero-v5__metrics > div { padding-block: 11px; }
  .hero-v5__metrics strong { font-size: 27px; }
}

/* v5.1 mobile density and label legibility. */
@media (max-width: 700px) {
  .fleet-brand-lines p { grid-template-columns: 1fr; gap: 2px; }
  .fleet-brand-lines strong { margin-bottom: 1px; }
}
@media (min-width: 341px) and (max-width: 430px) {
  .hardware-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hardware-mini-grid article {
    min-height: 102px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
    padding: 10px;
  }
  .hardware-mini-grid article:last-child { grid-column: 1 / -1; }
  .hardware-mini-grid img { width: 51px; height: 48px; }
  .hardware-mini-grid h3 { font-size: 14px; }
  .hardware-mini-grid p { font-size: 10px; }
}

/* ==========================================================================
   v6 - first-screen hierarchy, full-width compatibility and hardware sections
   ========================================================================== */

/* Official white UNUM Genset mark on a transparent background. */
.site-header .brand {
  width: 72px;
  height: var(--header-height);
  padding: 4px 0;
  justify-content: flex-start;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.site-header .brand img {
  width: auto;
  height: 66px;
  max-height: 66px;
  object-fit: contain;
}

/* Hero: two source photographs are layered as a connected monitoring story. */
.hero-v6 {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 77% 20%, rgba(83, 188, 193, .20), transparent 31%),
    radial-gradient(circle at 8% 88%, rgba(83, 188, 193, .11), transparent 29%),
    linear-gradient(135deg, #0a2234 0%, #11364a 54%, #0a2234 100%);
  isolation: isolate;
}
.hero-v6::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .40;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 86%, transparent);
}
.hero-v6__main {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(405px, .90fr) minmax(565px, 1.10fr);
  align-items: center;
  gap: clamp(32px, 4.4vw, 70px);
  padding-top: clamp(24px, 3.6vh, 42px);
  padding-bottom: clamp(20px, 3vh, 34px);
}
.hero-v6__copy { min-width: 0; }
.hero-v6 h1 {
  max-width: 690px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(45px, 4.25vw, 65px);
  font-weight: 740;
  line-height: 1.015;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.hero-v6__lead {
  max-width: 625px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 1.24vw, 18px);
  line-height: 1.55;
}
.hero-v6__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-v6__actions .button {
  min-height: 50px;
  padding-inline: 22px;
}
.hero-v6__demo {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.055);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.hero-v6__demo:hover {
  color: #102f40;
  border-color: #fff;
  background: #fff;
}
.hero-v6__visual {
  position: relative;
  min-width: 0;
}
.hero-v6__canvas {
  position: relative;
  height: clamp(365px, 49vh, 490px);
  min-height: 0;
}
.hero-v6__accent {
  position: absolute;
  z-index: 0;
  border: 1px solid rgba(83,188,193,.25);
  border-radius: 50%;
  pointer-events: none;
}
.hero-v6__accent--one {
  top: 1%;
  right: 1%;
  width: 72%;
  height: 72%;
  transform: rotate(-8deg);
}
.hero-v6__accent--two {
  right: 12%;
  bottom: -4%;
  width: 66%;
  height: 66%;
  border-color: rgba(255,255,255,.10);
  transform: rotate(12deg);
}
.hero-v6__card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 27px;
  background: #0a1d2c;
  box-shadow: 0 28px 70px rgba(2, 14, 24, .42);
}
.hero-v6__card--genset {
  top: 2%;
  left: 0;
  z-index: 1;
  width: 59%;
  height: 80%;
  transform: rotate(-1.1deg);
}
.hero-v6__card--monitoring {
  right: 0;
  bottom: 1%;
  z-index: 3;
  width: 64%;
  height: 84%;
  border-top: 4px solid var(--brand-aqua);
  transform: rotate(.7deg);
}
.hero-v6__card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v6__card--genset img { object-position: 47% center; }
.hero-v6__card--monitoring img { object-position: 47% center; }
.hero-v6__card::after {
  position: absolute;
  inset: 42% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(4, 20, 31, .82));
  pointer-events: none;
}
.hero-v6__card figcaption {
  position: absolute;
  z-index: 4;
  right: 16px;
  bottom: 15px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.hero-v6__card figcaption > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  color: #0c3142;
  border-radius: 50%;
  background: var(--brand-aqua);
  font-size: 10px;
  font-weight: 850;
}
.hero-v6__card figcaption div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 2px;
}
.hero-v6__card figcaption strong {
  font-size: 13px;
  font-weight: 820;
  line-height: 1.2;
}
.hero-v6__card figcaption small {
  color: rgba(255,255,255,.72);
  font-size: 9px;
  font-weight: 620;
  line-height: 1.25;
}
.hero-v6__data-link {
  position: absolute;
  z-index: 5;
  top: 45%;
  left: 47.5%;
  display: flex;
  min-width: 96px;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  color: #0b3041;
  border: 4px solid #102f40;
  border-radius: 999px;
  background: var(--brand-aqua);
  box-shadow: 0 12px 32px rgba(0,0,0,.30);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hero-v6__data-link::before,
.hero-v6__data-link::after {
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 38px;
  height: 2px;
  content: "";
  background: var(--brand-aqua);
  box-shadow: 0 0 12px rgba(83,188,193,.55);
}
.hero-v6__data-link::before { right: 100%; }
.hero-v6__data-link::after { left: 100%; }
.hero-v6__data-link i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0b3041;
}

/* Key information replaces both the duplicated turquoise strip and the white metrics card. */
.hero-key-strip {
  position: relative;
  z-index: 6;
  min-height: 96px;
  color: #0b3041;
  border-top: 1px solid rgba(255,255,255,.32);
  background: linear-gradient(90deg, #43b7c0 0%, #65cdd1 54%, #78d9dc 100%);
  box-shadow: 0 -14px 35px rgba(3, 20, 31, .18);
}
.hero-key-strip__grid {
  display: grid;
  min-height: 96px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.hero-key-strip__grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px 22px;
  text-align: center;
}
.hero-key-strip__grid > div + div { border-left: 1px solid rgba(11,48,65,.22); }
.hero-key-strip strong {
  color: #0b3041;
  font-size: clamp(28px, 2.35vw, 35px);
  font-weight: 860;
  line-height: 1;
  letter-spacing: -.045em;
}
.hero-key-strip .hero-key-strip__word {
  font-size: clamp(20px, 1.8vw, 27px);
  letter-spacing: -.035em;
}
.hero-key-strip span {
  color: rgba(11,48,65,.78);
  font-size: 11px;
  font-weight: 740;
  line-height: 1.3;
}

/* The explanatory copy under each platform image is now a distinct readable panel. */
.source-flow__item .source-flow__copy {
  min-height: 156px;
  padding: 18px 19px 20px;
  text-align: left;
  border: 1px solid #d8e8ea;
  border-radius: 18px;
  background: #f5fbfb;
  box-shadow: 0 12px 28px rgba(15, 55, 67, .055);
}
.source-flow__item .source-flow__copy > span {
  margin-bottom: 11px;
}
.source-flow__item .source-flow__copy h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 22px;
}
.source-flow__item .source-flow__copy p {
  max-width: none;
  margin: 0;
  color: #536c76;
  font-size: 15px;
  line-height: 1.62;
}

/* Full-width mixed-fleet image, followed by the explanation. */
.fleet-showcase {
  margin-top: clamp(44px, 5vw, 72px);
  padding-top: clamp(58px, 6.5vw, 88px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #f6fbfb;
}
.fleet-showcase__heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 4.3vw, 62px);
  line-height: 1.03;
  letter-spacing: -.05em;
  text-wrap: balance;
}
.fleet-showcase__visual {
  width: 100%;
  margin: clamp(30px, 3.5vw, 46px) 0 0;
  overflow: hidden;
  border-top: 1px solid #d9e7e9;
  border-bottom: 1px solid #d9e7e9;
  background: #fff;
  box-shadow: 0 22px 55px rgba(12, 49, 61, .08);
}
.fleet-showcase__visual img {
  display: block;
  width: 100%;
  max-width: 2000px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  filter: none !important;
}
.fleet-showcase__details {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: start;
  gap: clamp(42px, 6vw, 86px);
  padding-top: clamp(34px, 4vw, 52px);
  padding-bottom: clamp(60px, 7vw, 92px);
}
.fleet-showcase__lead {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.58;
}
.fleet-brand-lines--wide {
  gap: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.fleet-brand-lines--wide p {
  min-height: 68px;
  grid-template-columns: 108px 1fr;
  align-items: center;
  padding: 16px 20px;
  font-size: 14px;
}
.fleet-brand-lines--wide p + p { border-top: 1px solid var(--line); }

/* Full-width hardware diagram, a clean protocol strip, then compact product cards. */
.equipment-v6 {
  padding-bottom: clamp(78px, 8vw, 116px);
  background: #fff;
}
.equipment-v6 .section-heading { margin-bottom: clamp(38px, 4.8vw, 58px); }
.hardware-diagram-stage {
  width: 100%;
  padding: clamp(22px, 3vw, 38px) 0;
  overflow: hidden;
  border-top: 1px solid #d9e8ea;
  border-bottom: 1px solid #d9e8ea;
  background:
    radial-gradient(circle at 50% 45%, rgba(83,188,193,.13), transparent 58%),
    #eef8f8;
}
.hardware-diagram-wide {
  width: min(1280px, calc(100% - 42px));
  margin: 0 auto;
  padding: clamp(15px, 2vw, 24px);
  overflow: hidden;
  border: 1px solid #d7e7e9;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 58px rgba(12, 49, 61, .11);
}
.hardware-diagram-wide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: none !important;
}
.hardware-protocol-band {
  color: #fff;
  background: #0d3042;
}
.hardware-protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hardware-protocol-grid > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
  padding: 23px clamp(20px, 3vw, 42px);
}
.hardware-protocol-grid > div + div { border-left: 1px solid rgba(255,255,255,.15); }
.hardware-protocol-grid strong {
  color: var(--brand-aqua);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.01em;
}
.hardware-protocol-grid span {
  color: rgba(255,255,255,.74);
  font-size: 12px;
  line-height: 1.45;
}
.hardware-product-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(34px, 4.2vw, 52px);
}
.hardware-product-row article {
  min-width: 0;
  padding: 17px 15px 18px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f9fcfc;
  box-shadow: 0 12px 30px rgba(13, 52, 65, .055);
}
.hardware-product-row__image {
  display: grid;
  height: 112px;
  margin-bottom: 12px;
  place-items: center;
}
.hardware-product-row img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 105px;
  object-fit: contain;
  filter: none !important;
}
.hardware-product-row h3 {
  margin: 0 0 4px;
  font-size: 17px;
  letter-spacing: -.025em;
}
.hardware-product-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 1120px) {
  .hero-v6__main {
    grid-template-columns: minmax(360px, .86fr) minmax(500px, 1.14fr);
    gap: 28px;
  }
  .hero-v6 h1 { font-size: clamp(43px, 4.7vw, 58px); }
  .hero-v6__canvas { height: clamp(350px, 47vh, 440px); }
  .hardware-product-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hardware-product-row article:nth-child(4),
  .hardware-product-row article:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 920px) {
  .site-header .brand { width: 64px; }
  .site-header .brand img { height: 58px; max-height: 58px; }
  .hero-v6 {
    height: auto;
    min-height: calc(100svh - var(--header-height));
  }
  .hero-v6__main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 24px;
  }
  .hero-v6__copy { max-width: 760px; }
  .hero-v6 h1 { max-width: 760px; font-size: clamp(43px, 7vw, 60px); }
  .hero-v6__lead { max-width: 720px; }
  .hero-v6__visual { width: min(760px, 100%); margin-inline: auto; }
  .hero-v6__canvas { height: clamp(340px, 49vw, 415px); }

  .source-flow__item .source-flow__copy { min-height: 0; }
  .fleet-showcase__details { grid-template-columns: 1fr; gap: 28px; }
  .fleet-brand-lines--wide { max-width: 760px; }
  .hardware-product-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .site-header .brand { width: 57px; height: var(--header-height); padding: 5px 0; }
  .site-header .brand img { height: 52px; max-height: 52px; }
  .hero-v6__main {
    gap: 17px;
    padding-top: 20px;
    padding-bottom: 16px;
  }
  .hero-v6 h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 9.9vw, 44px);
    line-height: 1.01;
  }
  .hero-v6__lead {
    margin-bottom: 17px;
    font-size: 13px;
    line-height: 1.45;
  }
  .hero-v6__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-v6__actions .button {
    min-height: 44px;
    padding: 9px 11px;
    font-size: 12px;
  }
  .hero-v6__canvas { height: clamp(210px, 59vw, 250px); }
  .hero-v6__card { border-radius: 19px; }
  .hero-v6__card--genset { width: 61%; height: 78%; }
  .hero-v6__card--monitoring { width: 65%; height: 82%; border-top-width: 3px; }
  .hero-v6__card figcaption { right: 9px; bottom: 8px; left: 9px; gap: 6px; }
  .hero-v6__card figcaption > span { width: 22px; height: 22px; flex-basis: 22px; font-size: 8px; }
  .hero-v6__card figcaption strong { font-size: 9px; }
  .hero-v6__card figcaption small { font-size: 7px; }
  .hero-v6__data-link {
    left: 47%;
    min-width: 45px;
    min-height: 31px;
    padding: 0 8px;
    border-width: 3px;
  }
  .hero-v6__data-link span { display: none; }
  .hero-v6__data-link::before,
  .hero-v6__data-link::after { width: 20px; }
  .hero-key-strip { min-height: 132px; }
  .hero-key-strip__grid {
    min-height: 132px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hero-key-strip__grid > div { min-height: 66px; padding: 9px 7px; }
  .hero-key-strip__grid > div + div { border-left: 0; }
  .hero-key-strip__grid > div:nth-child(2n) { border-left: 1px solid rgba(11,48,65,.22); }
  .hero-key-strip__grid > div:nth-child(n+3) { border-top: 1px solid rgba(11,48,65,.22); }
  .hero-key-strip strong { font-size: 23px; }
  .hero-key-strip .hero-key-strip__word { font-size: 17px; }
  .hero-key-strip span { font-size: 9px; }

  .source-flow__item .source-flow__copy {
    padding: 16px 17px 18px;
    text-align: left;
  }
  .source-flow__item .source-flow__copy h3 { font-size: 20px; }
  .source-flow__item .source-flow__copy p { font-size: 14px; }

  .fleet-showcase { margin-top: 38px; padding-top: 52px; }
  .fleet-showcase__heading h2 { font-size: clamp(35px, 10vw, 46px); }
  .fleet-showcase__visual { margin-top: 27px; }
  .fleet-showcase__details { padding-top: 28px; padding-bottom: 58px; }
  .fleet-showcase__lead { font-size: 17px; }
  .fleet-brand-lines--wide p { min-height: 0; grid-template-columns: 1fr; gap: 4px; padding: 15px 17px; }

  .equipment-v6 { padding-bottom: 74px; }
  .hardware-diagram-stage { padding: 17px 0; }
  .hardware-diagram-wide { width: calc(100% - 22px); padding: 9px; border-radius: 18px; }
  .hardware-protocol-grid { grid-template-columns: 1fr; }
  .hardware-protocol-grid > div { padding: 16px 20px; }
  .hardware-protocol-grid > div + div { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .hardware-product-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 30px; }
  .hardware-product-row article { padding: 13px 10px 15px; border-radius: 17px; }
  .hardware-product-row article:last-child { grid-column: 1 / -1; }
  .hardware-product-row__image { height: 88px; margin-bottom: 9px; }
  .hardware-product-row img { max-height: 82px; }
  .hardware-product-row h3 { font-size: 15px; }
  .hardware-product-row p { font-size: 10px; }
}

@media (max-width: 430px) {
  .hero-v6__main { padding-top: 16px; }
  .hero-v6 h1 { font-size: clamp(32px, 9.3vw, 39px); }
  .hero-v6__lead { font-size: 12.5px; }
  .hero-v6__canvas { height: 210px; }
  .hero-v6__card figcaption small { display: none; }
  .hero-key-strip__grid > div { min-height: 64px; }
}

@media (max-height: 760px) and (min-width: 921px) {
  .hero-v6 { min-height: 610px; }
  .hero-v6__main { padding-top: 14px; padding-bottom: 15px; }
  .hero-v6 h1 { margin-bottom: 14px; font-size: clamp(41px, 4vw, 54px); }
  .hero-v6__lead { margin-bottom: 17px; font-size: 14px; }
  .hero-v6__actions .button { min-height: 45px; }
  .hero-v6__canvas { height: clamp(330px, 46vh, 375px); }
  .hero-key-strip,
  .hero-key-strip__grid { min-height: 86px; }
  .hero-key-strip__grid > div { padding-block: 10px; }
  .hero-key-strip strong { font-size: 27px; }
  .hero-key-strip .hero-key-strip__word { font-size: 21px; }
}


/* Final V6 refinements: the first-screen capability strip is static,
   supporting copy is easier to scan, and the architecture spans the viewport. */
.hero-key-strip {
  opacity: 1 !important;
  transform: none !important;
}
.source-flow__item .source-flow__copy p {
  font-size: 16px;
  line-height: 1.58;
}
.hardware-diagram-wide {
  width: min(1460px, calc(100% - 24px));
  padding: clamp(12px, 1.6vw, 20px);
}
@media (max-width: 700px) {
  .source-flow__item .source-flow__copy p { font-size: 14.5px; }
  .hardware-diagram-wide { width: calc(100% - 16px); padding: 8px; }
}

/* ==========================================================================
   V7 — presentation-inspired hero, readable system flow and viewport sections
   ========================================================================== */

/* Section-by-section document scrolling. Tall blocks remain naturally scrollable,
   while compact blocks settle at the top of the viewport. */
html {
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}
main > .snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Hero: source photographs joined by the turquoise arc used on the presentation cover. */
.hero-v7 {
  position: relative;
  display: grid;
  height: calc(100svh - var(--header-height));
  min-height: 620px;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 13%, rgba(83, 188, 193, .18), transparent 30%),
    radial-gradient(circle at 6% 92%, rgba(83, 188, 193, .10), transparent 28%),
    linear-gradient(135deg, #091f31 0%, #10364a 56%, #091f31 100%);
  isolation: isolate;
}
.hero-v7::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 88%, transparent);
}
.hero-v7__main {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(405px, .88fr) minmax(570px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 4.4vw, 68px);
  padding-top: clamp(22px, 3.2vh, 38px);
  padding-bottom: clamp(18px, 2.7vh, 30px);
}
.hero-v7__copy { min-width: 0; }
.hero-v7 h1 {
  max-width: 690px;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(45px, 4.2vw, 64px);
  font-weight: 740;
  line-height: 1.015;
  letter-spacing: -.052em;
  text-wrap: balance;
}
.hero-v7__lead {
  max-width: 625px;
  margin-bottom: 26px;
  color: rgba(255,255,255,.82);
  font-size: clamp(15px, 1.24vw, 18px);
  line-height: 1.55;
}
.hero-v7__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.hero-v7__actions .button {
  min-height: 50px;
  padding-inline: 22px;
}
.hero-v7__demo {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.055);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.hero-v7__demo:hover {
  color: #102f40;
  border-color: #fff;
  background: #fff;
}
.hero-v7__visual { min-width: 0; }
.hero-v7__story {
  position: relative;
  height: clamp(355px, 48vh, 478px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  background: #0a1d2c;
  box-shadow: 0 30px 78px rgba(2, 14, 24, .44);
}
.hero-v7__story::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
}
.hero-v7__story > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__caption {
  position: absolute;
  z-index: 3;
  bottom: 17px;
  display: flex;
  max-width: 44%;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px 13px;
  color: #fff;
  border-top: 3px solid var(--brand-aqua);
  border-radius: 12px;
  background: rgba(7, 29, 44, .82);
  box-shadow: 0 10px 28px rgba(0,0,0,.26);
  backdrop-filter: blur(10px);
}
.hero-v7__caption--genset { left: 17px; }
.hero-v7__caption--monitoring { right: 17px; text-align: right; }
.hero-v7__caption strong {
  font-size: 14px;
  font-weight: 830;
  line-height: 1.18;
  letter-spacing: -.01em;
}
.hero-v7__caption span {
  color: rgba(255,255,255,.75);
  font-size: 10px;
  font-weight: 630;
  line-height: 1.28;
}
.hero-v7__live {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 45.5%;
  display: flex;
  min-width: 92px;
  min-height: 39px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transform: translate(-50%, -50%);
  color: #0b3041;
  border: 4px solid #102f40;
  border-radius: 999px;
  background: var(--brand-aqua);
  box-shadow: 0 12px 32px rgba(0,0,0,.30);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hero-v7__live i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #0b3041;
}

/* Platform cards: no artificial numbering, stronger hierarchy and scan-friendly tags. */
.platform-v5 .section-heading { margin-bottom: clamp(25px, 3.2vh, 38px); }
.source-flow {
  grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr) 34px minmax(0, 1fr);
  gap: 10px;
  padding: 0;
}
.source-flow::before { top: 122px; }
.source-flow__item { padding-inline: 3px; }
.source-flow__visual {
  height: clamp(145px, 20vh, 185px);
  margin-bottom: 14px;
  padding: 8px 13px;
}
.source-flow__visual img { max-height: 165px; }
.source-flow__connector { padding-top: 103px; }
.source-flow__item .source-flow__copy {
  min-height: 170px;
  padding: 18px 19px 17px;
  border-top: 4px solid var(--brand-aqua);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(15, 55, 67, .075);
}
.source-flow__item .source-flow__copy h3 {
  margin-bottom: 9px;
  color: #0d3042;
  font-size: 22px;
}
.source-flow__item .source-flow__copy p {
  color: #3f5964;
  font-size: 15px;
  font-weight: 520;
  line-height: 1.58;
}
.source-flow__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.source-flow__tags li {
  padding: 5px 8px;
  color: #0b6c79;
  border: 1px solid #cce8ea;
  border-radius: 999px;
  background: #effafa;
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
}

/* Mixed-fleet compatibility is a contained, full-width image followed by two readable cards. */
.fleet-showcase {
  margin-top: 0;
  padding-block: clamp(38px, 5vh, 58px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #f4f9fa;
}
.fleet-showcase__heading h2 {
  max-width: 820px;
  font-size: clamp(39px, 4vw, 56px);
}
.fleet-showcase__visual-wrap { margin-top: clamp(20px, 2.5vh, 30px); }
.fleet-showcase__visual {
  width: 100%;
  height: clamp(245px, 36vh, 335px);
  margin: 0;
  padding: 10px 14px;
  overflow: hidden;
  border: 1px solid #d7e6e8;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(12, 49, 61, .08);
}
.fleet-showcase__visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}
.fleet-showcase__details {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 0;
}
.fleet-detail-card {
  min-width: 0;
  padding: 19px 21px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(13, 52, 65, .055);
}
.fleet-detail-card h3 {
  margin-bottom: 10px;
  color: #0d3042;
  font-size: 20px;
}
.fleet-showcase__lead {
  max-width: none;
  margin-bottom: 13px;
  color: #3f5964;
  font-size: 15.5px;
  font-weight: 520;
  line-height: 1.52;
}
.fleet-detail-card .check-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}
.fleet-detail-card .check-list li {
  min-height: 42px;
  padding: 8px 8px 8px 27px;
  border-radius: 10px;
  background: #f3f9fa;
  font-size: 10.5px;
  line-height: 1.28;
}
.fleet-detail-card .check-list li::before { top: 8px; left: 8px; }
.fleet-brand-lines--wide {
  box-shadow: none;
}
.fleet-brand-lines--wide p {
  min-height: 54px;
  grid-template-columns: 96px minmax(0, 1fr);
  padding: 11px 14px;
  font-size: 13px;
}
.fleet-brand-lines--wide p span { color: #3f5964; font-weight: 550; }

/* Compact one-screen hardware section: diagram, product cards, then protocol strip. */
.equipment-v7 {
  padding-block: clamp(30px, 4.2vh, 46px);
  background: #fff;
}
.equipment-v7__inner { width: min(calc(100% - 40px), var(--container)); }
.equipment-v7 .section-heading {
  margin-bottom: clamp(16px, 2.3vh, 24px);
}
.equipment-v7 .section-heading h2 { font-size: clamp(37px, 3.8vw, 53px); }
.equipment-v7 .hardware-diagram-stage {
  width: 100%;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}
.equipment-v7 .hardware-diagram-wide {
  width: 100%;
  height: clamp(220px, 31vh, 285px);
  margin: 0;
  padding: 9px 12px;
  border-radius: 21px;
  box-shadow: 0 18px 45px rgba(12, 49, 61, .09);
}
.equipment-v7 .hardware-diagram-wide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.equipment-v7 .hardware-product-row {
  gap: 10px;
  margin-top: 12px;
}
.equipment-v7 .hardware-product-row article {
  min-height: 112px;
  padding: 9px 10px 10px;
  border-radius: 16px;
}
.equipment-v7 .hardware-product-row__image {
  height: 65px;
  margin-bottom: 5px;
}
.equipment-v7 .hardware-product-row img { max-height: 62px; }
.equipment-v7 .hardware-product-row h3 { font-size: 15px; }
.equipment-v7 .hardware-product-row p { font-size: 9.5px; }
.equipment-v7 .hardware-protocol-band {
  margin-top: 12px;
  overflow: hidden;
  border-radius: 18px;
  background: #0d3042;
}
.equipment-v7 .hardware-protocol-grid > div {
  gap: 4px;
  padding: 13px 18px;
}
.equipment-v7 .hardware-protocol-grid strong { font-size: 13px; }
.equipment-v7 .hardware-protocol-grid span { font-size: 10.5px; line-height: 1.35; }

/* Back-to-top control. */
.back-to-top {
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 95;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  transform: translateY(16px) scale(.92);
  opacity: 0;
  color: #fff;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 50%;
  background: #0d3042;
  box-shadow: 0 14px 34px rgba(4, 25, 39, .25);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s var(--ease), background-color .2s ease;
}
.back-to-top.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover { background: var(--teal-700); }
.back-to-top svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 961px) and (min-height: 680px) {
  html { scroll-snap-type: y mandatory; }
  .screen-fit {
    min-height: calc(100svh - var(--header-height));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .screen-fit.section { padding-block: clamp(38px, 4.8vh, 58px); }
  .platform-v5.screen-fit { padding-block: clamp(34px, 4.2vh, 50px); }
  .fleet-showcase.screen-fit { padding-block: clamp(34px, 4.3vh, 52px); }
  .equipment-v7.screen-fit { padding-block: clamp(26px, 3.5vh, 38px); }
  .tasks.screen-fit .section-heading,
  .benefits-v5.screen-fit .section-heading,
  .cases-v5.screen-fit .section-heading { margin-bottom: clamp(25px, 3.4vh, 38px); }
}

@media (max-width: 1120px) {
  .hero-v7__main {
    grid-template-columns: minmax(360px, .84fr) minmax(510px, 1.16fr);
    gap: 27px;
  }
  .hero-v7 h1 { font-size: clamp(43px, 4.7vw, 58px); }
  .hero-v7__story { height: clamp(340px, 46vh, 430px); }
  .fleet-detail-card .check-list { grid-template-columns: 1fr; }
  .fleet-detail-card .check-list li { min-height: 0; }
}

@media (max-width: 920px) {
  html { scroll-snap-type: y proximity; }
  .hero-v7 {
    height: auto;
    min-height: calc(100svh - var(--header-height));
  }
  .hero-v7__main {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 30px;
    padding-bottom: 22px;
  }
  .hero-v7__copy { max-width: 760px; }
  .hero-v7 h1 { max-width: 760px; font-size: clamp(42px, 7vw, 59px); }
  .hero-v7__lead { max-width: 720px; }
  .hero-v7__visual { width: min(760px, 100%); margin-inline: auto; }
  .hero-v7__story { height: clamp(315px, 50vw, 395px); }

  .source-flow__item .source-flow__copy { min-height: 0; }
  .source-flow__tags { margin-top: 12px; }
  .fleet-showcase__details { grid-template-columns: 1fr; }
  .fleet-showcase__visual { height: auto; aspect-ratio: 2000 / 670; }
  .hardware-product-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .equipment-v7 .hardware-product-row article:nth-child(4),
  .equipment-v7 .hardware-product-row article:nth-child(5) { grid-column: span 1; }
}

@media (max-width: 700px) {
  .hero-v7 {
    height: calc(100svh - var(--header-height));
    min-height: 670px;
  }
  .hero-v7__main {
    grid-template-rows: auto minmax(0, 1fr);
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 14px;
  }
  .hero-v7 h1 {
    margin-bottom: 13px;
    font-size: clamp(33px, 9.6vw, 43px);
    line-height: 1.01;
  }
  .hero-v7__lead {
    margin-bottom: 15px;
    font-size: 12.6px;
    line-height: 1.43;
  }
  .hero-v7__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hero-v7__actions .button {
    min-height: 43px;
    padding: 9px 10px;
    font-size: 11.5px;
  }
  .hero-v7__story { height: clamp(195px, 56vw, 228px); border-radius: 20px; }
  .hero-v7__caption {
    bottom: 8px;
    max-width: 46%;
    gap: 2px;
    padding: 7px 8px 8px;
    border-top-width: 2px;
    border-radius: 8px;
  }
  .hero-v7__caption--genset { left: 8px; }
  .hero-v7__caption--monitoring { right: 8px; }
  .hero-v7__caption strong { font-size: 9px; }
  .hero-v7__caption span { font-size: 6.8px; }
  .hero-v7__live {
    top: 47%;
    left: 45.5%;
    min-width: 45px;
    min-height: 30px;
    padding-inline: 7px;
    border-width: 3px;
  }
  .hero-v7__live span { display: none; }

  .source-flow__item .source-flow__copy {
    padding: 16px 17px 17px;
    text-align: left;
  }
  .source-flow__item .source-flow__copy h3 { font-size: 20px; }
  .source-flow__item .source-flow__copy p { font-size: 14px; }
  .source-flow__tags li { font-size: 9px; }

  .fleet-showcase { padding-block: 52px; }
  .fleet-showcase__heading h2 { font-size: clamp(34px, 9.5vw, 44px); }
  .fleet-showcase__visual-wrap { margin-top: 24px; }
  .fleet-showcase__visual { padding: 6px; border-radius: 17px; }
  .fleet-showcase__details { gap: 12px; padding-top: 14px; }
  .fleet-detail-card { padding: 17px; border-radius: 17px; }
  .fleet-showcase__lead { font-size: 15px; }
  .fleet-detail-card .check-list { grid-template-columns: 1fr; }
  .fleet-brand-lines--wide p { grid-template-columns: 1fr; gap: 4px; }

  .equipment-v7 { padding-block: 54px; }
  .equipment-v7 .hardware-diagram-wide { height: auto; min-height: 0; padding: 7px; border-radius: 17px; }
  .equipment-v7 .hardware-product-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .equipment-v7 .hardware-product-row article:last-child { grid-column: 1 / -1; }
  .equipment-v7 .hardware-product-row article { min-height: 105px; }
  .equipment-v7 .hardware-protocol-grid { grid-template-columns: 1fr; }
  .equipment-v7 .hardware-protocol-grid > div { padding: 14px 17px; }
  .equipment-v7 .hardware-protocol-grid > div + div { border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }

  .back-to-top { width: 44px; height: 44px; right: 14px; bottom: 14px; }
}

@media (max-width: 430px) {
  .hero-v7__main { padding-top: 14px; }
  .hero-v7 h1 { font-size: clamp(31px, 9.1vw, 38px); }
  .hero-v7__lead { font-size: 12px; }
  .hero-v7__story { height: 202px; }
  .hero-v7__caption span { display: none; }
}

@media (max-height: 760px) and (min-width: 921px) {
  .hero-v7 { min-height: 610px; }
  .hero-v7__main { padding-top: 13px; padding-bottom: 14px; }
  .hero-v7 h1 { margin-bottom: 14px; font-size: clamp(40px, 4vw, 53px); }
  .hero-v7__lead { margin-bottom: 16px; font-size: 13.8px; }
  .hero-v7__actions .button { min-height: 44px; }
  .hero-v7__story { height: clamp(315px, 45vh, 360px); }
  .hero-key-strip,
  .hero-key-strip__grid { min-height: 86px; }
  .hero-key-strip__grid > div { padding-block: 10px; }
  .hero-key-strip strong { font-size: 27px; }
  .hero-key-strip .hero-key-strip__word { font-size: 21px; }

  .platform-v5.screen-fit { padding-block: 28px; }
  .platform-v5 .section-heading { margin-bottom: 18px; }
  .source-flow__visual { height: 132px; margin-bottom: 10px; }
  .source-flow__visual img { max-height: 122px; }
  .source-flow::before { top: 95px; }
  .source-flow__connector { padding-top: 78px; }
  .source-flow__item .source-flow__copy { min-height: 151px; padding: 14px 15px; }
  .source-flow__item .source-flow__copy h3 { font-size: 19px; }
  .source-flow__item .source-flow__copy p { font-size: 13px; line-height: 1.45; }
  .source-flow__tags { margin-top: 9px; }

  .fleet-showcase.screen-fit { padding-block: 28px; }
  .fleet-showcase__heading h2 { font-size: 43px; }
  .fleet-showcase__visual-wrap { margin-top: 15px; }
  .fleet-showcase__visual { height: 245px; }
  .fleet-showcase__details { gap: 12px; padding-top: 12px; }
  .fleet-detail-card { padding: 14px 16px; }
  .fleet-detail-card h3 { margin-bottom: 7px; font-size: 18px; }
  .fleet-showcase__lead { margin-bottom: 8px; font-size: 13px; line-height: 1.42; }
  .fleet-detail-card .check-list { gap: 5px; }
  .fleet-detail-card .check-list li { min-height: 34px; padding-block: 6px; font-size: 9px; }
  .fleet-brand-lines--wide p { min-height: 43px; padding: 8px 11px; font-size: 11px; }

  .equipment-v7.screen-fit { padding-block: 20px; }
  .equipment-v7 .section-heading { margin-bottom: 12px; }
  .equipment-v7 .section-heading h2 { font-size: 40px; }
  .equipment-v7 .hardware-diagram-wide { height: 220px; }
  .equipment-v7 .hardware-product-row { margin-top: 8px; }
  .equipment-v7 .hardware-product-row article { min-height: 92px; padding: 7px; }
  .equipment-v7 .hardware-product-row__image { height: 51px; margin-bottom: 3px; }
  .equipment-v7 .hardware-product-row img { max-height: 49px; }
  .equipment-v7 .hardware-product-row h3 { font-size: 13px; }
  .equipment-v7 .hardware-product-row p { font-size: 8.5px; }
  .equipment-v7 .hardware-protocol-band { margin-top: 8px; }
  .equipment-v7 .hardware-protocol-grid > div { padding: 10px 14px; }
  .equipment-v7 .hardware-protocol-grid strong { font-size: 12px; }
  .equipment-v7 .hardware-protocol-grid span { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: y proximity; }
  .back-to-top { transition: none; }
}

/* V7 responsive flow correction: keep the presentation-derived three-stage flow
   readable on tablets and phones instead of squeezing it into five narrow columns. */
@media (max-width: 920px) {
  .platform-v5 .source-flow {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 0;
  }
  .platform-v5 .source-flow::before { display: none; }
  .platform-v5 .source-flow__item {
    display: grid;
    grid-template-columns: minmax(165px, .58fr) minmax(0, 1.42fr);
    align-items: center;
    gap: 22px;
    padding: 0;
    text-align: left;
  }
  .platform-v5 .source-flow__visual {
    height: 142px;
    margin: 0;
    padding: 8px 12px;
  }
  .platform-v5 .source-flow__visual img { max-height: 128px; }
  .platform-v5 .source-flow__item .source-flow__copy {
    min-height: 0;
    padding: 15px 17px 16px;
  }
  .platform-v5 .source-flow__connector {
    height: 22px;
    justify-content: flex-start;
    padding: 0 0 0 80px;
  }
  .platform-v5 .source-flow__connector::after { transform: rotate(135deg); }
}

@media (max-width: 700px) {
  .platform-v5 .section-heading { margin-bottom: 24px; }
  .platform-v5 .source-flow { gap: 7px; }
  .platform-v5 .source-flow__item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }
  .platform-v5 .source-flow__visual {
    height: 92px;
    padding: 4px;
  }
  .platform-v5 .source-flow__visual img { max-height: 86px; }
  .platform-v5 .source-flow__item .source-flow__copy {
    padding: 14px 15px 15px;
    border-radius: 16px;
  }
  .platform-v5 .source-flow__item .source-flow__copy h3 {
    margin-bottom: 6px;
    font-size: 19px;
  }
  .platform-v5 .source-flow__item .source-flow__copy p {
    font-size: 13.5px;
    line-height: 1.48;
  }
  .platform-v5 .source-flow__tags {
    gap: 5px;
    margin-top: 9px;
  }
  .platform-v5 .source-flow__tags li {
    padding: 4px 7px;
    font-size: 8.5px;
  }
  .platform-v5 .source-flow__connector {
    height: 18px;
    justify-content: flex-start;
    padding-left: 34px;
  }
}

/* Keep block-by-block snapping on desktop and tablet layouts. Phones retain
   proximity snapping so long mobile sections cannot trap touch scrolling. */
@media (min-width: 701px) and (min-height: 650px) {
  html { scroll-snap-type: y mandatory; }
}

/* ==========================================================================
   V8 — refinement pass
   ========================================================================== */

/* Larger primary navigation without changing the header height. */
.site-nav > a:not(.button) {
  font-size: 16px;
  font-weight: 760;
}

/* Full-bleed hero: real genset site + monitoring room, with copy over the darker left side. */
.hero-v7 {
  min-height: 620px;
  background: #0b2638;
}
.hero-v7::before { display: none; }
.hero-v7__main {
  width: 100%;
  max-width: none;
  grid-template-columns: 1fr;
  align-items: center;
  padding-inline: max(28px, calc((100vw - var(--container)) / 2));
}
.hero-v7__copy {
  position: relative;
  z-index: 6;
  width: min(590px, 47vw);
  padding-top: 2vh;
}
.hero-v7__visual {
  position: absolute;
  inset: 0 0 var(--hero-strip-height, 96px);
  z-index: 1;
  width: 100%;
}
.hero-v7__story {
  width: 100%;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}
.hero-v7__story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-v7__story::after {
  background: linear-gradient(90deg, rgba(5,27,43,.55) 0%, rgba(5,27,43,.27) 35%, rgba(5,27,43,.02) 63%, rgba(5,27,43,.04) 100%);
}
.hero-v7__caption {
  bottom: 22px;
  z-index: 7;
  min-width: 210px;
  backdrop-filter: blur(10px);
}
.hero-v7__caption--genset { left: max(28px, calc((100vw - var(--container)) / 2)); }
.hero-v7__caption--monitoring { right: max(28px, calc((100vw - var(--container)) / 2)); }
.hero-v7__live { z-index: 7; bottom: 28px; }
.hero-key-strip { position: relative; z-index: 9; }

/* Mixed fleet: explanatory note sits to the right of the heading; the visual uses the full white content width. */
.fleet-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: start;
  gap: clamp(36px, 6vw, 90px);
}
.fleet-monitoring-note {
  margin-top: 2px;
  padding: 18px 20px;
  border-left: 4px solid var(--aqua);
  border-radius: 0 18px 18px 0;
  background: #f3fbfc;
}
.fleet-monitoring-note h3 {
  margin: 0 0 7px;
  color: var(--teal-950);
  font-size: 20px;
}
.fleet-monitoring-note p {
  margin: 0;
  color: #47616b;
  font-size: 15px;
  line-height: 1.5;
}
.fleet-showcase__visual-wrap { margin-top: clamp(16px, 2vh, 24px); }
.fleet-showcase__visual {
  height: clamp(285px, 39vh, 360px);
  padding: 5px;
  background: #fff;
}
.fleet-showcase__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
}
.fleet-showcase__details { display: none; }

/* Folder-card tabs: active tab is visually attached to the dashboard panel. */
.tasks .task-tabs {
  align-items: flex-end;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(110,216,222,.38);
}
.tasks .task-tabs button {
  position: relative;
  min-height: 49px;
  padding: 11px 15px 12px;
  opacity: .55;
  border: 1px solid rgba(121,207,213,.28);
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  background: rgba(255,255,255,.025);
  color: #d2e3e8;
  transform: translateY(1px);
}
.tasks .task-tabs button:hover { opacity: .82; }
.tasks .task-tabs button[aria-selected="true"] {
  z-index: 2;
  opacity: 1;
  color: #fff;
  border-color: var(--aqua);
  background: #225268;
  box-shadow: inset 0 3px 0 var(--aqua);
  transform: translateY(1px);
}
.tasks .task-tabs button[aria-selected="true"]::after { display: none; }
.tasks .task-panel { border-top-left-radius: 0; }

/* Wider hardware diagram, followed immediately by product cards, then a viewport-wide protocol band. */
.equipment-v7 .hardware-diagram-wide {
  height: clamp(250px, 35vh, 320px);
  padding: 5px 7px;
}
.equipment-v7 .hardware-diagram-wide img { transform: scale(1.045); }
.equipment-v7 .hardware-product-row { margin-top: 7px; }
.equipment-v7 .hardware-protocol-band {
  width: 100vw;
  margin-top: 10px;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}
.equipment-v7 .hardware-protocol-grid {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

/* Case result badges: easier to scan from a distance. */
.case-card--compact .case-result,
.case-result {
  min-width: 118px;
  padding: 15px 18px;
  font-size: 15px;
  line-height: 1.18;
}
.case-card--compact .case-result strong,
.case-result strong { font-size: 34px; }

/* Make footer reachable and a proper final scroll-snap target. */
.site-footer {
  position: relative;
  z-index: 5;
  display: block !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 980px) {
  .site-nav > a:not(.button) { font-size: 15px; }
  .hero-v7__copy { width: min(650px, 78vw); }
  .fleet-showcase__heading { grid-template-columns: 1fr; gap: 18px; }
  .fleet-monitoring-note { max-width: 760px; }
  .fleet-showcase__visual img { transform: scale(1.03); }
}

@media (max-width: 760px) {
  .hero-v7__copy { width: min(100%, 620px); }
  .hero-v7__visual { inset-bottom: 132px; }
  .hero-v7__story > img { object-position: 56% center; }
  .hero-v7__caption { min-width: 0; max-width: 44%; }
  .hero-v7__caption--genset { left: 10px; }
  .hero-v7__caption--monitoring { right: 10px; }
  .fleet-monitoring-note { padding: 15px 16px; }
  .fleet-showcase__visual { height: auto; aspect-ratio: 2172 / 724; }
  .tasks .task-tabs button { min-height: 44px; padding: 9px 12px 10px; font-size: 11px; }
  .equipment-v7 .hardware-diagram-wide { height: auto; aspect-ratio: 1190 / 484; }
  .equipment-v7 .hardware-diagram-wide img { transform: none; }
  .case-card--compact .case-result, .case-result { min-width: 102px; padding: 12px 14px; font-size: 13px; }
  .case-card--compact .case-result strong, .case-result strong { font-size: 29px; }
}

/* ==========================================================================
   V9 — hero composition, attached task tabs, cleaner fleet and viewport hardware
   ========================================================================== */

/* Hero image occupies every pixel between the fixed navigation and the teal capability strip. */
.hero-v7 {
  --hero-strip-height: 96px;
  min-height: calc(100svh - var(--header-height, 78px));
}
.hero-v7__main { height: calc(100svh - var(--header-height, 78px) - var(--hero-strip-height)); }
.hero-v7__visual { inset: 0 0 var(--hero-strip-height) 0; height: auto; }
.hero-v7__story { height: 100%; }
.hero-v7__story > img {
  object-fit: cover;
  object-position: center center;
}
/* Keep all three story labels over the image, as in the previous concept. */
.hero-v7__caption { bottom: 22px; }
.hero-v7__caption--genset { left: max(28px, calc((100vw - var(--container)) / 2 + 460px)); }
.hero-v7__caption--monitoring { right: max(28px, calc((100vw - var(--container)) / 2)); }
.hero-v7__live { bottom: 30px; left: 58.2%; }

/* Mixed fleet: plain explanatory text beside the heading, no callout box and no gray image field. */
.fleet-monitoring-note {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.fleet-monitoring-note h3 { display: none; }
.fleet-monitoring-note p {
  max-width: 560px;
  color: #405965;
  font-size: 17px;
  line-height: 1.62;
}
.fleet-showcase__visual {
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #fff;
  box-shadow: none;
}
.fleet-showcase__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.13);
}

/* File-folder tabs: the tab roots physically touch the content card. */
.tasks .task-tabs {
  z-index: 4;
  margin-bottom: 0;
  border-bottom: 0;
}
.tasks .task-tabs button {
  margin-bottom: -1px;
  border-bottom: 1px solid rgba(121,207,213,.28);
}
.tasks .task-tabs button[aria-selected="true"] {
  border-bottom-color: #225268;
  background: #225268;
}
.tasks .task-panel {
  z-index: 2;
  margin-top: 0;
  border-top-left-radius: 0;
}

/* Hardware block fills one desktop viewport; the protocol strip anchors its bottom edge. */
@media (min-width: 981px) and (min-height: 700px) {
  .equipment-v7.screen-fit {
    min-height: calc(100svh - var(--header-height, 78px));
    padding-top: clamp(24px, 3.2vh, 34px);
    padding-bottom: 0;
  }
  .equipment-v7__inner {
    display: flex;
    min-height: calc(100svh - var(--header-height, 78px) - clamp(24px, 3.2vh, 34px));
    flex-direction: column;
  }
  .equipment-v7 .section-heading { flex: 0 0 auto; }
  .equipment-v7 .hardware-diagram-stage { flex: 0 0 auto; }
  .equipment-v7 .hardware-product-row { flex: 0 0 auto; }
  .equipment-v7 .hardware-protocol-band {
    display: flex;
    min-height: clamp(108px, 14vh, 138px);
    align-items: center;
    margin-top: auto;
  }
  .equipment-v7 .hardware-protocol-grid > div { padding-block: clamp(24px, 3.4vh, 34px); }
  .equipment-v7 .hardware-protocol-grid strong { font-size: 15px; }
  .equipment-v7 .hardware-protocol-grid span { font-size: 11.5px; }
}

@media (max-width: 980px) {
  .hero-v7 { --hero-strip-height: 132px; }
  .hero-v7__main { height: auto; min-height: calc(100svh - var(--header-height, 72px) - var(--hero-strip-height)); }
  .hero-v7__caption--genset { left: 14px; }
  .hero-v7__live { left: 56%; }
  .fleet-monitoring-note p { font-size: 15.5px; }
  .fleet-showcase__visual img { transform: scale(1.06); }
}

@media (max-width: 760px) {
  .hero-v7__visual { inset-bottom: var(--hero-strip-height); }
  .hero-v7__caption--genset { left: 8px; }
  .hero-v7__caption--monitoring { right: 8px; }
  .hero-v7__live { left: 55%; }
  .fleet-showcase__visual img { transform: none; }
  .tasks .task-panel { border-top-right-radius: 22px; }
}

/* V9 hero geometry correction: no dead band between image and capability strip. */
.hero-v7__visual { inset: 0; }
.hero-v7__live {
  top: auto;
  bottom: 24px;
  left: 61.4%;
  min-width: 96px;
  min-height: 40px;
  transform: translateX(-50%);
}
.hero-v7__caption--genset { left: 43%; }
@media (max-width: 980px) {
  .hero-v7__visual { inset: 0; }
  .hero-v7__caption--genset { left: 40%; }
  .hero-v7__live { left: 59%; }
}
@media (max-width: 760px) {
  .hero-v7__visual { inset: 0; }
  .hero-v7__caption--genset { left: 8px; }
  .hero-v7__live { left: 56%; bottom: 16px; }
}


/* ========================================================================== 
   V10 — user-approved hero artwork + seamless active task folder tab
   ========================================================================== */

/* Use the supplied 1672×941 hero artwork edge-to-edge between the menu and
   the turquoise capability strip. The source image remains unfiltered. */
.hero-v7__story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 49%;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__story::after {
  background:
    linear-gradient(90deg,
      rgba(5,27,43,.66) 0%,
      rgba(5,27,43,.52) 22%,
      rgba(5,27,43,.25) 38%,
      rgba(5,27,43,.06) 56%,
      rgba(5,27,43,.00) 72%);
}
/* Story labels follow the visual narrative in the artwork:
   genset → turquoise arc/live data → monitoring team. */
.hero-v7__caption {
  bottom: 27px;
  max-width: 250px;
  padding: 12px 15px 13px;
}
.hero-v7__caption--genset {
  left: 39.5%;
  right: auto;
  transform: translateX(-50%);
  text-align: left;
}
.hero-v7__live {
  left: 61.8%;
  bottom: 31px;
  transform: translateX(-50%);
}
.hero-v7__caption--monitoring {
  right: max(24px, calc((100vw - var(--container)) / 2));
  left: auto;
  text-align: left;
}

/* The active task tab uses the same translucent fill as the task slide and
   bridges the 1px border so the tab reads as one continuous folder card. */
.tasks .task-tabs button[aria-selected="true"] {
  color: #fff;
  border-color: rgba(255,255,255,.13);
  border-bottom-color: transparent;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 3px 0 var(--aqua);
}
.tasks .task-tabs button[aria-selected="true"]::after {
  position: absolute;
  z-index: 5;
  right: -1px;
  bottom: -3px;
  left: -1px;
  display: block;
  height: 4px;
  content: "";
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.tasks .task-panel {
  border-top-color: rgba(255,255,255,.13);
}

@media (max-width: 980px) {
  .hero-v7__story > img { object-position: 56% 50%; }
  .hero-v7__caption--genset {
    left: 37%;
    transform: translateX(-50%);
  }
  .hero-v7__live { left: 60.5%; }
}

@media (max-width: 760px) {
  .hero-v7__story > img { object-position: 58% 50%; }
  .hero-v7__caption--genset {
    left: 9px;
    transform: none;
  }
  .hero-v7__caption--monitoring { right: 9px; }
  .hero-v7__live { left: 57%; bottom: 16px; }
}


/* ========================================================================== 
   V11 — simplified hero artwork + evidence-led capability strip
   ========================================================================== */
/* The user-supplied hero artwork is shown cleanly: no narrative badges over it. */
.hero-v7__caption,
.hero-v7__live { display: none !important; }

.hero-key-strip__grid > div { gap: 4px; }
.hero-key-strip strong { white-space: nowrap; }
.hero-key-strip__grid > div:nth-child(2) strong { font-size: clamp(25px, 2.05vw, 32px); }
.hero-key-strip span { max-width: 230px; }
.hero-key-strip span em {
  display: inline-block;
  margin-top: 2px;
  color: rgba(11,48,65,.68);
  font-size: .88em;
  font-style: normal;
  font-weight: 680;
  line-height: 1.18;
}

@media (max-width: 980px) {
  .hero-key-strip__grid > div:nth-child(2) strong { font-size: 21px; }
  .hero-key-strip span em { font-size: .82em; }
}

@media (max-width: 760px) {
  .hero-key-strip__grid > div { padding-inline: 6px; }
  .hero-key-strip__grid > div:nth-child(2) strong { font-size: 18px; }
  .hero-key-strip .hero-key-strip__word { font-size: 16px; }
  .hero-key-strip span { font-size: 8.7px; line-height: 1.2; }
  .hero-key-strip span em { display: none; }
}

/* ========================================================================== 
   V12 — new supplied hero artwork, larger capability strip, contextual header CTA
   ========================================================================== */
/* Keep Log in / Get a Quote out of the fixed header while the first screen is
   visible; they return after the visitor scrolls past the hero. */
.header-actions,
.nav-mobile-actions {
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
body.is-on-hero .header-actions,
body.is-on-hero .nav-mobile-actions {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
}
body:not(.is-on-hero) .header-actions,
body:not(.is-on-hero) .nav-mobile-actions {
  visibility: visible;
  opacity: 1;
  transform: none;
}

/* Show the supplied artwork exactly, with only the existing text-side overlay
   used to keep the hero copy readable. */
.hero-v7__story > img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__story::after {
  background:
    linear-gradient(90deg,
      rgba(5,27,43,.76) 0%,
      rgba(5,27,43,.62) 20%,
      rgba(5,27,43,.34) 34%,
      rgba(5,27,43,.10) 48%,
      rgba(5,27,43,0) 60%);
}

/* Make the first-screen evidence strip readable without creating a second row
   on desktop. The hero section still remains exactly one viewport tall. */
.hero-key-strip {
  min-height: 112px;
}
.hero-key-strip__grid {
  min-height: 112px;
}
.hero-key-strip__grid > div {
  gap: 7px;
  padding: 14px 20px;
}
.hero-key-strip strong {
  font-size: clamp(32px, 2.6vw, 39px);
}
.hero-key-strip .hero-key-strip__word {
  font-size: clamp(22px, 1.9vw, 29px);
}
.hero-key-strip span {
  max-width: 260px;
  font-size: clamp(13px, 1.02vw, 15px);
  font-weight: 760;
  line-height: 1.28;
}
.hero-key-strip span em {
  margin-top: 3px;
  font-size: .82em;
  font-weight: 680;
  line-height: 1.22;
}

@media (max-width: 980px) {
  .hero-v7 { --hero-strip-height: 148px; }
  .hero-key-strip,
  .hero-key-strip__grid { min-height: 148px; }
  .hero-key-strip strong { font-size: 28px; }
  .hero-key-strip__grid > div:nth-child(2) strong { font-size: 25px; }
  .hero-key-strip .hero-key-strip__word { font-size: 22px; }
  .hero-key-strip span { font-size: 11.5px; }
}

@media (max-width: 760px) {
  .hero-v7 { --hero-strip-height: 156px; }
  .hero-key-strip,
  .hero-key-strip__grid { min-height: 156px; }
  .hero-key-strip__grid > div { min-height: 78px; padding: 9px 8px; gap: 4px; }
  .hero-key-strip strong { font-size: 25px; }
  .hero-key-strip__grid > div:nth-child(2) strong { font-size: 20px; }
  .hero-key-strip .hero-key-strip__word { font-size: 18px; }
  .hero-key-strip span { font-size: 10px; line-height: 1.2; }
  .hero-key-strip span em { display: block; margin-top: 1px; font-size: .78em; }
}
/* V12 sizing corrections after the evidence-strip type increase. */
.hero-v7 { --hero-strip-height: 112px; }
.hero-key-strip__grid > div:nth-child(2) strong { font-size: clamp(30px, 2.45vw, 37px); }
@media (max-width: 980px) {
  .hero-v7 { --hero-strip-height: 148px; }
  .hero-key-strip__grid > div:nth-child(2) strong { font-size: 25px; }
}
@media (max-width: 760px) {
  .hero-v7 { --hero-strip-height: 156px; }
  .hero-key-strip__grid > div:nth-child(2) strong { font-size: 20px; }
}

/* V13: concise, two-line capability copy on the hero strip. */
.hero-key-strip span {
  max-width: 245px;
  line-height: 1.16;
}
.hero-key-strip span em {
  display: block;
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .hero-key-strip span { max-width: 210px; line-height: 1.15; }
}
@media (max-width: 760px) {
  .hero-key-strip span { max-width: 170px; font-size: 10.5px; line-height: 1.12; }
  .hero-key-strip span em { display: block; white-space: nowrap; font-size: .9em; }
}
@media (max-width: 390px) {
  .hero-key-strip span { max-width: 162px; font-size: 10px; }
  .hero-key-strip span em { font-size: .88em; }
}

/* V14 — preserve the full monitoring scene and the turquoise divider in the visible hero.
   The supplied artwork is extended only on the copy side; the retained source scene is not stretched. */
@media (min-width: 981px) {
  .hero-v7__story {
    background: #072435;
  }
  .hero-v7__story > img {
    object-fit: cover;
    object-position: right center;
  }
  .hero-v7__story::after {
    background:
      linear-gradient(90deg,
        rgba(5,27,43,.88) 0%,
        rgba(5,27,43,.83) 21%,
        rgba(5,27,43,.60) 32%,
        rgba(5,27,43,.25) 42%,
        rgba(5,27,43,.05) 49%,
        rgba(5,27,43,0) 56%);
  }
  .hero-v7__copy {
    width: min(620px, 46vw);
    text-shadow: 0 2px 18px rgba(1,15,25,.52);
  }
  .hero-v7 h1 {
    max-width: 620px;
  }
  .hero-v7__lead {
    max-width: 585px;
    color: rgba(255,255,255,.92);
    text-shadow: 0 1px 10px rgba(1,15,25,.45);
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .hero-v7__copy { width: min(585px, 44vw); }
  .hero-v7 h1 { font-size: clamp(40px, 3.75vw, 54px); }
  .hero-v7__lead { max-width: 545px; font-size: 15px; line-height: 1.48; }
}

/* Tablet: keep the arc and monitoring room in view while retaining enough of the closest genset. */
@media (min-width: 761px) and (max-width: 980px) {
  .hero-v7__story > img {
    object-fit: cover;
    object-position: right center;
  }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.88) 0%,
      rgba(5,27,43,.72) 36%,
      rgba(5,27,43,.25) 52%,
      rgba(5,27,43,0) 66%);
  }
}


/* ========================================================================== 
   V15 — supplied hero artwork + lighter copy-side shading
   ========================================================================== */
/* Keep the new source artwork visible under the copy. The gradient is deliberately
   softer than V14: the generator row remains visible while white copy stays legible. */
.hero-v7__story > img {
  object-fit: cover;
  object-position: right center;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__story::after {
  background:
    linear-gradient(90deg,
      rgba(5,27,43,.67) 0%,
      rgba(5,27,43,.57) 18%,
      rgba(5,27,43,.40) 31%,
      rgba(5,27,43,.22) 42%,
      rgba(5,27,43,.08) 52%,
      rgba(5,27,43,0) 61%);
}
.hero-v7__copy {
  text-shadow: 0 2px 15px rgba(1,15,25,.58);
}
.hero-v7__lead {
  color: rgba(255,255,255,.96);
  text-shadow: 0 1px 9px rgba(1,15,25,.64);
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero-v7__story > img { object-position: 72% center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.66) 0%,
      rgba(5,27,43,.52) 28%,
      rgba(5,27,43,.28) 44%,
      rgba(5,27,43,.08) 58%,
      rgba(5,27,43,0) 70%);
  }
}

@media (max-width: 760px) {
  .hero-v7__story > img { object-position: 70% center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.70) 0%,
      rgba(5,27,43,.56) 44%,
      rgba(5,27,43,.22) 68%,
      rgba(5,27,43,.04) 82%);
  }
}

/* ========================================================================== 
   V16 — V14 hero framing, current artwork, lighter copy-side shading
   ========================================================================== */
/* The source scene is placed on the same 2350×941 canvas used by V14 so the
   visible crop remains unchanged: monitoring room and turquoise arc stay fully
   preserved, while only the closest genset area is required on the copy side. */
.hero-v7__story {
  background: #072435;
}
.hero-v7__story > img {
  object-fit: cover;
  object-position: right center;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__story::after {
  background:
    linear-gradient(90deg,
      rgba(5,27,43,.42) 0%,
      rgba(5,27,43,.36) 18%,
      rgba(5,27,43,.24) 31%,
      rgba(5,27,43,.13) 42%,
      rgba(5,27,43,.04) 50%,
      rgba(5,27,43,0) 56%);
}
.hero-v7__copy {
  text-shadow: 0 2px 14px rgba(1,15,25,.50);
}
.hero-v7__lead {
  color: rgba(255,255,255,.96);
  text-shadow: 0 1px 8px rgba(1,15,25,.56);
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero-v7__story > img { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.50) 0%,
      rgba(5,27,43,.38) 30%,
      rgba(5,27,43,.20) 47%,
      rgba(5,27,43,.06) 60%,
      rgba(5,27,43,0) 70%);
  }
}

@media (max-width: 760px) {
  .hero-v7__story > img { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.56) 0%,
      rgba(5,27,43,.42) 42%,
      rgba(5,27,43,.18) 67%,
      rgba(5,27,43,.04) 82%);
  }
}

/* ========================================================================== 
   V17 — latest supplied hero artwork, V14 framing, softer copy-side shading
   ========================================================================== */
.hero-v7__story {
  background: #072435;
}
.hero-v7__story > img {
  object-fit: cover;
  object-position: right center;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__story::after {
  background:
    linear-gradient(90deg,
      rgba(5,27,43,.31) 0%,
      rgba(5,27,43,.27) 18%,
      rgba(5,27,43,.18) 31%,
      rgba(5,27,43,.09) 42%,
      rgba(5,27,43,.025) 50%,
      rgba(5,27,43,0) 57%);
}
.hero-v7__copy {
  text-shadow: 0 2px 15px rgba(1,15,25,.62);
}
.hero-v7__lead {
  color: rgba(255,255,255,.97);
  text-shadow: 0 1px 10px rgba(1,15,25,.66);
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero-v7__story > img { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.38) 0%,
      rgba(5,27,43,.29) 30%,
      rgba(5,27,43,.15) 47%,
      rgba(5,27,43,.045) 60%,
      rgba(5,27,43,0) 70%);
  }
}

@media (max-width: 760px) {
  .hero-v7__story > img { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.44) 0%,
      rgba(5,27,43,.33) 42%,
      rgba(5,27,43,.14) 67%,
      rgba(5,27,43,.03) 82%);
  }
}

/* ========================================================================== 
   V18 — remove hard left edge; keep V14 framing with a continuous scene
   ========================================================================== */
.hero-v7__story {
  background: #072435;
}
.hero-v7__story > img {
  object-fit: cover;
  object-position: right center;
  filter: none !important;
  mix-blend-mode: normal !important;
}
/* Fade begins around the previous yellow marker (~56% of the hero width).
   The image remains visible under the copy; darkness increases gradually
   toward the far left instead of switching to a solid dark block. */
.hero-v7__story::after {
  background: linear-gradient(90deg,
    rgba(5,27,43,.76) 0%,
    rgba(5,27,43,.69) 10%,
    rgba(5,27,43,.58) 20%,
    rgba(5,27,43,.45) 30%,
    rgba(5,27,43,.32) 39%,
    rgba(5,27,43,.20) 46%,
    rgba(5,27,43,.10) 51%,
    rgba(5,27,43,.035) 55%,
    rgba(5,27,43,0) 59%);
}
.hero-v7__copy {
  text-shadow: 0 2px 15px rgba(1,15,25,.64);
}
.hero-v7__lead {
  color: rgba(255,255,255,.98);
  text-shadow: 0 1px 10px rgba(1,15,25,.68);
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero-v7__story > img { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.74) 0%,
      rgba(5,27,43,.61) 20%,
      rgba(5,27,43,.43) 36%,
      rgba(5,27,43,.24) 49%,
      rgba(5,27,43,.09) 59%,
      rgba(5,27,43,0) 69%);
  }
}

@media (max-width: 760px) {
  .hero-v7__story > img { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.78) 0%,
      rgba(5,27,43,.65) 34%,
      rgba(5,27,43,.42) 53%,
      rgba(5,27,43,.20) 68%,
      rgba(5,27,43,.06) 81%,
      rgba(5,27,43,0) 91%);
  }
}


/* ========================================================================== 
   V21 — layered left extension: CAT row + road, exact V20/V14 right side
   ========================================================================== */
.hero-v7__story > img.hero-v7__base-scene,
.hero-v7__story > img.hero-v7__left-extension {
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  max-width: none;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__story > img.hero-v7__base-scene {
  z-index: 0;
  width: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-v7__story > img.hero-v7__left-extension {
  z-index: 1;
  inset: 0 auto 0 0;
  width: 58%;
  object-fit: cover;
  object-position: left center;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 68%, rgba(0,0,0,.86) 72%, rgba(0,0,0,.54) 77%, rgba(0,0,0,.18) 81%, transparent 82%);
  mask-image: linear-gradient(90deg, #000 0%, #000 68%, rgba(0,0,0,.86) 72%, rgba(0,0,0,.54) 77%, rgba(0,0,0,.18) 81%, transparent 82%);
}
.hero-v7__story::after { z-index: 2; }

@media (max-width: 980px) {
  .hero-v7__story > img.hero-v7__left-extension {
    width: 64%;
    opacity: .94;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 64%, rgba(0,0,0,.74) 75%, transparent 88%);
    mask-image: linear-gradient(90deg, #000 0%, #000 64%, rgba(0,0,0,.74) 75%, transparent 88%);
  }
}
@media (max-width: 760px) {
  /* Keep the mobile crop stable; the right-side source artwork remains the visual anchor. */
  .hero-v7__story > img.hero-v7__left-extension { display: none; }
}

/* V22 — single composited hero scene; exact original base retained from x=1150 onward. */
.hero-v7__story > img.hero-v7__left-extension { display:none !important; }
.hero-v7__story > img.hero-v7__base-scene { width:100%; object-fit:cover; object-position:right center; }

/* ========================================================================== 
   V23 — user-supplied hero artwork + smooth copy-side darkening
   ========================================================================== */
/* Keep the supplied artwork itself untouched. Only the CSS overlay darkens the
   copy side, fading continuously to zero before the monitoring area. */
.hero-v7__story > img.hero-v7__base-scene {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  filter: none !important;
  mix-blend-mode: normal !important;
}
.hero-v7__story::after {
  background: linear-gradient(90deg,
    rgba(5,27,43,.68) 0%,
    rgba(5,27,43,.61) 12%,
    rgba(5,27,43,.51) 24%,
    rgba(5,27,43,.39) 35%,
    rgba(5,27,43,.26) 44%,
    rgba(5,27,43,.14) 51%,
    rgba(5,27,43,.055) 57%,
    rgba(5,27,43,0) 63%);
}
.hero-v7__copy {
  text-shadow: 0 2px 14px rgba(1,15,25,.58);
}
.hero-v7__lead {
  color: rgba(255,255,255,.98);
  text-shadow: 0 1px 9px rgba(1,15,25,.62);
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero-v7__story > img.hero-v7__base-scene { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.70) 0%,
      rgba(5,27,43,.60) 22%,
      rgba(5,27,43,.43) 38%,
      rgba(5,27,43,.25) 51%,
      rgba(5,27,43,.09) 62%,
      rgba(5,27,43,0) 73%);
  }
}

@media (max-width: 760px) {
  .hero-v7__story > img.hero-v7__base-scene { object-position: right center; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.74) 0%,
      rgba(5,27,43,.62) 36%,
      rgba(5,27,43,.42) 55%,
      rgba(5,27,43,.20) 70%,
      rgba(5,27,43,.06) 83%,
      rgba(5,27,43,0) 93%);
  }
}

/* ========================================================================== 
   V24 — revised content order + competitive differentiation screen
   ========================================================================== */
.comparison-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(83,188,193,.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 100%);
}
.comparison-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(9,47,64,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(9,47,64,.032) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 88%, transparent);
}
.comparison-section__inner { position: relative; z-index: 1; width: 100%; }
.comparison-heading { margin-bottom: clamp(18px, 2.5vh, 28px); }
.comparison-heading > p { max-width: 610px; }
.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(13, 65, 83, .16);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 54px rgba(11,48,65,.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(19,145,157,.55) transparent;
}
.comparison-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: #173646;
}
.comparison-table th,
.comparison-table td {
  padding: 9px 11px;
  border-right: 1px solid rgba(13,65,83,.10);
  border-bottom: 1px solid rgba(13,65,83,.10);
  vertical-align: top;
  text-align: left;
}
.comparison-table tr > *:last-child { border-right: 0; }
.comparison-table tbody tr:last-child > * { border-bottom: 0; }
.comparison-table thead th {
  height: 50px;
  vertical-align: middle;
  background: #12384b;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
}
.comparison-table thead th:first-child {
  width: 15%;
  border-top-left-radius: 20px;
  background: #0d2f41;
}
.comparison-table thead th:last-child { border-top-right-radius: 20px; }
.comparison-table thead .comparison-table__unum {
  background: #1aa4ad;
  color: #fff;
}
.comparison-table tbody th {
  width: 15%;
  background: #edf6f7;
  color: #0c3548;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.22;
}
.comparison-table tbody td {
  background: rgba(255,255,255,.88);
  font-size: 11.5px;
  line-height: 1.24;
}
.comparison-table tbody .comparison-table__unum {
  background: rgba(72,194,199,.12);
  box-shadow: inset 3px 0 0 rgba(26,164,173,.72);
}
.comparison-table b {
  display: block;
  margin-bottom: 2px;
  color: #0b3042;
  font-size: 11.8px;
  font-weight: 800;
  line-height: 1.18;
}
.comparison-table .comparison-table__unum b { color: #076f79; }
.comparison-table small {
  display: block;
  color: #5c7380;
  font-size: 10.7px;
  line-height: 1.22;
}
.comparison-note {
  margin: 12px 0 0;
  color: #718792;
  font-size: 11px;
  line-height: 1.35;
}

@media (min-width: 961px) and (min-height: 680px) {
  .comparison-section.screen-fit { padding-block: clamp(24px, 3.2vh, 34px); }
  .comparison-section .section-heading h2 { font-size: clamp(36px, 3.2vw, 50px); }
  .comparison-section .section-heading > p { font-size: clamp(14px, 1.05vw, 16px); }
}

@media (max-width: 960px) {
  .comparison-section { padding-block: 48px; }
  .comparison-table-wrap { margin-right: calc(var(--page-pad) * -1); border-radius: 18px 0 0 18px; }
  .comparison-table { min-width: 1040px; }
  .comparison-table thead th:first-child,
  .comparison-table tbody th {
    position: sticky;
    left: 0;
    z-index: 3;
    box-shadow: 8px 0 18px rgba(8,44,60,.08);
  }
  .comparison-table thead th:first-child { z-index: 5; }
}

@media (max-width: 600px) {
  .comparison-section { padding-block: 38px; }
  .comparison-heading { margin-bottom: 18px; }
  .comparison-table { min-width: 980px; }
  .comparison-table th,
  .comparison-table td { padding: 9px 10px; }
  .comparison-note { max-width: 92%; font-size: 10.5px; }
}

/* ========================================================================== 
   V25 — comparison matrix with clear page fields and binary availability marks
   ========================================================================== */
.comparison-section__inner {
  max-width: 1120px;
  margin-inline: auto;
}
.comparison-table-wrap {
  margin-inline: clamp(8px, 1.2vw, 16px);
}
.comparison-table--matrix {
  min-width: 940px;
  table-layout: fixed;
}
.comparison-table--matrix thead th:first-child,
.comparison-table--matrix tbody th {
  width: 30%;
}
.comparison-table--matrix thead th:not(:first-child) {
  text-align: center;
}
.comparison-table--matrix tbody th {
  padding: 11px 14px;
  vertical-align: middle;
  font-size: 12.5px;
  line-height: 1.22;
}
.comparison-table--matrix tbody td {
  padding: 8px 8px;
  vertical-align: middle;
  text-align: center;
}
.matrix-check,
.matrix-dash {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-inline: auto;
  line-height: 1;
}
.matrix-check {
  color: #159765;
  font-size: 27px;
  font-weight: 900;
}
.matrix-dash {
  color: #8a9aa2;
  font-size: 25px;
  font-weight: 800;
}
.comparison-table--matrix tbody .comparison-table__unum .matrix-dash {
  color: #617b85;
}
.comparison-note {
  margin-inline: clamp(8px, 1.2vw, 16px);
  max-width: 1030px;
  font-size: 11.5px;
}
.comparison-note strong:first-child { color: #159765; }

@media (max-width: 960px) {
  .comparison-table-wrap {
    margin-inline: 0;
    border-radius: 18px;
  }
  .comparison-table--matrix { min-width: 900px; }
}

@media (max-width: 600px) {
  .comparison-table--matrix { min-width: 840px; }
  .comparison-table--matrix tbody th { font-size: 11.5px; }
  .matrix-check, .matrix-dash { width: 30px; height: 30px; }
  .matrix-check { font-size: 24px; }
  .matrix-dash { font-size: 22px; }
}

/* ========================================================================== 
   V26 — task tile navigation + source-grounded comparison wording
   ========================================================================== */

/* Task navigation: clear tile selector instead of folder tabs. */
.tasks .task-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  overflow: visible;
  border: 0;
}
.tasks .task-tabs button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 52px;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 11px 14px;
  opacity: .54;
  border: 1px solid rgba(143, 220, 225, .24);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
  color: #d9e9ec;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
  white-space: normal;
  text-align: left;
  transform: none;
  box-shadow: none;
}
.tasks .task-tabs button::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 3px;
  content: "";
  background: rgba(83,188,193,.45);
  box-shadow: 0 0 0 3px rgba(83,188,193,.06);
}
.tasks .task-tabs button:hover {
  opacity: .86;
  border-color: rgba(143,220,225,.42);
  background: rgba(255,255,255,.065);
}
.tasks .task-tabs button[aria-selected="true"] {
  opacity: 1;
  border-color: #7bd7dc;
  border-bottom-color: #7bd7dc;
  background: #66c8cd;
  color: #083544;
  box-shadow: 0 8px 22px rgba(0,0,0,.14), inset 0 0 0 1px rgba(255,255,255,.28);
  transform: none;
}
.tasks .task-tabs button[aria-selected="true"]::before {
  background: #083f4d;
  box-shadow: 0 0 0 3px rgba(8,63,77,.10);
}
.tasks .task-tabs button[aria-selected="true"]::after { display: none; }
.tasks .task-panel {
  margin-top: 0;
  border-radius: 28px;
}

@media (min-width: 981px) and (min-height: 700px) {
  .tasks .task-panel {
    min-height: clamp(430px, 52vh, 500px);
    padding: clamp(28px, 3.7vw, 48px);
  }
}

@media (max-width: 980px) {
  .tasks .task-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 0;
    padding-inline: 0;
  }
  .tasks .task-tabs button {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 11.5px;
  }
  .tasks .task-panel { border-radius: 24px; }
}

@media (max-width: 520px) {
  .tasks .task-tabs { gap: 6px; }
  .tasks .task-tabs button {
    min-height: 48px;
    padding: 9px 10px;
    font-size: 10.5px;
  }
  .tasks .task-tabs button::before {
    width: 7px;
    height: 7px;
    margin-right: 7px;
  }
}

/* ========================================================================== 
   V27 — presentation task icons + fast onboard Event comparison row
   ========================================================================== */

/* Exact task pictograms from slide 7 of the UNUM Genset presentation. */
.tasks .task-tabs button {
  min-height: 62px;
  gap: 10px;
  padding: 8px 12px;
}
.tasks .task-tabs button::before { display: none; }
.tasks .task-tabs .task-tab-icon {
  display: block;
  flex: 0 0 46px;
  width: 46px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  opacity: .72;
  filter: none;
  transition: opacity .18s ease, transform .18s ease;
}
.tasks .task-tabs button > span {
  display: block;
  min-width: 0;
}
.tasks .task-tabs button:hover .task-tab-icon { opacity: .92; }
.tasks .task-tabs button[aria-selected="true"] .task-tab-icon {
  opacity: 1;
  transform: scale(1.04);
}

/* Keep the comparison screen compact after adding the fast-Event criterion. */
.comparison-table--matrix th,
.comparison-table--matrix td {
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (max-width: 980px) {
  .tasks .task-tabs button {
    min-height: 58px;
    gap: 9px;
    padding: 7px 10px;
  }
  .tasks .task-tabs .task-tab-icon {
    flex-basis: 42px;
    width: 42px;
    height: 34px;
  }
}

@media (max-width: 520px) {
  .tasks .task-tabs button {
    min-height: 56px;
    gap: 7px;
    padding: 7px 8px;
  }
  .tasks .task-tabs .task-tab-icon {
    flex-basis: 36px;
    width: 36px;
    height: 30px;
  }
}

/* ========================================================================== 
   V28 — keep presentation task icons fully visible in both tile rows
   ========================================================================== */
.tasks .task-tabs {
  row-gap: 10px;
}
.tasks .task-tabs button {
  min-height: 68px;
  padding-top: 10px;
  padding-bottom: 10px;
  overflow: visible;
}
.tasks .task-tabs .task-tab-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 38px;
  max-width: 44px;
  max-height: 38px;
  object-fit: contain;
  object-position: center;
  transform-origin: center;
}
.tasks .task-tabs button[aria-selected="true"] .task-tab-icon {
  transform: none;
}
/* The second row sits closest to the content panel, so give it extra breathing room. */
.tasks .task-tabs button:nth-child(n+5) {
  padding-top: 11px;
  padding-bottom: 11px;
}

@media (max-width: 980px) {
  .tasks .task-tabs button {
    min-height: 64px;
    padding-top: 9px;
    padding-bottom: 9px;
  }
  .tasks .task-tabs .task-tab-icon {
    flex-basis: 42px;
    width: 42px;
    height: 36px;
    max-width: 42px;
    max-height: 36px;
  }
}

@media (max-width: 520px) {
  .tasks .task-tabs {
    row-gap: 7px;
  }
  .tasks .task-tabs button {
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .tasks .task-tabs .task-tab-icon {
    flex-basis: 38px;
    width: 38px;
    height: 32px;
    max-width: 38px;
    max-height: 32px;
  }
}

/* ========================================================================== 
   V29 — full task pictograms + unified inactive icon color + cleaner hardware
   ========================================================================== */

/* Render the presentation pictograms as masks so every edge stays visible and
   the icon automatically uses exactly the same color as the tile label. */
@supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
  .tasks .task-tabs .task-tab-icon { display: none; }
  .tasks .task-tabs button::before {
    display: block;
    flex: 0 0 52px;
    width: 52px;
    height: 40px;
    margin: 0;
    border: 0;
    border-radius: 0;
    content: "";
    background: currentColor;
    box-shadow: none;
    -webkit-mask-image: var(--task-icon);
    mask-image: var(--task-icon);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 46px auto;
    mask-size: 46px auto;
  }
  .tasks .task-tabs button:nth-child(1) { --task-icon: url("../images/task-icon-fuel.webp"); }
  .tasks .task-tabs button:nth-child(2) { --task-icon: url("../images/task-icon-engine.webp"); }
  .tasks .task-tabs button:nth-child(3) { --task-icon: url("../images/task-icon-alternator.webp"); }
  .tasks .task-tabs button:nth-child(4) { --task-icon: url("../images/task-icon-maintenance.webp"); }
  .tasks .task-tabs button:nth-child(5) { --task-icon: url("../images/task-icon-location.webp"); }
  .tasks .task-tabs button:nth-child(6) { --task-icon: url("../images/task-icon-remote.webp"); }
  .tasks .task-tabs button:nth-child(7) { --task-icon: url("../images/task-icon-diagnostics.webp"); }
  .tasks .task-tabs button:nth-child(8) { --task-icon: url("../images/task-icon-group.webp"); }
}

/* Fallback for browsers without mask support: keep the original files but give
   them a little more room so the rounded right edge can never be clipped. */
.tasks .task-tabs .task-tab-icon {
  box-sizing: border-box;
  flex: 0 0 50px;
  width: 50px;
  height: 40px;
  max-width: 50px;
  max-height: 40px;
  padding: 1px 3px 1px 1px;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  @supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
    .tasks .task-tabs button::before {
      flex-basis: 47px;
      width: 47px;
      height: 38px;
      -webkit-mask-size: 42px auto;
      mask-size: 42px auto;
    }
  }
}

@media (max-width: 520px) {
  @supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
    .tasks .task-tabs button::before {
      flex-basis: 42px;
      width: 42px;
      height: 34px;
      -webkit-mask-size: 37px auto;
      mask-size: 37px auto;
    }
  }
}

/* Product photography should sit directly on the card background rather than
   inside a white rectangle. */
.equipment-v7 .hardware-product-row__image { background: transparent; }
.equipment-v7 .hardware-product-row img { background: transparent; }
.equipment-v7 .hardware-product-row p {
  font-size: 11px;
  line-height: 1.28;
  font-weight: 650;
}

@media (max-height: 760px) and (min-width: 921px) {
  .equipment-v7 .hardware-product-row p { font-size: 9.7px; }
}

@media (max-width: 700px) {
  .equipment-v7 .hardware-product-row p { font-size: 10.5px; }
}

/* ========================================================================== 
   V30 — robust two-state task icons (no CSS masks, no clipping)
   ========================================================================== */
.tasks .task-tabs button::before {
  display: none !important;
}
.tasks .task-tabs .task-tab-icon-wrap {
  position: relative;
  display: grid;
  flex: 0 0 54px;
  width: 54px;
  height: 42px;
  place-items: center;
  overflow: visible;
}
.tasks .task-tabs .task-tab-icon {
  grid-area: 1 / 1;
  display: block !important;
  width: 54px;
  height: 42px;
  max-width: none;
  max-height: none;
  padding: 0;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  transform: none;
}
.tasks .task-tabs .task-tab-icon--active {
  display: none !important;
}
.tasks .task-tabs button[aria-selected="true"] .task-tab-icon--inactive {
  display: none !important;
}
.tasks .task-tabs button[aria-selected="true"] .task-tab-icon--active {
  display: block !important;
}

@media (max-width: 980px) {
  .tasks .task-tabs .task-tab-icon-wrap,
  .tasks .task-tabs .task-tab-icon {
    flex-basis: 50px;
    width: 50px;
    height: 39px;
  }
}

@media (max-width: 520px) {
  .tasks .task-tabs .task-tab-icon-wrap,
  .tasks .task-tabs .task-tab-icon {
    flex-basis: 44px;
    width: 44px;
    height: 35px;
  }
}

/* V32 — user-supplied hardware architecture on transparent background. */
.equipment-v7 .hardware-diagram-wide {
  padding: 4px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.equipment-v7 .hardware-diagram-wide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ========================================================================== 
   V33 — section quote CTAs + slightly stronger hero copy-side gradient
   ========================================================================== */
.section-quote-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(14px, 1.9vh, 22px);
}
.section-quote-action .button--danger {
  min-width: 150px;
}

/* Keep the supplied hero image unchanged; only strengthen the CSS overlay
   slightly under the title, lead and CTA buttons. */
.hero-v7__story::after {
  background: linear-gradient(90deg,
    rgba(5,27,43,.74) 0%,
    rgba(5,27,43,.67) 12%,
    rgba(5,27,43,.57) 24%,
    rgba(5,27,43,.45) 35%,
    rgba(5,27,43,.31) 44%,
    rgba(5,27,43,.18) 51%,
    rgba(5,27,43,.075) 57%,
    rgba(5,27,43,0) 64%);
}

@media (min-width: 761px) and (max-width: 980px) {
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.75) 0%,
      rgba(5,27,43,.65) 22%,
      rgba(5,27,43,.48) 38%,
      rgba(5,27,43,.29) 51%,
      rgba(5,27,43,.11) 62%,
      rgba(5,27,43,0) 73%);
  }
}

@media (max-width: 760px) {
  .section-quote-action { justify-content: flex-start; margin-top: 20px; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(5,27,43,.78) 0%,
      rgba(5,27,43,.66) 36%,
      rgba(5,27,43,.46) 55%,
      rgba(5,27,43,.23) 70%,
      rgba(5,27,43,.08) 83%,
      rgba(5,27,43,0) 93%);
  }
}

@media (max-height: 760px) and (min-width: 921px) {
  .section-quote-action { margin-top: 11px; }
  .section-quote-action .button { min-height: 44px; padding-block: 10px; }
}

/* ========================================================================== 
   V34 — SEO section hierarchy, stronger hero readability, hardware details,
   official platform video and logo-to-top behavior support
   ========================================================================== */

/* A compact three-level hierarchy: eyebrow -> SEO H2 -> larger customer benefit. */
.section-heading--seo .section-eyebrow,
.fleet-showcase__headline .section-eyebrow,
.billing-intro .section-eyebrow,
.contact-copy .section-eyebrow,
.billing-video .section-eyebrow {
  margin: 0 0 7px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 820;
  line-height: 1.2;
  letter-spacing: .115em;
  text-transform: uppercase;
}
.section-heading--seo h2,
.fleet-showcase__headline h2,
.billing-intro h2,
.contact-copy.section-heading--seo h2 {
  max-width: 780px;
  margin: 0 0 8px;
  color: var(--teal-800);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 790;
  line-height: 1.2;
  letter-spacing: -.012em;
}
.section-benefit {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-family: "Bahnschrift", "Segoe UI", Inter, ui-sans-serif, sans-serif;
  font-size: clamp(34px, 3.75vw, 52px);
  font-weight: 700;
  line-height: 1.015;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.section-summary {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
}
.section-heading--center.section-heading--seo {
  max-width: 900px;
}
.section-heading--center.section-heading--seo h2,
.section-heading--center.section-heading--seo .section-benefit,
.section-heading--center.section-heading--seo .section-summary {
  margin-inline: auto;
}
.section-heading--center.section-heading--seo .section-summary { max-width: 720px; margin-top: 11px; }
.section-heading--split.section-heading--seo {
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);
  align-items: end;
  gap: clamp(34px, 5vw, 70px);
}
.section-heading--split.section-heading--seo > .section-summary { margin-bottom: 3px; }
.section-heading--inverse.section-heading--seo .section-eyebrow { color: #76d9dd; }
.section-heading--inverse.section-heading--seo h2 { color: #a9dfe2; }
.section-heading--inverse.section-heading--seo .section-benefit { color: #fff; }
.section-heading--inverse.section-heading--seo .section-summary { color: rgba(255,255,255,.78); }

/* Keep headings compact enough for screen-fit sections. */
.benefits-v5 .section-heading,
.comparison-section .section-heading,
.platform-v5 .section-heading,
.cases-v5 .section-heading,
.tasks .section-heading,
.equipment-v7 .section-heading { margin-bottom: clamp(18px, 2.6vh, 30px); }

/* Mixed-fleet header uses the same SEO hierarchy without changing the image layout. */
.fleet-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  align-items: end;
  gap: clamp(34px, 5vw, 70px);
}
.fleet-showcase__headline .section-benefit { max-width: 760px; }
.fleet-monitoring-note { align-self: end; }

/* Billing: preserve the existing three-column composition and add a compact official video below. */
.billing-intro .section-benefit {
  max-width: 430px;
  font-size: clamp(31px, 3.1vw, 44px);
}
.billing-grid h2 { margin-bottom: 8px; }
.billing-video {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(420px, 1.28fr);
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  margin-top: clamp(24px, 3.2vh, 38px);
  padding: 16px 18px 16px 22px;
  border: 1px solid rgba(8,117,132,.13);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 38px rgba(12,49,61,.08);
}
.billing-video__copy h3 {
  margin: 0 0 7px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.12;
}
.billing-video__copy p:last-child {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.45;
}
.billing-video__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 7.2;
  border-radius: 18px;
  background: #092c3b;
  box-shadow: 0 12px 30px rgba(5,34,45,.16);
}
.billing-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Hardware cards: short labels stay clean; detailed purpose appears on hover/focus. */
.equipment-v7 .hardware-product-row article.hardware-product-card {
  position: relative;
  outline: none;
  cursor: help;
}
.hardware-product-tip {
  position: absolute;
  z-index: 15;
  left: 50%;
  bottom: calc(100% + 10px);
  width: min(270px, 23vw);
  padding: 12px 14px;
  transform: translate(-50%, 7px);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  border: 1px solid rgba(121,216,221,.28);
  border-radius: 14px;
  background: rgba(7,47,63,.97);
  box-shadow: 0 18px 42px rgba(5,34,45,.24);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.hardware-product-tip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  transform: translate(-50%, -5px) rotate(45deg);
  background: #07303f;
  border-right: 1px solid rgba(121,216,221,.22);
  border-bottom: 1px solid rgba(121,216,221,.22);
}
.hardware-product-tip strong {
  display: block;
  margin-bottom: 4px;
  color: #79d8dd;
  font-size: 13px;
}
.hardware-product-tip span {
  display: block;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.42;
}
.hardware-product-card:hover .hardware-product-tip,
.hardware-product-card:focus .hardware-product-tip,
.hardware-product-card:focus-visible .hardware-product-tip {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.hardware-product-row article:first-child .hardware-product-tip {
  left: 0;
  transform: translate(0, 7px);
}
.hardware-product-row article:first-child:hover .hardware-product-tip,
.hardware-product-row article:first-child:focus .hardware-product-tip,
.hardware-product-row article:first-child:focus-visible .hardware-product-tip { transform: translate(0, 0); }
.hardware-product-row article:first-child .hardware-product-tip::after { left: 36px; }
.hardware-product-row article:last-child .hardware-product-tip {
  right: 0;
  left: auto;
  transform: translate(0, 7px);
}
.hardware-product-row article:last-child:hover .hardware-product-tip,
.hardware-product-row article:last-child:focus .hardware-product-tip,
.hardware-product-row article:last-child:focus-visible .hardware-product-tip { transform: translate(0, 0); }
.hardware-product-row article:last-child .hardware-product-tip::after { right: 34px; left: auto; transform: translate(0, -5px) rotate(45deg); }

/* Hero: slightly more coverage to the right, stronger contrast, and a more technical DIN-like H1. */
.hero-v7 h1 {
  font-family: "Bahnschrift", "Segoe UI", Inter, ui-sans-serif, sans-serif;
  font-weight: 720;
  letter-spacing: -.022em;
  line-height: 1.025;
}
.hero-v7__story::after {
  background: linear-gradient(90deg,
    rgba(46,122,145,.94) 0%,
    rgba(46,122,145,.90) 14%,
    rgba(46,122,145,.82) 28%,
    rgba(46,122,145,.70) 41%,
    rgba(46,122,145,.54) 51%,
    rgba(46,122,145,.36) 60%,
    rgba(46,122,145,.18) 67%,
    rgba(46,122,145,.065) 72%,
    rgba(46,122,145,0) 77%);
}
.hero-v7__copy { text-shadow: 0 2px 18px rgba(1,15,25,.72); }
.hero-v7__lead { text-shadow: 0 1px 11px rgba(1,15,25,.74); }

/* Contact follows the same heading logic without widening the form. */
.contact-copy .section-benefit {
  margin-bottom: 16px;
  font-size: clamp(34px, 3.6vw, 50px);
}
.contact-copy .section-summary { margin-bottom: 28px; }

@media (max-width: 980px) {
  .section-heading--split.section-heading--seo,
  .fleet-showcase__heading { grid-template-columns: 1fr; gap: 14px; }
  .section-heading--split.section-heading--seo > .section-summary { max-width: 720px; }
  .billing-video { grid-template-columns: 1fr; }
  .billing-video__frame { aspect-ratio: 16 / 9; }
  .hardware-product-tip { width: min(280px, 70vw); }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(46,122,145,.94) 0%,
      rgba(46,122,145,.86) 25%,
      rgba(46,122,145,.69) 42%,
      rgba(46,122,145,.49) 56%,
      rgba(46,122,145,.25) 68%,
      rgba(46,122,145,0) 82%);
  }
}

@media (max-width: 760px) {
  .section-benefit { font-size: clamp(30px, 8.8vw, 40px); }
  .section-heading--seo h2,
  .fleet-showcase__headline h2,
  .billing-intro h2,
  .contact-copy.section-heading--seo h2 { font-size: 17px; }
  .billing-video { padding: 14px; border-radius: 19px; }
  .billing-video__copy h3 { font-size: 21px; }
  .hardware-product-tip { display: none; }
  .equipment-v7 .hardware-product-row article.hardware-product-card { cursor: default; }
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(46,122,145,.95) 0%,
      rgba(46,122,145,.88) 37%,
      rgba(46,122,145,.70) 58%,
      rgba(46,122,145,.44) 73%,
      rgba(46,122,145,.18) 87%,
      rgba(46,122,145,0) 98%);
  }
}

@media (max-height: 760px) and (min-width: 921px) {
  .section-benefit { font-size: clamp(30px, 3vw, 40px); }
  .section-heading--seo h2 { font-size: 17px; }
  .billing-video { margin-top: 16px; padding-block: 10px; }
  .billing-video__frame { aspect-ratio: 16 / 6.2; }
  .billing-video__copy p:last-child { display: none; }
  .billing-band { padding-block: 28px; }
}
/* Specificity fixes for legacy section styles. */
.comparison-section .section-heading.section-heading--seo h2,
.equipment-v7 .section-heading.section-heading--seo h2 {
  margin: 0 0 8px;
  color: var(--teal-800);
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: 790;
  line-height: 1.2;
  letter-spacing: -.012em;
}
@media (max-width: 760px) {
  .comparison-section .section-heading.section-heading--seo h2,
  .equipment-v7 .section-heading.section-heading--seo h2 { font-size: 17px; }
}
@media (max-height: 760px) and (min-width: 921px) {
  .comparison-section .section-heading.section-heading--seo h2,
  .equipment-v7 .section-heading.section-heading--seo h2 { font-size: 17px; }
}


/* ========================================================================== 
   V35 — restore V33 heading feel, local-safe video preview, contact cleanup
   ========================================================================== */

/* Restore the cleaner V33 heading typography. H1 spacing is slightly opened. */
.section-benefit {
  font-family: inherit;
  font-weight: 760;
  letter-spacing: -.035em;
}
.hero-v7 h1 {
  font-family: inherit;
  font-weight: 740;
  letter-spacing: -.032em;
  line-height: 1.015;
}

/* The contact H2 stays semantic/SEO-friendly but no longer repeats configuration wording. */
.contact-copy.section-heading--seo h2 { max-width: 520px; }

/* YouTube requires an HTTP Referer. When this ZIP is opened via file://, show a
   robust local preview instead of a broken iframe; app.js upgrades it to the
   real embedded player automatically on http/https. */
.billing-video__frame {
  aspect-ratio: 16 / 7.2;
}
.billing-video__fallback {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: #092c3b;
}
.billing-video__fallback > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.015);
  filter: saturate(.94) contrast(1.02);
}
.billing-video__fallback-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4,32,44,.36), rgba(4,32,44,.08) 56%, rgba(4,32,44,.18));
}
.billing-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: 54px auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  min-width: 255px;
  padding: 13px 18px 13px 14px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 18px;
  background: rgba(5,39,52,.86);
  box-shadow: 0 14px 36px rgba(0,0,0,.24);
  backdrop-filter: blur(5px);
}
.billing-video__play-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding-left: 3px;
  border-radius: 50%;
  color: #062c3c;
  background: #79d8dd;
  font-size: 20px;
}
.billing-video__play strong {
  align-self: end;
  font-size: 16px;
  line-height: 1.15;
}
.billing-video__play small {
  align-self: start;
  margin-top: 2px;
  color: rgba(255,255,255,.75);
  font-size: 11.5px;
  line-height: 1.25;
}
.billing-video__fallback:hover .billing-video__play,
.billing-video__fallback:focus-visible .billing-video__play {
  border-color: rgba(121,216,221,.72);
  background: rgba(5,39,52,.94);
}
.billing-video__fallback:focus-visible { outline: 3px solid rgba(121,216,221,.8); outline-offset: -3px; }

@media (max-width: 760px) {
  .billing-video__frame { aspect-ratio: 16 / 9; }
  .billing-video__play { min-width: 220px; grid-template-columns: 46px auto; padding: 10px 14px 10px 11px; }
  .billing-video__play-icon { width: 46px; height: 46px; font-size: 18px; }
}
\n\n/* ==========================================================================\n   V36 — compact SEO H2 labels, V33-scale benefits, split benefits header,\n   direct YouTube embed and universal contact heading\n   ========================================================================== */\n\n/* Eyebrows are removed from markup. The semantic H2 now takes that compact\n   visual role: descriptive, SEO-friendly, and clearly subordinate to benefit. */\n.section-heading--seo h2,\n.fleet-showcase__headline h2,\n.billing-intro h2,\n.contact-copy.section-heading--seo h2,\n.comparison-section .section-heading.section-heading--seo h2,\n.equipment-v7 .section-heading.section-heading--seo h2 {\n  max-width: 820px;\n  margin: 0 0 10px;\n  color: var(--teal-600);\n  font-family: inherit;\n  font-size: 15px;\n  font-weight: 820;\n  line-height: 1.22;\n  letter-spacing: .105em;\n  text-transform: uppercase;\n}\n.section-heading--inverse.section-heading--seo h2 { color: #76d9dd; }\n\n/* Customer benefit uses the same scale/weight logic as the main H2 in V33. */\n.section-benefit,\n.billing-intro .section-benefit,\n.contact-copy .section-benefit {\n  max-width: 840px;\n  margin: 0;\n  color: var(--ink);\n  font-family: inherit;\n  font-size: clamp(34px, 4.2vw, 58px);\n  font-weight: 650;\n  line-height: 1.08;\n  letter-spacing: -.035em;\n  text-wrap: balance;\n}\n.section-heading--inverse.section-heading--seo .section-benefit { color: #fff; }\n\n/* Operational benefits follows the same left-heading / right-description pattern. */\n.benefits-v5 .section-heading--split.section-heading--seo {\n  max-width: none;\n  margin-inline: 0;\n  text-align: left;\n  grid-template-columns: minmax(0, 1.35fr) minmax(290px, .65fr);\n  align-items: end;\n  gap: clamp(34px, 5vw, 70px);\n}\n.benefits-v5 .section-heading--split.section-heading--seo > .section-summary {\n  max-width: 560px;\n  margin: 0 0 4px;\n}\n\n/* Contact benefit is intentionally universal for fleets, dealers and integrators. */\n.contact-copy .section-benefit {\n  line-height: 1.12;\n  margin-bottom: 16px;\n}\n\n/* Video stays embedded in the page. A local file:// preview may be blocked by\n   YouTube; on a normal http/https host this is the standard embedded player. */\n.billing-video__frame {\n  position: relative;\n  overflow: hidden;\n  width: 100%;\n  aspect-ratio: 16 / 7.2;\n  border-radius: 18px;\n  background: #092c3b;\n  box-shadow: 0 12px 30px rgba(5,34,45,.16);\n}\n.billing-video__frame iframe {\n  position: absolute;\n  inset: 0;\n  width: 100%;\n  height: 100%;\n  border: 0;\n}\n\n@media (max-width: 980px) {\n  .benefits-v5 .section-heading--split.section-heading--seo {\n    grid-template-columns: 1fr;\n    gap: 14px;\n  }\n  .benefits-v5 .section-heading--split.section-heading--seo > .section-summary { max-width: 720px; }\n}\n\n@media (max-width: 760px) {\n  .section-heading--seo h2,\n  .fleet-showcase__headline h2,\n  .billing-intro h2,\n  .contact-copy.section-heading--seo h2,\n  .comparison-section .section-heading.section-heading--seo h2,\n  .equipment-v7 .section-heading.section-heading--seo h2 { font-size: 14px; }\n  .section-benefit,\n  .billing-intro .section-benefit,\n  .contact-copy .section-benefit { font-size: clamp(30px, 8.8vw, 42px); }\n  .billing-video__frame { aspect-ratio: 16 / 9; }\n}\n\n@media (max-height: 760px) and (min-width: 921px) {\n  .section-heading--seo h2,\n  .fleet-showcase__headline h2,\n  .billing-intro h2,\n  .contact-copy.section-heading--seo h2,\n  .comparison-section .section-heading.section-heading--seo h2,\n  .equipment-v7 .section-heading.section-heading--seo h2 { font-size: 14px; }\n  .section-benefit,\n  .billing-intro .section-benefit,\n  .contact-copy .section-benefit { font-size: clamp(30px, 3vw, 42px); }\n}\n

/* ========================================================================== 
   V37 — standalone video section + standard contact benefit line-height
   ========================================================================== */
.video-section {
  padding-block: clamp(34px, 5.5vh, 64px);
  background: #f2f8f9;
}
.video-section .billing-video {
  margin-top: 0;
}
.video-section .billing-video__copy h2 {
  max-width: 470px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 2.3vw, 34px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.video-section .billing-video__copy p {
  margin: 0;
}

/* Override the legacy .contact-copy > p { line-height: 1.65 } rule. */
.contact-copy > p.section-benefit,
.contact-copy .section-benefit {
  line-height: 1.08 !important;
}

@media (max-width: 980px) {
  .video-section { padding-block: 36px; }
}
@media (max-width: 760px) {
  .video-section { padding-block: 28px; }
  .video-section .billing-video__copy h2 { font-size: clamp(23px, 7vw, 30px); }
  .contact-copy > p.section-benefit,
  .contact-copy .section-benefit { line-height: 1.1 !important; }
}

/* ========================================================================== 
   V38 — slightly more breathing room above section quote CTAs
   ========================================================================== */
#platform .section-quote-action,
#fleet .section-quote-action {
  margin-top: clamp(22px, 2.6vh, 30px);
}

@media (max-width: 760px) {
  #platform .section-quote-action,
  #fleet .section-quote-action {
    margin-top: 26px;
  }
}

@media (max-height: 760px) and (min-width: 921px) {
  #platform .section-quote-action,
  #fleet .section-quote-action {
    margin-top: 17px;
  }
}

/* ========================================================================== 
   V39 — sharper positioning, fairer comparison, merged task commercial model,
   dark case studies, split mixed-fleet story and gated presentation download
   ========================================================================== */

/* Operational benefits: the cards carry the detail, so keep the header concise. */
.benefits-v5 .section-heading.section-heading--seo {
  display: block;
  max-width: 900px;
}
.benefits-v5 .section-benefit { max-width: 780px; }
.benefit-card--source p {
  font-size: 14.5px;
  line-height: 1.58;
}

/* Comparison: ten concise criteria fit comfortably on a desktop screen. */
.comparison-section .section-benefit { max-width: 800px; }
.comparison-table--matrix tbody th {
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 11.8px;
  line-height: 1.18;
}
.comparison-table--matrix tbody td { padding: 5px 7px; }
.comparison-table--matrix .matrix-check,
.comparison-table--matrix .matrix-dash { width: 28px; height: 28px; }
.comparison-table--matrix .matrix-check { font-size: 23px; }
.comparison-table--matrix .matrix-dash { font-size: 21px; }

/* Case studies: dark section like the former task block, with white cards for contrast. */
.cases-v39-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(98,210,217,.16), transparent 28%),
    linear-gradient(145deg, #062f37 0%, #073f49 55%, #0a5661 100%);
}
.cases-v39-dark::before {
  position: absolute;
  top: -250px;
  left: -250px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(98,210,217,.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 80px rgba(98,210,217,.03), 0 0 0 160px rgba(98,210,217,.025);
  pointer-events: none;
}
.cases-v39-dark::after {
  content: none;
}
.cases-v39-dark .container { position: relative; z-index: 1; }
.cases-v39-dark .section-heading--inverse h2 { color: #78d7dc; }
.cases-v39-dark .section-heading--inverse .section-benefit { color: #fff; }
.cases-v39-dark .section-heading--inverse .section-summary { color: rgba(235,247,249,.76); }
.cases-v39-dark .case-card { box-shadow: 0 18px 46px rgba(0,0,0,.16); }
.case-card--compact .case-card__body > p {
  font-size: 12.5px;
  line-height: 1.48;
}

/* Mixed-fleet section: pure white, split into generator and controller stories. */
.fleet-v39-split {
  background: #fff;
}
.fleet-v39-split .section-heading { margin-bottom: clamp(24px, 3.4vh, 38px); }
.fleet-compat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.fleet-compat-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(12,66,82,.13);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(9,51,66,.07);
}
.fleet-compat-card__copy { padding: 20px 22px 11px; }
.fleet-compat-card__label {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fleet-compat-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(23px, 2.25vw, 31px);
  line-height: 1.08;
  letter-spacing: -.028em;
}
.fleet-compat-card p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.fleet-compat-card__visual {
  display: grid;
  min-height: 235px;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.fleet-compat-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Tasks: light modular grid background while the existing task tiles/panel stay intact. */
.tasks-v39-light {
  position: relative;
  overflow: hidden;
  background-color: #f3f9fa;
  background-image:
    linear-gradient(rgba(10,91,108,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,91,108,.045) 1px, transparent 1px);
  background-size: 34px 34px;
}
.tasks-v39-light::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 4% 12%, rgba(83,188,193,.15), transparent 24%);
}
.tasks-v39-light > .container { position: relative; z-index: 1; }
.tasks-v39-light .section-heading--seo h2 { color: var(--teal-600); }
.tasks-v39-light .section-benefit { color: var(--ink); }
.tasks-v39-light .section-summary { color: var(--muted); }
.tasks-v39-light .task-tabs button:not([aria-selected="true"]) {
  opacity: 1;
  color: #ccdde2;
  border-color: rgba(27,91,108,.42);
  background: #173f51;
}
.tasks-v39-light .task-tabs button:not([aria-selected="true"]):hover {
  color: #edf7f8;
  border-color: rgba(31,120,135,.55);
  background: #1c4b5e;
}
.task-commercial-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, .82fr)) minmax(260px, 1.25fr);
  gap: 9px;
  margin: 0 0 14px;
}
.task-commercial-point,
.task-subscription-mini {
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(16,91,107,.14);
  border-radius: 15px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 24px rgba(7,58,72,.05);
}
.task-commercial-point strong {
  display: block;
  margin-bottom: 4px;
  color: #0a6f7c;
  font-size: 12.5px;
}
.task-commercial-point span {
  display: block;
  color: #58727d;
  font-size: 11px;
  line-height: 1.36;
}
.task-subscription-mini { padding: 10px 12px; }
.task-subscription-mini__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}
.task-subscription-mini__top strong { color: #12394a; font-size: 12.5px; }
.task-subscription-mini__top b {
  padding: 4px 7px;
  border-radius: 99px;
  color: #08717c;
  background: #e4f5f6;
  font-size: 9.5px;
}
.task-subscription-mini__tasks {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.task-subscription-mini__tasks span {
  padding: 4px 6px;
  border-radius: 8px;
  color: #46636e;
  background: #f2f7f8;
  font-size: 9.5px;
  font-weight: 700;
}
.task-subscription-mini__footer {
  margin-top: 7px;
  color: #0b8390;
  font-size: 9.5px;
  font-weight: 800;
}

/* Hardware copy: shorter SEO H2 and a benefit tied to implementation effort. */
.equipment-v7 .section-benefit { max-width: 820px; }

/* Lead magnet: compact gated presentation download directly after hardware. */
.lead-magnet {
  padding-block: clamp(38px, 5.5vh, 64px);
  background:
    radial-gradient(circle at 12% 30%, rgba(83,188,193,.18), transparent 26%),
    linear-gradient(120deg, #0c3041 0%, #123f50 100%);
}
.lead-magnet__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(430px, .8fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}
.lead-magnet .section-heading--seo h2 { color: #7bd8dd; }
.lead-magnet .section-benefit {
  max-width: 760px;
  color: #fff;
  font-size: clamp(31px, 3.5vw, 48px);
}
.lead-magnet .section-summary {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(239,249,250,.74);
}
.lead-magnet__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(125,218,223,.24);
  border-radius: 22px;
  background: rgba(5,35,47,.52);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.lead-field span {
  display: block;
  margin-bottom: 5px;
  color: #d6ecef;
  font-size: 10px;
  font-weight: 780;
}
.lead-field input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(148,218,222,.28);
  border-radius: 11px;
  outline: 0;
  color: #0c2e3d;
  background: #fff;
  font: inherit;
  font-size: 13px;
}
.lead-field input:focus { border-color: #63cbd1; box-shadow: 0 0 0 3px rgba(99,203,209,.16); }
.lead-magnet__form .button {
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 210px;
  margin-top: 2px;
}
.lead-magnet__status {
  grid-column: 1 / -1;
  min-height: 16px;
  margin: 0;
  color: #bfe2e5;
  font-size: 10.5px;
  line-height: 1.35;
}
.lead-magnet__status.is-error { color: #ffb8b8; }

@media (min-width: 981px) and (min-height: 700px) {
  .comparison-section.screen-fit { padding-block: 22px; }
  .comparison-section .section-heading { margin-bottom: 14px; }
  .comparison-note { margin-top: 7px; }
  .tasks-v39-light.screen-fit { padding-block: 28px; }
  .tasks-v39-light .section-heading { margin-bottom: 14px; }
  .tasks-v39-light .task-panel { min-height: 410px; padding-block: 28px; }
}

@media (max-width: 980px) {
  .fleet-compat-grid { grid-template-columns: 1fr; }
  .fleet-compat-card { grid-template-columns: minmax(0,.78fr) minmax(280px,1.22fr); grid-template-rows: 1fr; align-items: center; }
  .fleet-compat-card__visual { min-height: 220px; }
  .task-commercial-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lead-magnet__inner { grid-template-columns: 1fr; gap: 24px; }
  .lead-magnet__form { max-width: 680px; }
}

@media (max-width: 700px) {
  .benefit-card--source p { font-size: 14px; }
  .fleet-compat-card { display: block; }
  .fleet-compat-card__copy { padding: 18px 18px 8px; }
  .fleet-compat-card__visual { min-height: 190px; }
  .task-commercial-strip { grid-template-columns: 1fr; }
  .task-commercial-point { padding: 10px 12px; }
  .lead-magnet__form { grid-template-columns: 1fr; padding: 15px; }
  .lead-magnet__form .button,
  .lead-magnet__status { grid-column: 1; }
}

/* ==========================================================================
   V40 — cleaner comparison/tasks, tighter mixed-fleet screen, protocol colors
   ========================================================================== */

/* Competitive comparison: remove the redundant descriptive SEO label and let
   the benefit statement become the visible section heading. */
#why-unum .comparison-benefit-heading {
  max-width: 800px;
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -.035em;
  text-transform: none;
  text-wrap: balance;
}

/* Mixed fleet: deterministic two-line benefit and a shorter one-line card
   headline on desktop. Tighten vertical rhythm so the whole section stays
   inside one desktop viewport. */
.fleet-v40-benefit { max-width: 760px; }
.fleet-compat-card h3 { font-size: clamp(22px, 1.9vw, 28px); }

@media (min-width: 981px) {
  .fleet-v39-split.screen-fit { padding-block: clamp(22px, 3vh, 32px); }
  .fleet-v39-split .section-heading { margin-bottom: clamp(18px, 2.4vh, 26px); }
  .fleet-v39-split .fleet-compat-card__copy { padding: 17px 20px 9px; }
  .fleet-v39-split .fleet-compat-card h3 { white-space: nowrap; }
  .fleet-v39-split .fleet-compat-card__visual {
    min-height: clamp(185px, 24vh, 220px);
    height: clamp(185px, 24vh, 220px);
  }
  #fleet .section-quote-action { margin-top: clamp(14px, 1.8vh, 20px); }
}

@media (max-width: 980px) {
  .fleet-v40-benefit__break { display: none; }
}

/* Task descriptions use the same dark blue surface as the task selector tiles;
   the aqua selected tile remains the active-state cue. */
.tasks-v39-light .task-panel {
  border-color: rgba(27,91,108,.42);
  background: #173f51;
  box-shadow: 0 18px 48px rgba(7,58,72,.13);
  backdrop-filter: none;
}

/* Hardware protocols: three soft functional color zones requested for faster
   visual parsing while preserving the existing full-width strip geometry. */
.equipment-v7 .hardware-protocol-band {
  background: #fff;
}
.equipment-v7 .hardware-protocol-grid {
  gap: 10px;
  padding-block: 9px;
}
.equipment-v7 .hardware-protocol-grid > div {
  border: 1px solid transparent;
  border-radius: 14px;
}
.equipment-v7 .hardware-protocol-grid > div:nth-child(1) {
  border-color: #f3d0d0;
  background: #fff0f0;
}
.equipment-v7 .hardware-protocol-grid > div:nth-child(2) {
  border-color: #f3d9b5;
  background: #fff3df;
}
.equipment-v7 .hardware-protocol-grid > div:nth-child(3) {
  border-color: #cce8d5;
  background: #eaf8ef;
}
.equipment-v7 .hardware-protocol-grid > div + div { border-left-width: 1px; }
.equipment-v7 .hardware-protocol-grid > div:nth-child(1) strong { color: #ad4a4a; }
.equipment-v7 .hardware-protocol-grid > div:nth-child(2) strong { color: #a96520; }
.equipment-v7 .hardware-protocol-grid > div:nth-child(3) strong { color: #267447; }
.equipment-v7 .hardware-protocol-grid span { color: #425b65; }

@media (max-width: 980px) {
  .equipment-v7 .hardware-protocol-grid { gap: 8px; }
  .equipment-v7 .hardware-protocol-grid > div + div {
    border-top-width: 1px;
    border-left-width: 1px;
  }
}

@media (max-width: 760px) {
  #why-unum .comparison-benefit-heading { font-size: clamp(30px, 8.8vw, 42px); }
}

/* ========================================================================== 
   V41 — viewport-fit fleet/tasks + protocol hover explanations
   ========================================================================== */

/* Mixed-fleet section: keep the entire artwork visible while reducing only
   surrounding vertical rhythm. The images are never cropped. */
.fleet-v39-split .fleet-compat-card__visual {
  overflow: visible;
}
.fleet-v39-split .fleet-compat-card__visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (min-width: 981px) and (min-height: 680px) {
  .fleet-v39-split.screen-fit {
    padding-block: clamp(16px, 2.1vh, 24px);
  }
  .fleet-v39-split .section-heading {
    margin-bottom: clamp(12px, 1.7vh, 18px);
  }
  .fleet-v39-split .section-heading--split {
    gap: clamp(34px, 4vw, 58px);
  }
  .fleet-v39-split .section-heading--split > p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.45;
  }
  .fleet-v39-split .fleet-compat-grid { gap: 14px; }
  .fleet-v39-split .fleet-compat-card__copy {
    padding: 13px 18px 6px;
  }
  .fleet-v39-split .fleet-compat-card__label {
    margin-bottom: 5px;
    font-size: 10px;
  }
  .fleet-v39-split .fleet-compat-card h3 {
    margin-bottom: 5px;
    font-size: clamp(20px, 1.65vw, 25px);
    white-space: nowrap;
  }
  .fleet-v39-split .fleet-compat-card p {
    font-size: 12.5px;
    line-height: 1.38;
  }
  .fleet-v39-split .fleet-compat-card__visual {
    min-height: 0;
    height: clamp(150px, 19vh, 185px);
    padding: 2px 10px 8px;
  }
  #fleet .section-quote-action {
    margin-top: clamp(9px, 1.2vh, 14px);
  }
}

/* Task detail card now uses exactly the active-tab surface color. */
.tasks-v39-light .task-panel {
  border-color: #7bd7dc;
  background: #66c8cd;
  color: #083544;
  box-shadow: 0 18px 48px rgba(7,58,72,.13), inset 0 0 0 1px rgba(255,255,255,.22);
}
.tasks-v39-light .task-panel::after {
  background: radial-gradient(circle, rgba(255,255,255,.25), transparent 67%);
}
.tasks-v39-light .task-meta span {
  color: #0a5564;
  border-color: rgba(8,53,68,.18);
  background: rgba(255,255,255,.28);
}
.tasks-v39-light .task-panel h3 { color: #083544; }
.tasks-v39-light .task-panel__copy > p { color: #174c59; }
.tasks-v39-light .task-points li { color: #0b3f4d; }
.tasks-v39-light .task-points li::before { color: #075363; }
.tasks-v39-light .task-panel .protocol-list span {
  color: #0b4452;
  border-color: rgba(8,53,68,.18);
  background: rgba(255,255,255,.32);
}
.tasks-v39-light .task-screen__caption { color: #174c59; }
.tasks-v39-light .status-dot { background: #0b7583; }

/* Desktop task block: preserve every selector while tightening the vertical
   rhythm enough to fit common 768–900 px high screens. */
@media (min-width: 981px) and (min-height: 680px) {
  .tasks-v39-light.screen-fit {
    padding-block: clamp(16px, 2vh, 22px);
  }
  .tasks-v39-light .section-heading {
    margin-bottom: clamp(10px, 1.4vh, 14px) !important;
  }
  .tasks-v39-light .section-heading--split { gap: clamp(34px, 4vw, 58px); }
  .tasks-v39-light .section-heading--split > p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.42;
  }
  .tasks-v39-light .task-tabs {
    row-gap: 6px;
    column-gap: 7px;
    margin-bottom: 9px;
  }
  .tasks-v39-light .task-tabs button,
  .tasks-v39-light .task-tabs button:nth-child(n+5) {
    min-height: 52px;
    padding: 6px 10px;
    font-size: 11px;
  }
  @supports ((-webkit-mask-image: url("")) or (mask-image: url(""))) {
    .tasks-v39-light .task-tabs button::before {
      flex-basis: 39px;
      width: 39px;
      height: 31px;
      -webkit-mask-size: 35px auto;
      mask-size: 35px auto;
    }
  }
  .tasks-v39-light .task-panel {
    min-height: clamp(330px, 40vh, 385px);
    grid-template-columns: minmax(300px, .82fr) minmax(430px, 1.18fr);
    gap: clamp(24px, 3.5vw, 48px);
    padding: clamp(18px, 2.5vw, 30px);
    border-radius: 24px;
  }
  .tasks-v39-light .task-meta {
    gap: 6px;
    margin-bottom: 12px;
  }
  .tasks-v39-light .task-meta span { padding: 5px 8px; font-size: 10px; }
  .tasks-v39-light .task-panel h3 {
    margin-bottom: 8px;
    font-size: clamp(27px, 2.7vw, 36px);
    line-height: 1.06;
  }
  .tasks-v39-light .task-panel__copy > p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.42;
  }
  .tasks-v39-light .task-points {
    gap: 7px;
    margin-bottom: 13px;
  }
  .tasks-v39-light .task-points li {
    padding-left: 23px;
    font-size: 12.5px;
    line-height: 1.3;
  }
  .tasks-v39-light .protocol-list { gap: 6px; }
  .tasks-v39-light .protocol-list span { padding: 5px 8px; font-size: 10.5px; }
  .tasks-v39-light .task-screen {
    border-width: 6px;
    border-radius: 18px;
  }
  .tasks-v39-light .task-screen img {
    display: block;
    max-height: clamp(235px, 31vh, 300px);
    object-fit: contain;
  }
  .tasks-v39-light .task-screen__caption {
    margin-top: 7px;
    font-size: 10.5px;
  }
}

/* Protocol cards: short explanation appears on hover/focus just like the
   instrument tooltips above. */
.equipment-v7 .hardware-protocol-card {
  position: relative;
  outline: none;
  cursor: help;
}
.hardware-protocol-tip {
  position: absolute;
  z-index: 20;
  left: 50%;
  bottom: calc(100% + 10px);
  width: min(285px, 24vw);
  padding: 12px 14px;
  transform: translate(-50%, 7px);
  opacity: 0;
  visibility: hidden;
  color: #fff;
  border: 1px solid rgba(121,216,221,.28);
  border-radius: 14px;
  background: rgba(7,47,63,.97);
  box-shadow: 0 18px 42px rgba(5,34,45,.24);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.hardware-protocol-tip::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 10px;
  height: 10px;
  content: "";
  transform: translate(-50%, -5px) rotate(45deg);
  background: #07303f;
  border-right: 1px solid rgba(121,216,221,.22);
  border-bottom: 1px solid rgba(121,216,221,.22);
}
.equipment-v7 .hardware-protocol-tip strong {
  display: block;
  margin-bottom: 4px;
  color: #79d8dd !important;
  font-size: 13px;
}
.equipment-v7 .hardware-protocol-tip span {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 560;
  line-height: 1.42;
}
.hardware-protocol-card:hover .hardware-protocol-tip,
.hardware-protocol-card:focus .hardware-protocol-tip,
.hardware-protocol-card:focus-visible .hardware-protocol-tip {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}
.hardware-protocol-grid .hardware-protocol-card:first-child .hardware-protocol-tip {
  left: 12px;
  transform: translate(0, 7px);
}
.hardware-protocol-grid .hardware-protocol-card:first-child:hover .hardware-protocol-tip,
.hardware-protocol-grid .hardware-protocol-card:first-child:focus .hardware-protocol-tip,
.hardware-protocol-grid .hardware-protocol-card:first-child:focus-visible .hardware-protocol-tip {
  transform: translate(0, 0);
}
.hardware-protocol-grid .hardware-protocol-card:first-child .hardware-protocol-tip::after { left: 38px; }
.hardware-protocol-grid .hardware-protocol-card:last-child .hardware-protocol-tip {
  right: 12px;
  left: auto;
  transform: translate(0, 7px);
}
.hardware-protocol-grid .hardware-protocol-card:last-child:hover .hardware-protocol-tip,
.hardware-protocol-grid .hardware-protocol-card:last-child:focus .hardware-protocol-tip,
.hardware-protocol-grid .hardware-protocol-card:last-child:focus-visible .hardware-protocol-tip {
  transform: translate(0, 0);
}
.hardware-protocol-grid .hardware-protocol-card:last-child .hardware-protocol-tip::after {
  right: 38px;
  left: auto;
  transform: translate(0, -5px) rotate(45deg);
}

@media (max-width: 980px) {
  .hardware-protocol-tip { width: min(285px, 72vw); }
}
@media (max-width: 760px) {
  .hardware-protocol-tip { display: none; }
  .equipment-v7 .hardware-protocol-card { cursor: default; }
}

/* Keep the dashboard preview proportional while compacting the desktop task card. */
@media (min-width: 981px) and (min-height: 680px) {
  .tasks-v39-light .task-panel__visual {
    width: min(520px, 100%);
    justify-self: end;
  }
  .tasks-v39-light .task-screen img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: initial;
  }
}

/* ========================================================================== 
   V42 — uncropped mixed-fleet artwork + requested dark task active state
   ========================================================================== */

/* Mixed fleet: make the artwork sizing deterministic. The complete source
   image always fits inside the visual area; no edge may be clipped. */
.fleet-v39-split .fleet-compat-card__visual {
  overflow: hidden;
}
.fleet-v39-split .fleet-compat-card__visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center center;
}

@media (min-width: 981px) {
  .fleet-v39-split .section-heading--split.section-heading--seo {
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr);
    gap: clamp(28px, 3vw, 46px);
  }
  .fleet-v40-benefit {
    max-width: 860px;
  }
}

@media (min-width: 981px) and (min-height: 680px) {
  .fleet-v39-split.screen-fit {
    padding-block: clamp(12px, 1.8vh, 18px);
  }
  .fleet-v39-split .section-heading {
    margin-bottom: clamp(9px, 1.25vh, 13px);
  }
  .fleet-v39-split .section-heading--seo h2 {
    margin-bottom: 7px;
    font-size: 16px;
  }
  .fleet-v39-split .fleet-v40-benefit {
    font-size: clamp(36px, 3.15vw, 46px);
    line-height: 1.02;
  }
  .fleet-v39-split .section-heading--split > p {
    max-width: 390px;
    font-size: 14px;
    line-height: 1.4;
  }
  .fleet-v39-split .fleet-compat-card__copy {
    padding: 12px 18px 5px;
  }
  .fleet-v39-split .fleet-compat-card__label {
    margin-bottom: 4px;
    font-size: 9.5px;
  }
  .fleet-v39-split .fleet-compat-card h3 {
    margin-bottom: 4px;
    font-size: clamp(20px, 1.58vw, 24px);
  }
  .fleet-v39-split .fleet-compat-card p {
    font-size: 12px;
    line-height: 1.32;
  }
  .fleet-v39-split .fleet-compat-card__visual {
    min-height: 0;
    height: clamp(190px, 27vh, 220px);
    padding: 0 14px 7px;
  }
  #fleet .section-quote-action {
    margin-top: clamp(8px, 1vh, 11px);
  }
}

/* Tasks: requested active tile + detail card color. */
.tasks-v39-light .task-tabs button[aria-selected="true"] {
  color: #fff;
  border-color: #197490;
  border-bottom-color: #197490;
  background: #197490;
  box-shadow: 0 8px 22px rgba(7,58,72,.18), inset 0 0 0 1px rgba(255,255,255,.10);
}
/* The former 'active' pictograms are dark and were intended for the aqua tile.
   On #197490 use the light icon variant for sufficient contrast. */
.tasks-v39-light .task-tabs button[aria-selected="true"] .task-tab-icon--active {
  display: none !important;
}
.tasks-v39-light .task-tabs button[aria-selected="true"] .task-tab-icon--inactive {
  display: block !important;
}

.tasks-v39-light .task-panel {
  color: #fff;
  border-color: #197490;
  background: #197490;
  box-shadow: 0 18px 48px rgba(7,58,72,.18), inset 0 0 0 1px rgba(255,255,255,.08);
}
.tasks-v39-light .task-panel::after {
  background: radial-gradient(circle, rgba(255,255,255,.12), transparent 67%);
}
.tasks-v39-light .task-meta span {
  color: #eaf7fa;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}
.tasks-v39-light .task-panel h3 { color: #fff; }
.tasks-v39-light .task-panel__copy > p { color: rgba(255,255,255,.92); }
.tasks-v39-light .task-points li { color: rgba(255,255,255,.95); }
.tasks-v39-light .task-points li::before { color: #d8f5f7; }
.tasks-v39-light .task-panel .protocol-list span {
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
}
.tasks-v39-light .task-screen__caption { color: rgba(255,255,255,.88); }
.tasks-v39-light .status-dot { background: #d7f3f5; }

/* Larger task-description typography, while keeping the section compact. */
@media (min-width: 981px) and (min-height: 680px) {
  .tasks-v39-light .task-panel h3 {
    margin-bottom: 9px;
    font-size: clamp(32px, 2.85vw, 39px);
    line-height: 1.05;
  }
  .tasks-v39-light .task-panel__copy > p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.42;
  }
  .tasks-v39-light .task-points li {
    font-size: 14px;
    line-height: 1.34;
  }
  .tasks-v39-light .protocol-list span {
    font-size: 11.5px;
  }
}

@media (max-width: 980px) {
  .tasks-v39-light .task-panel h3 { color: #fff; }
  .tasks-v39-light .task-panel__copy > p { color: rgba(255,255,255,.92); font-size: 17px; }
  .tasks-v39-light .task-points li { color: rgba(255,255,255,.95); font-size: 14px; }
}


/* ========================================================================== 
   V43 — unified H2 labels, restored comparison SEO heading, hardware cleanup,
   task caption contrast and fully visible mixed-fleet artwork
   ========================================================================== */

/* All semantic H2 headings share one compact uppercase label style. */
h2 {
  font-size: 12px !important;
  font-weight: 820 !important;
  line-height: 1.2 !important;
  letter-spacing: .95em !important;
  text-transform: uppercase !important;
}

/* The Tasks section label uses the same requested blue as the active task. */
.tasks-v39-light .section-heading--seo h2 {
  color: #197490 !important;
}

/* The task dashboard caption sits on white, so both its text and live status
   indicator must remain dark enough to read against that surface. */
.tasks-v39-light .task-screen__caption {
  color: #174c59 !important;
}
.tasks-v39-light .status-dot {
  background: #197490 !important;
  box-shadow: 0 0 0 4px rgba(25,116,144,.16) !important;
}

/* Mixed fleet: prioritize complete artwork over one-screen height. The source
   images now determine their own proportional height and are never cropped. */
.fleet-v39-split .fleet-compat-card {
  grid-template-rows: auto auto;
}
.fleet-v39-split .fleet-compat-card__visual,
.fleet-v39-split.screen-fit .fleet-compat-card__visual {
  min-height: 0 !important;
  height: auto !important;
  padding: 0 14px 12px !important;
  overflow: visible !important;
}
.fleet-v39-split .fleet-compat-card__visual img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
}
@media (min-width: 981px) and (min-height: 680px) {
  .fleet-v39-split.screen-fit {
    min-height: calc(100svh - var(--header-height));
    justify-content: flex-start;
    padding-block: clamp(22px, 3vh, 34px);
  }
}

/* One-supplier meaning is now in the section description, leaving two clear
   interface cards with their original functional color coding. */
.equipment-v7 .hardware-protocol-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--can {
  border-color: #f3d9b5;
  background: #fff3df;
}
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--can > strong {
  color: #a96520;
}
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--modbus {
  border-color: #cce8d5;
  background: #eaf8ef;
}
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--modbus > strong {
  color: #267447;
}
@media (max-width: 920px) {
  .equipment-v7 .hardware-protocol-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================================================== 
   V44 — tighter H2 tracking, protocol card colors, fleet summary sizing
   ========================================================================== */

h2 {
  letter-spacing: .475em !important;
}

.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--can,
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--can:hover,
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--can:focus {
  background: #fff0dc !important;
  border-color: #f3d3a9 !important;
}

.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--modbus,
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--modbus:hover,
.equipment-v7 .hardware-protocol-grid .hardware-protocol-card--modbus:focus {
  background: #e8f6ec !important;
  border-color: #c4e3cf !important;
}

.fleet-v39-split .section-heading--split > .section-summary {
  font-size: clamp(14px, 1.05vw, 16px) !important;
  line-height: 1.55 !important;
}

@media (min-width: 981px) and (min-height: 680px) {
  .fleet-v39-split .section-heading--split > .section-summary {
    font-size: clamp(14px, 1.05vw, 16px) !important;
    line-height: 1.55 !important;
  }
}

/* ========================================================================== 
   V45 — tighter one-line H2 labels + calmer secondary UI palette
   ========================================================================== */

/* H2 labels: halve V44 tracking again. Keep section labels on one line on
   desktop/tablet where the available width supports it. */
h2 {
  letter-spacing: .2375em !important;
}

@media (min-width: 701px) {
  .section-heading--seo h2,
  .fleet-showcase__headline h2,
  .billing-intro h2,
  .contact-copy.section-heading--seo h2,
  .comparison-section .section-heading.section-heading--seo h2,
  .equipment-v7 .section-heading.section-heading--seo h2 {
    max-width: none !important;
    white-space: nowrap;
  }
}

/* Hero evidence strip: replace the saturated aqua with a quieter industrial
   blue-grey surface so the strip supports the hero instead of competing with it. */
.hero-key-strip {
  color: #173f51;
  border-top-color: #c9dadd;
  background: linear-gradient(90deg, #e9f0f2 0%, #e2edef 52%, #dce9ec 100%);
  box-shadow: 0 -12px 30px rgba(5,37,49,.12);
}
.hero-key-strip__grid > div + div {
  border-left-color: rgba(25,116,144,.20);
}
.hero-key-strip strong,
.hero-key-strip .hero-key-strip__word {
  color: #174c5c;
}
.hero-key-strip span {
  color: #4f6871;
}
.hero-key-strip span em {
  color: #6b7f86;
}

@media (max-width: 760px) {
  .hero-key-strip__grid > div:nth-child(2n) {
    border-left-color: rgba(25,116,144,.20);
  }
  .hero-key-strip__grid > div:nth-child(n+3) {
    border-top-color: rgba(25,116,144,.20);
  }
}

/* Tasks: inactive choices become light neutral controls. This keeps #197490
   reserved for the selected state and gives the section a clearer hierarchy. */
.tasks-v39-light .task-tabs button:not([aria-selected="true"]) {
  opacity: 1;
  color: #345762;
  border-color: #c7d8dc;
  background: #e8f0f2;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}
.tasks-v39-light .task-tabs button:not([aria-selected="true"]):hover {
  color: #173f4b;
  border-color: #a9c6cc;
  background: #dce9ec;
  box-shadow: 0 6px 16px rgba(18,63,77,.08);
}

/* The dark icon artwork is the correct contrast on the new light inactive
   tiles. Selected tiles continue to use the light icon on #197490. */
.tasks-v39-light .task-tabs button:not([aria-selected="true"]) .task-tab-icon--inactive {
  display: none !important;
}
.tasks-v39-light .task-tabs button:not([aria-selected="true"]) .task-tab-icon--active {
  display: block !important;
}
.tasks-v39-light .task-tabs button[aria-selected="true"] .task-tab-icon--active {
  display: none !important;
}
.tasks-v39-light .task-tabs button[aria-selected="true"] .task-tab-icon--inactive {
  display: block !important;
}


/* ========================================================================== 
   V46 — copy sizing, protocol tooltip visibility, contact contrast,
   and subtle comparison-section separation
   ========================================================================== */

/* Mixed-fleet card descriptions: slightly larger for easier reading. */
.fleet-v39-split .fleet-compat-card p {
  font-size: clamp(13.5px, .95vw, 15px) !important;
  line-height: 1.46 !important;
}

/* Tasks intro copy uses the same body-copy scale as other split section intros. */
.tasks-v39-light .section-heading--split > .section-summary {
  font-size: clamp(14px, 1.05vw, 16px) !important;
  line-height: 1.55 !important;
}

/* Protocol tooltips must be allowed to rise above the protocol band and the
   product-card row. Legacy overflow:hidden clipped them at the band boundary. */
.equipment-v7 .hardware-protocol-band {
  position: relative;
  z-index: 30;
  overflow: visible !important;
}
.equipment-v7 .hardware-protocol-grid,
.equipment-v7 .hardware-protocol-card {
  overflow: visible !important;
}
.equipment-v7 .hardware-protocol-tip {
  z-index: 60;
}
.equipment-v7 .hardware-product-row {
  position: relative;
  z-index: 10;
}

/* Contact section: keep the H2 as an accent label, but raise contrast against
   the dark petrol background. */
.contact-copy.section-heading--seo h2,
#contact-title {
  color: #8fe3e7 !important;
}

/* Comparison section: a restrained cool surface separates the matrix from
   adjacent white sections while keeping the table itself crisp and white. */
.comparison-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(83,188,193,.16), transparent 31%),
    linear-gradient(180deg, #f5f9fa 0%, #edf5f6 100%) !important;
}
.comparison-section::before {
  opacity: .72;
}

@media (max-width: 760px) {
  .fleet-v39-split .fleet-compat-card p {
    font-size: 14px !important;
  }
}

/* V58 — keep the full hardware architecture image visible. */
.equipment-v7 .hardware-diagram-wide {
  overflow: visible;
}
.equipment-v7 .hardware-diagram-wide img {
  transform: none;
  object-position: center center;
}


/* ========================================================================== 
   V60 — hero image refresh, benefit proof points, mixed-fleet artwork,
   transparent task-monitor artwork
   ========================================================================== */

/* Hero: return to a neutral black copy-side overlay. */
.hero-v7__story::after {
  background: linear-gradient(90deg,
    rgba(0,0,0,.90) 0%,
    rgba(0,0,0,.86) 14%,
    rgba(0,0,0,.76) 28%,
    rgba(0,0,0,.62) 40%,
    rgba(0,0,0,.46) 50%,
    rgba(0,0,0,.29) 59%,
    rgba(0,0,0,.13) 67%,
    rgba(0,0,0,.04) 73%,
    rgba(0,0,0,0) 79%) !important;
}
@media (max-width: 980px) {
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(0,0,0,.92) 0%, rgba(0,0,0,.84) 28%, rgba(0,0,0,.66) 46%,
      rgba(0,0,0,.43) 61%, rgba(0,0,0,.18) 74%, rgba(0,0,0,0) 86%) !important;
  }
}
@media (max-width: 760px) {
  .hero-v7__story::after {
    background: linear-gradient(90deg,
      rgba(0,0,0,.94) 0%, rgba(0,0,0,.88) 40%, rgba(0,0,0,.67) 62%,
      rgba(0,0,0,.38) 78%, rgba(0,0,0,.12) 91%, rgba(0,0,0,0) 100%) !important;
  }
}

/* Benefits: three quantitative proof points without turning the grid into a
   statistics section. */
.benefit-card--source { position: relative; }
.benefit-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-height: 31px;
  margin: 0 0 6px;
  color: #197490;
}
.benefit-stat strong {
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.035em;
}
.benefit-stat small {
  max-width: 98px;
  color: #617780;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.benefit-card--source h3 {
  max-width: none;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  line-height: 1.16;
  text-wrap: balance;
}
.nowrap { white-space: nowrap; }

/* Mixed-fleet art includes its own labels; keep it large and uncropped. */
.fleet-v39-split .fleet-compat-card__visual img { width: 100% !important; height: auto !important; }

/* Task monitor artwork now carries transparency itself; don't add a white
   rectangle/border behind the monitor. */
.tasks-v39-light .task-screen {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.tasks-v39-light .task-screen img {
  display: block;
  background: transparent !important;
  filter: drop-shadow(0 18px 26px rgba(4,32,42,.22));
}

/* Keep the revised two-line fleet statement stable on wide screens. */
@media (min-width: 981px) {
  .fleet-v40-benefit { max-width: 720px !important; }
  .fleet-v40-benefit__break { display: block !important; }
}

/* V60 refinement: quantitative proof points sit as compact corner badges so
   all six benefit-card titles keep the same vertical rhythm. */
.benefit-card--source .benefit-stat {
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  gap: 2px;
  min-height: 0;
  margin: 0;
  text-align: right;
  pointer-events: none;
}
.benefit-card--source .benefit-stat strong {
  font-size: clamp(23px, 2vw, 30px);
  line-height: .95;
}
.benefit-card--source .benefit-stat small {
  max-width: 112px;
  font-size: 9.5px;
  line-height: 1.08;
}


/* V61 — proof numbers live inside benefit descriptions, not as separate badges. */
.benefit-card--source .benefit-stat { display:none !important; }
.benefit-card--source p { max-width: 34ch; }

/* V61 — Group Monitoring monitor: keep the dashboard strictly inside its bezel. */
.tasks-v39-light .task-screen { overflow: visible !important; }
.tasks-v39-light .task-screen img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* V61 — mixed-fleet art uses larger in-image labels. */
.fleet-v39-split .fleet-compat-card__visual img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}


/* V64 — evidence footnote for fuel-cost benefit */
.benefits-case-note {
  max-width: 920px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
@media (max-width: 760px) {
  .benefits-case-note { margin-top: 8px; font-size: 11px; }
}


/* ==========================================================================
   V65 — WebP assets, Zoho contact form, FAQ and natural page scrolling
   ========================================================================== */

/* Natural page scrolling: no section-by-section snap. */
html {
  scroll-snap-type: none !important;
}
main > section,
main > .snap-section,
.site-footer {
  scroll-snap-align: none !important;
  scroll-snap-stop: normal !important;
}

/* Compact contact section. The supplied Zoho form keeps its native 810px height;
   surrounding spacing is reduced so the complete contact area fits into a typical
   desktop viewport whenever the viewport height allows it. */
.contact-section--zoho {
  overflow: visible;
  padding-block: clamp(26px, 3.2vw, 46px);
}
.contact-grid--zoho {
  grid-template-columns: minmax(250px, .58fr) minmax(580px, 1.42fr);
  align-items: start;
  gap: clamp(26px, 4vw, 54px);
}
.contact-grid--zoho .contact-copy {
  padding-top: 4px;
}
.contact-grid--zoho .contact-copy .section-benefit {
  max-width: 470px;
  margin-bottom: 10px;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.07 !important;
}
.contact-grid--zoho .contact-copy .section-summary {
  max-width: 460px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.5;
}
.contact-details--compact {
  gap: 11px;
  padding-top: 17px;
}
.contact-details--compact a,
.contact-details--compact p {
  font-size: 13px;
  line-height: 1.45;
}
.contact-form-embed {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(5,28,38,.28);
}
.contact-form-embed iframe {
  display: block;
  margin: 0 auto;
  background: #fff;
}

/* FAQ based on the information architecture of the official UNUM Genset page. */
.faq-section {
  padding-block: clamp(54px, 6vw, 88px);
  background:
    radial-gradient(circle at 93% 10%, rgba(25,116,144,.08), transparent 28%),
    #f4f8f9;
}
.faq-shell {
  max-width: 1180px;
}
.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: end;
  gap: clamp(24px, 5vw, 70px);
  margin-bottom: 28px;
}
.faq-heading h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}
.faq-heading .section-benefit {
  max-width: 560px;
  font-size: clamp(32px, 3.7vw, 50px);
}
.faq-heading .section-summary {
  max-width: 540px;
  margin: 0 0 4px;
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}
.faq-item {
  overflow: hidden;
  border: 1px solid #d9e5e8;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 22px rgba(19,63,80,.045);
}
.faq-item summary {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 18px 52px 18px 20px;
  color: #173f50;
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  position: absolute;
  right: 20px;
  width: 22px;
  height: 22px;
  color: #197490;
  content: "+";
  font-size: 25px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { border-bottom: 1px solid #e3ecee; }
.faq-answer {
  padding: 15px 20px 19px;
}
.faq-answer p {
  margin: 0;
  color: #4b6470;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .contact-grid--zoho {
    grid-template-columns: minmax(230px, .52fr) minmax(520px, 1.48fr);
    gap: 26px;
  }
}
@media (max-width: 960px) {
  .contact-grid--zoho { grid-template-columns: 1fr; }
  .contact-grid--zoho .contact-copy { max-width: 720px; }
  .faq-heading { grid-template-columns: 1fr; gap: 10px; }
  .faq-heading h2 { grid-column: auto; }
}
@media (max-width: 760px) {
  .contact-section--zoho { padding-block: 34px; }
  .contact-form-embed { border-radius: 14px; }
  .contact-form-embed iframe { width: 100% !important; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-item summary { min-height: 64px; padding: 16px 48px 16px 17px; font-size: 15px; }
  .faq-answer { padding: 13px 17px 17px; }
}


/* V69 — lossless hero WebP, contact-form background, richer FAQ */
.contact-form-embed {
  border-color: rgba(255,255,255,.16) !important;
  background: radial-gradient(circle at 4% 12%, rgba(83,188,193,.24), transparent 25%), linear-gradient(135deg, #102f40 0%, #1d4459 100%) !important;
  box-shadow: none !important;
}
.contact-form-embed iframe { background: transparent !important; }
.faq-section { position: relative; overflow: hidden; color:#fff; background: radial-gradient(circle at 8% 18%, rgba(83,188,193,.16), transparent 24%), radial-gradient(circle at 92% 86%, rgba(25,116,144,.22), transparent 30%), linear-gradient(135deg,#0c2d3d 0%,#123f50 58%,#0d3545 100%) !important; }
.faq-section::before { position:absolute; top:-250px; right:-240px; width:540px; height:540px; border:1px solid rgba(118,217,221,.10); border-radius:50%; content:""; box-shadow:0 0 0 80px rgba(118,217,221,.025),0 0 0 160px rgba(118,217,221,.018); pointer-events:none; }
.faq-shell { position:relative; z-index:1; max-width:1200px; }
.faq-heading { display:grid !important; grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr) !important; align-items:end !important; gap:clamp(28px,5vw,72px) !important; margin-bottom:30px !important; }
.faq-heading__copy { min-width:0; }
.faq-heading h2 { margin:0 0 10px !important; color:#76d9dd !important; }
.faq-heading .section-benefit { max-width:620px !important; margin-bottom:12px !important; color:#fff !important; }
.faq-heading .section-summary { max-width:620px !important; margin:0 !important; color:rgba(255,255,255,.70) !important; }
.faq-topic-strip { display:flex; flex-wrap:wrap; justify-content:flex-end; gap:8px; padding-bottom:4px; }
.faq-topic-strip span { padding:8px 12px; border:1px solid rgba(118,217,221,.22); border-radius:999px; background:rgba(255,255,255,.055); color:#c8f3f4; font-size:11px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; backdrop-filter:blur(8px); }
.faq-list { counter-reset:faq; grid-template-columns:repeat(2,minmax(0,1fr)) !important; gap:12px 14px !important; }
.faq-item { position:relative; overflow:hidden; border:1px solid rgba(255,255,255,.11) !important; border-radius:17px !important; background:rgba(255,255,255,.055) !important; box-shadow:0 10px 30px rgba(2,20,29,.15) !important; backdrop-filter:blur(10px); transition:transform .22s ease,border-color .22s ease,background .22s ease; }
.faq-item:hover { transform:translateY(-2px); border-color:rgba(118,217,221,.32) !important; background:rgba(255,255,255,.075) !important; }
.faq-item::before { position:absolute; top:18px; left:18px; color:rgba(118,217,221,.48); content:counter(faq,decimal-leading-zero); counter-increment:faq; font-size:11px; font-weight:850; letter-spacing:.08em; }
.faq-item summary { min-height:86px !important; align-items:flex-start !important; padding:17px 54px 17px 58px !important; color:#fff !important; flex-direction:column; justify-content:center; gap:4px; }
.faq-item summary::after { top:31px; right:18px !important; color:#76d9dd !important; }
.faq-topic { color:#76d9dd; font-size:10px; font-weight:850; letter-spacing:.10em; text-transform:uppercase; }
.faq-question { color:#fff; font-size:15px; font-weight:760; line-height:1.32; }
.faq-item[open] { border-color:rgba(118,217,221,.30) !important; background:rgba(255,255,255,.09) !important; }
.faq-item[open] summary { border-bottom:1px solid rgba(255,255,255,.10) !important; }
.faq-answer { padding:15px 20px 20px 58px !important; }
.faq-answer p { max-width:620px; color:rgba(255,255,255,.72) !important; font-size:13.5px !important; line-height:1.65 !important; }
.faq-cta { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-top:22px; padding:18px 20px; border:1px solid rgba(118,217,221,.18); border-radius:17px; background:rgba(3,29,40,.28); }
.faq-cta > div { display:grid; gap:3px; }
.faq-cta strong { color:#fff; font-size:15px; }
.faq-cta span { color:rgba(255,255,255,.64); font-size:12.5px; }
.faq-cta .button { flex:0 0 auto; }
@media (max-width:960px) { .faq-heading { grid-template-columns:1fr !important; gap:16px !important; } .faq-topic-strip { justify-content:flex-start; } }
@media (max-width:760px) { .faq-list { grid-template-columns:1fr !important; } .faq-item summary { min-height:76px !important; padding:15px 48px 15px 52px !important; } .faq-item::before { left:15px; top:17px; } .faq-answer { padding:13px 16px 18px 52px !important; } .faq-cta { align-items:flex-start; flex-direction:column; } .faq-cta .button { width:100%; } }


/* ========================================================================== 
   V70 — Zoho presentation form, simplified FAQ, protocol cards beside diagram
   ========================================================================== */

/* Lead magnet: use the supplied Zoho Presentation form instead of the local
   gated-download fields. */
.lead-magnet__inner {
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr) !important;
  align-items: center;
}
.lead-magnet__embed {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
}
.lead-magnet__embed iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  margin: 0;
  border: 0 !important;
}

/* Hardware: the two interface cards now sit to the left of the architecture
   diagram, so the relationship between interface and hardware is visible at a
   glance. */
.equipment-v7 .hardware-diagram-stage--with-protocols {
  display: grid;
  grid-template-columns: minmax(210px, .29fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  overflow: visible;
}
.equipment-v7 .hardware-protocol-side {
  position: relative;
  z-index: 30;
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-card {
  position: relative;
  display: grid;
  gap: 5px;
  min-height: 106px;
  align-content: center;
  padding: 17px 18px;
  overflow: visible;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: help;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-card > strong {
  font-size: 15px;
  line-height: 1.2;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-card > span {
  color: #425b65;
  font-size: 12px;
  line-height: 1.42;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--can,
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--can:hover,
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--can:focus {
  border-color: #eaf7ef;
  background: #c7e5d1;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--can > strong { color: #287148; }
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--modbus,
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--modbus:hover,
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--modbus:focus {
  background: #e7e5f1 !important;
  border-color: #cdc9e3 !important;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-card--modbus > strong {   color: #35278e !important; }
.equipment-v7 .hardware-diagram-stage--with-protocols .hardware-diagram-wide {
  width: 100% !important;
  height: clamp(245px, 34vh, 315px) !important;
  min-width: 0;
}
/* Tooltips open toward the diagram instead of underneath the product cards. */
.equipment-v7 .hardware-protocol-side .hardware-protocol-tip {
  top: 50% !important;
  right: auto !important;
  bottom: auto !important;
  left: calc(100% + 12px) !important;
  width: min(320px, 30vw);
  transform: translate(8px,-50%) !important;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-card:hover .hardware-protocol-tip,
.equipment-v7 .hardware-protocol-side .hardware-protocol-card:focus .hardware-protocol-tip,
.equipment-v7 .hardware-protocol-side .hardware-protocol-card:focus-visible .hardware-protocol-tip {
  transform: translate(0,-50%) !important;
}
.equipment-v7 .hardware-protocol-side .hardware-protocol-tip::after {
  top: 50% !important;
  right: 100% !important;
  bottom: auto !important;
  left: auto !important;
  width: 12px !important;
  height: 12px !important;
  transform: translate(6px,-50%) rotate(45deg) !important;
}

/* Contact form: no external card/frame around the Zoho embed. */
.contact-form-embed {
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.contact-form-embed iframe {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* FAQ: simpler hierarchy and a clearly different light background from the
   dark Contact section. No numbering and no tag cloud. */
.faq-section {
  position: relative;
  overflow: hidden;
  color: #173f50 !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(83,188,193,.14), transparent 29%),
    radial-gradient(circle at 7% 88%, rgba(25,116,144,.08), transparent 27%),
    linear-gradient(180deg, #f5fafb 0%, #eaf3f5 100%) !important;
}
.faq-section::before {
  top: -250px;
  right: -220px;
  border-color: rgba(25,116,144,.10) !important;
  box-shadow: 0 0 0 80px rgba(25,116,144,.025), 0 0 0 160px rgba(25,116,144,.016) !important;
}
.faq-heading {
  display: block !important;
  margin-bottom: 25px !important;
}
.faq-heading__copy { max-width: 780px; }
.faq-heading h2 {
  margin: 0 0 10px !important;
  color: #197490 !important;
}
.faq-heading .section-benefit {
  max-width: 760px !important;
  margin: 0 !important;
  color: #102f40 !important;
}
.faq-topic-strip { display: none !important; }
.faq-list {
  counter-reset: none !important;
  grid-template-columns: repeat(2,minmax(0,1fr)) !important;
  gap: 12px 14px !important;
}
.faq-item {
  border: 1px solid rgba(22,92,111,.13) !important;
  background: rgba(255,255,255,.82) !important;
  box-shadow: 0 10px 28px rgba(21,66,82,.06) !important;
  backdrop-filter: blur(8px);
}
.faq-item:hover {
  transform: translateY(-2px);
  border-color: rgba(25,116,144,.25) !important;
  background: #fff !important;
}
.faq-item::before { display: none !important; content: none !important; }
.faq-item summary {
  min-height: 80px !important;
  padding: 16px 52px 16px 20px !important;
  color: #173f50 !important;
  gap: 4px;
}
.faq-item summary::after { color: #197490 !important; }
.faq-topic { color: #197490; }
.faq-question { color: #173f50; }
.faq-item[open] {
  border-color: rgba(25,116,144,.24) !important;
  background: #fff !important;
}
.faq-item[open] summary { border-bottom: 1px solid #e0eaed !important; }
.faq-answer { padding: 14px 20px 19px !important; }
.faq-answer p { color: #506a75 !important; }
.faq-cta {
  border-color: rgba(25,116,144,.15);
  background: rgba(255,255,255,.56);
}
.faq-cta strong { color: #173f50; }
.faq-cta span { color: #5b727c; }

@media (max-width: 980px) {
  .lead-magnet__inner { grid-template-columns: 1fr !important; }
  .equipment-v7 .hardware-diagram-stage--with-protocols {
    grid-template-columns: 1fr;
  }
  .equipment-v7 .hardware-protocol-side {
    grid-template-columns: repeat(2,minmax(0,1fr));
    order: 0;
  }
  .equipment-v7 .hardware-diagram-stage--with-protocols .hardware-diagram-wide { order: 1; }
  .equipment-v7 .hardware-protocol-side .hardware-protocol-tip { display: none !important; }
}
@media (max-width: 700px) {
  .equipment-v7 .hardware-protocol-side { grid-template-columns: 1fr; }
  .equipment-v7 .hardware-protocol-side .hardware-protocol-card { min-height: 0; }
  .faq-list { grid-template-columns: 1fr !important; }
  .faq-item summary { min-height: 70px !important; padding: 15px 48px 15px 17px !important; }
  .faq-answer { padding: 13px 17px 17px !important; }
}


/* ========================================================================== 
   V71 — unified section rhythm, tighter Presentation form, BLE/analog FAQ
   ========================================================================== */

/* Use the Cloud-based monitoring section as the vertical-spacing reference for
   every content section. The hero keeps its own composition and spacing. */
main > section.section:not(.hero-v7) {
  padding-block: clamp(34px, 4.2vh, 50px) !important;
}

/* Presentation request: reduce unused vertical space around the Zoho embed
   while keeping the form itself fully readable. */
.lead-magnet__inner {
  gap: clamp(20px, 3vw, 42px) !important;
}
.lead-magnet__embed {
  margin-block: -5px;
}
.lead-magnet__embed iframe {
  height: 400px !important;
}

/* Keep exactly the same compact vertical rhythm as Cloud-based monitoring on
   shorter desktop viewports. */
@media (max-height: 760px) and (min-width: 921px) {
  main > section.section:not(.hero-v7) {
    padding-block: 28px !important;
  }
  .lead-magnet__embed iframe { height: 400px !important; }
}

@media (max-width: 760px) {
  main > section.section:not(.hero-v7) {
    padding-block: 34px !important;
  }
  .lead-magnet__inner { gap: 18px !important; }
  .lead-magnet__embed { margin-block: -3px; }
  .lead-magnet__embed iframe { height: 400px !important; }
}


/* ========================================================================== 
   V72 — 340px Presentation form, frameless embed, unified content padding
   ========================================================================== */

/* Cloud-based diesel generator monitoring and analytics is the spacing reference.
   Hero retains its own composition; every other content section uses the same
   vertical padding rhythm. */
main > section.section:not(.hero-v7) {
  padding-top: clamp(34px, 4.2vh, 50px) !important;
  padding-bottom: clamp(34px, 4.2vh, 50px) !important;
}

/* Presentation form: exact requested height and no surrounding card/frame. */
.lead-magnet__embed {
  margin-block: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.lead-magnet__embed iframe {
  display: block;
  width: 100% !important;
  height: 400px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-height: 760px) and (min-width: 921px) {
  main > section.section:not(.hero-v7) {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .lead-magnet__embed iframe { height: 400px !important; }
}

@media (max-width: 760px) {
  main > section.section:not(.hero-v7) {
    padding-top: 34px !important;
    padding-bottom: 34px !important;
  }
  .lead-magnet__inner { gap: 18px !important; }
  .lead-magnet__embed iframe { height: 400px !important; }
}


/* ========================================================================== 
   V73 — dedicated mobile hero crop + mobile content order
   ========================================================================== */
.hero-v7__mobile-scene,
.hero-v7__mobile-after { display: none; }

@media (max-width: 760px) {
  /* Mobile hero uses the user-supplied crop as-is: no resize distortion,
     no object-fit crop and no overlay on the image. */
  .hero-v7 {
    height: auto !important;
    min-height: 0 !important;
    grid-template-rows: auto auto !important;
    background: #0b2638 !important;
  }
  .hero-v7__main {
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 22px 0 24px !important;
  }
  .hero-v7__copy {
    position: relative !important;
    z-index: 3 !important;
    order: 1 !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 18px 16px !important;
  }
  .hero-v7__copy .hero-v7__lead,
  .hero-v7__copy .hero-v7__actions { display: none !important; }
  .hero-v7 h1 {
    max-width: 620px !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: clamp(32px, 9vw, 42px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.045em !important;
  }
  .hero-v7__visual {
    position: relative !important;
    inset: auto !important;
    z-index: 2 !important;
    order: 2 !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
  }
  .hero-v7__story {
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  .hero-v7__story::after { display: none !important; }
  .hero-v7__base-scene { display: none !important; }
  .hero-v7__mobile-scene {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  .hero-v7__mobile-after {
    display: block !important;
    position: relative !important;
    z-index: 3 !important;
    order: 3 !important;
    width: 100% !important;
    padding: 18px 18px 0 !important;
  }
  .hero-v7__mobile-after .hero-v7__lead {
    display: block !important;
    max-width: 620px !important;
    margin: 0 0 16px !important;
    color: rgba(255,255,255,.82) !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    text-shadow: none !important;
  }
  .hero-v7__mobile-after .hero-v7__actions {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 9px !important;
  }
  .hero-v7__mobile-after .hero-v7__actions .button {
    min-height: 44px !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
  }
}

@media (max-width: 430px) {
  .hero-v7__main { padding-top: 18px !important; }
  .hero-v7__copy { padding-inline: 16px !important; padding-bottom: 14px !important; }
  .hero-v7__mobile-after { padding: 16px 16px 0 !important; }
  .hero-v7 h1 { font-size: clamp(30px, 9vw, 37px) !important; }
}

/* ========================================================================== 
   V75 — hardware section: viewport height + vertically centered content
   ========================================================================== */
@media (min-width: 981px) {
  .equipment-v7.screen-fit {
    min-height: calc(100svh - var(--header-height, 78px)) !important;
    padding-top: clamp(34px, 4.2vh, 50px) !important;
    padding-bottom: clamp(34px, 4.2vh, 50px) !important;
    display: flex !important;
    align-items: center !important;
  }

  .equipment-v7__inner {
    display: block !important;
    min-height: 0 !important;
    width: min(calc(100% - 40px), var(--container)) !important;
    margin-inline: auto !important;
  }

  .equipment-v7 .section-heading,
  .equipment-v7 .hardware-diagram-stage,
  .equipment-v7 .hardware-product-row {
    flex: none !important;
  }

  .equipment-v7 .hardware-protocol-band {
    min-height: 0 !important;
    margin-top: 18px !important;
  }
}


/* ==========================================================================
   Middle East Energy 2026 — full width banner
   ========================================================================== */

.mee-banner {
  position: relative;
  z-index: 5;

  width: 100vw;
  margin-left: calc(50% - 50vw);

  padding: 0;

  background:
    linear-gradient(
      135deg,
      #ff9d00 0%,
      #ffc800 36%,
      #ffb631 66%,
      #ff76a0 100%
    );
}

.mee-banner__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  padding: 14px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.mee-banner__content {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 34px;
}

.mee-banner__title {
  color: #111;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.mee-banner__details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 11px;

  color: #111;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
}

.mee-banner__details strong {
  color: #111;
  font-weight: 850;
}

.mee-banner__separator {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;

  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}


/* CTA */

.mee-banner__cta {
  flex: 0 0 auto;

  min-height: 46px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  color: #073b45 !important;
  background: #fff;

  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;

  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;

  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);

  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.mee-banner__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(0, 0, 0, 0.17);
}

.mee-banner__cta span {
  font-size: 18px;
  line-height: 1;
}


/* ==========================================================================
   Tablet
   ========================================================================== */

@media (max-width: 1050px) {

  .mee-banner__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .mee-banner__title {
    white-space: normal;
  }
}


/* ==========================================================================
   Mobile
   ========================================================================== */

@media (max-width: 700px) {

  .mee-banner__inner {
    width: calc(100% - 28px);
    min-height: 0;
    padding: 17px 0 18px;

    display: block;
  }

  .mee-banner__content {
    display: block;
  }

  .mee-banner__title {
    max-width: 330px;

    font-size: 19px;
    line-height: 1.22;
    font-weight: 800;
  }

  .mee-banner__details {
    margin-top: 9px;

    display: flex;
    flex-wrap: wrap;
    gap: 5px 9px;

    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
  }

  .mee-banner__cta {
    width: 100%;
    min-height: 46px;
    margin-top: 14px;
  }
}