:root {
  --ink: #0b2634;
  --ink-2: #123a49;
  --teal: #0d686b;
  --teal-dark: #074d50;
  --accent: #ef7d42;
  --accent-dark: #c95d28;
  --cream: #f4f0e7;
  --cream-2: #ebe5d9;
  --paper: #fffdf9;
  --white: #ffffff;
  --text: #26383f;
  --muted: #64747a;
  --line: #d7ddd9;
  --line-dark: rgba(255, 255, 255, 0.17);
  --success: #2c7556;
  --shadow-sm: 0 8px 24px rgba(11, 38, 52, 0.08);
  --shadow-md: 0 22px 55px rgba(11, 38, 52, 0.14);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --max: 1220px;
  --header-offset: 112px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 0.17em; }
a:hover { color: var(--accent-dark); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
h1, h2, h3, p, ul, ol, dl, figure { margin-top: 0; }
h1, h2, h3 {
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.55rem, 6vw, 5.35rem); margin-bottom: 1.35rem; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); margin-bottom: 1.2rem; }
h3 { font-size: clamp(1.22rem, 2vw, 1.55rem); margin-bottom: 0.7rem; }
p { margin-bottom: 1.15rem; }
::selection { background: var(--accent); color: var(--ink); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; }
.section-soft { background: var(--cream); }
.section-dark {
  color: rgba(255, 255, 255, 0.8);
  background:
    linear-gradient(135deg, rgba(13, 104, 107, 0.2), transparent 55%),
    var(--ink);
  position: relative;
  overflow: hidden;
}
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 42px 42px;
  mask-image: linear-gradient(to right, transparent, #000 35%, #000);
}
.section-dark > .container { position: relative; z-index: 1; }
.section-dark h2, .section-dark h3 { color: var(--white); }
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 9999;
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 5px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: #9ad7d4; }
.large-copy { font-size: clamp(1.18rem, 2vw, 1.42rem); line-height: 1.55; color: var(--ink-2); }
.prose { max-width: 760px; }
.prose p { font-size: 1.08rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--teal-dark);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link-light { color: var(--white); }
.text-link-light:hover { color: #ffd0b8; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.button-primary:hover { color: var(--white); background: var(--accent-dark); border-color: var(--accent-dark); }
.button-secondary { color: var(--white); background: var(--teal); border-color: var(--teal); }
.button-secondary:hover { color: var(--white); background: var(--teal-dark); }
.button-ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.48); }
.button-ghost:hover { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.button-outline:hover { color: var(--white); background: var(--ink); }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-light:hover { color: var(--white); background: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.97);
  border-bottom: 1px solid rgba(11, 38, 52, 0.09);
  backdrop-filter: blur(14px);
}
.utility-bar { color: rgba(255,255,255,.77); background: var(--ink); font-size: 0.75rem; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner p { margin: 0; letter-spacing: .04em; }
.utility-links { display: flex; gap: 22px; }
.utility-links a { color: var(--white); text-decoration: none; font-weight: 700; }
.nav-row { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; line-height: 1; }
.brand:hover { color: var(--ink); }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1.03rem; letter-spacing: -0.02em; }
.brand small { margin-top: 4px; color: var(--teal); font-size: .67rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.brand-mark { width: 42px; height: 42px; position: relative; display: inline-block; border-radius: 6px; background: var(--ink); overflow: hidden; }
.brand-mark span { position: absolute; display: block; background: var(--white); border-radius: 1px; }
.brand-mark span:nth-child(1) { width: 8px; height: 24px; left: 10px; top: 9px; }
.brand-mark span:nth-child(2) { width: 17px; height: 8px; left: 15px; top: 9px; }
.brand-mark span:nth-child(3) { width: 7px; height: 7px; right: 5px; top: 5px; background: var(--accent); }
.primary-nav { display: flex; align-items: center; gap: 25px; }
.primary-nav > a { color: var(--ink); font-size: .86rem; font-weight: 750; text-decoration: none; white-space: nowrap; }
.primary-nav > a:not(.nav-cta) { padding: 27px 0 23px; border-bottom: 3px solid transparent; }
.primary-nav > a:not(.nav-cta):hover, .primary-nav > a[aria-current="page"] { color: var(--teal); border-color: var(--accent); }
.primary-nav .nav-cta { padding: 12px 16px; color: var(--white); background: var(--teal); border-radius: 5px; }
.primary-nav .nav-cta:hover { color: var(--white); background: var(--teal-dark); }
.menu-toggle { display: none; width: 48px; height: 44px; border: 1px solid var(--line); background: var(--white); border-radius: 5px; }
.menu-toggle i { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }

.breadcrumbs { min-height: 52px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: .78rem; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--teal); }

.hero, .page-hero, .product-hero, .application-hero, .article-hero, .contact-hero, .not-found {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.8);
  background:
    radial-gradient(circle at 85% 20%, rgba(13,104,107,.58), transparent 35%),
    radial-gradient(circle at 12% 95%, rgba(239,125,66,.18), transparent 33%),
    var(--ink);
}
.hero::before, .page-hero::before, .product-hero::before, .application-hero::before, .article-hero::before, .contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  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: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}
.hero h1, .page-hero h1, .product-hero h1, .application-hero h1, .article-hero h1, .contact-hero h1, .not-found h1 { color: var(--white); }
.hero-home { padding: clamp(80px, 10vw, 145px) 0; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(45px, 7vw, 90px); }
.hero-copy { max-width: 720px; }
.hero-copy h1 { max-width: 700px; }
.hero-lead { max-width: 760px; font-size: clamp(1.13rem, 2vw, 1.36rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 13px 26px; margin: 30px 0 0; padding: 0; list-style: none; font-size: .82rem; font-weight: 700; }
.hero-proof li::before { content: "✓"; margin-right: 8px; color: #88d5c2; }
.hero-media { position: relative; min-width: 0; }
.hero-image-wrap { position: relative; min-height: 470px; padding: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); }
.hero-image-wrap img { width: 100%; height: 100%; min-height: 435px; object-fit: cover; background: #dbe2df; border-radius: calc(var(--radius-lg) - 10px); }
.hero-image-note { position: absolute; left: 34px; bottom: 33px; padding: 10px 14px; color: var(--white); background: rgba(11,38,52,.88); border-left: 3px solid var(--accent); font-size: .78rem; font-weight: 800; }
.hero-contact-card { position: absolute; right: -24px; bottom: -30px; min-width: 250px; padding: 19px 22px; color: var(--ink); background: var(--white); box-shadow: var(--shadow-md); border-radius: var(--radius); }
.hero-contact-card span, .hero-contact-card small { display: block; }
.hero-contact-card span { color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.hero-contact-card a { display: block; margin: 3px 0 1px; color: var(--ink); font-size: 1.42rem; font-weight: 850; text-decoration: none; }
.hero-contact-card small { color: var(--muted); }

.trust-strip { color: var(--white); background: var(--teal-dark); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 105px; padding: 23px 25px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { color: #a4dfd6; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; }
.trust-grid span { margin-top: 7px; font-size: .9rem; line-height: 1.4; }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 8vw, 110px); align-items: start; }
.intro-grid h2 { max-width: 590px; }
.section-heading, .split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.section-heading > :last-child, .split-heading > :last-child { max-width: 570px; justify-self: end; }
.section-heading p:last-child, .split-heading p:last-child { margin-bottom: 0; }
.section-heading-light h2 { color: var(--white); }

.selector-section { padding: 84px 0; }
.selector-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 70px; align-items: center; }
.selector-grid > div > p:last-child { max-width: 620px; }
.selector-card { padding: 34px; color: var(--text); background: var(--white); box-shadow: var(--shadow-md); border-radius: var(--radius); }
.selector-card label { display: block; margin-bottom: 10px; color: var(--ink); font-weight: 800; }
.selector-card select { width: 100%; min-height: 52px; margin-bottom: 14px; padding: 0 42px 0 14px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 5px; }
.selector-card .button { width: 100%; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .82rem; text-align: center; }

.machine-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; }
.machine-card { display: grid; grid-template-columns: minmax(220px, .78fr) 1.22fr; min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.machine-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-image { position: relative; min-height: 100%; background: #dfe5e2; overflow: hidden; }
.card-image img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .45s ease; }
.machine-card:hover .card-image img { transform: scale(1.035); }
.image-label { position: absolute; left: 13px; top: 13px; padding: 6px 9px; color: var(--white); background: rgba(11,38,52,.88); border-radius: 3px; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.card-body { padding: 28px; }
.card-kicker { margin-bottom: .55rem; color: var(--teal); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.card-body h3 a, .application-card h3 a, .guide-card h3 a, .video-card h3 a { color: var(--ink); text-decoration: none; }
.card-body > p:not(.card-kicker) { color: var(--muted); font-size: .92rem; }
.card-specs { margin: 22px 0; padding: 14px 0; border-block: 1px solid var(--line); }
.card-specs > div { display: grid; grid-template-columns: 78px 1fr; gap: 10px; padding: 6px 0; font-size: .76rem; line-height: 1.4; }
.card-specs dt { color: var(--muted); font-weight: 700; }
.card-specs dd { margin: 0; color: var(--ink); font-weight: 750; }
.related-grid .machine-card { grid-template-columns: 1fr; }
.related-grid .card-image { min-height: 230px; }
.related-grid .card-image img { min-height: 230px; max-height: 280px; }
.related-grid { grid-template-columns: repeat(3, 1fr); }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.process-grid article { min-height: 245px; padding: 28px 24px; background: var(--white); }
.process-grid article > span { display: block; margin-bottom: 45px; color: var(--accent-dark); font-size: .74rem; font-weight: 850; letter-spacing: .12em; }
.process-grid h3 { font-size: 1.2rem; }
.process-grid p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }

.application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.application-grid-all { margin-top: 60px; }
.application-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.application-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.application-image { display: block; min-height: 260px; background: #dfe5e2; overflow: hidden; }
.application-image img { width: 100%; height: 270px; object-fit: cover; transition: transform .45s ease; }
.application-card:hover img { transform: scale(1.035); }
.application-card > div { padding: 27px; }
.application-card > div > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }

.media-feature { color: rgba(255,255,255,.8); background: var(--ink-2); }
.media-feature h2 { color: var(--white); }
.media-feature-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 60px; align-items: center; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-grid-two { gap: 18px; }
.video-card { min-width: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.video-card > div { padding: 25px; }
.video-card > div > p:not(.card-kicker) { color: var(--muted); font-size: .9rem; }
.video-visual { position: relative; display: block; min-height: 250px; background: #dfe5e2; overflow: hidden; }
.video-visual img { width: 100%; height: 265px; object-fit: cover; transition: transform .4s ease, filter .4s ease; }
.video-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,38,52,.5), transparent 65%); }
.video-visual:hover img { transform: scale(1.035); filter: saturate(.85); }
.play-button { position: absolute; z-index: 2; left: 50%; top: 50%; width: 68px; height: 68px; display: grid; place-items: center; color: var(--ink); background: var(--accent); border: 6px solid rgba(255,255,255,.27); border-radius: 50%; transform: translate(-50%, -50%); font-size: 1.25rem; box-shadow: var(--shadow-md); }
.video-tag { position: absolute; z-index: 2; left: 15px; bottom: 15px; padding: 6px 9px; color: var(--white); background: rgba(11,38,52,.82); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-grid-all { grid-template-columns: repeat(2, 1fr); }
.guide-grid-two { grid-template-columns: repeat(2, 1fr); }
.guide-card { min-height: 310px; display: flex; flex-direction: column; justify-content: space-between; padding: 32px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--teal); border-radius: var(--radius-sm); transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease; }
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--accent); }
.guide-card > div > p:not(.eyebrow) { color: var(--muted); font-size: .92rem; }
.guide-meta { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.guide-meta > span { color: var(--muted); font-size: .74rem; }

.contact-location { border-top: 1px solid var(--line); }
.location-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: center; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.address-card { padding: 36px; color: var(--white); background: var(--ink); border-left: 5px solid var(--accent); box-shadow: var(--shadow-md); border-radius: 0 var(--radius) var(--radius) 0; font-size: 1.05rem; }
.address-card span, .address-card strong { display: block; }
.address-card span { margin-bottom: 18px; color: #9fdad5; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.address-card strong { margin-bottom: 7px; font-size: 1.32rem; }

.faq-list { max-width: 940px; }
.faq-list details { border-top: 1px solid #cfd7d2; }
.faq-list details:last-child { border-bottom: 1px solid #cfd7d2; }
.faq-list summary { position: relative; padding: 24px 54px 24px 0; color: var(--ink); font-size: 1.02rem; font-weight: 800; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: absolute; right: 5px; top: 20px; width: 31px; height: 31px; display: grid; place-items: center; color: var(--white); background: var(--teal); border-radius: 50%; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--accent-dark); }
.faq-list details > div { max-width: 820px; padding: 0 50px 22px 0; color: var(--muted); }

.cta-band { padding: 58px 0; color: rgba(255,255,255,.82); background: var(--teal-dark); }
.cta-band h2 { color: var(--white); font-size: clamp(1.85rem, 3vw, 2.75rem); }
.cta-band p { margin-bottom: 0; }
.cta-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 45px; align-items: center; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 22px; }

.site-footer { padding: 76px 0 0; color: rgba(255,255,255,.7); background: #071d27; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr .9fr; gap: 55px; padding-bottom: 62px; }
.brand-inverse { color: var(--white); }
.brand-inverse:hover { color: var(--white); }
.brand-inverse small { color: #99d8d3; }
.footer-brand > p { max-width: 390px; margin: 25px 0 0; font-size: .9rem; }
.footer-brand .company-line { color: rgba(255,255,255,.9); }
.site-footer h2 { margin-bottom: 20px; color: var(--white); font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 10px 0; }
.site-footer a { color: rgba(255,255,255,.72); font-size: .86rem; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-contact address { margin-bottom: 17px; font-size: .88rem; line-height: 1.75; }
.footer-contact address strong { color: var(--white); }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 25px; border-top: 1px solid rgba(255,255,255,.12); font-size: .76rem; }
.footer-bottom p { margin: 0; }
.footer-bottom > div { display: flex; gap: 20px; }
.mobile-contact-bar { display: none; }

.page-hero { padding: clamp(65px, 8vw, 105px) 0; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .77fr; gap: 70px; align-items: center; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 4.65rem); }
.page-hero p { max-width: 760px; font-size: 1.14rem; }
.page-hero-image { position: relative; padding: 14px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); }
.page-hero-image img { width: 100%; height: 430px; object-fit: cover; background: #dfe5e2; border-radius: calc(var(--radius-lg) - 8px); }
.page-hero-image > span:not(.play-button) { position: absolute; right: 27px; bottom: 27px; padding: 9px 12px; color: var(--white); background: rgba(11,38,52,.86); border-right: 3px solid var(--accent); font-size: .72rem; font-weight: 800; letter-spacing: .06em; }
.video-hero-image .play-button-large { width: 88px; height: 88px; font-size: 1.5rem; }

.table-wrap { overflow-x: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
table { width: 100%; border-collapse: collapse; }
.compare-table { min-width: 930px; }
th, td { padding: 18px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
thead th { color: var(--white); background: var(--ink); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
tbody th { color: var(--ink); font-weight: 800; }
tbody td { color: var(--muted); font-size: .88rem; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover { background: #fbfaf6; }
.compare-table a { color: var(--ink); text-decoration: none; }
.compare-table a:hover { color: var(--teal); }

.decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.decision-grid article { min-height: 340px; padding: 35px; background: var(--cream); border-top: 4px solid var(--teal); }
.decision-grid article > span { display: block; margin-bottom: 52px; color: var(--accent-dark); font-weight: 850; }
.decision-grid p { color: var(--muted); }

.product-hero { padding: clamp(65px, 8vw, 108px) 0; }
.product-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .9fr; gap: 70px; align-items: center; }
.product-hero h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); }
.product-copy { max-width: 720px; }
.hero-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 32px 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.hero-specs > div { padding: 15px 20px 15px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.hero-specs > div:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.2); }
.hero-specs > div:nth-child(even) { padding-left: 20px; }
.hero-specs dt { color: #9ed9d4; font-size: .69rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-specs dd { margin: 4px 0 0; color: var(--white); font-size: .88rem; line-height: 1.45; }
.product-image { position: relative; padding: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-lg); }
.product-image img { width: 100%; height: 530px; object-fit: cover; background: #dfe5e2; border-radius: calc(var(--radius-lg) - 9px); }
.product-image-meta { position: absolute; right: -18px; bottom: 38px; min-width: 180px; padding: 16px 20px; color: var(--ink); background: var(--white); box-shadow: var(--shadow-md); border-left: 4px solid var(--accent); }
.product-image-meta span, .product-image-meta strong { display: block; }
.product-image-meta span { color: var(--muted); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-image-meta strong { margin-top: 2px; font-size: 1.1rem; }

.two-col { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(50px, 8vw, 105px); align-items: start; }
.feature-panel { padding: 36px; background: var(--cream); border-top: 5px solid var(--teal); border-radius: 0 0 var(--radius) var(--radius); }
.feature-panel h2 { font-size: 1.45rem; }
.check-list { margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 38px; border-top: 1px solid #d4d8d2; font-size: .92rem; }
.check-list li span { position: absolute; left: 0; top: 15px; width: 24px; height: 24px; display: grid; place-items: center; color: var(--white); background: var(--teal); border-radius: 50%; font-size: .7rem; }

.spec-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 65px; align-items: start; }
.notice { margin-top: 28px; padding: 20px 22px; background: #fff7ed; border-left: 4px solid var(--accent); }
.notice strong { display: block; color: var(--ink); }
.notice p { margin: 4px 0 0; color: var(--muted); font-size: .84rem; }
.spec-table th { width: 42%; color: var(--ink); background: transparent; font-size: .83rem; letter-spacing: 0; text-transform: none; }
.spec-table td { color: var(--text); font-size: .86rem; }

.requirement-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.requirement-grid article { min-height: 245px; padding: 28px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); }
.requirement-grid span { display: block; margin-bottom: 42px; color: var(--accent); font-size: .72rem; font-weight: 850; letter-spacing: .12em; }
.requirement-grid p { margin: 0; font-size: .87rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-grid.gallery-3 figure:first-child, .gallery-grid.gallery-4 figure:first-child { grid-column: span 2; }
.gallery-grid figure { margin: 0; background: var(--cream); border-radius: var(--radius); overflow: hidden; }
.gallery-grid a { display: block; background: #dfe5e2; overflow: hidden; }
.gallery-grid img { width: 100%; height: 400px; object-fit: cover; transition: transform .4s ease; }
.gallery-grid figure:first-child img { height: 560px; }
.gallery-grid a:hover img { transform: scale(1.025); }
.gallery-grid figcaption { padding: 12px 16px; color: var(--muted); font-size: .72rem; }

.application-hero { padding: clamp(65px, 8vw, 110px) 0; }
.application-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .85fr; gap: 75px; align-items: center; }
.application-hero h1 { font-size: clamp(2.55rem, 5vw, 4.75rem); }
.application-hero-image { padding: 15px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 50% 50% var(--radius-lg) var(--radius-lg); overflow: hidden; }
.application-hero-image img { width: 100%; height: 510px; object-fit: cover; background: #dfe5e2; border-radius: 50% 50% calc(var(--radius-lg) - 8px) calc(var(--radius-lg) - 8px); }
.info-banner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.info-banner ul { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 28px; margin: 0; padding: 0; list-style: none; }
.info-banner li { position: relative; padding: 14px 0 14px 32px; border-top: 1px solid rgba(255,255,255,.16); }
.info-banner li::before { content: "✓"; position: absolute; left: 2px; color: var(--accent); font-weight: 900; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.values-grid article { min-height: 270px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-bottom: 4px solid var(--teal); }
.values-grid span { display: block; margin-bottom: 45px; color: var(--accent-dark); font-weight: 850; }
.values-grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { min-height: 310px; padding: 34px; background: var(--cream); border-top: 4px solid var(--teal); }
.service-card span { display: block; margin-bottom: 55px; color: var(--accent-dark); font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.service-card p { margin: 0; color: var(--muted); }
.project-roadmap { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }
.project-roadmap ol, .learning-path ol { margin: 0; padding: 0; list-style: none; }
.project-roadmap li, .learning-path li { display: grid; grid-template-columns: 60px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid #cfd7d2; }
.project-roadmap li:last-child, .learning-path li:last-child { border-bottom: 1px solid #cfd7d2; }
.project-roadmap li > span, .learning-path li > span { color: var(--accent-dark); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.project-roadmap h3, .learning-path h3 { margin-bottom: 5px; }
.project-roadmap p, .learning-path p { margin: 0; color: var(--muted); font-size: .88rem; }
.learning-path { display: grid; grid-template-columns: .75fr 1.25fr; gap: 75px; align-items: start; }
.learning-path h3 a { color: var(--ink); text-decoration: none; }

.article-hero { padding: clamp(75px, 10vw, 130px) 0; }
.article-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr .45fr; gap: 75px; align-items: center; }
.article-hero h1 { max-width: 850px; font-size: clamp(2.55rem, 5vw, 4.75rem); }
.article-byline { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 31px; color: rgba(255,255,255,.68); font-size: .76rem; }
.article-byline span + span::before, .article-byline time::before { content: "•"; margin-right: 20px; color: var(--accent); }
.article-hero-visual { position: relative; min-height: 310px; display: grid; place-content: center; text-align: center; }
.article-hero-visual strong { position: relative; z-index: 2; color: var(--white); font-size: 5.5rem; line-height: 1; }
.article-hero-visual small { position: relative; z-index: 2; color: #9ed9d4; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.technical-ring { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transform: translate(-50%, -50%); }
.ring-one { width: 270px; height: 270px; }
.ring-two { width: 205px; height: 205px; border-color: var(--accent); opacity: .65; }
.article-layout { display: grid; grid-template-columns: 270px minmax(0, 790px); gap: 80px; justify-content: center; padding-block: clamp(75px, 9vw, 125px); }
.article-sidebar { min-width: 0; }
.toc { position: sticky; top: 140px; padding: 24px; background: var(--cream); border-top: 4px solid var(--teal); }
.toc > p { margin-bottom: 14px; color: var(--ink); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin: 9px 0; color: var(--muted); font-size: .78rem; line-height: 1.4; }
.toc a { color: var(--muted); text-decoration: none; }
.toc a:hover { color: var(--teal); }
.sidebar-contact { margin-top: 20px; padding: 24px; color: rgba(255,255,255,.8); background: var(--ink); }
.sidebar-contact strong { color: var(--white); }
.sidebar-contact p { margin: 7px 0 15px; font-size: .8rem; }
.sidebar-contact a { color: #9ed9d4; font-size: .78rem; font-weight: 800; text-decoration: none; }
.article-intro { margin-bottom: 55px; color: var(--ink-2); font-size: 1.32rem; line-height: 1.65; }
.article-section { display: grid; grid-template-columns: 55px 1fr; gap: 25px; padding: 48px 0; border-top: 1px solid var(--line); }
.section-number { color: var(--accent-dark); font-size: .75rem; font-weight: 850; letter-spacing: .12em; }
.article-section h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
.article-section p { color: #45575e; font-size: 1.04rem; }
.article-callout { margin: 45px 0; padding: 35px; color: rgba(255,255,255,.82); background: var(--teal-dark); border-left: 5px solid var(--accent); }
.article-callout h2 { color: var(--white); font-size: 1.45rem; }
.article-callout p { margin: 0; }
.article-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.video-review { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: start; }
.review-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.review-list article { min-height: 235px; padding: 26px; background: var(--white); border: 1px solid var(--line); }
.review-list span { display: block; margin-bottom: 33px; color: var(--accent-dark); font-size: .73rem; font-weight: 850; }
.review-list p { margin: 0; color: var(--muted); font-size: .86rem; }

.contact-hero { padding: clamp(75px, 9vw, 120px) 0; }
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero h1 { max-width: 950px; font-size: clamp(2.65rem, 5.5vw, 5rem); }
.contact-hero p { max-width: 770px; font-size: 1.18rem; }
.contact-main { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 55px; align-items: start; }
.contact-form-wrap { padding: 42px; background: var(--white); box-shadow: var(--shadow-sm); border-top: 5px solid var(--teal); }
.contact-form-wrap > p:not(.eyebrow) { color: var(--muted); }
.contact-form { margin-top: 30px; }
.field-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--ink); font-size: .82rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 11px 13px; color: var(--text); background: var(--paper); border: 1px solid #bac5c1; border-radius: 4px; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal); outline: 3px solid rgba(13,104,107,.15); }
.checkbox-field { display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start; }
.checkbox-field input { width: 18px; min-height: 18px; margin-top: 4px; }
.checkbox-field label { font-weight: 500; line-height: 1.45; }
.form-status { min-height: 24px; margin: 12px 0 0; color: var(--success); font-size: .82rem; font-weight: 700; }
.contact-aside { display: grid; gap: 22px; }
.contact-card { padding: 34px; color: rgba(255,255,255,.8); background: var(--ink); border-left: 5px solid var(--accent); }
.contact-card h2 { color: var(--white); }
.contact-card dl { margin: 25px 0 0; }
.contact-card dl > div { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-card dt { color: #9ed9d4; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-card dd { margin: 3px 0 0; }
.contact-card a { color: var(--white); font-weight: 800; text-decoration: none; }
.sample-card { padding: 32px; background: var(--white); border: 1px solid var(--line); }
.sample-card h2 { font-size: 1.4rem; }
.sample-card ol { margin: 20px 0 0; padding-left: 20px; }
.sample-card li { margin: 9px 0; color: var(--muted); font-size: .87rem; }
.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-options article { min-height: 245px; padding: 30px; background: var(--white); border: 1px solid var(--line); }
.contact-options span { display: block; margin-bottom: 40px; color: var(--accent-dark); font-weight: 850; }
.contact-options h2 { font-size: 1.35rem; }
.contact-options p { margin: 0; color: var(--muted); font-size: .88rem; }

.legal-hero { padding: 76px 0; color: rgba(255,255,255,.8); background: var(--ink); }
.legal-hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.4rem); }
.legal-hero p { max-width: 780px; }
.legal-hero time { color: #9ed9d4; font-size: .75rem; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); gap: 85px; justify-content: center; padding-block: 90px 120px; }
.legal-layout aside { align-self: start; position: sticky; top: 140px; padding: 20px 0; border-block: 1px solid var(--line); }
.legal-layout aside p { color: var(--ink); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.legal-layout aside a { display: block; margin: 10px 0; color: var(--muted); font-size: .78rem; text-decoration: none; }
.legal-layout article section { padding: 0 0 36px; margin-bottom: 36px; border-bottom: 1px solid var(--line); }
.legal-layout article section:last-child { border-bottom: 0; }
.legal-layout h2 { font-size: 1.65rem; }
.legal-layout p { color: #45575e; }

.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; }
.sitemap-grid > div { padding: 28px; background: var(--cream); border-top: 4px solid var(--teal); }
.sitemap-grid h2 { font-size: 1.3rem; }
.sitemap-grid ul { margin: 0; padding: 0; list-style: none; }
.sitemap-grid li { padding: 8px 0; border-top: 1px solid #d3d8d2; font-size: .86rem; }
.sitemap-grid a { color: var(--ink); text-decoration: none; }
.sitemap-grid a:hover { color: var(--teal); }

.not-found { min-height: 68vh; display: grid; align-items: center; padding: 90px 0; }
.not-found-grid { display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: center; }
.not-found-grid > div:first-child { position: relative; z-index: 1; }
.not-found-code { color: transparent; font-size: clamp(9rem, 23vw, 19rem); font-weight: 900; line-height: .8; -webkit-text-stroke: 2px rgba(255,255,255,.2); }

@media (max-width: 1120px) {
  .primary-nav { gap: 16px; }
  .primary-nav > a { font-size: .8rem; }
  .machine-card { grid-template-columns: 1fr; }
  .card-image img { min-height: 280px; max-height: 320px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid article { min-height: 220px; }
  .requirement-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr .75fr .75fr; }
  .footer-contact { grid-column: 2 / 4; }
}

@media (max-width: 960px) {
  :root { --header-offset: 78px; }
  .utility-bar { display: none; }
  .nav-row { min-height: 74px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    left: 0; right: 0; top: 74px;
    height: calc(100vh - 74px);
    display: none;
    padding: 28px 20px 110px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .primary-nav[data-open="true"] { display: flex; }
  .primary-nav > a:not(.nav-cta) { padding: 17px 4px; border-bottom: 1px solid var(--line); }
  .primary-nav .nav-cta { margin-top: 20px; padding: 16px; text-align: center; }
  .hero-grid, .page-hero-grid, .product-hero-grid, .application-hero-grid, .article-hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 720px; }
  .hero-contact-card { right: 18px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.16); }
  .intro-grid, .section-heading, .split-heading, .selector-grid, .media-feature-grid, .location-grid, .cta-inner, .spec-grid, .two-col, .info-banner, .project-roadmap, .learning-path, .video-review, .contact-grid { grid-template-columns: 1fr; }
  .section-heading, .split-heading { gap: 15px; }
  .section-heading > :last-child, .split-heading > :last-child { justify-self: start; }
  .machine-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .application-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .decision-grid, .services-grid, .contact-options, .sitemap-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { justify-content: flex-start; }
  .product-image, .application-hero-image, .page-hero-image { max-width: 720px; }
  .article-hero-visual { display: none; }
  .article-layout { grid-template-columns: 1fr; gap: 35px; }
  .article-sidebar { display: grid; grid-template-columns: 1fr .7fr; gap: 20px; }
  .toc, .legal-layout aside { position: static; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-contact { grid-column: 1 / 4; }
}

@media (max-width: 680px) {
  body { font-size: 16px; padding-bottom: 62px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(2.25rem, 12vw, 3.3rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .brand strong { font-size: .95rem; }
  .brand small { font-size: .61rem; }
  .brand-mark { width: 38px; height: 38px; }
  .hero-home, .page-hero, .product-hero, .application-hero, .article-hero { padding: 65px 0 75px; }
  .hero-grid, .page-hero-grid, .product-hero-grid, .application-hero-grid { gap: 45px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-image-wrap, .product-image, .page-hero-image, .application-hero-image { padding: 9px; border-radius: var(--radius); }
  .hero-image-wrap { min-height: 360px; }
  .hero-image-wrap img { min-height: 340px; }
  .page-hero-image img, .product-image img, .application-hero-image img { height: 365px; border-radius: calc(var(--radius) - 5px); }
  .application-hero-image { border-radius: var(--radius); }
  .application-hero-image img { border-radius: calc(var(--radius) - 5px); }
  .hero-contact-card { position: relative; right: auto; bottom: auto; margin: -25px 14px 0; }
  .hero-image-note { left: 22px; bottom: 20px; }
  .product-image-meta { right: 8px; bottom: 20px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div, .trust-grid > div:first-child, .trust-grid > div:nth-child(3) { border-left: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .machine-grid, .related-grid, .application-grid, .guide-grid, .guide-grid-all, .guide-grid-two, .video-grid, .decision-grid, .services-grid, .requirement-grid, .values-grid, .contact-options, .sitemap-grid { grid-template-columns: 1fr; }
  .machine-card { grid-template-columns: 1fr; }
  .card-image img { min-height: 260px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .process-grid article > span { margin-bottom: 25px; }
  .selector-card, .contact-form-wrap { padding: 25px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-specs { grid-template-columns: 1fr; }
  .hero-specs > div:nth-child(odd) { border-right: 0; }
  .hero-specs > div:nth-child(even) { padding-left: 0; }
  .gallery-grid, .gallery-grid.gallery-3, .gallery-grid.gallery-4 { grid-template-columns: 1fr; }
  .gallery-grid.gallery-3 figure:first-child, .gallery-grid.gallery-4 figure:first-child { grid-column: auto; }
  .gallery-grid img, .gallery-grid figure:first-child img { height: 330px; }
  .info-banner ul, .review-list { grid-template-columns: 1fr; }
  .article-byline { display: grid; gap: 5px; }
  .article-byline span + span::before, .article-byline time::before { display: none; }
  .article-sidebar { grid-template-columns: 1fr; }
  .article-section { grid-template-columns: 1fr; gap: 8px; padding: 38px 0; }
  .article-intro { font-size: 1.15rem; }
  .article-actions { flex-direction: column; }
  .legal-layout { padding-block: 60px 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 22px; }
  .footer-brand, .footer-contact { grid-column: 1 / 3; }
  .footer-bottom { padding: 22px 0; align-items: flex-start; flex-direction: column; }
  .mobile-contact-bar { position: fixed; z-index: 1100; left: 0; right: 0; bottom: 0; height: 62px; display: grid; grid-template-columns: 1fr 1fr; box-shadow: 0 -6px 18px rgba(11,38,52,.17); }
  .mobile-contact-bar a { display: grid; place-items: center; color: var(--white); background: var(--teal); font-size: .78rem; font-weight: 850; text-decoration: none; }
  .mobile-contact-bar a:last-child { color: var(--ink); background: var(--accent); }
  .not-found-grid { grid-template-columns: 1fr; }
  .not-found-code { display: none; }
}

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

@media print {
  .site-header, .site-footer, .mobile-contact-bar, .cta-band, .hero-actions, .article-sidebar { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .section, .article-layout { padding: 25px 0; }
  .hero, .page-hero, .product-hero, .application-hero, .article-hero, .contact-hero, .legal-hero { color: #000; background: #fff; }
  .hero h1, .page-hero h1, .product-hero h1, .application-hero h1, .article-hero h1, .contact-hero h1, .legal-hero h1 { color: #000; }
  a { color: #000; text-decoration: underline; }
}
.site-header[data-scrolled] { box-shadow: 0 8px 24px rgba(11, 38, 52, 0.1); }
.image-unavailable { background: linear-gradient(135deg, #d9e1de, #edf0ed); }
img[data-image-error="true"] { min-height: 220px; object-fit: contain; color: var(--ink); font-size: .8rem; }

/* --------------------------------------------------------------------------
   Customer-focused real-photography revision
   -------------------------------------------------------------------------- */
:root {
  --ink: #061f2b;
  --ink-2: #0b3947;
  --teal: #00777b;
  --teal-dark: #005a5d;
  --accent: #ff8a3d;
  --accent-dark: #cf5c1d;
  --cream: #f2f6f4;
  --cream-2: #e6eeeb;
  --paper: #fbfdfc;
  --text: #18353e;
  --muted: #4d646c;
  --line: #cbd9d5;
  --shadow-sm: 0 10px 28px rgba(6, 31, 43, 0.09);
  --shadow-md: 0 24px 64px rgba(6, 31, 43, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 30px;
}

body {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(0,119,123,.025), transparent 420px),
    var(--paper);
}

h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.section { padding: clamp(54px, 6.2vw, 86px) 0; }
.section-soft { background: linear-gradient(135deg, #f0f5f3, #fbfdfc 68%); }
.section-heading, .split-heading { gap: 42px; margin-bottom: 34px; }
.intro-grid { gap: clamp(38px, 6vw, 76px); }
.two-col { gap: clamp(40px, 6vw, 76px); }
.spec-grid { gap: 48px; }
.location-grid { gap: 54px; }
.media-feature-grid { gap: 42px; }

/* Refined wordmark */
.brand { gap: 13px; }
.brand-emblem {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 74% 24%, rgba(255,255,255,.28), transparent 22%),
    linear-gradient(145deg, #008c91 0%, #075360 52%, #061f2b 100%);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 15px 15px 15px 5px;
  box-shadow: 0 8px 18px rgba(6,31,43,.18), inset 0 1px 0 rgba(255,255,255,.24);
  overflow: hidden;
}
.brand-emblem::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid rgba(255,255,255,.28);
  border-radius: 50%;
  transform: translate(12px, -12px);
}
.brand-initials {
  position: relative;
  z-index: 1;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: -.06em;
}
.brand-signal {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255,138,61,.22);
}
.brand-wordmark { display: block; min-width: 0; }
.brand-wordmark strong,
.brand-wordmark small { display: block; }
.brand-wordmark strong { color: inherit; font-size: 1.08rem; font-weight: 900; letter-spacing: -.035em; }
.brand-wordmark small { margin-top: 5px; color: var(--teal); font-size: .64rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.brand-inverse .brand-wordmark small { color: #9be7df; }
.brand-mark { display: none !important; }

/* Header and calls to action */
.utility-bar {
  color: rgba(255,255,255,.9);
  background: linear-gradient(90deg, #061f2b, #0a4a57 62%, #075f63);
}
.utility-inner { min-height: 38px; }
.utility-inner p { color: rgba(255,255,255,.92); font-weight: 650; }
.site-header { background: rgba(251,253,252,.97); }
.nav-row { min-height: 80px; }
.primary-nav .nav-cta,
.button { border-radius: 10px; }
.primary-nav .nav-cta {
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 8px 18px rgba(0,90,93,.18);
}
.button-primary {
  color: #10232a;
  background: linear-gradient(135deg, #ff9a57, var(--accent));
  border-color: #ff9a57;
  box-shadow: 0 10px 24px rgba(207,92,29,.22);
}
.button-primary:hover { color: #fff; background: var(--accent-dark); border-color: var(--accent-dark); }
.button-secondary { background: linear-gradient(135deg, #008c91, var(--teal)); }

/* Stronger, higher-contrast hero treatment */
.hero, .page-hero, .product-hero, .application-hero, .article-hero, .contact-hero, .not-found {
  color: #eff8f9;
  background:
    radial-gradient(circle at 82% 14%, rgba(0,151,154,.46), transparent 30%),
    radial-gradient(circle at 8% 92%, rgba(255,138,61,.22), transparent 30%),
    linear-gradient(128deg, #041923 0%, #082d3a 55%, #074d54 100%);
}
.hero::after, .page-hero::after, .product-hero::after, .application-hero::after, .article-hero::after, .contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #ffc18f 34%, #20b7b2 68%, transparent);
}
.hero p, .page-hero p, .product-hero p, .application-hero p, .article-hero p, .contact-hero p,
.hero li, .product-hero dd { color: #edf7f8; }
.eyebrow-light { color: #b9fff4; }
.hero-home { padding: clamp(62px, 7vw, 96px) 0; }
.hero-grid { gap: clamp(38px, 5.5vw, 68px); }
.hero-copy h1 { max-width: 760px; font-size: clamp(2.65rem, 5.7vw, 5rem); }
.hero-lead { color: #f0f8f8 !important; }
.hero-proof { margin-top: 24px; }
.hero-proof li::before { color: #88f0d7; }
.hero-media { padding-bottom: 26px; }

/* Click-to-play hero video, with an exact-source real product photograph */
.hero-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 12px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 75px rgba(0,0,0,.28);
  overflow: hidden;
  isolation: isolate;
}
.hero-video-shell > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #fff;
  border-radius: calc(var(--radius-lg) - 9px);
}
.hero-video-shell iframe {
  position: absolute;
  inset: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: 0;
  background: #000;
  border-radius: calc(var(--radius-lg) - 9px);
}
.video-shade {
  position: absolute;
  z-index: 1;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 54%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(3,22,30,.94), rgba(3,22,30,.45) 52%, transparent);
  border-radius: 0 0 calc(var(--radius-lg) - 9px) calc(var(--radius-lg) - 9px);
}
.video-launch {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 52px;
  max-width: calc(100% - 68px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 0;
  text-align: left;
}
.video-launch:hover .video-play { transform: scale(1.08); background: #fff; color: var(--accent-dark); }
.video-play {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  color: #14252b;
  background: var(--accent);
  border: 3px solid rgba(255,255,255,.92);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,.3);
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.video-launch-copy { display: block; text-shadow: 0 2px 12px rgba(0,0,0,.7); }
.video-launch-copy strong, .video-launch-copy small { display: block; color: #fff; }
.video-launch-copy strong { font-size: clamp(1rem, 2vw, 1.25rem); line-height: 1.25; }
.video-launch-copy small { margin-top: 4px; color: #dcebed; font-size: .75rem; }
.video-direct-link {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 24px;
  color: #e5f5f5;
  font-size: .7rem;
  font-weight: 800;
  text-decoration: none;
}
.video-direct-link:hover { color: #fff; }
.compact-video-shell { max-width: 720px; aspect-ratio: 4 / 3; }
.hero-contact-card {
  right: -14px;
  bottom: -10px;
  min-width: 265px;
  border: 1px solid rgba(6,31,43,.08);
  border-bottom: 5px solid var(--accent);
}
.hero-contact-card span { color: #425d66; }
.hero-contact-card small { color: #4b626a; }

/* Benefit strip */
.trust-strip {
  background: linear-gradient(90deg, #006a6d, #07545f 54%, #0b3947);
  box-shadow: inset 0 1px rgba(255,255,255,.12);
}
.trust-grid > div { padding-block: 24px; }
.trust-grid strong { color: #fff; }
.trust-grid span { color: #d9f0ef; }

/* Higher contrast for every dark panel */
.section-dark, .media-feature, .cta-band, .site-footer { color: #edf6f7; }
.section-dark p, .section-dark li, .section-dark dd,
.media-feature p, .media-feature li,
.cta-band p, .site-footer p, .site-footer address { color: #e7f1f2; }
.section-dark .eyebrow-light, .media-feature .eyebrow, .cta-band .eyebrow-light { color: #b9fff4; }
.section-dark {
  background:
    radial-gradient(circle at 78% 12%, rgba(0,150,154,.26), transparent 28%),
    linear-gradient(135deg, #061f2b, #0b3947);
}
.media-feature {
  background:
    radial-gradient(circle at 90% 15%, rgba(255,138,61,.16), transparent 28%),
    linear-gradient(135deg, #092b38, #0b4551);
}
.cta-band { padding: 46px 0; background: linear-gradient(110deg, #006a6d, #074854); }

/* Real product images: contain the full machine and never crop the top */
.product-photo { object-position: center center !important; }
.hero-image-wrap,
.product-image,
.page-hero-image,
.application-hero-image {
  padding: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
  overflow: visible;
}
.hero-image-wrap img,
.product-image img,
.page-hero-image img,
.application-hero-image img {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  max-height: 520px;
  aspect-ratio: 4 / 3;
  padding: 12px;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
  border-radius: calc(var(--radius-lg) - 8px) !important;
}
.application-hero-image { border-radius: var(--radius-lg); }
.product-image-meta { right: -12px; bottom: 28px; max-width: min(310px, 80%); }

.card-image,
.application-image,
.video-visual,
.gallery-grid a {
  background: linear-gradient(145deg, #fff, #edf4f1);
}
.card-image {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 12px;
}
.card-image img {
  width: 100%;
  height: 100%;
  min-height: 0 !important;
  max-height: 330px !important;
  padding: 4px;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}
.related-grid .card-image { min-height: 220px; }
.related-grid .card-image img { min-height: 0 !important; max-height: 245px !important; }
.application-image { min-height: 0; padding: 10px; }
.application-image img {
  width: 100%;
  height: 270px;
  padding: 6px;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}
.video-visual { min-height: 0; padding: 10px; }
.video-visual img {
  width: 100%;
  height: 250px;
  padding: 6px;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}
.video-visual::after { background: linear-gradient(to top, rgba(6,31,43,.78), transparent 55%); }
.video-visual:hover img,
.machine-card:hover .card-image img,
.gallery-grid a:hover img { transform: none; filter: none; }
.gallery-grid { gap: 18px; }
.gallery-grid figure { background: #f1f6f4; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery-grid a { padding: 12px; }
.gallery-grid img,
.gallery-grid figure:first-child img {
  width: 100%;
  height: 350px;
  padding: 6px;
  object-fit: contain !important;
  object-position: center center !important;
  background: #fff;
}
.gallery-grid figcaption { color: #415961; font-size: .74rem; }

/* Cards and content rhythm */
.machine-grid { gap: 22px; }
.machine-card {
  border-color: #c7d8d3;
  box-shadow: 0 8px 26px rgba(6,31,43,.055);
}
.machine-card:hover { border-color: rgba(0,119,123,.45); box-shadow: var(--shadow-md); }
.machine-card > div:not(.card-image) { padding-top: 28px; padding-bottom: 28px; }
.application-card, .video-card, .guide-card, .service-card, .decision-card {
  box-shadow: 0 8px 26px rgba(6,31,43,.055);
}
.guide-card { min-height: 0; padding: 28px; }
.process-grid article { min-height: 0; padding: 24px 22px; }
.process-grid article > span { margin-bottom: 22px; }
.requirement-grid article { min-height: 0; padding: 24px; }
.requirement-grid span { margin-bottom: 24px; }
.feature-panel, .notice, .address-card { box-shadow: var(--shadow-sm); }

/* Footer with privacy section spanning the full bottom edge */
.site-footer { padding: 54px 0 0; background: #061b25; }
.footer-grid { gap: 42px; padding-bottom: 44px; }
.site-footer h2 { color: #fff; }
.site-footer a { color: #d7e7e9; }
.site-footer a:hover { color: #fff; }
.footer-brand > p { margin-top: 20px; color: #d7e6e8; }
.footer-brand .company-line { color: #fff; }
.footer-contact address { color: #dce9ea; }
.footer-phone { color: #fff !important; font-size: 1.2rem !important; font-weight: 900; }
.footer-privacy-bar {
  width: 100%;
  padding: 20px 0;
  background: linear-gradient(90deg, #0b3542, #0a4650 68%, #075e60);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-privacy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.footer-privacy-copy { max-width: 690px; }
.footer-privacy-copy strong,
.footer-privacy-copy span { display: block; }
.footer-privacy-copy strong { color: #fff; font-size: .92rem; }
.footer-privacy-copy span { margin-top: 3px; color: #dcebed; font-size: .78rem; line-height: 1.5; }
.footer-privacy-inner nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 9px 15px; }
.footer-privacy-inner nav a { color: #f0f8f9; font-size: .76rem; font-weight: 750; white-space: nowrap; }
.footer-privacy-link {
  padding: 7px 10px;
  color: #13252c !important;
  background: var(--accent);
  border-radius: 8px;
  text-decoration: none;
}
.footer-copyright { padding: 13px 0; background: #031219; }
.footer-copyright p { margin: 0; color: #b8cbd0; font-size: .72rem; }
.footer-bottom { display: none; }

/* Legal and article pages: remove oversized empty bands */
.legal-hero { padding: 54px 0; background: linear-gradient(120deg, #061f2b, #0b4551); }
.legal-layout { gap: 54px; padding-block: 58px 78px; }
.legal-layout article section { padding-bottom: 26px; margin-bottom: 26px; }
.article-hero { padding: clamp(60px, 7vw, 92px) 0; }
.article-layout { padding-block: 58px 76px; }
.article-section { padding: 34px 0; }
.page-hero, .product-hero, .application-hero { padding: clamp(54px, 6vw, 82px) 0; }
.page-hero-grid, .product-hero-grid, .application-hero-grid { gap: 50px; }
.not-found { min-height: 54vh; padding: 64px 0; }

/* Ensure muted text remains readable on light backgrounds */
.prose p, .guide-card > div > p:not(.eyebrow), .process-grid p,
.card-body p, .application-card p, .video-card p, .legal-layout p,
.section-heading > :last-child, .split-heading > :last-child { color: #455e67; }
.form-note, .guide-meta, figcaption { color: #425a63; }

@media (max-width: 1120px) {
  .footer-grid { grid-template-columns: 1.15fr .85fr .85fr; }
  .footer-contact { grid-column: 1 / 4; }
  .hero-contact-card { right: 10px; }
}

@media (max-width: 960px) {
  .hero-home { padding-bottom: 76px; }
  .hero-media { max-width: 760px; }
  .footer-privacy-inner { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer-privacy-inner nav { justify-content: flex-start; }
  .compact-video-shell { max-width: 760px; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 48px 0; }
  .hero-home, .page-hero, .product-hero, .application-hero, .article-hero { padding: 52px 0 62px; }
  .hero-grid, .page-hero-grid, .product-hero-grid, .application-hero-grid { gap: 34px; }
  .section-heading, .split-heading { margin-bottom: 26px; }
  .brand-emblem { width: 42px; height: 42px; flex-basis: 42px; border-radius: 13px 13px 13px 5px; }
  .brand-wordmark strong { font-size: .95rem; }
  .brand-wordmark small { font-size: .57rem; letter-spacing: .14em; }
  .hero-video-shell { padding: 8px; border-radius: 20px; aspect-ratio: 4 / 3; }
  .hero-video-shell > img { border-radius: 14px; }
  .hero-video-shell iframe { inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); border-radius: 14px; }
  .video-shade { left: 8px; right: 8px; bottom: 8px; border-radius: 0 0 14px 14px; }
  .video-launch { left: 22px; bottom: 48px; max-width: calc(100% - 44px); gap: 11px; }
  .video-play { width: 50px; height: 50px; flex-basis: 50px; }
  .video-launch-copy small { display: none; }
  .video-direct-link { left: 22px; bottom: 21px; }
  .hero-contact-card { margin: -15px 12px 0; }
  .hero-image-wrap img, .product-image img, .page-hero-image img, .application-hero-image img { max-height: 390px; padding: 8px; }
  .product-image-meta { position: relative; right: auto; bottom: auto; max-width: none; margin: -10px 12px 0; }
  .card-image { min-height: 245px; }
  .card-image img { max-height: 275px !important; }
  .application-image img, .video-visual img { height: 235px; }
  .gallery-grid img, .gallery-grid figure:first-child img { height: 300px; }
  .process-grid article { padding: 22px; }
  .legal-layout { padding-block: 44px 62px; }
  .site-footer { padding-top: 44px; }
  .footer-grid { padding-bottom: 36px; }
  .footer-privacy-bar { padding: 18px 0; }
  .footer-privacy-inner nav { gap: 8px 12px; }
}

/* Hero balance refinement after real-image review */
.hero-copy h1 { font-size: clamp(2.65rem, 4.85vw, 4.45rem); max-width: 690px; }
.hero-grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }

/* Keep the contact prompt clear of the video controls. */
.hero-contact-card {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 3;
  width: min(360px, calc(100% - 28px));
  margin: -14px 16px 0 auto;
}
.video-launch-copy strong { max-width: 315px; }
@media (max-width: 680px) {
  .hero-contact-card { margin: -10px 10px 0 auto; width: calc(100% - 20px); }
}

/* --------------------------------------------------------------------------
   Full-screen homepage video hero
   -------------------------------------------------------------------------- */
.home .hero-home.hero-video-background {
  position: relative;
  min-height: calc(100svh - var(--header-offset));
  display: flex;
  align-items: center;
  padding: clamp(42px, 6vh, 74px) 0;
  background: #061f2b;
  isolation: isolate;
}
@supports (height: 100dvh) {
  .home .hero-home.hero-video-background {
    min-height: calc(100dvh - var(--header-offset));
  }
}
.home .hero-home.hero-video-background::before {
  z-index: 2;
  opacity: .32;
  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: 54px 54px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.62) 55%, transparent 88%);
}
.home .hero-home.hero-video-background::after { z-index: 5; }
.hero-background-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  pointer-events: none;
  filter: saturate(.92) contrast(1.08) brightness(.84);
  transform: scale(1.01);
}
.hero-background-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,17,25,.96) 0%, rgba(3,26,36,.91) 30%, rgba(3,30,40,.76) 52%, rgba(3,30,40,.34) 76%, rgba(3,24,33,.28) 100%),
    linear-gradient(0deg, rgba(2,16,23,.68) 0%, transparent 42%, rgba(2,16,23,.18) 100%);
}
.hero-video-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.home .hero-video-content .hero-copy {
  max-width: min(760px, 68vw);
  padding: clamp(12px, 2vh, 24px) 0;
}
.home .hero-video-content .hero-copy h1 {
  max-width: 730px;
  margin-bottom: clamp(16px, 2.4vh, 24px);
  color: #fff;
  font-size: clamp(2.75rem, 5.2vw, 5rem);
  text-shadow: 0 4px 28px rgba(0,0,0,.58);
}
.home .hero-video-content .eyebrow {
  color: #c4fff5;
  text-shadow: 0 2px 14px rgba(0,0,0,.72);
}
.home .hero-video-content .hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: #f2fafa !important;
  font-size: clamp(1.08rem, 1.55vw, 1.3rem);
  line-height: 1.52;
  text-shadow: 0 3px 18px rgba(0,0,0,.68);
}
.home .hero-video-content .hero-actions { margin-top: clamp(23px, 3.5vh, 34px); }
.home .hero-video-content .button-ghost {
  background: rgba(3,25,34,.34);
  border-color: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
}
.home .hero-video-content .button-ghost:hover { background: #fff; }
.home .hero-video-content .hero-proof {
  margin-top: clamp(19px, 3vh, 27px);
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.76);
}
.hero-direct-contact {
  margin: 15px 0 0;
  color: #e8f4f5 !important;
  font-size: .86rem;
  font-weight: 650;
  text-shadow: 0 2px 12px rgba(0,0,0,.78);
}
.hero-direct-contact a {
  color: #fff;
  font-weight: 900;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
}
.hero-direct-contact a:hover { color: #ffd3b7; }
.hero-video-toggle {
  position: absolute;
  z-index: 6;
  right: clamp(16px, 2vw, 30px);
  bottom: clamp(16px, 2vw, 28px);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  background: rgba(3,23,31,.64);
  border: 1px solid rgba(255,255,255,.52);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
  backdrop-filter: blur(9px);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}
.hero-video-toggle:hover {
  transform: translateY(-2px);
  background: rgba(0,119,123,.92);
  border-color: #fff;
}
.hero-video-toggle [data-hero-video-icon] {
  display: block;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.18em;
  transform: translateX(-.06em);
}
.hero-video-toggle[aria-pressed="true"] [data-hero-video-icon] {
  font-size: 1rem;
  letter-spacing: 0;
  transform: translateX(.07em);
}

@media (max-width: 960px) {
  .home .hero-home.hero-video-background {
    padding: clamp(38px, 6vh, 62px) 0;
  }
  .home .hero-video-content .hero-copy { max-width: 720px; }
  .hero-background-video { object-position: 52% center; }
  .hero-background-shade {
    background:
      linear-gradient(90deg, rgba(2,17,25,.95) 0%, rgba(3,27,37,.88) 55%, rgba(3,28,38,.57) 100%),
      linear-gradient(0deg, rgba(2,16,23,.72) 0%, transparent 50%, rgba(2,16,23,.22) 100%);
  }
}

@media (max-width: 680px) {
  .home .hero-home.hero-video-background {
    min-height: calc(100svh - var(--header-offset) - 62px);
    padding: clamp(28px, 4.5vh, 44px) 0 clamp(38px, 5vh, 52px);
  }
  @supports (height: 100dvh) {
    .home .hero-home.hero-video-background {
      min-height: calc(100dvh - var(--header-offset) - 62px);
    }
  }
  .home .hero-video-content .hero-copy { max-width: none; padding: 0; }
  .home .hero-video-content .hero-copy h1 {
    max-width: 620px;
    margin-bottom: 15px;
    font-size: clamp(2.25rem, 10.7vw, 3.35rem);
    line-height: 1.02;
  }
  .home .hero-video-content .hero-lead {
    max-width: 600px;
    font-size: clamp(.98rem, 4.2vw, 1.12rem);
    line-height: 1.45;
  }
  .home .hero-video-content .hero-actions { margin-top: 21px; gap: 9px; }
  .home .hero-video-content .hero-actions .button { min-height: 47px; }
  .home .hero-video-content .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 13px;
    margin-top: 17px;
    font-size: .75rem;
    line-height: 1.35;
  }
  .home .hero-video-content .hero-proof li:last-child { grid-column: 1 / -1; }
  .hero-direct-contact { margin-top: 13px; font-size: .79rem; }
  .hero-background-video { object-position: 53% center; }
  .hero-background-shade {
    background:
      linear-gradient(90deg, rgba(2,17,25,.91), rgba(3,27,37,.72)),
      linear-gradient(0deg, rgba(2,16,23,.84) 0%, rgba(2,16,23,.2) 58%, rgba(2,16,23,.44) 100%);
  }
  .hero-video-toggle {
    right: 13px;
    bottom: 73px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 680px) and (max-height: 760px) {
  .home .hero-video-content .eyebrow { margin-bottom: .55rem; font-size: .68rem; }
  .home .hero-video-content .hero-copy h1 { font-size: clamp(2.08rem, 9.8vw, 2.72rem); margin-bottom: 12px; }
  .home .hero-video-content .hero-lead { font-size: .96rem; line-height: 1.38; }
  .home .hero-video-content .hero-actions { margin-top: 16px; }
  .home .hero-video-content .hero-proof { display: none; }
  .hero-direct-contact { margin-top: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-video { transform: none; }
}

/* Final viewport and content alignment corrections for the video hero. */
.hero-video-content {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.home .hero-home.hero-video-background {
  min-height: calc(100svh - var(--header-live-offset, var(--header-offset)));
}
@supports (height: 100dvh) {
  .home .hero-home.hero-video-background {
    min-height: calc(100dvh - var(--header-live-offset, var(--header-offset)));
  }
}
@media (max-width: 680px) {
  .hero-video-content { width: min(calc(100% - 28px), var(--max)); }
  .home .hero-home.hero-video-background {
    min-height: calc(100svh - var(--header-live-offset, var(--header-offset)) - 62px);
  }
  @supports (height: 100dvh) {
    .home .hero-home.hero-video-background {
      min-height: calc(100dvh - var(--header-live-offset, var(--header-offset)) - 62px);
    }
  }
  .hero-direct-contact { display: none; }
}

/* Compact-height refinements keep the full hero inside common laptop screens. */
@media (min-width: 681px) and (max-height: 800px) {
  .home .hero-home.hero-video-background { padding: 40px 0; }
}
@media (min-width: 681px) and (max-height: 740px) {
  .home .hero-home.hero-video-background { padding: 28px 0; }
  .home .hero-video-content .hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(2.65rem, 4.4vw, 3.8rem);
  }
  .home .hero-video-content .hero-lead {
    font-size: 1.04rem;
    line-height: 1.42;
  }
  .home .hero-video-content .hero-actions { margin-top: 18px; }
  .home .hero-video-content .hero-proof { margin-top: 15px; }
  .hero-direct-contact { margin-top: 10px; }
}
@media (min-width: 681px) and (max-height: 660px) {
  .home .hero-video-content .hero-copy h1 { font-size: clamp(2.45rem, 4vw, 3.35rem); }
  .home .hero-video-content .hero-proof,
  .hero-direct-contact { display: none; }
}

/* Keep the video control clear of the mobile calls to action. */
@media (max-width: 680px) {
  .hero-video-toggle {
    right: 12px;
    bottom: 10px;
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 680px) and (max-height: 760px) {
  .hero-video-toggle {
    right: 10px;
    bottom: 8px;
    width: 36px;
    height: 36px;
  }
}


/* ========================================================================
   Customer, brand and accessibility refinement — 16 July 2026
   ======================================================================== */
:root {
  --ink: #061f2b;
  --ink-2: #0c3847;
  --teal: #006a6d;
  --teal-dark: #064f52;
  --accent: #ff9a57;
  --accent-dark: #b94f20;
  --text: #17343d;
  --muted: #3f5962;
  --line: #c6d6d2;
}
body { color: var(--text); }
a { color: #005f63; }
a:hover { color: #a64218; }

/* Polished pump-dispenser identity. */
.brand { gap: 12px; min-width: 0; }
.brand-symbol {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 16px;
  filter: drop-shadow(0 8px 13px rgba(6,31,43,.2));
}
.brand-wordmark { min-width: 0; line-height: 1; }
.brand-wordmark strong {
  display: block;
  color: inherit;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: -.04em;
}
.brand-subline { display: flex; align-items: center; gap: 8px; margin-top: 6px; }
.brand-wordmark small {
  display: block;
  margin: 0;
  color: #00656a;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.brand-byline {
  padding-left: 8px;
  color: #536970;
  border-left: 1px solid #a9bab6;
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand-inverse .brand-wordmark strong { color: #fff; }
.brand-inverse .brand-wordmark small { color: #b9fff4; }
.brand-inverse .brand-byline { color: #d7e7e9; border-color: rgba(255,255,255,.32); }
.brand-emblem,.brand-initials,.brand-signal { display: none !important; }

/* Reliable contrast on all dark, gradient and video-backed areas. */
.hero,
.page-hero,
.product-hero,
.application-hero,
.article-hero,
.contact-hero,
.not-found,
.section-dark,
.media-feature,
.cta-band { color: #eef8f9; }
.hero :where(p,li,dt,dd),
.page-hero :where(p,li,dt,dd),
.product-hero :where(p,li,dt,dd),
.application-hero :where(p,li,dt,dd),
.article-hero :where(p,li,dt,dd),
.contact-hero :where(p,li,dt,dd),
.not-found :where(p,li),
.section-dark :where(p,li,dt,dd),
.media-feature :where(p,li,dt,dd),
.cta-band :where(p,li) { color: #eef8f9; }
.hero :where(h1,h2,h3),
.page-hero :where(h1,h2,h3),
.product-hero :where(h1,h2,h3),
.application-hero :where(h1,h2,h3),
.article-hero :where(h1,h2,h3),
.contact-hero :where(h1,h2,h3),
.not-found :where(h1,h2,h3),
.section-dark :where(h1,h2,h3),
.media-feature :where(h1,h2,h3),
.cta-band :where(h1,h2,h3) { color: #fff; }
.eyebrow-light,
.hero .eyebrow,
.page-hero .eyebrow,
.product-hero .eyebrow,
.application-hero .eyebrow,
.article-hero .eyebrow,
.contact-hero .eyebrow,
.section-dark .eyebrow,
.media-feature .eyebrow,
.cta-band .eyebrow { color: #b9fff4; }
.home .hero-video-content :where(h1,p,li) { color: #fff; }
.hero-background-shade {
  background:
    linear-gradient(90deg, rgba(1,14,21,.98) 0%, rgba(2,24,34,.94) 34%, rgba(3,28,38,.8) 57%, rgba(3,27,37,.45) 78%, rgba(3,22,31,.38) 100%),
    linear-gradient(0deg, rgba(1,13,20,.78) 0%, transparent 46%, rgba(1,13,20,.28) 100%);
}
.home .hero-video-content .hero-copy {
  padding: clamp(18px,3vh,30px) clamp(0px,1.5vw,18px);
  border-radius: 18px;
}
.home .hero-video-content .hero-copy h1,
.home .hero-video-content .hero-lead,
.home .hero-video-content .hero-proof { text-shadow: 0 4px 24px rgba(0,0,0,.78); }

/* Readable copy on cards and light backgrounds. */
.prose p,
.card-body p,
.machine-card p,
.application-card p,
.video-card p,
.guide-card p:not(.eyebrow),
.service-card p,
.decision-card p,
.process-grid p,
.requirement-grid p,
.legal-layout p,
.contact-options p,
.section-heading > :last-child,
.split-heading > :last-child,
.form-note,
.form-status,
.guide-meta,
figcaption { color: #3f5962; }
.card-kicker { color: #315660; }
.feature-panel,.notice,.address-card,.sample-card { color: #17343d; }
.feature-panel :where(h2,h3),.notice :where(h2,h3),.address-card :where(h2,h3),.sample-card :where(h2,h3) { color: #061f2b; }
.contact-card { color: #eef8f9; }
.contact-card :where(address,p,li,dt,dd) { color: #eef8f9; }
.contact-card :where(h2,h3) { color: #fff; }
.contact-card .eyebrow { color: #b9fff4; }
.breadcrumbs,.breadcrumbs a { color: #4b626a; }

/* Buttons remain legible in every state. */
.button-primary { color: #071d27; background: linear-gradient(135deg,#ffab6d,#ff8e49); border-color: #ff9a57; }
.button-primary:hover { color: #fff; background: #b94f20; border-color: #b94f20; }
.button-secondary,.primary-nav .nav-cta { color: #fff; background: linear-gradient(135deg,#007b7f,#064f52); }
.button-secondary:hover,.primary-nav .nav-cta:hover { color: #fff; background: #043f42; }
.button-outline { color: #061f2b; border-color: #061f2b; }
.button-outline:hover { color: #fff; background: #061f2b; }
.utility-bar { color: #fff; }
.utility-inner p,.utility-links a { color: #fff; }

/* Direct-send enquiry form and accessible spam protection. */
.form-trap {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.contact-form label { color: #102d37; font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  color: #102d37;
  background: #fff;
  border-color: #aebfbb;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #5a6e75; opacity: 1; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: #006a6d; box-shadow: 0 0 0 4px rgba(0,106,109,.14); outline: none; }
.human-check { max-width: 420px; padding: 18px; background: #eef6f4; border: 1px solid #c2d7d2; border-radius: 12px; }
.human-check small { display: block; margin-top: 7px; color: #3f5962; line-height: 1.45; }
.form-result { margin: 0 0 1.3rem; padding: 1rem 1.15rem; border-radius: 12px; font-weight: 800; }
.form-result-success { color: #064b32; background: #e2f7ed; border: 1px solid #74c9a4; }
.form-result-error { color: #7d201b; background: #fff0ee; border: 1px solid #e79c95; }
.contact-form button[disabled] { cursor: wait; opacity: .72; transform: none; }

.site-footer { color: #eaf3f4; }
.site-footer p,.site-footer li,.site-footer address { color: #dce9ea; }
.site-footer h2,.site-footer strong { color: #fff; }
.site-footer a { color: #e9f5f6; }
.site-footer a:hover { color: #fff4eb; }
.footer-privacy-copy span,.footer-copyright p { color: #d7e5e8; }

@media (max-width: 680px) {
  .brand-symbol { width: 44px; height: 44px; flex-basis: 44px; border-radius: 13px; }
  .brand-wordmark strong { font-size: .94rem; }
  .brand-wordmark small { font-size: .60rem; letter-spacing: .13em; }
  .brand-byline { display: none; }
  .home .hero-video-content .hero-copy { padding: 0; }
  .hero-background-shade {
    background:
      linear-gradient(90deg, rgba(1,14,21,.95), rgba(2,25,35,.8)),
      linear-gradient(0deg, rgba(1,13,20,.9) 0%, rgba(1,13,20,.28) 58%, rgba(1,13,20,.52) 100%);
  }
}
