:root {
  --ink: #071622;
  --ink-2: #0d2638;
  --ink-3: #163a51;
  --steel: #465d70;
  --muted: #617589;
  --paper: #ffffff;
  --mist: #f2f6f8;
  --mist-2: #e6edf2;
  --line: #d6e0e7;
  --accent: #ffc526;
  --accent-2: #ffe07a;
  --accent-deep: #8d6200;
  --electric: #22b8d5;
  --electric-dark: #087b95;
  --success: #16724b;
  --danger: #aa342f;
  --shadow: 0 22px 64px rgba(4, 21, 34, .16);
  --shadow-soft: 0 12px 36px rgba(4, 21, 34, .09);
  --radius-xl: 26px;
  --radius: 18px;
  --radius-sm: 11px;
  --max: 1200px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, video, svg { max-width: 100%; }
img, video { display: block; }
a { color: #0b5f88; text-decoration-thickness: .08em; text-underline-offset: .16em; }
a:hover { color: var(--electric-dark); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-180%);
  padding: 10px 14px;
  border: 2px solid var(--accent);
  border-radius: 9px;
  background: #fff;
  color: #000;
  font-weight: 800;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.section { padding: 58px 0; }
.section-sm { padding: 38px 0; }
.section-mist { background: var(--mist); }
.section-mist + .section-mist { padding-top: 14px; }
.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071622 0%, #0c2639 54%, #0d3145 100%);
  color: #fff;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
}
.section-dark > * { position: relative; }
.section-dark p, .section-dark li { color: #dce7ef; }
.section-dark a { color: var(--accent-2); }
.section-heading { max-width: 790px; margin-bottom: 26px; }
.section-heading.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 11px;
  color: var(--accent-deep);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--electric));
}
.section-dark .eyebrow, .page-hero .eyebrow, .hero .eyebrow { color: var(--accent-2); }

h1, h2, h3, h4 {
  margin: 0 0 .56em;
  color: inherit;
  line-height: 1.1;
  letter-spacing: -.027em;
}
h1 { font-size: clamp(2.55rem, 5.8vw, 5rem); }
h2 { font-size: clamp(1.95rem, 4vw, 3.08rem); }
h3 { font-size: clamp(1.23rem, 2.1vw, 1.66rem); }
h4 { font-size: 1.08rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.lead { max-width: 780px; color: var(--steel); font-size: clamp(1.08rem, 1.9vw, 1.29rem); line-height: 1.58; }
.text-muted { color: var(--muted); }
.kicker { font-size: 1.08rem; font-weight: 750; }

.topbar { background: #030c13; color: #d8e4ed; font-size: .86rem; }
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 20px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--accent-2); }
.topbar-links { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; white-space: nowrap; }
.topbar-note { color: #aebfcd; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,.1);
  background: rgba(7, 22, 34, .98);
  backdrop-filter: blur(14px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 265px;
  color: #fff;
  text-decoration: none;
}
.brand:hover { color: #fff; }
.brand-ex {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #ffda57, var(--accent));
  color: #07111a;
  clip-path: polygon(24% 4%, 76% 4%, 100% 50%, 76% 96%, 24% 96%, 0 50%);
  filter: drop-shadow(0 7px 14px rgba(255,197,38,.22));
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -.04em;
}
.brand-ex::after {
  content: "";
  position: absolute;
  inset: 5px;
  clip-path: inherit;
  border: 1px solid rgba(7,17,26,.42);
}
.brand-wordmark { display: grid; gap: 4px; line-height: 1; }
.brand-lancing { display: flex; align-items: center; min-height: 23px; }
.brand-lancing img { width: 132px; height: auto; }
.brand-title {
  color: #c7d6e2;
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 7px; }
.main-nav > a, .nav-group > summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 11px;
  border-radius: 9px;
  color: #e6eef4;
  font-size: .93rem;
  font-weight: 750;
  list-style: none;
  text-decoration: none;
}
.main-nav > a:hover,
.main-nav > a[aria-current="page"],
.nav-group > summary:hover,
.nav-group.is-active > summary {
  background: rgba(255,255,255,.09);
  color: #fff;
}
.nav-group { position: relative; }
.nav-group > summary { cursor: pointer; }
.nav-group > summary::-webkit-details-marker { display: none; }
.nav-group > summary::after { content: "▾"; margin-left: 7px; color: var(--accent-2); font-size: .72rem; }
.nav-group:not([open]) .nav-menu { display: none; }
.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 316px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}
.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-menu a:hover { background: var(--mist); color: #075d80; }
.header-cta {
  white-space: nowrap;
  border: 1px solid var(--accent) !important;
  background: var(--accent) !important;
  color: #07111a !important;
  box-shadow: 0 8px 24px rgba(255,197,38,.18);
}
.header-cta:hover { background: var(--accent-2) !important; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 9px;
  background: transparent;
  color: #fff;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(34,184,213,.24), transparent 30%),
    radial-gradient(circle at 9% 84%, rgba(255,197,38,.16), transparent 30%),
    linear-gradient(132deg, #06131f 0%, #0a2639 55%, #0b354b 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(90deg, #000, transparent 84%);
}
.hero::after {
  content: "EX";
  position: absolute;
  right: -2vw;
  bottom: -9vw;
  color: rgba(255,255,255,.025);
  font-size: clamp(15rem, 30vw, 34rem);
  font-weight: 950;
  line-height: .8;
  letter-spacing: -.12em;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(400px, .94fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: center;
  padding: 70px 0 76px;
}
.hero-copy { max-width: 720px; }
.hero h1 { max-width: 760px; font-size: clamp(3rem, 5.6vw, 5rem); }
.hero .lead { max-width: 700px; color: #dbe8f0; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #e3edf4;
  font-size: .92rem;
  font-weight: 700;
}
.hero-points li { position: relative; padding-left: 24px; }
.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 950;
}
.hero-video-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.08);
  box-shadow: 0 30px 90px rgba(0,0,0,.36);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-video-card::before {
  content: "ATEX FILLING";
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: #07111a;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.video-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  min-height: 310px;
  overflow: hidden;
  background: #02070b;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #02070b;
}
.video-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  min-height: 42px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 9px;
  background: rgba(2, 9, 15, .82);
  color: #fff;
  font-size: .8rem;
  font-weight: 850;
  backdrop-filter: blur(8px);
}
.video-toggle:hover { background: #02090f; }
.video-toggle:focus-visible { outline: 3px solid var(--accent-2); outline-offset: 3px; }
.hero-video-caption {
  display: grid;
  gap: 2px;
  padding: 18px 20px 20px;
  color: #fff;
}
.hero-video-caption strong { font-size: 1.02rem; }
.hero-video-caption span { color: #bfd0dc; font-size: .84rem; line-height: 1.45; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 49px;
  padding: 11px 19px;
  border: 2px solid transparent;
  border-radius: 10px;
  font-weight: 850;
  line-height: 1.18;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #07111a; box-shadow: 0 10px 28px rgba(255,197,38,.22); }
.btn-primary:hover { background: var(--accent-2); color: #07111a; }
.btn-secondary { background: #fff; color: var(--ink); }
.btn-secondary:hover { background: var(--mist); color: var(--ink); }
.btn-outline { border-color: currentColor; background: transparent; color: #0d638c; }
.hero .btn-outline, .section-dark .btn-outline, .page-hero .btn-outline { color: #fff; border-color: rgba(255,255,255,.64); }
.btn-small { min-height: 41px; padding: 8px 14px; font-size: .9rem; }

.stat-strip { position: relative; z-index: 5; margin-top: -34px; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.stat { padding: 22px 21px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--ink); font-size: 1.32rem; line-height: 1.15; }
.stat span { display: block; margin-top: 5px; color: var(--muted); font-size: .85rem; line-height: 1.4; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 60px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 16%, rgba(34,184,213,.2), transparent 28%),
    linear-gradient(125deg, #071622 0%, #0d2c42 58%, #10445f 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .35;
  pointer-events: none;
  background-image: none;
}
.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(340px,.92fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.55rem, 5vw, 4.35rem); }
.page-hero .lead { color: #dbe7ef; }
.page-hero-media {
  display: grid;
  place-items: center;
  min-height: 330px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
}
.page-hero-media img,
.page-hero-media video {
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
}
.page-hero-media video { aspect-ratio: 16 / 9; background: #02070b; }

.breadcrumbs { padding: 12px 0; border-bottom: 1px solid var(--line); background: var(--mist); font-size: .84rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li + li::before { content: "/"; margin-right: 7px; color: #95a5b2; }
.breadcrumbs a { text-decoration: none; font-weight: 700; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--electric));
}
.card:hover { transform: translateY(-4px); border-color: #bccbd6; box-shadow: var(--shadow); }
.card-body { padding: 24px; }
.card-media {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 12px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, #fff, #f4f8fa);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.card-tag {
  display: inline-flex;
  margin-bottom: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff1bf;
  color: #684700;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: #075d80; }
.card p { color: var(--steel); }
.card-list { margin: 0 0 18px; padding-left: 19px; color: var(--steel); font-size: .92rem; }
.card-list li { margin: 4px 0; }
.card-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 850; text-decoration: none; }
.card-link::after { content: "→"; transition: transform .18s ease; }
.card-link:hover::after { transform: translateX(3px); }

.icon-card {
  position: relative;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(4,21,34,.05);
}
.icon-card .icon {
  display: grid;
  place-items: center;
  width: 47px;
  height: 47px;
  margin-bottom: 15px;
  border: 1px solid #efd278;
  border-radius: 13px;
  background: linear-gradient(145deg, #fff5cf, #ffe487);
  color: #694900;
  font-size: 1.25rem;
  font-weight: 950;
}
.icon-card h2, .icon-card h3 { font-size: 1.34rem; }
.icon-card p { color: var(--steel); }

.split { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(32px, 5vw, 62px); align-items: center; }
.split.reverse > :first-child { order: 2; }
.split-media {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 17px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.split-media img {
  width: 100%;
  height: auto;
  max-height: 560px;
  object-fit: contain;
  object-position: center center;
  background: #fff;
}
.split-media video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center center;
  background: #02070b;
}
.section-dark .split-media { border-color: rgba(255,255,255,.18); }

.check-list { margin: 20px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 9px 0; padding-left: 29px; color: var(--steel); }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .02em;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff0b6;
  color: #5c4100;
  font-size: .72rem;
  font-weight: 950;
}
.section-dark .check-list li::before { background: var(--accent); color: #07111a; }

.process { counter-reset: steps; }
.process-step {
  position: relative;
  min-height: 150px;
  padding: 25px 23px 24px 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.process-step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 23px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent-2);
  font-size: .82rem;
  font-weight: 950;
}
.process-step p { margin: 0; color: var(--muted); }

.callout {
  padding: 24px;
  border: 1px solid #f0d47b;
  border-left: 5px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff8df;
}
.callout.warning { border-color: #e4aea9; border-left-color: var(--danger); background: #fff1ef; }
.callout h3 { margin-bottom: .35em; }
.callout p:last-child { margin-bottom: 0; }

.spec-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(4,21,34,.04); }
.spec-table { width: 100%; min-width: 620px; border-collapse: collapse; background: #fff; }
.spec-table th, .spec-table td { padding: 14px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 32%; background: var(--mist); color: var(--ink); font-size: .91rem; }
.spec-table tr:last-child th, .spec-table tr:last-child td { border-bottom: 0; }
.spec-note { margin-top: 12px; color: var(--muted); font-size: .84rem; }

.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 42px; align-items: start; }
.prose { max-width: 800px; }
.prose h2 { margin-top: 1.28em; }
.prose h3 { margin-top: 1.25em; }
.prose ul, .prose ol { padding-left: 23px; }
.prose li { margin: 7px 0; }
.prose a { font-weight: 700; }
.toc { position: sticky; top: 100px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--mist); }
.toc h2 { font-size: 1rem; letter-spacing: 0; }
.toc ol { margin: 0; padding-left: 19px; font-size: .89rem; }
.toc li { margin: 7px 0; }
.toc a { text-decoration: none; }

.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.faq-list summary { position: relative; cursor: pointer; list-style: none; padding: 17px 50px 17px 19px; font-weight: 850; line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: #075d80; font-size: 1.45rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 19px 18px; color: var(--steel); }

.quote-panel {
  display: grid;
  grid-template-columns: minmax(260px,.78fr) minmax(0,1.22fr);
  gap: 32px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow);
}
.quote-panel-info {
  position: relative;
  padding: 4px 24px 4px 0;
  border-right: 1px solid var(--line);
}
.quote-panel-info::after {
  content: "EX";
  position: absolute;
  left: -10px;
  bottom: -18px;
  color: rgba(7,22,34,.035);
  font-size: 7.5rem;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}
.quote-panel-info > * { position: relative; z-index: 1; }
.quote-panel-info .contact-line {
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 7px 0;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; }
.form-field { display: grid; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: .86rem; font-weight: 850; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 47px;
  padding: 10px 12px;
  border: 1px solid #afbfcb;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}
.form-field textarea { min-height: 125px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 3px solid rgba(34,184,213,.18); border-color: var(--electric-dark); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; color: var(--steel); font-size: .84rem; }
.checkbox input { margin-top: 5px; }
.form-note { margin-top: 12px; color: var(--muted); font-size: .8rem; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.cta-band {
  position: relative;
  padding: 46px 0;
  color: #fff;
  background: linear-gradient(120deg, #071622, #103b54);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--electric);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-inner h2 { margin-bottom: .2em; font-size: clamp(1.75rem, 3.3vw, 2.65rem); }
.cta-inner p { max-width: 720px; margin: 0; color: #d7e4ed; }

.network-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 20px; }
.network-group { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.network-group h2 { font-size: 1.28rem; }
.network-group ul { margin: 0; padding: 0; list-style: none; }
.network-group li { padding: 6px 0; border-bottom: 1px solid #d8e2e8; }
.network-group li:last-child { border-bottom: 0; }
.network-group a { font-size: .9rem; text-decoration: none; overflow-wrap: anywhere; }

.site-footer { padding-top: 50px; background: #030c13; color: #b7c7d3; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 38px; padding-bottom: 40px; }
.site-footer h2 { color: #fff; font-size: 1rem; letter-spacing: .01em; }
.site-footer a { color: #d9e5ed; text-decoration: none; }
.site-footer a:hover { color: var(--accent-2); }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 7px 0; }
.footer-brand { margin-bottom: 15px; }
.footer-brand .brand { min-width: 0; }
.footer-source-logo { width: 118px; height: auto; margin-top: 16px; opacity: .9; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom .container { display: flex; justify-content: space-between; gap: 20px; padding: 17px 0; font-size: .8rem; }
.footer-bottom p { margin: 0; }

.mobile-actions { display: none; }
.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .2s ease;
}
.back-top.visible { opacity: 1; pointer-events: auto; }

.notice-bar { padding: 11px 0; border-bottom: 1px solid #efd278; background: #fff4cf; color: #5e4300; font-size: .84rem; }
.notice-bar p { margin: 0; }
.notice-bar a { color: #493400; }

/* Content is never hidden if JavaScript or animations fail. */
.reveal, .js .reveal, .js .reveal.is-visible { opacity: 1; transform: none; }
.status-box { padding: 22px; border: 1px solid #a9d6c0; border-radius: var(--radius); background: #e7f6ef; }
.status-box.error { border-color: #e2aea9; background: #fff0ef; }

@media (max-width: 1080px) {
  .topbar-note { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 14px 18px 20px;
    flex-direction: column;
    align-items: stretch;
    background: #071622;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .nav-group > summary { width: 100%; justify-content: space-between; }
  .nav-group { width: 100%; }
  .nav-menu { position: static; width: 100%; margin-top: 5px; box-shadow: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-video-card { max-width: 820px; }
  .page-hero-grid, .split, .quote-panel { grid-template-columns: 1fr; }
  .page-hero-media { max-width: 760px; }
  .split.reverse > :first-child { order: initial; }
  .quote-panel-info { padding: 0 0 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .content-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
  .grid-4 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .network-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 26px), var(--max)); }
  .section { padding: 42px 0; }
  .section-sm { padding: 30px 0; }
  .section-mist + .section-mist { padding-top: 6px; }
  .topbar .container { min-height: 37px; justify-content: center; }
  .topbar-links { width: 100%; justify-content: space-between; gap: 10px; }
  .topbar-links span { display: inline; font-size: .78rem; }
  .header-inner { min-height: 70px; }
  .brand { min-width: 0; gap: 9px; }
  .brand-ex { width: 41px; height: 41px; font-size: .9rem; }
  .brand-lancing img { width: 103px; }
  .brand-title { font-size: .55rem; letter-spacing: .13em; }
  .hero-grid { gap: 34px; padding: 46px 0 52px; }
  .hero h1 { font-size: clamp(2.48rem, 12vw, 3.65rem); }
  .hero-points { grid-template-columns: 1fr; }
  .hero-actions .btn, .button-row .btn { width: 100%; }
  .hero-video-card { border-radius: 19px; }
  .video-frame { min-height: 220px; }
  .video-toggle { right: 10px; bottom: 10px; }
  .stat-strip { margin-top: -18px; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .stat { padding: 18px 15px; border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-last-child(-n+2) { border-bottom: 0; }
  .page-hero { padding: 46px 0 48px; }
  .page-hero-grid { gap: 30px; }
  .page-hero-media { min-height: 0; padding: 12px; }
  .page-hero-media img { max-height: 420px; }
  .grid-2, .grid-3, .grid-4, .network-grid { grid-template-columns: 1fr; }
  .card-media { aspect-ratio: 4 / 3; }
  .process-step { min-height: 0; padding-left: 72px; }
  .process-step::before { left: 17px; }
  .form-grid { grid-template-columns: 1fr; }
  .quote-panel { padding: 23px 17px; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .cta-inner .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 27px; }
  .footer-bottom .container { flex-direction: column; }
  .mobile-actions {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 800;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 -8px 24px rgba(4,21,34,.14);
  }
  .mobile-actions a { display: grid; place-items: center; min-height: 52px; font-weight: 900; text-decoration: none; }
  .mobile-actions a:first-child { background: var(--ink); color: #fff; }
  .mobile-actions a:last-child { background: var(--accent); color: #07111a; }
  .back-top { bottom: 68px; }
  .site-footer { padding-bottom: 52px; }
}

@media (max-width: 430px) {
  .topbar-links span { font-size: .72rem; }
  .brand-lancing img { width: 92px; }
  .brand-title { font-size: .5rem; }
  .nav-toggle { width: 42px; }
  .stat strong { font-size: 1.15rem; }
}

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

@media print {
  .topbar, .site-header, .mobile-actions, .back-top, .video-toggle, .cta-band, .site-footer, .quote-panel form { display: none !important; }
  body { color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: none; }
  .section, .section-sm { padding: 22px 0; }
  .card, .callout, .spec-wrap { box-shadow: none; break-inside: avoid; }
}

:root {
  --ink: #06131e;
  --ink-2: #0a2335;
  --ink-3: #103b55;
  --steel: #334f62;
  --muted: #526b7c;
  --paper: #ffffff;
  --mist: #eef4f7;
  --mist-2: #dde8ee;
  --line: #cbd9e1;
  --accent: #ffbf18;
  --accent-2: #ffe074;
  --accent-deep: #785100;
  --electric: #17b8d2;
  --electric-dark: #006f89;
  --shadow: 0 22px 58px rgba(2, 18, 29, .18);
  --shadow-soft: 0 10px 30px rgba(2, 18, 29, .10);
  --radius-xl: 24px;
  --radius: 17px;
  --radius-sm: 10px;
  --max: 1240px;
  --header-height: 82px;
}

html { background: #fff; }
body {
  min-width: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #fff;
  font-size: 16.5px;
  line-height: 1.56;
}
main { display: block; }
img, video { max-width: 100%; height: auto; }
.section { padding: 48px 0; }
.section-sm { padding: 30px 0; }
.section-mist + .section-mist { padding-top: 24px; }
.section-heading { margin-bottom: 22px; }
.section-heading p, .section-heading .lead { color: var(--steel); }
.narrow.prose { max-width: 880px; }
.prose p, .prose li { color: #2f4b5e; }
.prose h2, .prose h3 { color: var(--ink); }

/* A distinctive, fully local logo — no image or font file is required. */
.brand {
  min-width: 322px;
  gap: 13px;
  line-height: 1;
}
.brand-symbol {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  clip-path: polygon(24% 3%, 76% 3%, 100% 50%, 76% 97%, 24% 97%, 0 50%);
  background: linear-gradient(145deg, #ffe274 0%, #ffbe16 63%, #dc8d00 100%);
  color: #07131d;
  filter: drop-shadow(0 8px 18px rgba(255, 191, 24, .27));
}
.brand-symbol::before {
  content: "";
  position: absolute;
  inset: 5px;
  clip-path: inherit;
  border: 1px solid rgba(6, 19, 30, .42);
  background: linear-gradient(145deg, rgba(255,255,255,.34), rgba(255,255,255,0));
}
.brand-symbol::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 10px;
  width: 14px;
  height: 3px;
  border-radius: 9px;
  background: #082033;
  box-shadow: 0 -5px 0 rgba(8,32,51,.72);
  opacity: .72;
}
.brand-symbol > span {
  position: relative;
  z-index: 2;
  transform: translate(-2px, -1px);
  font-size: 1.13rem;
  font-weight: 950;
  letter-spacing: -.065em;
}
.brand-copy { display: grid; gap: 5px; min-width: 0; }
.brand-main {
  color: #fff;
  font-size: 1.16rem;
  font-weight: 950;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-main strong { color: var(--accent-2); }
.brand-sub {
  color: #b9ccd8;
  font-size: .59rem;
  font-weight: 850;
  letter-spacing: .165em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--electric);
  z-index: 2;
}
.header-inner { padding-top: 4px; }

/* Stronger navigation and calls to action. */
.main-nav > a, .nav-group > summary { color: #f0f6fa; }
.main-nav > a:hover,
.main-nav > a[aria-current="page"],
.nav-group > summary:hover,
.nav-group.is-active > summary {
  background: rgba(255,255,255,.12);
}
.header-cta {
  border-radius: 999px !important;
  padding-inline: 18px !important;
  box-shadow: 0 10px 26px rgba(255,191,24,.20);
}

/* Customer-led hero. Text is separate from the moving video for reliable contrast. */
.hero {
  background:
    radial-gradient(circle at 84% 18%, rgba(23,184,210,.26), transparent 31%),
    radial-gradient(circle at 8% 82%, rgba(255,191,24,.20), transparent 31%),
    linear-gradient(128deg, #04111b 0%, #08263a 54%, #0a4159 100%);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.03fr) minmax(390px, .97fr);
  gap: clamp(30px, 4vw, 58px);
  padding: 56px 0 64px;
}
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 5.2vw, 4.75rem);
  text-wrap: balance;
}
.hero .lead { color: #e2edf3; }
.hero-copy { max-width: 720px; }
.hero-actions { margin-top: 23px; }
.hero-points { margin-top: 23px; gap: 8px 18px; }
.hero-video-card {
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(3,17,27,.74);
  box-shadow: 0 30px 76px rgba(0,0,0,.40), 0 0 0 1px rgba(255,191,24,.06) inset;
}
.hero-video-card::before {
  content: "FILLING LINE VIDEO";
  top: 13px;
  left: 13px;
  background: var(--accent);
  color: #05111a;
}
.video-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255,255,255,.03), transparent),
    #02080d;
}
.hero-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain !important;
  object-position: 50% 50% !important;
  background: #02080d;
}
.hero-video-caption { background: linear-gradient(120deg, #122f43, #153e56); }
.hero-video-caption span { color: #d3e1ea; }

/* Compact, high-impact key project strip. */
.stat-strip { margin-top: -27px; }
.stat-grid { box-shadow: 0 18px 48px rgba(2,18,29,.17); }
.stat { padding: 18px 19px; }
.stat strong { font-size: 1.18rem; }
.stat span { color: #4f6879; }

/* Page heroes: less empty height, strong contrast, full machinery visible. */
.page-hero { padding: 48px 0 50px; }
.page-hero-grid { gap: clamp(28px, 4vw, 52px); }
.page-hero h1 { font-size: clamp(2.35rem, 4.7vw, 4.05rem); text-wrap: balance; }
.page-hero .lead { color: #e2edf3; }
.page-hero-media {
  min-height: 0 !important;
  padding: 14px;
  border-color: rgba(255,255,255,.30);
}
.page-hero-media img,
.page-hero-media video {
  width: 100% !important;
  height: auto !important;
  max-height: 430px !important;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}

/* Every machinery image is contained rather than cropped. */
.card-media {
  aspect-ratio: 16 / 11;
  min-height: 0;
  padding: 14px;
  background: linear-gradient(145deg, #fff 0%, #edf4f7 100%);
}
.card-media img,
.split-media img,
.page-hero-media img,
.prose img,
main img:not(.footer-source-logo) {
  max-width: 100%;
  height: auto;
  object-fit: contain !important;
  object-position: 50% 50% !important;
}
.card-media img {
  width: 100% !important;
  height: 100% !important;
}
.split-media {
  min-height: 0;
  padding: 14px;
}
.split-media img { max-height: 500px; }
.split-media video { object-fit: contain !important; object-position: 50% 50% !important; }

/* More visual distinction without reducing readability. */
.grid { gap: 18px; }
.card {
  border-color: #c6d5de;
  box-shadow: 0 12px 30px rgba(2,18,29,.09);
}
.card::before { height: 5px; }
.card-body { padding: 21px; }
.card p, .card li, .icon-card p, .process-step p { color: #3c586a; }
.card-tag { background: #fff0b9; color: #634300; }
.icon-card {
  padding: 22px;
  border-color: #c8d7df;
  box-shadow: 0 9px 25px rgba(2,18,29,.07);
}
.icon-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54px;
  height: 54px;
  border-radius: 54px 0 0 0;
  background: linear-gradient(135deg, transparent 35%, rgba(23,184,210,.10));
  pointer-events: none;
}
.process-step { min-height: 0; padding-top: 20px; padding-bottom: 20px; }
.callout, .quote-panel, .spec-wrap, .network-group { border-color: #c8d7df; }

/* Explicit contrast rules for every common background. */
.section-mist { color: var(--ink); }
.section-mist h1, .section-mist h2, .section-mist h3, .section-mist h4 { color: var(--ink); }
.section-mist p, .section-mist li { color: #385568; }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.hero h1, .hero h2, .hero h3,
.page-hero h1, .page-hero h2, .page-hero h3 { color: #fff; }
.section-dark p, .section-dark li, .hero p, .hero li, .page-hero p, .page-hero li { color: #e0ebf2; }
.section-dark .check-list li { color: #e6f0f5; }
.section-dark .check-list li::before { background: var(--accent); color: #07131d; }
.site-footer p, .site-footer li, .site-footer address { color: #bed0dc; }
.site-footer h2, .site-footer h3 { color: #fff; }

/* Customer enquiry area. */
.quote-panel { gap: 27px; padding: 28px; }
.quote-panel-info { padding-right: 20px; }
.form-field input, .form-field textarea, .form-field select {
  border-color: #9eb2bf;
  color: #071622;
  background: #fff;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #667d8d; opacity: 1; }
.btn { border-radius: 999px; }
.btn-primary { background: linear-gradient(135deg, #ffd04a, #ffb900); }
.btn-primary:hover { background: linear-gradient(135deg, #ffe584, #ffc82e); }
.cta-band { padding: 38px 0; }

.footer-trust {
  display: inline-flex;
  margin-top: 12px !important;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: #d4e2ea !important;
  font-size: .77rem;
  font-weight: 750;
}

/* No blank animation state when JavaScript or a local file preview is used. */
.reveal, .js .reveal, .js .reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (max-width: 1080px) {
  .brand { min-width: 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-video-card { width: min(100%, 820px); }
  .page-hero-media { width: min(100%, 760px); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 38px 0; }
  .section-sm { padding: 26px 0; }
  .header-inner { min-height: 70px; }
  .brand { gap: 9px; }
  .brand-symbol { width: 43px; height: 43px; }
  .brand-symbol > span { font-size: .92rem; }
  .brand-main { font-size: .93rem; letter-spacing: .025em; }
  .brand-sub { font-size: .48rem; letter-spacing: .12em; }
  .hero-grid { padding: 40px 0 46px; gap: 28px; }
  .hero h1 { font-size: clamp(2.3rem, 11.5vw, 3.45rem); }
  .hero-video-card::before { font-size: .59rem; }
  .stat-strip { margin-top: -18px; }
  .stat { padding: 16px 14px; }
  .page-hero { padding: 38px 0 40px; }
  .page-hero-media { padding: 9px; }
  .page-hero-media img { max-height: 360px !important; }
  .card-media { aspect-ratio: 4 / 3; padding: 10px; }
  .card-body { padding: 18px; }
  .quote-panel { padding: 20px 15px; }
  .cta-band { padding: 32px 0; }
}

@media (max-width: 430px) {
  .brand-main { font-size: .84rem; }
  .brand-sub { max-width: 185px; white-space: normal; line-height: 1.15; }
  .topbar-links { gap: 8px; }
}

:root {
  --ink: #06141f;
  --ink-2: #0a2638;
  --ink-3: #0d455d;
  --steel: #294a5d;
  --muted: #4e6878;
  --paper: #ffffff;
  --mist: #edf4f7;
  --mist-2: #dce9ef;
  --line: #c7d8e1;
  --accent: #ffc229;
  --accent-2: #ffe18a;
  --accent-deep: #6e4b00;
  --electric: #28c7df;
  --electric-dark: #006c84;
  --shadow: 0 20px 50px rgba(2, 20, 32, .16);
  --shadow-soft: 0 9px 26px rgba(2, 20, 32, .09);
  --radius-xl: 22px;
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1240px;
  --header-height: 72px;
}

body {
  color: var(--ink);
  background: #fff;
  font-size: 16.5px;
  line-height: 1.54;
}

/* Remove decorative stripe patterns and use clean solid accents. */
.site-header::before,
.cta-band::before,
.hero::before,
.hero::after,
.page-hero::before,
.section-dark::before,
.eyebrow::before,
.quote-panel-info::after {
  content: none !important;
  display: none !important;
  background: none !important;
}
.site-header {
  border-top: 3px solid var(--electric);
  border-bottom-color: rgba(255,255,255,.12);
}
.header-inner { min-height: var(--header-height); padding-top: 0 !important; }
.network-group li { border-bottom: 1px solid #dce6eb !important; }

/* Cleaner, more recognisable ATEX / Lancing wordmark. */
.brand { min-width: 306px; gap: 11px; }
.brand-symbol {
  width: 50px;
  height: 50px;
  clip-path: none !important;
  border: 2px solid rgba(40,199,223,.9);
  border-radius: 14px;
  background: #071b28 !important;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.24));
  overflow: hidden;
}
.brand-symbol::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 6px;
  border: 0 !important;
  clip-path: polygon(24% 3%, 76% 3%, 100% 50%, 76% 97%, 24% 97%, 0 50%);
  background: linear-gradient(145deg, #ffe58a 0%, #ffc229 64%, #e19a00 100%) !important;
}
.brand-symbol::after { content: none !important; display: none !important; }
.brand-symbol > span {
  position: relative;
  z-index: 2;
  transform: none !important;
  color: #06141f;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -.055em;
}
.brand-copy { gap: 4px; }
.brand-main {
  color: var(--electric);
  font-size: 1.08rem;
  letter-spacing: .035em;
}
.brand-main strong { color: #fff; }
.brand-sub {
  color: #c7d6df;
  font-size: .56rem;
  letter-spacing: .145em;
}
.header-cta { border-radius: 9px !important; }

/* Compact header to leave more of the customer's machinery choice on screen. */
.topbar .container { min-height: 34px; }
.topbar-note { color: #b8c9d4; }
.main-nav > a, .nav-group > summary { min-height: 39px; padding: 8px 10px; }

/* Solid, high-contrast section labels. */
.eyebrow {
  gap: 0;
  margin-bottom: 10px;
  padding-left: 11px;
  border-left: 3px solid var(--electric);
  color: #00667e;
  letter-spacing: .115em;
}
.hero .eyebrow,
.page-hero .eyebrow,
.section-dark .eyebrow,
.cta-band .eyebrow {
  border-left-color: #69e4f4;
  color: #b9f5fc;
}

/* The homepage hero is deliberately contained within a normal desktop screen. */
.hero {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 88% 15%, rgba(40,199,223,.28), transparent 30%),
    radial-gradient(circle at 11% 88%, rgba(255,194,41,.12), transparent 31%),
    linear-gradient(128deg, #03111b 0%, #08283b 55%, #0b5268 100%);
}
.hero-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
  gap: clamp(26px, 3.6vw, 48px);
  align-items: center;
  padding: 30px 0 46px;
}
@media (min-width: 901px) {
  .hero-grid { min-height: min(610px, calc(100svh - 109px)); }
}
.hero-copy { max-width: 680px; }
.hero h1 {
  max-width: 700px;
  margin-bottom: .38em;
  font-size: clamp(2.55rem, 4.55vw, 4.2rem);
  line-height: 1.025;
  text-wrap: balance;
}
.hero .lead {
  max-width: 670px;
  color: #e6f0f5;
  font-size: clamp(1.03rem, 1.42vw, 1.16rem);
  line-height: 1.52;
}
.hero-actions { margin-top: 20px; }
.hero-points {
  gap: 7px 18px;
  margin-top: 20px;
  color: #edf5f8;
  font-size: .89rem;
}
.hero-points li::before { color: #72e6f3; }
.hero-video-card {
  width: 100%;
  max-width: 610px;
  justify-self: end;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 20px;
  background: #061721;
  box-shadow: 0 24px 64px rgba(0,0,0,.38);
}
.hero-video-card::before { content: none !important; display: none !important; }
.video-frame,
.hero-embed {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  background: #02080c;
}
.hero-video-iframe,
.machine-video-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #02080c;
}
.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 999px;
  background: rgba(4,21,32,.88);
  color: #fff;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-video-caption {
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 14px 17px 16px;
  background: linear-gradient(120deg, #102c3e, #12465d);
}
.hero-video-caption strong { color: #fff; }
.hero-video-caption span { color: #d8e8ef; }
.video-link {
  white-space: nowrap;
  color: #bdf5fc !important;
  font-size: .77rem;
  font-weight: 850;
  text-decoration: none;
}
.video-link:hover { color: #fff !important; }

/* Compact customer brief strip. */
.stat-strip { margin-top: -23px; }
.stat-grid { border-radius: 15px; box-shadow: 0 15px 42px rgba(2,20,32,.15); }
.stat {
  position: relative;
  min-height: 96px;
  padding: 17px 16px 16px 50px;
}
.stat::before {
  content: attr(data-step);
  position: absolute;
  left: 16px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid #8fddea;
  border-radius: 8px;
  background: #e9fbfe;
  color: #006b82;
  font-size: .62rem;
  font-weight: 950;
}
.stat strong { font-size: 1.06rem; }
.stat span { margin-top: 4px; color: #496676; font-size: .79rem; }

/* Reduce excess space across every page. */
.section { padding: 40px 0 !important; }
.section-sm { padding: 26px 0 !important; }
.section-heading { margin-bottom: 19px; }
.section-mist + .section-mist { padding-top: 12px !important; }
.stat-strip + .section { padding-top: 43px !important; }
.grid { gap: 16px; }
.grid-2.process { gap: 14px; }
.content-layout { gap: 32px; }
.prose h2 { margin-top: 1.05em; }
.prose h3 { margin-top: 1.08em; }
.faq-list { gap: 8px; }
.faq-list summary { padding-top: 15px; padding-bottom: 15px; }

/* Page heroes are compact and show the complete machine. */
.page-hero {
  padding: 35px 0 38px !important;
  background:
    radial-gradient(circle at 92% 14%, rgba(40,199,223,.23), transparent 28%),
    linear-gradient(125deg, #04131e 0%, #0a3045 60%, #0c5369 100%);
}
.page-hero-grid { gap: clamp(24px, 3.5vw, 42px); }
.page-hero h1 {
  font-size: clamp(2.2rem, 4.1vw, 3.72rem);
  line-height: 1.04;
  text-wrap: balance;
}
.page-hero .lead { color: #e5eff4; }
.page-hero-media {
  min-height: 0 !important;
  max-height: 430px;
  padding: 9px !important;
  border-radius: 18px;
  background: #fff;
}
.page-hero-media img,
.page-hero-media video {
  width: 100% !important;
  height: auto !important;
  max-height: min(400px, 45vh) !important;
  object-fit: contain !important;
  object-position: 50% 8% !important;
}
.breadcrumbs { padding: 9px 0; }

/* Machinery images: always contain the complete machine and favour its top edge. */
.card-media {
  min-height: 0 !important;
  aspect-ratio: 4 / 3 !important;
  padding: 10px !important;
  background: linear-gradient(145deg, #fff 0%, #edf5f8 100%);
}
.card-media img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: 50% 8% !important;
}
.split-media { min-height: 0 !important; padding: 10px !important; }
.split-media img {
  width: 100% !important;
  height: auto !important;
  max-height: min(455px, 55vh) !important;
  object-fit: contain !important;
  object-position: 50% 8% !important;
}
.split-media.video-embed { padding: 0 !important; aspect-ratio: 16 / 9; background: #02080c; }
main img:not(.footer-source-logo) { object-fit: contain !important; object-position: 50% 8% !important; }

/* Stronger cards and process steps without visual clutter. */
.card {
  border-color: #c5d6df;
  border-radius: 15px;
  box-shadow: var(--shadow-soft);
}
.card::before { height: 3px; background: var(--electric) !important; }
.card-body { padding: 19px; }
.card:hover { transform: translateY(-3px); }
.card-tag {
  background: #e7faff;
  color: #00677d;
  border: 1px solid #a8e7f0;
}
.icon-card { padding: 20px; border-radius: 15px; }
.icon-card .icon {
  border-color: #9de4ee;
  background: #e6faff;
  color: #006a82;
}
.icon-card::after { background: linear-gradient(135deg, transparent 35%, rgba(40,199,223,.12)); }
.process-step { padding-top: 18px; padding-bottom: 18px; }
.process-step::before {
  border: 2px solid #63d9e9;
  background: #082b3d;
  color: #fff;
}

/* Explicit contrast on every common background. */
.hero,
.page-hero,
.section-dark,
.cta-band,
.site-footer { color: #fff !important; }
.hero :is(h1,h2,h3,h4,p,li),
.page-hero :is(h1,h2,h3,h4,p,li),
.section-dark :is(h1,h2,h3,h4,p,li),
.cta-band :is(h1,h2,h3,h4,p,li) { color: #fff; }
.hero .lead,
.page-hero .lead,
.section-dark p,
.section-dark li,
.cta-band p { color: #dcecf3 !important; }
.section-mist,
.card,
.icon-card,
.process-step,
.quote-panel,
.network-group,
.faq-list details,
.callout,
.spec-wrap { color: var(--ink) !important; }
.section-mist :is(h1,h2,h3,h4),
.card :is(h1,h2,h3,h4),
.icon-card :is(h1,h2,h3,h4),
.quote-panel :is(h1,h2,h3,h4) { color: var(--ink) !important; }
.card p, .card li, .icon-card p, .process-step p,
.section-mist p, .section-mist li { color: #355568 !important; }
.form-field label { color: #06141f !important; }
.form-field input,
.form-field textarea,
.form-field select {
  border-color: #8fa9b8;
  background: #fff !important;
  color: #06141f !important;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #5f7786; opacity: 1; }

/* Distinctive but restrained calls to action. */
.btn { border-radius: 9px; }
.btn-primary {
  border-color: #ffc229;
  background: linear-gradient(135deg, #ffd34f, #ffb900);
  color: #07131d !important;
  box-shadow: 0 9px 24px rgba(255,185,0,.22);
}
.btn-primary:hover { background: linear-gradient(135deg, #ffe58a, #ffc42d); color: #07131d !important; }
.btn-outline { border-color: #0b6f88; color: #075e75; }
.hero .btn-outline,
.page-hero .btn-outline,
.section-dark .btn-outline { border-color: rgba(255,255,255,.7); color: #fff; }
.cta-band {
  padding: 31px 0;
  border-top: 3px solid var(--electric);
  background: linear-gradient(120deg, #051722 0%, #0b3e55 100%);
}
.cta-inner { gap: 26px; }
.quote-panel { gap: 23px; padding: 23px; }
.quote-panel-info { padding-right: 18px; }

.site-footer { padding-top: 38px; background: #020b11; }
.footer-grid { gap: 28px; padding-bottom: 31px; }
.site-footer p, .site-footer li, .site-footer address { color: #c4d4de !important; }
.site-footer a { color: #e8f3f7; }
.site-footer a:hover { color: #89e7f2; }
.footer-bottom .container { padding-top: 14px; padding-bottom: 14px; }

/* Keyboard visibility. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #55d7e8;
  outline-offset: 3px;
}

@media (min-width: 901px) and (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0,1fr) minmax(350px,.82fr) !important;
    gap: 24px;
  }
  .hero h1 { font-size: clamp(2.4rem, 4.7vw, 3.65rem); }
  .hero-video-card { max-width: 520px; }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    min-height: 0;
    padding: 32px 0 39px;
  }
  .hero-video-card { justify-self: start; max-width: 720px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-media { width: min(100%, 720px); }
}

@media (max-width: 720px) {
  :root { --header-height: 66px; }
  body { font-size: 16px; }
  .section { padding: 31px 0 !important; }
  .section-sm { padding: 22px 0 !important; }
  .stat-strip + .section { padding-top: 34px !important; }
  .section-mist + .section-mist { padding-top: 8px !important; }
  .brand { gap: 8px; }
  .brand-symbol { width: 42px; height: 42px; border-radius: 12px; }
  .brand-symbol::before { inset: 5px; }
  .brand-symbol > span { font-size: .84rem; }
  .brand-main { font-size: .88rem; }
  .brand-sub { font-size: .45rem; letter-spacing: .11em; }
  .hero-grid { gap: 22px; padding: 27px 0 34px; }
  .hero h1 { font-size: clamp(2.16rem, 10.7vw, 3.12rem); }
  .hero-actions { margin-top: 17px; }
  .hero-points { margin-top: 17px; }
  .hero-video-card { border-radius: 16px; }
  .video-badge { top: 9px; left: 9px; font-size: .56rem; }
  .hero-video-caption { grid-template-columns: 1fr; gap: 6px; padding: 12px 14px 14px; }
  .video-link { white-space: normal; }
  .stat-strip { margin-top: -14px; }
  .stat { min-height: 89px; padding: 15px 12px 14px 45px; }
  .stat::before { left: 13px; top: 16px; }
  .page-hero { padding: 29px 0 31px !important; }
  .page-hero-grid { gap: 20px; }
  .page-hero-media { max-height: 350px; padding: 7px !important; }
  .page-hero-media img { max-height: 332px !important; }
  .card-media { padding: 8px !important; }
  .card-body { padding: 17px; }
  .quote-panel { padding: 18px 14px; }
  .cta-band { padding: 27px 0; }
  .footer-grid { gap: 24px; padding-bottom: 26px; }
}

@media (max-width: 430px) {
  .brand-main { font-size: .80rem; }
  .brand-sub { max-width: 190px; }
  .topbar-links span { font-size: .71rem; }
  .stat-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .stat:last-child { border-bottom: 0 !important; }
}


.hero h1 {
  font-size: clamp(2.42rem, 4vw, 3.65rem) !important;
  max-width: 720px;
}
.hero-video-caption strong,
.hero-video-caption span { display: block; }
.hero-video-caption strong { margin-bottom: 3px; }
.hero-video-caption > div { min-width: 0; }
.section-heading.center { max-width: 780px; }
.section-heading h2 { font-size: clamp(1.82rem, 3.05vw, 2.62rem); }
.section-heading > p:last-child { font-size: .97rem; line-height: 1.5; }
.card-media {
  aspect-ratio: 16 / 10 !important;
  min-height: 220px !important;
}
.card h3 { font-size: clamp(1.16rem, 1.6vw, 1.38rem); }
.card p { margin-bottom: .72em; font-size: .92rem; line-height: 1.48; }
.card-list { margin-bottom: 13px; font-size: .84rem; line-height: 1.42; }
.card-list li { margin: 2px 0; }
.card-link { font-size: .89rem; }
.card-body { padding: 17px 18px 18px; }
@media (min-width: 901px) {
  .hero-grid { min-height: min(585px, calc(100svh - 109px)); }
}
@media (max-width: 720px) {
  .hero h1 { font-size: clamp(2rem, 9.3vw, 2.72rem) !important; }
  .hero .lead { font-size: .98rem; line-height: 1.5; }
  .hero-points { display: none !important; }
  .hero-video-caption span { display: none; }
  .card-media { min-height: 205px !important; }
}




.hero-video-background {
  position: relative;
  isolation: isolate;
  min-height: min(650px, calc(100svh - 109px));
  overflow: hidden;
  background: #03111b;
}
.hero-background-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #03111b;
  pointer-events: none;
}
.hero-background-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  min-width: 100%;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
  object-position: center;
}
.hero-video-background::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(2,12,20,.92) 0%, rgba(4,24,36,.82) 46%, rgba(3,20,30,.48) 100%);
  pointer-events: none;
}
.hero-video-background::after {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.28));
  pointer-events: none;
}
.hero-video-background .hero-grid {
  grid-template-columns: minmax(0, 760px) !important;
  justify-content: start;
  min-height: min(650px, calc(100svh - 109px));
  padding-top: 48px;
  padding-bottom: 58px;
}
.hero-video-background .hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.card-media, .split-media, .page-hero-media {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
.card-media img, .split-media img, .page-hero-media img, main img:not(.footer-source-logo) {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}
@media (max-width: 900px) {
  .hero-video-background,
  .hero-video-background .hero-grid { min-height: 590px; }
  .hero-video-background::before { background: rgba(2,14,22,.78); }
}
@media (max-width: 720px) {
  .hero-video-background,
  .hero-video-background .hero-grid { min-height: 620px; }
  .hero-video-background .hero-grid { padding-top: 38px; padding-bottom: 42px; }
}


.card-media {
  height: 260px !important;
  min-height: 260px !important;
  aspect-ratio: auto !important;
  padding: 12px !important;
  box-sizing: border-box !important;
  background: #f7fbfd !important;
}
.card-media img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 !important;
}
@media (max-width: 720px) {
  .card-media {
    height: 220px !important;
    min-height: 220px !important;
    padding: 10px !important;
  }
}



.card-media {
  height: 280px !important;
  min-height: 280px !important;
  aspect-ratio: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 18px !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  background: #f7fbfd !important;
}
.card-media img {
  position: static !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  transform: none !important;
}
@media (max-width: 720px) {
  .card-media {
    height: 230px !important;
    min-height: 230px !important;
    padding: 14px !important;
  }
  .card-media img {
    max-width: 94% !important;
    max-height: 94% !important;
  }
}


:root {
  --max: 1240px;
  --shadow-soft: 0 10px 30px rgba(4,21,34,.075);
  --shadow: 0 20px 55px rgba(4,21,34,.14);
}
body { background: #fff; }
.container { width: min(calc(100% - 48px), var(--max)); }
.section { padding: 64px 0; }
.section-sm { padding: 42px 0; }
.section-heading { margin-bottom: 30px; }
.section-heading h2 { text-wrap: balance; }

.site-header { box-shadow: 0 7px 22px rgba(0,0,0,.11); }
.header-inner { min-height: 76px; }
.main-nav > a, .nav-group > summary { padding-inline: 13px; }
.header-cta { border-radius: 10px !important; padding-inline: 18px !important; }
.nav-menu { box-shadow: 0 20px 50px rgba(2,14,23,.20); }

.hero-video-background::before {
  background: linear-gradient(90deg, rgba(2,12,20,.94) 0%, rgba(4,24,36,.84) 48%, rgba(3,20,30,.42) 100%);
}
.hero-video-background .hero-grid { min-height: min(625px, calc(100svh - 109px)); }
.hero-copy { padding: 8px 0; }
.hero h1 { text-wrap: balance; letter-spacing: -.038em; }
.hero .lead { max-width: 675px; }
.hero-actions .btn { min-height: 50px; }

.page-hero { padding: 54px 0 56px !important; }
.page-hero h1 { max-width: 760px; }
.page-hero-media { border-radius: 20px; box-shadow: 0 18px 50px rgba(0,0,0,.20); }

.grid { gap: 22px; align-items: stretch; }
.card {
  height: 100%;
  border: 1px solid #ccdae3;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(4,21,34,.065);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(4,21,34,.12); }
.card-media {
  height: 245px !important;
  min-height: 245px !important;
  padding: 18px !important;
  background: linear-gradient(180deg,#fbfdfe 0%,#f1f7fa 100%) !important;
  border-bottom: 1px solid #d5e1e8;
}
.card-media img {
  width: auto !important;
  height: auto !important;
  max-width: 94% !important;
  max-height: 94% !important;
  object-fit: contain !important;
}
.card-body { display: flex; flex-direction: column; padding: 21px 21px 22px; }
.card h3 { margin-bottom: 10px; line-height: 1.16; }
.card p { font-size: .94rem; line-height: 1.52; }
.card-list { margin-top: 2px; }
.card-link { margin-top: auto; padding-top: 5px; }
.card-tag { margin-bottom: 13px; border: 1px solid #9edce8; background: #ecfbfe; color: #075d73; }

.icon-card, .callout, .quote-panel, .spec-wrap {
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(4,21,34,.065);
}
.btn { font-weight: 800; letter-spacing: -.01em; box-shadow: none; }
.btn-primary { box-shadow: 0 8px 22px rgba(255,190,0,.20); }

.site-footer { border-top: 4px solid var(--electric); }
.footer-grid { padding-top: 49px; }
.footer-bottom { background: rgba(0,0,0,.12); }

@media (max-width: 900px) {
  .container { width: min(calc(100% - 34px), var(--max)); }
  .section { padding: 50px 0; }
  .card-media { height: 235px !important; min-height: 235px !important; }
}
@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 38px 0 !important; }
  .section-sm { padding: 28px 0 !important; }
  .page-hero { padding: 34px 0 38px !important; }
  .card-media { height: 220px !important; min-height: 220px !important; padding: 13px !important; }
  .card-body { padding: 18px; }
  .grid { gap: 17px; }
}

/* Customer-facing presentation, contrast and form protection refinements. */
:root {
  --focus: #74e6f4;
  --hero-panel: rgba(3, 18, 29, .88);
}

/* A single, crisp wordmark replaces the pieced-together header text. */
.brand {
  min-width: 0 !important;
  width: min(330px, 34vw);
  max-width: 330px;
  padding: 4px 0;
  gap: 0 !important;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand .brand {
  width: min(340px, 100%);
  max-width: 340px;
}
.footer-brand .brand-logo { max-height: 68px; }

/* Keep every hero message legible over moving imagery. */
.hero-video-background::before {
  background:
    linear-gradient(90deg, rgba(1, 10, 17, .97) 0%, rgba(3, 20, 31, .91) 49%, rgba(3, 19, 29, .68) 75%, rgba(3, 18, 27, .52) 100%) !important;
}
.hero-video-background::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .38) 100%) !important;
}
.hero-video-background .hero-copy {
  max-width: 745px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(130, 229, 242, .28);
  border-left: 4px solid var(--electric);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--hero-panel), rgba(5, 31, 45, .76));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.hero-video-background :is(h1, .lead, li, .eyebrow) {
  text-shadow: 0 2px 10px rgba(0, 0, 0, .72);
}
.hero-video-background .hero .lead,
.hero-video-background .lead { color: #f2f8fb !important; }
.hero-video-background .eyebrow {
  color: #c8f8fd !important;
  border-left-color: #65e4f2 !important;
}
.hero-video-background .hero-points { color: #f4f9fb !important; }
.hero-video-background .btn-outline {
  border-color: rgba(255, 255, 255, .84) !important;
  background: rgba(2, 16, 25, .42);
}
.hero-video-background .btn-outline:hover {
  background: #fff;
  color: #06141f !important;
}
.page-hero :is(h1, .lead, .eyebrow),
.section-dark :is(h2, h3, p, li) {
  text-shadow: 0 1px 6px rgba(0, 0, 0, .28);
}

/* Cleaner focus states and stronger form readability. */
:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.form-field input,
.form-field textarea,
.form-field select {
  color: #06141f;
  background: #fff;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #5e7482; opacity: 1; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #087b95;
  box-shadow: 0 0 0 4px rgba(40, 199, 223, .16);
}
.form-security-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 2px 0 0;
  color: #496473;
  font-size: .78rem;
  line-height: 1.45;
}
.form-security-note::before {
  content: "✓";
  display: grid;
  place-items: center;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #e6f8f0;
  color: #0b6a45;
  font-weight: 900;
}
.form-status.error { border-color: #d98c87; background: #fff2f1; color: #7d211d; }

/* Professional, benefit-led supporting treatments. */
.customer-promise {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #d9ebf3;
  font-size: .84rem;
  font-weight: 700;
}
.customer-promise::before { content: "✓"; color: var(--accent-2); font-weight: 950; }
.card-body > p { color: #294a5d; }
.card-link::after { content: " →"; }
.quote-panel-info h2 { text-wrap: balance; }

@media (max-width: 1080px) {
  .brand { width: min(300px, 48vw); }
}
@media (max-width: 720px) {
  .brand { width: min(245px, 72vw); }
  .brand-logo { max-height: 54px; }
  .hero-video-background::before { background: rgba(1, 12, 20, .84) !important; }
  .hero-video-background .hero-copy {
    padding: 22px 19px;
    border-radius: 15px;
    background: rgba(2, 17, 27, .90);
  }
}
@media (max-width: 430px) {
  .brand { width: min(215px, 71vw); }
  .brand-logo { max-height: 49px; }
}
