:root {
  --ink: #13252e;
  --ink-soft: #2d4650;
  --muted: #5d717a;
  --white: #ffffff;
  --paper: #f4f8fa;
  --paper-deep: #e8eff2;
  --line: #d3e0e5;
  --cyan: #0d6f8d;
  --cyan-deep: #0a4f68;
  --green: #187b5a;
  --amber: #d99310;
  --orange: #c95c3b;
  --blue: #1769a7;
  --blue-deep: #0e4a75;
  --berry: #7759a0;
  --teal-panel: #0d3441;
  --shadow-sm: 0 10px 24px rgba(16, 33, 43, 0.08);
  --shadow-lg: 0 28px 70px rgba(8, 45, 58, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--white);
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-accent {
  background: var(--amber);
  color: #2a2110;
}

.button-light {
  background: var(--white);
  color: var(--teal-panel);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.utility-bar {
  background: var(--teal-panel);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
}

.utility-inner p {
  margin: 0;
  font-weight: 600;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-links a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  white-space: nowrap;
}

.utility-links a:hover {
  color: var(--amber);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 76px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--cyan);
  color: var(--white);
  font-size: 23px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.14em;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-right: auto;
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  background: var(--amber);
  content: "";
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  display: grid;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 10px 24px 16px;
}

.mobile-nav a {
  padding: 9px 0;
  font-weight: 600;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--teal-panel);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(80deg, rgba(6, 34, 44, 0.94) 0%, rgba(6, 42, 52, 0.68) 48%, rgba(6, 42, 52, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 27, 35, 0.8), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 118px 0 120px;
  max-width: 820px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc857;
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 800;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-foot {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 28px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.hero-foot span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 10px 1px 0;
  border-radius: 50%;
  background: var(--amber);
}

.hero-foot span:nth-child(2)::before {
  background: #3dc39a;
}

.hero-foot span:nth-child(3)::before {
  background: #4f9fd8;
}

.stats-band {
  background:
    linear-gradient(90deg, #edf6fb 0%, var(--paper) 42%, #eef8f3 100%);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-block {
  padding: 30px 30px 30px 0;
  border-right: 1px solid var(--line);
}

.stat-block:not(:first-child) {
  padding-left: 30px;
}

.stat-block:last-child {
  border-right: 0;
}

.stat-value {
  color: var(--cyan-deep);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
}

.stat-block:nth-child(1) .stat-value {
  color: var(--cyan-deep);
}

.stat-block:nth-child(2) .stat-value {
  color: var(--blue);
}

.stat-block:nth-child(3) .stat-value {
  color: var(--amber);
}

.stat-block:nth-child(4) .stat-value {
  color: var(--green);
}

.stat-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2,
.company-copy h2,
.contact-copy h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.certifications-section .eyebrow {
  color: var(--green);
}

.products-section .eyebrow {
  color: var(--blue);
}

.cases-section .eyebrow {
  color: #b57a0c;
}

.media-section .eyebrow {
  color: var(--green);
}

.contact-section .eyebrow {
  color: var(--orange);
}

.contact-company {
  margin: -6px 0 10px;
  color: var(--ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.company-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.company-section {
  background: var(--white);
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 76px;
  align-items: center;
}

.company-copy h2 {
  margin-bottom: 22px;
}

.company-copy > p + p {
  margin-top: 16px;
}

.company-copy .company-promise {
  margin-top: 26px;
  margin-bottom: 4px;
  padding: 14px 18px;
  border: 1px solid rgba(201, 92, 59, 0.28);
  border-left: 5px solid var(--orange);
  background: linear-gradient(90deg, rgba(240, 90, 40, 0.12), rgba(240, 90, 40, 0.02));
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.55;
}

.company-copy .company-promise strong {
  color: var(--orange);
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.about-points div {
  padding: 22px 18px;
  background: var(--paper);
  border-top: 4px solid var(--cyan);
}

.about-points div:nth-child(2) {
  border-top-color: var(--amber);
}

.about-points div:nth-child(3) {
  border-top-color: var(--green);
}

.point-index {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan-deep);
  font-size: 13px;
  font-weight: 800;
}

.about-points strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.about-points p {
  color: var(--muted);
  font-size: 14px;
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.cert-chip {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.customer-band {
  margin-top: 78px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.customer-band-head {
  max-width: 740px;
  margin-bottom: 24px;
}

.customer-band-head h3 {
  margin-top: 7px;
  color: var(--ink);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.25;
}

.customer-band-copy {
  max-width: 860px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.customer-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.customer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 94px;
  margin: 0;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.customer-logo img {
  width: 100%;
  max-width: 176px;
  height: 58px;
  object-fit: contain;
}

.company-visual {
  position: relative;
  padding-bottom: 74px;
}

.visual-frame {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.frame-primary {
  aspect-ratio: 4 / 4.65;
  box-shadow: var(--shadow-lg);
}

.frame-secondary {
  position: absolute;
  right: 34px;
  bottom: 0;
  width: 56%;
  aspect-ratio: 4 / 3.1;
  border: 8px solid var(--white);
  box-shadow: var(--shadow-lg);
}

.visual-caption {
  position: absolute;
  left: -10px;
  bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  transform: rotate(-90deg);
  transform-origin: left bottom;
}

.certifications-section {
  background:
    linear-gradient(120deg, rgba(23, 105, 167, 0.08), transparent 48%),
    var(--white);
  border-bottom: 1px solid var(--line);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.cert-main {
  grid-row: auto;
}

.cert-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}

.cert-card a {
  display: block;
  background: var(--paper-deep);
}

.cert-card img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  transition: transform 240ms ease;
}

.cert-card a:hover img {
  transform: scale(1.015);
}

.cert-card figcaption {
  padding: 13px 16px 15px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.cert-card:nth-child(1) {
  border-top: 4px solid var(--blue);
}

.cert-card:nth-child(2) {
  border-top: 4px solid var(--green);
}

.cert-card:nth-child(3) {
  border-top: 4px solid var(--amber);
}

.cert-card:nth-child(4) {
  border-top: 4px solid var(--berry);
}

.cert-chip-msds {
  border: 2px solid #a83c1f;
  background: linear-gradient(135deg, #e0653a, #c94d2b);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(201, 77, 43, 0.24);
}

.products-section {
  background:
    linear-gradient(180deg, rgba(23, 105, 167, 0.09), rgba(255, 255, 255, 0) 36%),
    var(--paper);
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 340px) 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 30px;
}

.product-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.product-search input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(13, 111, 141, 0.12);
}

.category-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 700;
}

.filter-chip.is-active {
  border-color: var(--teal-panel);
  background: var(--teal-panel);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 42px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--muted);
  text-align: center;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.4;
  background: var(--paper-deep);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: transform 280ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-model {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  border-radius: 5px;
  background: var(--amber);
  color: #241c08;
  font-size: 12px;
  font-weight: 800;
}

.product-card[data-category="machines"] .product-model {
  background: var(--blue);
  color: var(--white);
}

.product-card[data-category="agents"] .product-model {
  background: var(--orange);
  color: var(--white);
}

.product-card[data-category="sweepers"] .product-model {
  background: var(--green);
  color: var(--white);
}

.product-card[data-category="guns"] .product-model {
  background: var(--berry);
  color: var(--white);
}

.product-card[data-category="coatings"] .product-model {
  background: var(--amber);
  color: #241c08;
}

.product-body {
  display: flex;
  flex-direction: column;
  min-height: 214px;
  padding: 20px;
}

.product-series {
  margin-bottom: 7px;
  color: var(--cyan-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-body h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.3;
}

.product-body p {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border: 0;
  background: transparent;
  color: var(--cyan-deep);
  font-weight: 800;
  font-size: 14px;
}

.product-detail-button::after {
  content: "->";
  color: var(--amber);
  font-weight: 900;
}

.applications-section {
  background: var(--teal-panel);
  color: var(--white);
}

.applications-section .eyebrow {
  color: #76e0ec;
}

.applications-section .section-heading h2 {
  color: var(--white);
}

.applications-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.app-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 600;
}

.app-item::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(32, 190, 126, 0.18);
}

.app-item:nth-child(5n + 1)::before {
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 105, 167, 0.16);
}

.app-item:nth-child(5n + 2)::before {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(201, 92, 59, 0.15);
}

.app-item:nth-child(5n + 3)::before {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 123, 90, 0.16);
}

.app-item:nth-child(5n + 4)::before {
  background: var(--berry);
  box-shadow: 0 0 0 4px rgba(119, 89, 160, 0.16);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.equipment-item {
  position: relative;
  padding: 22px 18px;
  border-top: 3px solid var(--amber);
  background: rgba(5, 28, 37, 0.55);
  font-size: 15px;
  font-weight: 700;
}

.equipment-item:nth-child(1) {
  border-top-color: var(--blue);
}

.equipment-item:nth-child(2) {
  border-top-color: var(--orange);
}

.equipment-item:nth-child(3) {
  border-top-color: var(--green);
}

.equipment-item:nth-child(4) {
  border-top-color: var(--berry);
}

.equipment-item:nth-child(5) {
  border-top-color: var(--amber);
}

.equipment-item::after {
  content: attr(data-index);
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.cases-section {
  background:
    linear-gradient(120deg, rgba(217, 147, 16, 0.1), transparent 42%),
    var(--white);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 54px;
  align-items: center;
}

.case-layout figure {
  overflow: hidden;
  max-height: 660px;
  box-shadow: var(--shadow-lg);
}

.case-layout figure img {
  width: 100%;
  height: 660px;
  object-fit: cover;
  object-position: top;
}

.case-content li {
  position: relative;
  margin-bottom: 11px;
  padding: 9px 0 9px 26px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 600;
}

.case-content li::before {
  position: absolute;
  left: 0;
  top: 16px;
  width: 13px;
  height: 3px;
  background: var(--cyan);
  content: "";
}

.case-content > p {
  margin-top: 24px;
  color: var(--muted);
}

.media-section {
  background:
    linear-gradient(180deg, rgba(15, 157, 183, 0.06), transparent 40%),
    var(--paper);
}

.compare-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
}

.compare-card {
  flex: 0 0 min(430px, 78vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.compare-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #b9c6cc;
  user-select: none;
}

.compare-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-before {
  clip-path: inset(0 calc(100% - var(--compare-pos, 50%)) 0 0);
}

.compare-range {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 7%;
  z-index: 4;
  width: 92%;
  accent-color: var(--cyan);
  cursor: ew-resize;
}

.compare-caption {
  display: flex;
  justify-content: space-between;
  padding: 13px 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.compare-caption span:first-child {
  color: var(--orange);
}

.compare-caption span:last-child {
  color: var(--green);
}

.media-subheading {
  max-width: 720px;
  margin: 66px 0 22px;
}

.media-subheading h3 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.media-subheading p {
  color: var(--muted);
}

.video-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-snap-type: x proximity;
}

.video-item {
  flex: 0 0 min(370px, 80vw);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
}

.video-item video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0b2028;
}

.video-frame {
  position: relative;
  display: block;
}

.video-annotation {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  max-width: calc(100% - 24px);
  border-radius: 4px;
  padding: 6px 10px;
  background: rgba(6, 27, 34, 0.76);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  pointer-events: none;
  white-space: normal;
}

.video-item h4 {
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--ink-soft);
  font-size: 15px;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(9, 118, 139, 0.09), rgba(232, 164, 28, 0.08)),
    var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: 70px;
  align-items: center;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-list div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--cyan-deep);
  font-weight: 800;
}

.contact-list dd {
  color: var(--ink-soft);
}

.contact-list a {
  color: var(--cyan-deep);
  font-weight: 700;
  word-break: break-word;
}

.wa-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  gap: 8px;
  border: 1px solid #9ed0b8;
  border-radius: 999px;
  padding: 5px 14px;
  background: #e7f5ef;
  color: #0f6044;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.wa-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1b8a60;
}

.wa-pill:hover {
  border-color: #1b8a60;
  background: #dcefe6;
  color: #0b5238;
}

.email-list {
  display: grid;
  gap: 9px;
}

.email-item {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  border: 1px solid #9ec2dc;
  border-radius: 999px;
  padding: 5px 14px 5px 5px;
  background: #e8f3fb;
  color: #0d5474;
  font-weight: 700;
}

.email-badge {
  border-radius: 999px;
  padding: 5px 9px;
  background: #1769a7;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.email-badge.outlook {
  background: #0078d4;
}

.email-badge.google {
  background: #4285f4;
}

.email-address {
  min-width: 0;
  word-break: break-word;
}

.email-item:hover {
  border-color: #1769a7;
  background: #d9ebf7;
}

.contact-separator {
  margin: 0 7px;
  color: var(--line);
}

.plus-code {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.contact-manual {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}

.contact-manual img {
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.contact-manual p {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.qr-block {
  max-width: 320px;
}

.qr-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.qr-panel {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.qr-panel img {
  box-shadow: none;
}

.qr-panel figcaption {
  margin-top: 8px;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer {
  background: #102b34;
  color: rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.footer-brand {
  margin-bottom: 6px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
  display: grid;
  gap: 7px;
  justify-items: end;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.footer-wa {
  display: grid;
  gap: 2px;
}

.footer-wa strong {
  color: rgba(255, 255, 255, 0.92);
}

.footer-wa span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-contact a:hover {
  color: var(--amber);
}

.footer-note {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.product-dialog {
  width: min(1080px, calc(100% - 36px));
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.product-dialog::backdrop {
  background: rgba(5, 24, 32, 0.7);
  backdrop-filter: blur(4px);
}

.dialog-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  min-height: 520px;
}

.dialog-media {
  overflow: hidden;
  background: var(--paper-deep);
  max-height: 680px;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.dialog-content {
  padding: 42px;
  overflow-y: auto;
  max-height: 680px;
}

.dialog-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 5;
  border: 0;
  border-radius: var(--radius);
  padding: 9px 13px;
  background: rgba(5, 25, 33, 0.78);
  color: var(--white);
  font-weight: 700;
}

.dialog-series {
  margin-bottom: 8px;
  color: var(--cyan-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-content h2 {
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 1.16;
}

.dialog-model {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  background: var(--amber);
  color: #241c08;
  border-radius: 5px;
  font-weight: 800;
}

.dialog-content > p {
  margin-bottom: 20px;
  color: var(--muted);
}

.dialog-block h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.dialog-block {
  margin-top: 24px;
}

.dialog-block li {
  position: relative;
  margin: 7px 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.dialog-block li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  content: "";
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table td {
  padding: 9px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.spec-table td:first-child {
  width: 42%;
  color: var(--muted);
  font-weight: 600;
}

.dialog-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  border-radius: var(--radius);
  padding: 0 20px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.dialog-quote:hover {
  background: #146a4d;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 120;
  padding: 12px 18px;
  transform: translateX(-50%);
  border-radius: var(--radius);
  background: var(--teal-panel);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

  .whatsapp-float:hover {
    background: #146a4d;
    color: var(--white);
  }

@media (max-width: 1080px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .application-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .equipment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .site-nav,
  .header-inner > .button {
    display: none;
  }

  .utility-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding: 9px 0;
  }

  .utility-links {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .utility-links a {
    white-space: normal;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .container {
    width: min(100% - 36px, 680px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-block:nth-child(2) {
    border-right: 0;
  }

  .stat-block:nth-child(1),
  .stat-block:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .stat-block:nth-child(n + 3) {
    padding-left: 0;
  }

  .stat-block:nth-child(even) {
    padding-left: 30px;
  }

  .company-layout,
  .case-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .customer-band {
    margin-top: 58px;
  }

  .customer-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-visual {
    max-width: 480px;
  }

  .hero-content {
    margin-left: auto;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cert-main {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 660px;
  }

  .hero-content {
    padding: 96px 0 128px;
  }

  .hero-foot {
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .container {
    width: min(100% - 28px, 680px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;
    grid-template-columns: 140px 1fr;
  }

  .product-media {
    height: 100%;
    aspect-ratio: auto;
  }

  .product-body {
    min-height: 220px;
  }

  .about-points,
  .application-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .customer-logo {
    min-height: 82px;
    padding: 10px 12px;
  }

  .customer-logo img {
    max-width: 150px;
    height: 46px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-block,
  .stat-block:nth-child(2),
  .stat-block:nth-child(even) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat-block:last-child {
    border-bottom: 0;
  }

  .case-layout figure img {
    height: 460px;
  }

  .compare-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .dialog-media {
    max-height: 340px;
  }

  .dialog-media img {
    object-position: top;
  }

  .dialog-content {
    padding: 28px 22px 34px;
    max-height: none;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-items: start;
  }
}

/* ---- Color preview overrides: preview only, not synced yet ---- */
.site-header {
  background: #f5fafd;
  border-bottom-color: #9dc3d8;
}

.mobile-nav {
  background: #f5fafd;
}

.product-card {
  border-color: #84b3cf;
  background: #edf6fb;
  box-shadow: 0 10px 24px rgba(23, 105, 167, 0.1);
}

.product-card[data-category="machines"] {
  border-color: #5f9cc4;
  background: #e5f1fa;
}

.product-card[data-category="agents"] {
  border-color: #d99a86;
  background: #fceee8;
}

.product-card[data-category="sweepers"] {
  border-color: #72bda0;
  background: #e5f5ee;
}

.product-card[data-category="guns"] {
  border-color: #b09bd0;
  background: #f0eaf7;
}

.product-card[data-category="coatings"] {
  border-color: #dcb55d;
  background: #fdf3dd;
}

.product-card .product-media {
  background: #d8eaf5;
}

.product-card[data-category="agents"] .product-media {
  background: #f5ddd3;
}

.product-card[data-category="sweepers"] .product-media {
  background: #d7eee4;
}

.product-card[data-category="guns"] .product-media {
  background: #e2d9ef;
}

.product-card[data-category="coatings"] .product-media {
  background: #f8e6b5;
}

.cert-card {
  border-color: #8eb9d5;
  background: #e5f2fb;
}

.cert-card:nth-child(1) {
  background: #e5f2fb;
}

.cert-card:nth-child(2) {
  background: #e4f5ed;
}

.cert-card:nth-child(3) {
  background: #fdf1d8;
}

.cert-card:nth-child(4) {
  background: #efe7f8;
}

.cert-card a {
  background: #d9ebf5;
}

.cert-card:nth-child(2) a {
  background: #d7efe4;
}

.cert-card:nth-child(3) a {
  background: #f9e7bf;
}

.cert-card:nth-child(4) a {
  background: #e2d6ef;
}

.compare-card {
  border-color: #83b8d9;
  background: #e9f4fb;
}

.video-item {
  border-color: #83b8d9;
  background: #e9f2fa;
}

.filter-chip {
  border-color: #8cb5cf;
  background: #eef6fb;
}

.filter-chip.is-active {
  border-color: #1769a7;
  background: #1769a7;
}

.product-search input {
  border-color: #88b4cf;
  background: #f0f7fc;
}

.qr-panel {
  border-color: #d7a63c;
  background: #fbf0d5;
}

.frame-secondary {
  border-color: #0d6f8d;
}

.about-points div:nth-child(1) {
  background: #e6f2fb;
}

.about-points div:nth-child(2) {
  background: #fdf3dd;
}

.about-points div:nth-child(3) {
  background: #e5f4ed;
}

.product-dialog {
  border: 1px solid #9cc2d8;
  background: #eef6fb;
}

.dialog-media {
  background: #d9ebf5;
}

.dialog-content {
  background: #e7f3fa;
}

/* ---- Remove remaining white/near-white surfaces (preview only) ---- */
body {
  background: #d6e8f1;
}

.company-section {
  background: #e5f2fa;
}

.products-section {
  background: #dcecf6;
}

.certifications-section {
  background: #d9ebf5;
}

.cases-section {
  background: #f3e7cd;
}

.media-section {
  background: #d9ede7;
}

.contact-section {
  background: #eee4dc;
}

.stats-band {
  background: linear-gradient(90deg, #d8eaf5 0%, #d5e7f2 48%, #d5eee4 100%);
  border-bottom-color: #aac8da;
}

.product-search input,
.filter-chip {
  background: #d8eaf4;
  border-color: #6f9fbb;
}

.compare-card,
.video-item {
  background: #cfe6f2;
  border-color: #5f9abc;
}

.cert-card {
  background: #cfe5f1;
}

.cert-card:nth-child(2) {
  background: #cde9dc;
}

.cert-card:nth-child(3) {
  background: #f5e4bd;
}

.cert-card:nth-child(4) {
  background: #e7dcf2;
}

.cert-card a {
  background: #bddced;
}

.cert-card:nth-child(2) a {
  background: #bfe2d3;
}

.cert-card:nth-child(3) a {
  background: #efd7a3;
}

.cert-card:nth-child(4) a {
  background: #d5c1e8;
}

.about-points div,
.contact-manual,
.empty-state {
  background: #d8ebf4;
}

.about-points div:nth-child(2) {
  background: #f7e8c5;
}

.about-points div:nth-child(3) {
  background: #d3ecdf;
}

.dialog-media {
  background: #bcd9ea;
}

.dialog-content {
  background: #dcecf5;
}

.skip-link {
  background: #1769a7;
  color: #ffffff;
}

.cert-chip {
  border-color: #6e9dbb;
  background: #d8eaf4;
  color: #0e4a75;
}

.product-dialog {
  border-color: #7ba9c2;
  background: #d2e8f3;
}

.qr-panel {
  background: #f5dfa4;
  border-color: #c79022;
}

.product-media {
  background: #bfdced;
}

.product-card[data-category="machines"] .product-media {
  background: #b7d9ee;
}

.product-card[data-category="agents"] .product-media {
  background: #f0cdc0;
}

.product-card[data-category="sweepers"] .product-media {
  background: #bde2d2;
}

.product-card[data-category="guns"] .product-media {
  background: #d6c6e8;
}

.product-card[data-category="coatings"] .product-media {
  background: #f1d392;
}

.hero .button-light {
  background: #e2a40f;
  color: #231a07;
}

.brand-copy span,
.utility-bar,
.site-footer {
  color: #ffffff;
}

/* ---- Unified product color (preview only) ---- */
.product-card,
.product-card[data-category] {
  border-color: #5f9fc7;
  background: #d7ebf6;
}

.product-card .product-media,
.product-card[data-category] .product-media {
  background: #bcd9e9;
}

.product-card .product-model,
.product-card[data-category] .product-model {
  background: #1769a7;
  color: #ffffff;
}

/* ---- Larger type preview (preview only) ---- */
body {
  font-size: 17px;
}

.utility-inner {
  font-size: 15px;
}

.utility-links a {
  font-size: 15px;
}

.eyebrow {
  font-size: 14px;
}

.hero-foot {
  font-size: 15px;
}

.stat-label {
  font-size: 16px;
}

.stat-block .stat-value {
  font-size: 34px;
}

.product-series {
  font-size: 13px;
}

.product-model {
  font-size: 13px;
}

.product-body h3 {
  font-size: 20px;
}

.product-body p {
  font-size: 16px;
}

.product-detail-button {
  font-size: 15px;
}

.filter-chip {
  font-size: 15px;
}

.cert-chip {
  font-size: 15px;
}

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

.cert-card figcaption {
  font-size: 16px;
}

.app-item {
  font-size: 16px;
}

.equipment-item {
  font-size: 16px;
}

.case-content li {
  font-size: 17px;
}

.compare-caption {
  font-size: 15px;
}

.video-item h4 {
  font-size: 16px;
}

.contact-manual p {
  font-size: 15px;
}

.plus-code {
  font-size: 14px;
}

.footer-links a,
.footer-contact a,
.footer-note {
  font-size: 15px;
}

.footer-brand {
  font-size: 17px;
}

.hero .eyebrow {
  font-size: 24px;
  letter-spacing: 0.08em;
}

@media (max-width: 620px) {
  .hero .eyebrow {
    font-size: 19px;
    letter-spacing: 0.05em;
  }
}

/* ---- Application preview only ---- */
.application-filter {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
}

.application-label {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-application {
  display: block;
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .application-filter {
    align-items: flex-start;
    flex-direction: column;
  }
}

.featured-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  border-radius: 5px;
  padding: 5px 10px;
  background: #e0a30d;
  color: #241a04;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(20, 15, 4, 0.2);
}

.featured-block {
  margin: 0 0 30px;
  border: 1px solid #d8b85a;
  border-radius: 10px;
  padding: 20px;
  background:
    linear-gradient(120deg, rgba(224, 163, 13, 0.12), transparent 48%),
    #fbf8ee;
}

.featured-block-label {
  margin: 0 0 16px;
  color: #9a6c08;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.featured-products .product-card {
  border-color: #dcbb62;
  box-shadow: 0 14px 30px rgba(150, 105, 10, 0.14);
}

@media (max-width: 900px) {
  .featured-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .featured-products {
    grid-template-columns: 1fr;
  }
}

/* ---- Cleaning Services ---- */
.services-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(23, 105, 167, 0.12), transparent 28%),
    linear-gradient(150deg, #dcecf5, #eef4f2 55%, #f7eede);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.service-card-energized {
  border-color: #5f9fc7;
  background: #dceef8;
}

.service-card-pressure {
  border-color: #67b99b;
  background: #dff1e9;
}

.service-card-chemical {
  border-color: #dcb15a;
  background: #fbefd4;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  border-radius: 999px;
  padding: 6px 11px;
  background: #102e3c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-kicker {
  margin-bottom: 8px;
  color: #0a4f68;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-content h3 {
  margin-bottom: 10px;
  color: #122b36;
  font-size: 21px;
  line-height: 1.25;
}

.service-content > p:not(.service-kicker) {
  color: #35505d;
  font-size: 15px;
}

.service-content ul {
  margin: 18px 0 20px;
}

.service-content li {
  position: relative;
  margin: 8px 0;
  padding-left: 17px;
  color: #27424e;
  font-size: 14px;
}

.service-content li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1769a7;
  content: "";
}

.service-card-pressure li::before {
  background: #1b8a60;
}

.service-card-chemical li::before {
  background: #bd7f0f;
}

.service-result {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 2px 0 20px;
  padding: 11px 13px;
  border: 1px solid rgba(18, 43, 54, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.service-result strong {
  color: #0a4f68;
  font-size: 18px;
  white-space: nowrap;
}

.service-result span {
  color: #526b75;
  font-size: 12px;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: auto;
  border-radius: 7px;
  padding: 0 18px;
  background: #0a4f68;
  color: #ffffff;
  font-weight: 800;
}

.service-card-pressure .service-cta {
  background: #146a4d;
}

.service-card-chemical .service-cta {
  background: #9a6c08;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #0d3441;
}

.service-process div {
  padding: 18px;
  background: #123c4b;
  color: #dceff6;
}

.service-process span {
  display: block;
  margin-bottom: 5px;
  color: #e2a30d;
  font-size: 12px;
  font-weight: 900;
}

.service-process strong {
  font-size: 14px;
}

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

@media (max-width: 620px) {
  .service-process {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .filter-bar {
    grid-template-columns: 1fr;
  }
}

.service-media {
  aspect-ratio: auto;
  height: 300px;
  background: #d5e7f1;
}

.service-media img {
  object-fit: contain;
  object-position: center;
}

.service-card-pressure .service-media {
  background: #cfe9dc;
}

.service-card-chemical .service-media {
  background: #f6e3b5;
}

.dialog-media {
  position: relative;
}

.dialog-gallery {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  border-radius: 8px;
  padding: 7px;
  background: rgba(8, 29, 39, 0.72);
}

.detail-thumb {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  padding: 0;
  background: #d9ebf5;
  opacity: 0.82;
}

.detail-thumb.is-active {
  border-color: #f2b31c;
  opacity: 1;
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-media {
  height: min(680px, calc(90vh - 140px));
  max-height: none;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 620px) {
  .dialog-media {
    height: 340px;
    max-height: none;
  }
}

.brand-logo {
  display: block;
  width: 50px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.dialog-price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 9px;
  width: 100%;
  margin: 0 0 18px;
  border-left: 5px solid #f2b31c;
  border-radius: 9px;
  padding: 13px 16px;
  background: linear-gradient(90deg, #0a4f68, #1769a7);
  color: #ffffff;
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(9, 62, 82, 0.22);
}

.dialog-price::before {
  content: "Price";
  color: #ffd257;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 620px) {
  .dialog-price {
    font-size: 18px;
  }
}

.frame-secondary {
  border-color: #4f9fc7;
}

.frame-secondary img {
  filter: blur(1.4px) saturate(0.96);
  transform: scale(1.04);
}

.fb-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #85b4dd;
  border-radius: 999px;
  padding: 5px 14px;
  background: #dcebf7;
  color: #0a5a94;
  font-size: 14px;
  font-weight: 800;
}

.fb-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #0a66c2;
}

.fb-pill:hover {
  border-color: #0a66c2;
  background: #cfe3f5;
  color: #06467a;
}

.cert-chip-msds {
  border: 2px solid #f4b53c;
  background: #f05a28;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 0 0 4px rgba(240, 90, 40, 0.22), 0 4px 14px rgba(240, 90, 40, 0.28);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.quote-form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.quote-form-title {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.quote-form-heading strong {
  color: var(--ink);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0;
}

.quote-form-heading span {
  color: var(--muted);
  font-size: 14px;
}

.quote-form-photo {
  width: clamp(140px, 34%, 260px);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--cyan-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.quote-field-full {
  grid-column: 1 / -1;
}

.quote-field input,
.quote-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfdff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
}

.quote-field textarea {
  min-height: 110px;
  resize: vertical;
}

.quote-field input:focus,
.quote-field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(23, 105, 167, 0.14);
}

.quote-submit {
  grid-column: 1 / -1;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  background: var(--orange);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}

.quote-submit:hover {
  background: #b34a2d;
}

.quote-form + .contact-list {
  margin-top: 18px;
}

@media (max-width: 640px) {
  .quote-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .quote-form-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-form-photo {
    width: 100%;
    max-width: 320px;
  }
}

.whatsapp-float {
  width: 58px;
  height: 58px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex: none;
  fill: currentColor;
}

.compare-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.video-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

.product-more-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
}

.product-more-button {
  min-height: 46px;
  padding: 0 28px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue);
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.product-more-button:hover {
  background: var(--blue);
  color: var(--white);
}

.product-more-button-secondary {
  border-color: var(--line);
  color: var(--ink-soft);
}

.product-more-button-secondary:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

@media (max-width: 620px) {
  .product-card {
    grid-template-columns: 116px 1fr;
  }

  .product-body {
    min-height: 0;
    padding: 14px;
  }

  .product-body h3 {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 1.25;
  }

  .product-body p {
    margin-bottom: 8px;
    font-size: 13px;
    -webkit-line-clamp: 2;
  }

  .product-detail-button {
    margin-top: auto;
  }
}
