:root {
  --navy: #0b1424;
  --steel: #1a3358;
  --cyan: #c6a15a;
  --gold: #c6a15a;
  --ice: #f3f6f8;
  --ink: #0e1820;
  --muted: #5b6b76;
  --line: #d7e0e6;
  --paper: #f3f6f8;
  --accent: #c6a15a;
  --accent-dark: #a6843e;
  --header-h: 72px;
  --cookie-h: 0px;
  --fab-clear: 0px;
  --radius: 12px;
  --shadow: 0 16px 40px rgba(7, 24, 36, .08);
  --font: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
  --font-head: "IBM Plex Sans", "Source Sans 3", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}
img, svg { max-width: 100%; height: auto; }
img { display: block; }
h1, h2, h3, h4, .hero-title, .page-title {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.18;
}
a { color: var(--steel); text-decoration: none; }
a:hover { color: var(--cyan); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { left: 8px; }

.media-frame,
.product-card-media,
.service-card-media,
.brand-card-media,
.doc-card-media,
.post-card-media,
.hero-industrial-media {
  display: block;
  overflow: hidden;
  background: var(--steel);
}
.hero-industrial-media { aspect-ratio: 1600 / 700; }
.product-card-media { aspect-ratio: 4 / 3; }
.service-card-media { aspect-ratio: 16 / 10; }
.brand-card-media {
  aspect-ratio: 16 / 9;
  background: #f3f6f8;
  padding: 1.1rem 1.25rem;
}
.post-card-media { aspect-ratio: 16 / 9; background: #0b1c28; }
.doc-card-media { aspect-ratio: 3 / 4; }
.media-frame img,
.product-card-media img,
.service-card-media img,
.hero-industrial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.brand-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 44px;
  padding: .55rem 1.15rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  line-height: 1.2;
}
.btn-accent { background: var(--cyan); color: #0b1424; }
.btn-accent:hover { background: var(--accent-dark); color: #0b1424; }
.btn-wa { background: #1f9d4a; color: #fff; }
.btn-wa:hover { background: #188a3f; color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #b38d1c; color: var(--navy); }
.btn-ghost-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}
.btn-ghost-light:hover { color: #fff; background: rgba(255,255,255,.16); border-color: #fff; }
.btn-cta-ghost {
  background: transparent;
  border: 1.5px solid var(--steel);
  color: var(--steel);
}
.btn-cta-ghost:hover { background: var(--steel); color: #fff; }
.btn-cta-solid { background: var(--navy); color: #fff; }
.btn-cta-solid:hover { background: var(--steel); color: #fff; }
.btn-ghost-call {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  background: #fff;
}
.btn-ghost-call:hover { background: var(--ice); color: var(--steel); }
.mag-band { padding-top: 2.2rem; padding-bottom: 2.2rem; }
.mag-band:nth-child(even) { background: #f4f7fb; }
.mag-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; border-bottom: 2px solid var(--navy); margin-bottom: 1.1rem; padding-bottom: .45rem; }
.mag-head h2 { margin: 0; font-size: 1.45rem; }
.mag-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.25rem; align-items: start; }
.mag-lead img { width: 100%; height: 240px; object-fit: cover; border-radius: 8px; display: block; margin-bottom: .7rem; background: var(--navy); }
.mag-lead h3, .mag-list h3 { font-size: 1.15rem; margin: 0 0 .35rem; }
.mag-lead a, .mag-list a { color: inherit; text-decoration: none; }
.mag-lead p, .mag-list p { color: #3d4d63; margin: 0; }
.mag-lead-copy { display: flex; flex-direction: column; gap: .55rem; }
.mag-lead-copy .text-link { margin-top: .15rem; }
.mag-list { display: flex; flex-direction: column; gap: .85rem; }
.mag-list article { padding-bottom: .85rem; border-bottom: 1px solid #e2e8f0; }
.mag-grid.is-solo { grid-template-columns: 1fr; }
.mag-grid.is-solo .mag-lead {
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  gap: 1.35rem;
  align-items: center;
}
.mag-grid.is-solo .mag-lead img { height: 230px; margin: 0; }
@media (max-width: 800px) {
  .mag-grid { grid-template-columns: 1fr; }
  .mag-grid.is-solo .mag-lead { grid-template-columns: 1fr; }
  .mag-grid.is-solo .mag-lead img { height: 200px; }
}
.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255,255,255,.7);
  background: transparent;
}
.btn-outline-light:hover { background: #fff; color: var(--navy); }
.cta-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.cta-actions .btn { white-space: nowrap; }

.topbar {
  background: #fff;
  color: var(--steel);
  font-size: .8rem;
  border-bottom: 1px solid var(--line);
}
.topbar a { color: var(--steel); }
.topbar-inner {
  display: flex;
  align-items: center;
  gap: .75rem 1.15rem;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar-accred {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: .72rem;
  text-transform: uppercase;
  padding: .28rem .7rem;
  border: 1px solid rgba(201, 162, 39, .38);
  border-radius: 999px;
  background: rgba(201, 162, 39, .08);
  flex-shrink: 0;
}
.topbar-accred em { font-style: normal; color: var(--steel); letter-spacing: .12em; }
.topbar-links {
  display: flex;
  gap: .55rem .85rem;
  align-items: center;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.topbar-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--navy) !important;
  font-weight: 600;
  white-space: nowrap;
}
.topbar-chip svg { flex-shrink: 0; color: var(--cyan); }
.topbar-chip:hover { color: var(--gold) !important; }
.topbar-search {
  display: flex;
  align-items: stretch;
  position: relative;
  margin-left: .15rem;
  overflow: visible;
  background: transparent;
  border: 0;
}
.topbar-search-field {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #f7f5f0;
}
.topbar-search input {
  width: min(240px, 36vw);
  height: 32px;
  border: 0;
  border-radius: 0;
  padding: 0 .85rem;
  font-size: .82rem;
  background: transparent;
  color: var(--navy);
}
.topbar-search input::placeholder { color: #8aa3ae; }
.topbar-search button {
  height: 32px;
  border: 0;
  background: var(--cyan);
  color: #041018;
  font-weight: 700;
  padding: 0 .95rem;
  font-size: .78rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled { box-shadow: 0 10px 28px rgba(7,24,36,.08); }
.site-header.is-menu-open { z-index: 120; }
.header-main { background: #fff; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: var(--header-h);
  min-width: 0;
}
.navbar-brand {
  line-height: 0;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.brand-logo { height: 58px; width: auto; max-width: min(70vw, 320px); object-fit: contain; }
.brand-logo-footer { height: 52px; max-width: 280px; background: transparent; }
.footer-logo { background: transparent; display: inline-block; line-height: 0; }
.header-nav {
  display: none;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: .05rem;
  min-width: 0;
}
.header-nav .nav-link {
  font-weight: 600;
  color: var(--navy) !important;
  padding: .5rem .7rem;
  border-radius: 8px;
  white-space: nowrap;
  font-size: .95rem;
}
.header-nav .nav-link:hover { background: var(--ice); color: var(--steel) !important; }
.header-nav .nav-link.is-active { color: var(--cyan) !important; }
.header-tools { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; margin-left: .25rem; }
.header-cta { white-space: nowrap; }
.lang-drop { position: relative; flex-shrink: 0; }
.lang-drop summary { list-style: none; cursor: pointer; border: 1px solid var(--line); color: var(--navy); border-radius: 8px; padding: .28rem .7rem; font-size: .85rem; display: inline-flex; align-items: center; gap: .45rem; background: #fff; }
.lang-flag { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; flex-shrink: 0; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.12); }
.lang-drop summary::-webkit-details-marker { display: none; }
.lang-drop-menu { position: absolute; right: 0; top: calc(100% + 6px); min-width: 140px; background: #fff; color: var(--ink); border-radius: 10px; box-shadow: var(--shadow); padding: .35rem; z-index: 40; }
.lang-drop-menu a { display: flex; align-items: center; gap: .5rem; padding: .45rem .7rem; border-radius: 8px; color: var(--ink); }
.lang-drop-menu a:hover { background: var(--ice); }
html[dir="rtl"] body { text-align: right; }
.lang-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; flex-shrink: 0; }
.lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .32rem .55rem;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted);
}
.lang-switch a.is-active { background: var(--navy); color: #fff; }
.lang-switch.is-topbar {
  border-color: var(--line);
  background: #fff;
}
.lang-switch.is-topbar a { color: var(--steel); padding: .2rem .48rem; }
.lang-switch.is-topbar a:hover { color: var(--navy); }
.lang-switch.is-topbar a.is-active {
  background: var(--cyan);
  color: #041018;
}
.lang-flag { display: inline-flex; width: 20px; height: 14px; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(0,0,0,.14); }
.lang-flag svg { display: block; width: 100%; height: 100%; }

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--ice);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-item.has-drop { position: relative; }
.nav-item.has-drop > .nav-link { display: inline-flex; align-items: center; }
.nav-item.has-drop > .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: .35rem;
}
.nav-drop {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 260px;
  max-width: min(720px, 82vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .55rem;
  box-shadow: var(--shadow);
  z-index: 90;
  grid-template-columns: 1fr;
  gap: .1rem;
}
.nav-drop.is-mega,
.nav-item.has-drop.is-mega > .nav-drop {
  min-width: min(640px, 82vw);
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  padding: .75rem;
}
.nav-item.has-drop:hover > .nav-drop,
.nav-item.has-drop:focus-within > .nav-drop,
.nav-item.has-drop.is-open > .nav-drop { display: grid; }
.nav-drop a {
  display: block;
  padding: .55rem .8rem;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 500;
}
.nav-drop a:hover,
.nav-drop a:focus { background: var(--ice); color: var(--cyan); }
.nav-drop-label {
  display: block;
  padding: .65rem .8rem .25rem;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7a8b96;
  font-weight: 700;
  grid-column: 1 / -1;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: transparent;
  pointer-events: none;
  visibility: hidden;
}
.mobile-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(7, 24, 36, .48);
  opacity: 0;
  cursor: pointer;
  transition: opacity .28s ease;
}
.mobile-drawer.is-open .mobile-drawer-backdrop { opacity: 1; }
.mobile-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(400px, 88vw);
  height: 100dvh;
  padding: 1rem 1.15rem 2rem;
  overflow: auto;
  background: #fff;
  box-shadow: -18px 0 48px rgba(7, 24, 36, .2);
  transform: translateX(100%);
  transition: transform .28s ease;
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}
.mobile-drawer-title {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7a8b96;
  margin-bottom: .2rem;
}
.mobile-phone { display: block; font-weight: 700; color: var(--ink); }
.mobile-drawer-close {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 0;
  border-radius: 10px;
  background: var(--ice);
  position: relative;
}
.mobile-drawer-close span {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  top: 50%;
}
.mobile-drawer-close span:first-child { transform: rotate(45deg); }
.mobile-drawer-close span:last-child { transform: rotate(-45deg); }
.mobile-nav { display: grid; }
.mobile-acc { border-bottom: 1px solid var(--line); }
.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .95rem 0;
  font-weight: 600;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  background: none;
  text-align: left;
  font-size: 1rem;
  font-family: inherit;
}
.mobile-acc > .mobile-link { border-bottom: 0; }
.mobile-link.is-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.mobile-link.is-toggle[aria-expanded="true"]::after { transform: rotate(-135deg); }
.mobile-sub { padding: 0 0 .35rem; }
.mobile-link.is-active { color: var(--cyan); }
.mobile-link.is-child { padding-left: 1rem; font-weight: 500; font-size: .95rem; color: var(--muted); border-bottom: 0; }
.mobile-link.is-grand { padding-left: 1.65rem; }
.mobile-link.is-label { color: #7a8b96; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; }
.mobile-drawer-actions { display: grid; gap: .65rem; margin-top: 1.15rem; }
.mobile-drawer-actions .btn { width: 100%; justify-content: center; }

.breadcrumb-wrap { background: var(--ice); padding: .7rem 0; font-size: .9rem; border-bottom: 1px solid var(--line); }
.breadcrumb-wrap.has-photo {
  position: relative;
  min-height: 108px;
  display: flex;
  align-items: center;
  background: var(--navy);
  border-bottom: 0;
  overflow: hidden;
  color: #e8eef1;
}
.breadcrumb-wrap.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,24,36,.88) 0%, rgba(7,24,36,.58) 52%, rgba(7,24,36,.34) 100%),
    var(--crumb-img) center / cover no-repeat;
}
.breadcrumb-wrap.has-photo .container { position: relative; z-index: 1; }
.breadcrumb-wrap.has-photo a { color: #fff; }
.breadcrumb-wrap.has-photo a:hover { color: var(--gold); }
.breadcrumb-wrap.has-photo .breadcrumb-item.active { color: #c9d7de; }
.breadcrumb-wrap.has-photo .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .35rem; list-style: none; padding: 0; margin: 0; }
.breadcrumb-item + .breadcrumb-item::before { content: "/"; color: var(--muted); margin-right: .35rem; }
.breadcrumb-item.active { color: var(--muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 700;
  margin-bottom: .45rem;
}
.section { padding: 3.4rem 0; }
.section.alt { background: var(--ice); }
.section-band { padding: 3.6rem 0; }
.section-band.is-navy { background: var(--navy); color: #e8eef1; }
.section-band.is-navy h2, .section-band.is-navy .eyebrow { color: #fff; }
.section-band.is-navy .eyebrow { color: var(--gold); }
.section-band.is-steel { background: var(--steel); color: #e8eef1; }
.section-intro { max-width: 40rem; margin-bottom: 2rem; }
.section-intro h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: .3rem 0 .55rem; }
.section-intro p { color: var(--muted); margin: 0; }
.text-link { font-weight: 700; color: var(--cyan); }
.text-link:hover { color: var(--steel); }

.hero-industrial {
  position: relative;
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}
.hero-industrial .carousel-item { position: relative; }
.hero-industrial-slide {
  position: relative;
  min-height: 420px;
}
.hero-industrial-visual {
  position: absolute;
  inset: 0;
}
.hero-copy { position: relative; z-index: 1; }
.hero-industrial-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-industrial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-industrial-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-industrial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,24,36,.88) 0%, rgba(18,52,77,.55) 48%, rgba(7,24,36,.28) 100%);
}
.hero-industrial .container {
  position: relative;
  z-index: 1;
  padding: 4.2rem 0 3.6rem;
}
.hero-industrial h1,
.hero-industrial .hero-title {
  font-size: clamp(1.85rem, 4.4vw, 3.2rem);
  max-width: 16ch;
  color: #fff;
  margin-bottom: .7rem;
}
.hero-industrial .lead {
  max-width: 40rem;
  color: rgba(243,246,248,.88);
  font-size: 1.05rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.35rem; }
.hero-industrial .carousel-control-prev,
.hero-industrial .carousel-control-next {
  width: 48px;
  height: 48px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 1;
  background: rgba(7,24,36,.45);
  border-radius: 50%;
}
.hero-industrial .carousel-control-prev { left: 18px; }
.hero-industrial .carousel-control-next { right: 18px; }
.hero-industrial .carousel-indicators { gap: .35rem; margin-bottom: 1.2rem; }
.hero-industrial .carousel-indicators [data-bs-target] {
  width: 28px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.38);
  border: 0;
  opacity: 1;
}
.hero-industrial .carousel-indicators .active { background: var(--gold); width: 42px; }

.accred-bar {
  background: var(--steel);
  color: #e8eef1;
  padding: 1.35rem 0;
}
.accred-bar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem 1.6rem;
}
.accred-logo {
  display: block;
  background: #fff;
  border-radius: 14px;
  padding: .5rem .55rem .4rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
  line-height: 0;
}
.accred-logo img {
  display: block;
  width: auto;
  height: 148px;
  max-width: 168px;
  object-fit: contain;
}
.accred-bar-inner p {
  margin: 0;
  max-width: 42rem;
  color: #e8eef1;
  line-height: 1.55;
}
.accred-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}
.accred-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .04em;
  text-align: center;
  line-height: 1.1;
  font-family: var(--font-head);
}
.accred-badge strong { display: block; color: #fff; font-size: 1.02rem; }
.accred-badge span { color: #b7c7d0; font-size: .88rem; }

.product-card,
.service-card,
.card-quiet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(7,24,36,.04);
}
.product-card-body,
.service-card-body,
.card-quiet .body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: .4rem; flex: 1; }
.product-card h3,
.service-card h3,
.service-card h2 { font-size: 1.08rem; margin: 0; }
.product-card p,
.service-card p { color: var(--muted); margin: 0; font-size: .94rem; }
.product-card-brand, .product-card-meta {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin: 0;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.site-pager {
  display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; justify-content: center;
  margin: 1.6rem 0 .4rem; color: var(--muted);
}
.site-pager a, .site-pager strong {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.1rem; padding: .35rem .7rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: inherit; text-decoration: none; font-weight: 650;
}
.site-pager strong { background: var(--navy, #071824); color: #fff; border-color: transparent; }
.site-pager-nums { display: flex; gap: .35rem; flex-wrap: wrap; }
.site-pager.is-infinite { margin-top: 1.8rem; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.svc-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.svc-card .body { padding: 1.2rem 1.25rem 1.35rem; display: flex; flex-direction: column; gap: .45rem; flex: 1; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.2rem 1.15rem;
}
.stat-card b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold);
  letter-spacing: -.03em;
}
.stat-card span { color: #c5d3da; font-size: .92rem; }

.brand-rail {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.1rem;
  align-items: center;
  justify-content: center;
}
.brand-rail a,
.brand-rail .brand-chip {
  display: grid;
  place-items: center;
  min-height: 72px;
  min-width: 120px;
  padding: .7rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--steel);
  font-weight: 700;
}
.brand-rail img { max-height: 56px; max-width: 168px; width: auto; height: auto; object-fit: contain; }

.cat-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: .55rem;
  margin: 0 0 1.6rem;
}
.cat-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 3.15rem;
  padding: .7rem .9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  font-weight: 700;
  font-size: .92rem;
  line-height: 1.3;
  text-wrap: balance;
  min-width: 0;
}
.cat-nav a:hover { color: var(--cyan); border-color: var(--cyan); }

.quote-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.scope-box {
  background: #f4f8fa;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
}
.scope-box p:last-child { margin-bottom: 0; }
.quote-panel h2 { margin-bottom: .4rem; }
.quote-panel .quote-form {
  padding: 0;
  box-shadow: none;
  background: transparent;
}
.quote-home { padding: 2.4rem 0 2.6rem; }
.quote-home-grid {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
.quote-home-copy p { color: var(--muted); max-width: 42ch; }
.quote-home-copy .cta-actions { margin-top: .85rem; }
.quote-form.is-compact .quote-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem;
}
.quote-form.is-compact .quote-span-2 { grid-column: 1 / -1; }
.quote-form.is-compact .quote-need { margin-bottom: .85rem; }
.quote-form.is-compact .quote-need legend { font-size: .82rem; margin-bottom: .45rem; }
.quote-form.is-compact .quote-need-item { padding: .55rem .6rem; font-size: .86rem; border-radius: 10px; }
.quote-form.is-compact .form-label { margin-bottom: .28rem; font-size: .8rem; }
.quote-form.is-compact textarea.form-control { min-height: 88px; }
.quote-form.is-compact .quote-legal { margin: .15rem 0 .85rem; }
.quote-form.is-compact .quote-legal .form-check-label { font-size: .82rem; line-height: 1.4; }
.quote-form.is-compact .quote-submit { width: 100%; min-height: 48px; }
.quote-legal { margin: 0 0 1rem; }
.captcha-box.is-compact { margin: .9rem 0 1rem; padding: .85rem .9rem; }
.captcha-box.is-compact .captcha-copy span { display: none; }
.captcha-box.is-compact .captcha-board em { min-width: 48px; height: 48px; font-size: 1.25rem; }
.captcha-box.is-compact .captcha-answer .form-control { width: 88px; height: 48px; font-size: 1.25rem; }

.product-tabs { margin-top: 1.5rem; }
.product-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.product-tabs-nav button {
  border: 0;
  background: none;
  padding: .7rem .9rem;
  font-weight: 700;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  font-family: inherit;
}
.product-tabs-nav button.is-active { color: var(--navy); border-bottom-color: var(--cyan); }
.product-tab-panel { display: none; }
.product-tab-panel.is-active { display: block; }

.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: .7rem .8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th { width: 38%; color: var(--steel); font-weight: 700; background: var(--ice); }

.yt-lite {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  background: #0e1820;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  width: 100%;
  padding: 0;
  color: #fff;
}
.yt-lite img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.yt-lite-play {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--cyan);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
}
.yt-lite-play::after {
  content: "";
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.yt-lite iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.doc-list { display: grid; gap: .7rem; }
.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.doc-item h3 { font-size: 1rem; margin: 0 0 .2rem; }
.doc-item p { margin: 0; color: var(--muted); font-size: .9rem; }

.search-results { display: grid; gap: 1.5rem; }
.search-block h2 { font-size: 1.15rem; margin-bottom: .8rem; }
.search-empty {
  padding: 2rem 1.2rem;
  background: var(--ice);
  border-radius: 12px;
  text-align: center;
}

.faq-list { display: grid; gap: .7rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
.faq-q::-webkit-details-marker, .faq-q::marker { display: none; content: ""; }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--cyan); border-radius: 2px; }
.faq-icon::before { width: 18px; height: 2px; top: 8px; left: 0; }
.faq-icon::after { width: 2px; height: 18px; left: 8px; top: 0; transition: transform .2s ease, opacity .2s ease; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 1.15rem 1.1rem; color: var(--muted); line-height: 1.7; }

.quote-form { background: #fff; border-radius: 12px; padding: 1.4rem; box-shadow: var(--shadow); }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-control, .form-select {
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.form-control:focus, .form-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(26,166,184,.18);
  outline: none;
}
.search-select { position: relative; }
.search-select-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.search-select-list {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  max-height: 280px;
  overflow: auto;
  margin: 0;
  padding: .35rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(7,24,36,.14);
}
.search-select-list li {
  padding: .55rem .7rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: .9rem;
  line-height: 1.35;
  color: var(--ink);
}
.search-select-list li:hover,
.search-select-list li.is-active { background: var(--ice); color: var(--navy); }
.search-select-list .is-empty { cursor: default; color: #6a7a84; }
.quote-form-alert {
  font-size: 1.05rem;
  font-weight: 600;
  padding: 1rem 1.1rem;
  margin: 0 0 1.2rem;
}
.quote-form-errors {
  margin: .45rem 0 0;
  padding-left: 1.1rem;
}
.quote-form-errors li { margin: .2rem 0; }
.btn.is-sending { opacity: .72; pointer-events: none; }
.form-fail {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  margin: 0 0 1.2rem;
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: #fff4f1;
  border: 1px solid #f0b8ad;
  color: #8c2418;
}
.form-fail-ico {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; background: #d64545; color: #fff; font-weight: 800;
}
.captcha-box {
  margin: 1.15rem 0 1.25rem;
  padding: 1.15rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, var(--ice));
}
.captcha-box.is-bad { border-color: #d64545; box-shadow: 0 0 0 4px rgba(214,69,69,.12); }
.captcha-top { display: grid; grid-template-columns: auto 1fr auto; gap: .7rem; align-items: center; margin-bottom: 1rem; }
.captcha-mark {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--navy); color: var(--cyan);
}
.captcha-mark svg { width: 22px; height: 22px; }
.captcha-copy strong { display: block; font-size: 1.05rem; }
.captcha-copy span { color: var(--muted); font-size: .86rem; }
.captcha-refresh {
  display: inline-flex; align-items: center; gap: .4rem;
  height: 44px; border: 1px solid var(--line); background: #fff; color: var(--ink);
  border-radius: 8px; padding: 0 1rem; font-weight: 700; font-size: .86rem;
}
.captcha-refresh svg { width: 16px; height: 16px; }
.captcha-refresh.is-busy { opacity: .65; pointer-events: none; }
.captcha-board { display: flex; align-items: flex-end; flex-wrap: wrap; gap: .55rem .7rem; }
.captcha-board em {
  min-width: 58px; height: 58px; padding: 0 .55rem;
  display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  font-style: normal; font-weight: 800; font-size: 1.55rem;
}
.captcha-op { font-size: 1.5rem; font-weight: 800; color: var(--cyan); align-self: center; }
.captcha-answer { display: grid; gap: .28rem; }
.captcha-answer label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0; }
.captcha-answer .form-control { width: 112px; height: 58px; text-align: center; font-size: 1.55rem; font-weight: 800; border: 2px solid var(--cyan); }
.captcha-hint { margin: .85rem 0 0; color: var(--muted); font-size: .86rem; }
.captcha-error { display: block; margin-top: .55rem; color: #c92a2a; font-size: .9rem; font-weight: 700; }

.contact-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.15rem 1.25rem; height: 100%; }
.contact-card a { font-weight: 600; }
.contact-map { border-radius: 12px; overflow: hidden; min-height: 360px; }
.contact-map iframe { width: 100%; min-height: 380px; border: 0; display: block; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 1rem; padding: .35rem 0; border-bottom: 1px solid var(--line); }

.page-hero {
  position: relative;
  min-height: 380px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.page-hero.is-compact { min-height: 300px; }
.page-hero-visual { position: absolute; inset: 0; }
.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,24,36,.28) 0%, rgba(7,24,36,.42) 42%, rgba(7,24,36,.82) 100%);
}
.page-hero-inner { position: relative; z-index: 1; padding: 3.2rem 0 2.4rem; width: 100%; }
.page-hero-crumbs { margin: 0 0 1rem; }
.page-hero-crumbs a { color: #fff; }
.page-hero-crumbs a:hover { color: var(--gold); }
.page-hero-crumbs .breadcrumb-item.active { color: #d5e4ea; }
.page-hero-crumbs .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.45); }
.page-hero h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); color: #fff; max-width: 22ch; text-wrap: balance; }
.page-hero .lead { color: rgba(243,246,248,.9); max-width: 46rem; }
.page-head { padding: 2.4rem 0 0; }
.page-head h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
.page-prose { max-width: 820px; }
.cms-content { font-size: 1.05rem; line-height: 1.75; color: #3a4a52; }
.cms-content h2, .cms-content h3 { margin: 1.6rem 0 .7rem; color: var(--ink); }
.cms-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.1rem 0; }
.cms-content iframe { width: 100%; min-height: 360px; border: 0; border-radius: 12px; }
.page-cta { background: var(--navy); color: #fff; padding: 2.2rem 0; }
.page-cta h2 { color: #fff; }
.page-cta p { color: rgba(243,246,248,.82); }
.page-cta-lite {
  background: var(--ice);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
}
.page-cta-lite-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
}
.page-cta-lite-title { font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.branch-section { background: #fff; }
.branch-list { display: grid; gap: 1.5rem; }
.branch-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .9fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(7,24,36,.05);
}
.branch-card-copy { padding: 1.4rem 1.5rem 1.5rem; }
.branch-card-top { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem; }
.branch-card h3 { margin: 0; font-size: 1.25rem; }
.branch-badge {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--navy);
  color: #fff;
  border-radius: 99px;
  padding: .2rem .55rem;
}
.branch-address { color: #3a4a52; margin: .65rem 0 1rem; }
.branch-meta { list-style: none; padding: 0; margin: 0 0 1rem; }
.branch-meta li { display: flex; gap: .75rem; padding: .28rem 0; border-bottom: 1px solid var(--line); }
.branch-meta span { min-width: 5.5rem; color: #6a7a84; font-size: .82rem; }
.branch-map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }
.contact-note-panel {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem;
}
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.6rem;
}
.blog-cat {
  display: inline-flex;
  align-items: center;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
}
.blog-cat:hover, .blog-cat.is-on {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.post-cat {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cyan, #1aa6b8);
  text-decoration: none;
  margin-bottom: .35rem;
}
.post-card-date {
  margin: .35rem 0 0;
  font-size: .82rem;
  color: var(--muted);
}

.article-page {
  padding: 0 0 1.2rem;
  background: #fff;
}
.article-shell { padding-top: 2.1rem; }
.article-head { max-width: 760px; margin-bottom: 1.6rem; }
.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 .85rem;
}
.article-kicker a { color: var(--cyan); }
.article-kicker a:hover { color: var(--navy); }
.article-head h1 {
  color: var(--navy);
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  margin: 0 0 .8rem;
  text-wrap: balance;
}
.article-lead {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #4a5c66;
  margin: 0 0 1.05rem;
  max-width: 58ch;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: .88rem;
  color: var(--muted);
}
.article-media {
  margin: 0 0 2rem;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f6f8;
  box-shadow: 0 22px 50px rgba(7,24,36,.12);
}
.article-media a {
  display: block;
  cursor: zoom-in;
}
.article-media img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
}
.article-prose .spec-table { margin: 1.2rem 0; display: block; overflow-x: auto; }
.article-layout {
  display: grid;
  gap: 1.8rem;
  padding-bottom: 1rem;
}
.article-prose { max-width: 72ch; }
.article-gallery { margin-top: 2.2rem; }
.article-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.article-gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f6f8;
  cursor: zoom-in;
  box-shadow: 0 10px 24px rgba(7,24,36,.08);
}
.article-gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform .35s ease;
}
.article-gallery-grid a:hover img { transform: scale(1.03); }
.article-video { margin-top: 1.8rem; }
.article-related-service {
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ice);
}
.article-related-service-link {
  font-weight: 700;
  font-size: 1.05rem;
}
.article-aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.article-aside-title {
  font-family: var(--font-head);
  font-weight: 600;
  margin: 0 0 1rem;
}
.article-aside-card .btn { width: 100%; }
.article-more {
  padding: 2.2rem 0 1rem;
  background: var(--ice);
  margin-top: 1.5rem;
}
.cert-feature {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
}
.cert-feature-preview {
  min-height: 140px;
  border-radius: 12px;
  background: linear-gradient(160deg, #071824, #1aa6b8);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  letter-spacing: .08em;
}
.cert-feature-preview span { font-size: .78rem; opacity: .8; }
.cert-feature-preview strong { font-size: 1.4rem; }
.cert-valid { margin: .4rem 0 0; color: var(--muted); font-size: .9rem; }
.doc-embed {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  min-height: 520px;
  background: #f7f7f7;
}
.doc-embed iframe { width: 100%; height: 640px; border: 0; }

@media (min-width: 992px) {
  .article-layout { grid-template-columns: minmax(0, 1fr) 280px; align-items: start; }
  .article-aside { position: sticky; top: calc(var(--header-h) + 1rem); }
  .article-gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-feature { grid-template-columns: 1.4fr .6fr; }
}

.quote-desk-hero { max-width: 42rem; margin-bottom: 1.6rem; }
.quote-desk-hero h1 { font-size: clamp(1.85rem, 4vw, 2.7rem); }
.quote-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
  padding: 0;
  margin: 0 0 1.8rem;
}
.quote-steps li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .95rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .15rem .75rem;
}
.quote-steps span {
  grid-row: 1 / span 2;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: .9rem;
}
.quote-steps strong { font-size: .95rem; }
.quote-steps em { font-style: normal; color: #5b6b74; font-size: .85rem; }
.quote-desk-grid { display: grid; grid-template-columns: minmax(240px, 320px) 1fr; gap: 1.4rem; align-items: start; }
.quote-rail-card {
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  padding: 1.35rem 1.4rem;
}
.quote-rail-card .eyebrow { color: var(--gold); }
.quote-rail-phone { display: block; color: #fff; font-size: 1.45rem; font-weight: 700; text-decoration: none; margin: .2rem 0 .35rem; }
.quote-rail-points { list-style: none; padding: 1rem 0 0; margin: 0; color: #3a4a52; }
.quote-rail-points li { padding: .45rem 0 .45rem 1.1rem; position: relative; }
.quote-rail-points li::before { content: ""; position: absolute; left: 0; top: .85rem; width: .45rem; height: .45rem; border-radius: 50%; background: var(--cyan, #1aa6b8); }
.quote-desk-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: 0 16px 40px rgba(7,24,36,.06);
}
.quote-desk-form .quote-form,
.contact-note-panel .quote-form {
  padding: 0;
  box-shadow: none;
  background: transparent;
}
.quote-desk { padding: 1.5rem 0 2.4rem; }
.quote-need { border: 0; padding: 0; margin: 0 0 1.1rem; }
.quote-need legend { font-weight: 700; margin-bottom: .7rem; }
.quote-need-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem; }
.quote-need-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .75rem .8rem;
  cursor: pointer;
  font-weight: 650;
  margin: 0;
}
.quote-need-item:has(input:checked),
.quote-need-item.is-on {
  border-color: var(--cyan, #1aa6b8);
  background: rgba(26,166,184,.08);
  box-shadow: inset 0 0 0 1px var(--cyan, #1aa6b8);
}
.quote-need-item input { margin-right: .45rem; }
.home-cta-band { background: var(--navy); color: #fff; padding: 2.4rem 0; }
.home-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.home-cta-band h2 { color: #fff; font-size: clamp(1.3rem, 3vw, 1.85rem); }
.home-cta-band p { margin: 0; max-width: 40rem; color: rgba(243,246,248,.82); }
.home-cta-band .btn-cta-ghost,
.page-cta .btn-cta-ghost,
.footer-cta .btn-cta-ghost { border-color: rgba(255,255,255,.85); color: #fff; }
.home-cta-band .btn-cta-ghost:hover,
.page-cta .btn-cta-ghost:hover,
.footer-cta .btn-cta-ghost:hover { background: #fff; color: var(--navy); }
.home-cta-band .btn-cta-solid,
.page-cta .btn-cta-solid,
.footer-cta .btn-cta-solid { background: var(--gold); color: var(--navy); }
.about-hero { padding: 2.4rem 0 1.2rem; background: var(--ice); }
.about-hero h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); max-width: 20ch; }
.about-chip {
  background: #fff;
  color: var(--ink);
  padding: .85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: .82rem;
  box-shadow: 0 10px 30px rgba(7,24,36,.08);
  display: grid;
  gap: .15rem;
  border: 1px solid var(--line);
}
.about-chip strong { font-size: .95rem; color: var(--cyan); }
.about-chip span { font-weight: 500; color: var(--muted); font-size: .78rem; line-height: 1.35; }
.about-chip.is-static { position: relative; margin-top: 1rem; }
.founder-card { margin-top: 1rem; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.2rem 1.25rem; }
.about-scope { margin-top: 3.2rem; }
.about-scope h2 { font-weight: 700; margin-bottom: 1.4rem; }
.about-page-split { align-items: start; margin-top: 1.5rem; }
.back-home { display: inline-block; font-weight: 600; color: var(--cyan); margin-bottom: .8rem; }
.about-split { display: grid; gap: 2rem; }
.about-side img { width: 100%; border-radius: 14px; aspect-ratio: 4 / 3; object-fit: cover; }
.check-list { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .55rem; }
.check-list li { padding-left: 1.85rem; position: relative; font-weight: 600; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .15rem;
  width: 1.25rem; height: 1.25rem;
  border-radius: 50%;
  background: var(--cyan) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'><path d='M5 12l5 5L20 7'/></svg>") center/12px no-repeat;
}
.why-grid { display: grid; gap: 1rem; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.25rem; height: 100%; }
.why-card h3 { font-size: 1.05rem; }
.why-card p { color: var(--muted); }
.feature-trio { display: grid; gap: 1rem; }
.feature-trio article { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1.3rem; }
.lab-field {
  display: grid;
  gap: 1rem;
}
.lab-field article {
  background: var(--ice);
  border-radius: 12px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
}
.sector-grid { display: grid; gap: 1rem; }
.sector-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.2rem 1.15rem;
}
.sector-card h3 { font-size: 1.02rem; margin-bottom: .35rem; }
.sector-card p { margin: 0; color: var(--muted); }
.process-track {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 1rem;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem;
}
.process-num {
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy); color: #fff;
  font-weight: 700; margin-bottom: .8rem;
}

.site-footer { background: var(--navy); color: #d5e4ea; }
.site-footer a { color: #9ed8e0; }
.footer-cta { background: var(--steel); border-bottom: 1px solid #1b4663; }
.footer-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  padding: 1.6rem 0;
  flex-wrap: wrap;
}
.footer-phone { display: block; font-size: clamp(1.35rem, 3vw, 1.9rem); font-weight: 700; color: #fff; }
.footer-phone:hover { color: var(--gold); }
.footer-cta-note { margin: .25rem 0 0; color: #b7c7d0; font-size: .9rem; }
.footer-main { padding: 2.4rem 0 1.8rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: .35rem 1.1rem; }
.footer-legal a { color: #8aa3ae; font-size: .84rem; font-weight: 500; }
.footer-legal a:hover { color: #fff; }
.footer-tagline { color: #b7c7d0; line-height: 1.6; }
.footer-heading { font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: #8aa3ae; margin-bottom: 1rem; font-weight: 700; }
.footer-contact, .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .7rem; }
.footer-contact a, .footer-contact .footer-muted, .footer-links a {
  display: flex; align-items: flex-start; gap: .75rem; color: #e8eef1; font-weight: 500;
  min-width: 0;
  overflow-wrap: break-word;
}
.footer-ico {
  width: 2.15rem; height: 2.15rem; border-radius: 50%;
  background: #0e2430; border: 1px solid #1b4663;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cyan); flex-shrink: 0;
}
.footer-bottom { border-top: 1px solid #1b4663; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; padding: 1.05rem 0 1.2rem; }
.footer-bottom p { margin: 0; color: #8aa3ae; font-size: .86rem; }
.footer-credit a { color: var(--gold); font-weight: 600; }
.footer-accred { display: flex; gap: .75rem; align-items: flex-start; margin-top: 1rem; color: var(--gold); font-weight: 700; }
.footer-social { display: flex; gap: .55rem; flex-wrap: wrap; }
.footer-social-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 2rem; padding-top: 1.2rem; border-top: 1px solid #1b4663; }
.footer-quick { display: none; }
.footer-text-link { display: inline-block; margin-top: .75rem; font-weight: 700; color: var(--cyan); }
.social-links { display: flex; flex-wrap: wrap; gap: .45rem; }
.social-btn { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; color: #fff; }
.social-btn.ig { background: #e1306c; } .social-btn.fb { background: #1877f2; }
.social-btn.tt { background: #111; } .social-btn.yt { background: #ff0000; }
.social-btn:hover { color: #fff; filter: brightness(1.08); }

.fab-dock {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.float-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}
.float-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.fab {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; border: 0;
  box-shadow: 0 10px 22px rgba(7,24,36,.22), inset 0 1px 0 rgba(255,255,255,.16);
  flex-shrink: 0;
}
.fab svg { width: 22px; height: 22px; display: block; }
.fab.phone { background: #0b2a3a; }
.fab.wa { background: #1fbe57; }
.fab.vb { background: #7360f2; }
.fab.em { background: #1a4d66; }
.fab.mobile { background: #0e7490; }
.fab.dir { background: var(--steel); }
.fab.other { background: #334155; }
.fab.top { background: #0e3a4d; }
.fab.quote { background: var(--gold); color: var(--navy); }
.fab:hover { color: #fff; filter: brightness(1.08); }
.fab.quote:hover { color: var(--navy); }
.fab-main {
  width: 60px;
  height: 60px;
  position: relative;
  background: linear-gradient(180deg, #2bc0d2 0%, #148a99 100%);
  box-shadow: 0 12px 28px rgba(20,138,153,.42), inset 0 1px 0 rgba(255,255,255,.28);
}
.fab-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(42,192,210,.55);
  animation: fabPulse 2.1s ease-out infinite;
  pointer-events: none;
}
.fab-dock.is-open .fab-pulse { opacity: 0; }
.fab-main-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transition: opacity .2s ease, transform .2s ease;
}
.fab-main-close { opacity: 0; transform: rotate(-80deg) scale(.7); }
.fab-dock.is-open .fab-main-open { opacity: 0; transform: rotate(80deg) scale(.7); }
.fab-dock.is-open .fab-main-close { opacity: 1; transform: none; }
.fab-stack {
  position: absolute;
  left: 6px;
  bottom: 70px;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 10px;
  pointer-events: none;
}
.fab-item {
  display: flex;
  align-items: center;
  gap: .55rem;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.88);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.fab-dock.is-open .fab-stack { pointer-events: auto; }
.fab-dock.is-open .fab-item {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.fab-dock.is-open .fab-item:nth-child(1) { transition-delay: .02s; }
.fab-dock.is-open .fab-item:nth-child(2) { transition-delay: .06s; }
.fab-dock.is-open .fab-item:nth-child(3) { transition-delay: .1s; }
.fab-dock.is-open .fab-item:nth-child(4) { transition-delay: .14s; }
.fab-dock.is-open .fab-item:nth-child(5) { transition-delay: .18s; }
.fab-dock.is-open .fab-item:nth-child(6) { transition-delay: .22s; }
.fab-label {
  background: rgba(7,24,36,.92);
  color: #fff;
  padding: .38rem .8rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(7,24,36,.22);
  backdrop-filter: blur(10px);
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.28); opacity: 0; }
}

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 520px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar p { margin: 0; font-size: .86rem; line-height: 1.45; color: #d5e4ea; }
.cookie-prefs {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(7,24,36,.55);
  display: grid;
  place-items: center;
  padding: 1rem;
}
.cookie-prefs[hidden] { display: none !important; }
.cookie-prefs-panel {
  width: min(460px, 100%);
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 1.3rem 1.25rem;
  box-shadow: var(--shadow);
}
.cookie-prefs-panel h2 { font-size: 1.15rem; margin-bottom: .4rem; }
.cookie-prefs-panel .form-check { margin: .55rem 0; }
body.has-cookie .fab-dock { bottom: calc(16px + var(--cookie-h, 120px) + 14px); }
body.has-cookie .float-top { bottom: calc(16px + var(--cookie-h, 120px) + 14px); }
body.is-nav-open .fab-dock,
body.is-nav-open .float-top { visibility: hidden; opacity: 0; pointer-events: none; }

.product-rating a { color: var(--navy); font-weight: 700; text-decoration: none; }
.product-rating a:hover { color: var(--cyan); }
.review-box { margin: 2.4rem 0 3rem; padding: 1.4rem 1.35rem 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: 1.25rem; box-shadow: 0 14px 40px rgba(7,24,36,.06); }
.review-box-head { display: flex; justify-content: space-between; gap: 1rem; align-items: flex-end; flex-wrap: wrap; margin-bottom: 1.1rem; }
.review-box-head h2 { margin: 0; font-size: 1.35rem; }
.review-avg { display: grid; justify-items: end; color: #c9a227; }
.review-avg strong { font-size: 1.6rem; color: var(--navy); line-height: 1; }
.review-avg small { color: var(--muted); }
.review-list { display: grid; gap: .85rem; margin-bottom: 1.4rem; }
.review-card { border: 1px solid var(--line); border-radius: 1rem; padding: 1rem 1.05rem; background: #f8fbfc; }
.review-card p { margin: .55rem 0 0; }
.review-card-top { display: flex; align-items: center; gap: .7rem; }
.review-card-top time { margin-left: auto; color: var(--muted); font-size: .82rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 14px; background: #12344d; color: #fff;
  display: grid; place-items: center; font-weight: 800;
}
.review-stars { color: #c9a227; letter-spacing: .08em; font-size: .92rem; }
.review-form { border-top: 1px solid var(--line); padding-top: 1.15rem; }
.review-form .captcha-box {
  max-width: 28rem;
  margin: .15rem 0 .35rem;
}
.review-stars-pick {
  display: flex;
  gap: .15rem;
  margin: 0 0 .95rem;
  position: relative;
  z-index: 2;
  width: max-content;
}
.review-star {
  position: relative;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  margin: 0;
  padding: 0;
  cursor: pointer;
  color: #c5d0d6;
  font-size: 1.85rem;
  line-height: 1;
  user-select: none;
}
.review-star input {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}
.review-star span { pointer-events: none; }
.review-star.is-on,
.review-star:has(input:checked),
.review-star:has(~ .review-star input:checked) { color: #c9a227; }
.review-stars-pick:hover .review-star { color: #c5d0d6; }
.review-stars-pick:hover .review-star:hover,
.review-stars-pick:hover .review-star:has(~ .review-star:hover) { color: #c9a227; }

.search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(7, 24, 36, .16);
  z-index: 90;
  max-height: min(70vh, 380px);
  overflow: auto;
  padding: .3rem;
}
.search-suggest a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .45rem .55rem;
  color: var(--ink);
  font-size: .88rem;
  border-radius: 8px;
  text-decoration: none;
}
.search-suggest a:hover,
.search-suggest a.is-on { background: var(--ice); color: var(--ink); }
.search-suggest img,
.search-suggest-ico {
  width: 44px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
  background: var(--ice);
  border-radius: 6px;
  max-width: none;
}
.search-suggest-ico { display: grid; place-items: center; }
.search-suggest-ico::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}
.search-suggest a span { display: grid; gap: .05rem; min-width: 0; }
.search-suggest a small {
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.search-suggest a b { font-weight: 650; line-height: 1.25; }
.topbar-search .search-suggest { min-width: min(380px, 92vw); left: auto; }
.mobile-search { position: relative; }
.mobile-search .search-suggest { left: 0; right: 0; z-index: 130; }

.search-page { padding: 1.6rem 0 3.2rem; }
.search-title { font-size: clamp(1.45rem, 2.2vw, 1.85rem); margin: 0 0 1rem; }
.search-desk {
  position: relative;
  display: flex;
  gap: .55rem;
  align-items: stretch;
  max-width: 42rem;
  margin-bottom: 1.15rem;
}
.search-desk .form-control {
  height: 48px;
  border-radius: 12px;
  border-color: var(--line);
  font-size: 1rem;
}
.search-desk .btn { min-width: 5.5rem; border-radius: 12px; font-weight: 700; }
.search-desk .search-suggest { left: 0; right: auto; width: min(100%, 42rem); }
.search-hint, .search-count { color: var(--muted); margin: 0 0 1rem; }
.search-count { font-weight: 650; color: var(--ink); }
.search-empty {
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  margin-bottom: 1.5rem;
}
.search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.35rem;
}
.search-chips a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .28rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: .84rem;
  font-weight: 650;
}
.search-chips a:hover { border-color: var(--cyan); color: var(--steel); }
.search-chips span {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 .35rem;
  border-radius: 999px;
  background: var(--ice);
  color: var(--muted);
  font-size: .72rem;
  display: inline-grid;
  place-items: center;
}
.search-results { display: grid; gap: 1.6rem; }
.search-block h2 {
  font-size: 1.05rem;
  margin: 0 0 .7rem;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--line);
}
.search-hits { display: grid; gap: .55rem; }
.search-hit {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .65rem .8rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  min-height: 76px;
}
.search-hit:hover { border-color: var(--cyan); box-shadow: var(--shadow); color: inherit; }
.search-hit img {
  width: 80px;
  height: 60px;
  object-fit: contain;
  background: var(--ice);
  border-radius: 8px;
  flex-shrink: 0;
  max-width: none;
}
.search-hit span { display: grid; gap: .12rem; min-width: 0; }
.search-hit small {
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}
.search-hit strong { font-size: 1rem; line-height: 1.25; }
.search-hit em {
  font-style: normal;
  color: var(--muted);
  font-size: .86rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-desk .form-control { flex: 1; min-width: 0; }
@media (max-width: 575.98px) {
  .search-desk { flex-direction: column; max-width: none; }
  .search-desk .btn { min-height: 46px; width: 100%; }
}

.page-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1rem; }
.page-gallery a { display: block; overflow: hidden; border-radius: 12px; aspect-ratio: 3 / 2; }
.page-gallery img { width: 100%; height: 100%; object-fit: cover; }
.video-facade { position: relative; display: block; border-radius: 12px; overflow: hidden; background: #111; aspect-ratio: 16 / 9; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; }
.video-embed { position: relative; width: 100%; background: #111; aspect-ratio: 16 / 9; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lightbox { position: fixed; inset: 0; background: rgba(7,24,36,.9); display: none; place-items: center; z-index: 200; padding: 1.2rem; cursor: zoom-out; }
.lightbox.is-on { display: grid; }
.lightbox img { width: auto; height: auto; max-width: min(1600px, 96vw); max-height: 94vh; object-fit: contain; border-radius: .6rem; cursor: default; }

.error-stage {
  position: relative;
  overflow: hidden;
  min-height: calc(100dvh - 140px);
  color: #e8eef1;
  background: var(--navy);
}
.error-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding: 4rem 0;
}
.error-code {
  display: flex;
  gap: .45rem;
  margin-bottom: 1.2rem;
}
.error-code em {
  min-width: 4.2rem; height: 5rem;
  display: grid; place-items: center;
  font-style: normal; font-weight: 800; font-size: 2.8rem;
  color: #fff; background: var(--steel);
  border: 1px solid rgba(26,166,184,.35);
  border-radius: 12px;
}
.error-copy h1 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); max-width: 16ch; }
.error-lead { color: #b7c7d0; max-width: 38ch; margin-bottom: 1.4rem; }
.error-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
.error-phone { display: inline-block; margin-top: 1.2rem; font-size: 1.25rem; font-weight: 700; color: #fff; }
.error-phone:hover { color: var(--gold); }
.error-mark {
  width: min(280px, 70vw);
  aspect-ratio: 1;
  border: 2px dashed rgba(26,166,184,.35);
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: var(--cyan);
}

@media (min-width: 576px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cat-nav { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
  .why-grid, .feature-trio, .sector-grid, .lab-field { grid-template-columns: 1fr 1fr; }
  .page-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-nav { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.25fr 1.05fr .95fr .9fr; }
  .about-split { grid-template-columns: 1.05fr .95fr; align-items: start; }
  .process-track { grid-template-columns: repeat(4, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-trio, .sector-grid { grid-template-columns: repeat(3, 1fr); }
  .error-inner { grid-template-columns: .9fr 1.1fr; align-items: center; }
  .quote-home-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.15fr); gap: 1.6rem; }
}
@media (min-width: 1200px) {
  .hero-industrial-slide { min-height: 560px; }
}
@media (min-width: 1400px) {
  .header-nav { display: flex; }
  .nav-toggle { display: none !important; }
  .mobile-drawer { display: none !important; }
  .topbar-inner { flex-wrap: nowrap; }
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .header-nav .nav-link { padding: .42rem .42rem; font-size: .84rem; }
  .brand-logo { max-width: 176px; height: 44px; }
  .header-inner { gap: .45rem; }
}

@media (max-width: 1399.98px) {
  .site-header.is-menu-open { z-index: 120; }
  body.is-nav-open { overflow: hidden; }
  .topbar-search { display: none; }
}
@media (max-width: 1199.98px) {
  .topbar-chip[data-track="phone_click"] span { display: none; }
  .topbar-chip[data-track="phone_click"] { width: 32px; height: 32px; justify-content: center; border-radius: 50%; background: #f7f5f0; }
  .topbar-chip[data-track="email_click"] {
    color: var(--navy) !important;
    font-size: .82rem;
    font-weight: 700;
    max-width: 100%;
  }
}
@media (max-width: 575.98px) {
  .lang-switch.is-topbar .lang-flag { display: none; }
  .lang-switch.is-topbar a { padding: .22rem .42rem; }
}
@media (max-width: 991.98px) {
  .branch-card, .quote-desk-grid { grid-template-columns: 1fr; }
  .quote-steps { grid-template-columns: 1fr; }
  .quote-steps li { padding: .7rem .85rem; }
  .accred-bar-inner { grid-template-columns: 1fr; justify-items: start; }
}
@media (max-width: 767px) {
  .container,
  .container-fluid {
    --bs-gutter-x: 4rem;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  .site-footer .container {
    --bs-gutter-x: 4.2rem;
    padding-left: 2.1rem !important;
    padding-right: 2.1rem !important;
  }
  .header-inner { min-height: 60px; }
  .brand-logo { height: 40px; }
  .header-cta { display: none !important; }
  .article-shell { padding-top: 1.4rem; }
  .article-media { border-radius: 16px; }

  .hero-industrial-slide {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-industrial-visual {
    position: relative;
    inset: auto;
    height: 196px;
  }
  .hero-industrial-media,
  .hero-industrial-media picture,
  .hero-industrial-media img {
    position: relative;
    inset: auto;
    width: 100%;
    height: 196px;
    aspect-ratio: auto;
    object-fit: cover;
  }
  .hero-industrial-overlay {
    background: linear-gradient(180deg, transparent 40%, rgba(7,24,36,.35) 100%);
  }
  .hero-copy {
    background: var(--navy);
    padding: 1.15rem 0 1.4rem;
  }
  .hero-industrial .hero-copy .container {
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-industrial h1, .hero-industrial .hero-title {
    font-size: 1.42rem;
    max-width: none;
    padding-right: 0;
    margin-bottom: .45rem;
    text-wrap: balance;
  }
  .hero-industrial .lead {
    font-size: .92rem;
    max-width: none;
    padding-right: 0;
    margin-bottom: 0;
  }
  .hero-industrial .carousel-control-prev,
  .hero-industrial .carousel-control-next { display: none; }
  .hero-industrial .carousel-indicators {
    top: 168px;
    bottom: auto;
    margin: 0;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: .55rem;
    margin-top: 1rem;
  }
  .hero-actions .btn { width: 100%; min-height: 46px; }
  .hero-actions .btn-ghost-light { display: none; }

  .page-hero,
  .page-hero.is-compact {
    min-height: 260px;
  }
  .page-hero-inner {
    padding: 1.6rem 0 1.4rem;
  }
  .page-hero h1 {
    font-size: 1.45rem;
    max-width: none;
    padding-right: 0;
  }
  .page-hero .lead {
    max-width: none;
    font-size: .92rem;
    padding-right: 0;
    margin-top: .4rem;
  }

  .accred-logo img { height: 128px; max-width: 148px; }
  .accred-bar-inner .btn-gold { width: 100%; justify-content: center; }
  .fab-dock { left: 12px; bottom: 16px; }
  .float-top { right: 12px; bottom: 16px; }
  .fab-label { max-width: min(58vw, 11.5rem); overflow: hidden; text-overflow: ellipsis; }
  .cookie-bar { left: 10px; right: 10px; bottom: 10px; }
  .cookie-bar .d-flex { width: 100%; }
  .cookie-bar .btn { flex: 1 1 42%; justify-content: center; }

  .site-footer { padding-bottom: 5.4rem; }
  .footer-cta { padding: 0; }
  .footer-cta-inner, .home-cta-inner, .page-cta-lite-inner { flex-direction: column; align-items: stretch; }
  .footer-cta-inner { padding: 1.15rem 0 1.2rem; gap: .85rem; }
  .footer-phone { font-size: 1.35rem; }
  .footer-cta-actions, .page-cta-lite .btn { width: 100%; }
  .footer-cta-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
  .footer-cta-actions .btn { width: 100%; justify-content: center; min-height: 46px; }
  .footer-quick {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .5rem;
    margin: 0 0 1.25rem;
  }
  .footer-quick a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border-radius: 10px;
    background: #0c2230;
    border: 1px solid #1c3d54;
    color: #fff;
    font-weight: 700;
    font-size: .82rem;
  }
  .footer-main { padding: 1.35rem 0 1.1rem; }
  .footer-grid { gap: 1.2rem; }
  .footer-brand { padding-bottom: 1.05rem; border-bottom: 1px solid #1b4663; }
  .footer-tagline { font-size: .9rem; }
  .footer-heading { margin: 0 0 .65rem; }
  .footer-contact { gap: .5rem; }
  .footer-contact li {
    background: #0c2230;
    border: 1px solid #1c3d54;
    border-radius: 12px;
  }
  .footer-contact a,
  .footer-contact .footer-muted {
    padding: 1rem 1.05rem;
    line-height: 1.45;
    align-items: flex-start;
  }
  .footer-col {
    padding: 0 .1rem;
  }
  .footer-heading {
    padding: 0 .05rem;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: .1rem;
  }
  .footer-links a {
    min-height: 44px;
    align-items: center;
    padding: .35rem .15rem;
  }
  .footer-bottom-inner {
    padding: 1.05rem 0 1.2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom p {
    padding-right: .35rem;
    overflow-wrap: break-word;
  }
  .footer-legal {
    width: 100%;
    gap: .2rem .75rem;
  }
  .footer-legal a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: .15rem .1rem;
  }
  .captcha-top { grid-template-columns: 1fr auto; gap: .45rem; margin-bottom: .55rem; }
  .captcha-mark { display: none; }
  .captcha-copy span, .captcha-hint { display: none; }
  .captcha-copy strong { font-size: .92rem; }
  .captcha-refresh { height: 36px; padding: 0 .7rem; position: relative; }
  .captcha-refresh span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .captcha-board { gap: .4rem .5rem; align-items: center; padding-right: 3.4rem; }
  .captcha-board em { min-width: 42px; height: 42px; font-size: 1.15rem; border-radius: 10px; }
  .captcha-op { font-size: 1.15rem; }
  .captcha-answer label { display: none; }
  .captcha-answer .form-control { width: 64px; height: 42px; font-size: 1.15rem; }
  .captcha-box { padding: .75rem .8rem; margin: .7rem 0 .85rem; }
  .quote-home { padding: 1.25rem 0 5.4rem; }
  .quote-desk { padding: 1rem 0 5.4rem; }
  .quote-home-copy h2 { font-size: 1.28rem; max-width: none; margin-bottom: .4rem; }
  .quote-home-copy p { font-size: .9rem; max-width: none; margin-bottom: .15rem; }
  .quote-home .cta-actions { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; width: 100%; }
  .quote-home .cta-actions .btn { width: 100%; min-height: 46px; }
  .quote-panel { padding: .95rem .9rem 1rem; }
  .quote-form.is-compact .quote-fields { gap: .55rem .55rem; }
  .quote-form.is-compact .quote-need-item { padding: .48rem .5rem; font-size: .82rem; }
  .quote-need-grid { grid-template-columns: 1fr 1fr; }
  .quote-legal .form-check-label { font-size: .8rem; padding-right: 3.2rem; }
  .product-tabs-nav { overflow-x: auto; flex-wrap: nowrap; }
  .quote-desk-form, .contact-note-panel { padding: 1rem; }
  .branch-map iframe { min-height: 220px; }
  .mobile-drawer-actions { display: grid; gap: .55rem; }
  .mobile-drawer-actions .btn { width: 100%; }
  .review-card-top { flex-wrap: wrap; }
  .review-card-top time { margin-left: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .hero-industrial .carousel-item { transition: none !important; }
  .fab-stack, .float-top, .nav-toggle span, .fab-item, .fab-main-face, .fab-pulse { transition: none !important; }
  .fab-pulse { animation: none !important; }
}
