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

.idh-catalog-card,
.idh-service-card {
  min-width: 0;
  border: 1px solid #d9e1ea;
  border-radius: 7px;
  background: var(--idh-surface, #f3f6f9);
  overflow: hidden;
}

.idh-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: #fff;
  overflow: hidden;
}

.idh-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.idh-catalog-card:hover .idh-card-media img,
.idh-service-card:hover .idh-card-media img {
  transform: scale(1.025);
}

.idh-card-body {
  padding: 18px;
}

.idh-card-title {
  margin: 0 0 8px;
  color: var(--idh-ink, #172238);
  font: inherit;
  font-size: 1.15rem;
  line-height: 1.25;
}

.idh-card-title a,
.idh-card-link {
  color: inherit;
  text-decoration: none;
}

.idh-card-meta,
.idh-card-summary {
  margin: 0 0 12px;
  color: var(--idh-muted, #667085);
}

.idh-card-meta {
  font-size: .82rem;
  font-weight: 600;
}

.idh-public-price {
  margin: 12px 0;
  color: var(--idh-deep, #17136f);
  font-weight: 700;
}

.idh-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 16px;
}

.idh-card-link {
  font-weight: 600;
}

.idh-card-link:hover,
.idh-card-link:focus-visible {
  color: var(--idh-primary, #251fb3);
  text-decoration: underline;
}

.idh-quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--idh-deep, #17136f);
  border-radius: 6px;
  background: var(--idh-deep, #17136f);
  color: #fff !important;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none !important;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.idh-quote-button:hover,
.idh-quote-button:focus-visible {
  background: var(--idh-primary, #251fb3);
  border-color: var(--idh-primary, #251fb3);
  transform: translateY(-1px);
}

.idh-quote-button:focus-visible,
.idh-card-link:focus-visible,
.idh-card-title a:focus-visible {
  outline: 3px solid var(--idh-accent, #8fcb2e);
  outline-offset: 2px;
}

.idh-spec-wrap {
  width: 100%;
  overflow-x: auto;
}

.idh-specifications {
  width: 100%;
  border-collapse: collapse;
}

.idh-specifications th,
.idh-specifications td {
  padding: 12px 14px;
  border-bottom: 1px solid #d9e1ea;
  text-align: left;
  vertical-align: top;
}

.idh-specifications th {
  width: 36%;
  background: var(--idh-soft, #ecebfa);
  color: var(--idh-ink, #172238);
}

@media (max-width: 767px) {
  .idh-card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .idh-quote-button {
    width: 100%;
  }

  .idh-specifications,
  .idh-specifications tbody,
  .idh-specifications tr,
  .idh-specifications th,
  .idh-specifications td {
    display: block;
    width: 100%;
  }

  .idh-specifications th {
    border-bottom: 0;
  }
}

.idh-holding-page {
  background: var(--idh-surface, #f3f6f9);
  color: var(--idh-ink, #172238);
  padding: 24px 18px 40px;
}

.idh-holding-shell {
  max-width: 1220px;
  margin: 0 auto;
}

.idh-holding-topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 16px;
  padding: 12px 16px;
  border: 1px solid rgba(32, 58, 122, .16);
  background: var(--idh-deep, #17136f);
  color: #fff;
  border-radius: 8px;
}

.idh-holding-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.idh-holding-inline-contact,
.idh-holding-inline-contact a {
  color: #fff;
  text-decoration: none;
}

.idh-holding-inline-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: .96rem;
}

.idh-holding-inline-contact a:hover,
.idh-holding-inline-contact a:focus-visible {
  text-decoration: underline;
}

.idh-holding-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .9fr);
  gap: 24px;
  margin-top: 18px;
}

.idh-holding-main,
.idh-holding-aside,
.idh-holding-card {
  border: 1px solid #d9e1ea;
  border-radius: 8px;
}

.idh-holding-main {
  background: var(--idh-primary, #251fb3);
  color: #fff;
  padding: 34px;
}

.idh-holding-main h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  line-height: 1.02;
}

.idh-holding-kicker {
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.idh-holding-lead {
  margin: 0 0 12px;
  max-width: 60ch;
  font-size: 1.12rem;
  line-height: 1.6;
}

.idh-holding-note {
  margin: 0;
  max-width: 60ch;
  color: rgba(255,255,255,.92);
  line-height: 1.6;
}

.idh-holding-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.idh-holding-direct-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--idh-accent, #8fcb2e);
  border-radius: 6px;
  background: var(--idh-accent, #8fcb2e);
  color: var(--idh-primary, #251fb3) !important;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.idh-holding-direct-primary:hover,
.idh-holding-direct-primary:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--idh-primary, #251fb3) !important;
  transform: translateY(-1px);
}

.idh-holding-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 6px;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none !important;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.idh-holding-secondary:hover,
.idh-holding-secondary:focus-visible {
  background: rgba(255,255,255,.12);
  transform: translateY(-1px);
}

.idh-holding-aside {
  background: #fff;
  padding: 28px;
}

.idh-holding-aside h2 {
  margin: 0 0 18px;
  color: var(--idh-deep, #17136f);
  font-size: 1.5rem;
}

.idh-holding-block + .idh-holding-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e1e7f0;
}

.idh-holding-block h3 {
  margin: 0 0 8px;
  color: var(--idh-ink, #172238);
  font-size: 1rem;
}

.idh-holding-block p,
.idh-holding-block ul {
  margin: 0;
  color: var(--idh-muted, #667085);
}

.idh-holding-block ul {
  padding-left: 18px;
}

.idh-holding-block a {
  color: var(--idh-deep, #17136f);
  text-decoration: none;
}

.idh-holding-block a:hover,
.idh-holding-block a:focus-visible {
  text-decoration: underline;
}

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

.idh-holding-card {
  background: #fff;
  padding: 24px;
}

.idh-holding-card h2 {
  margin: 0 0 12px;
  color: var(--idh-deep, #17136f);
  font-size: 1.28rem;
}

.idh-holding-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--idh-muted, #667085);
}

.idh-holding-card li + li {
  margin-top: 8px;
}

@media (max-width: 991px) {
  .idh-holding-hero,
  .idh-holding-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .idh-holding-page {
    padding: 16px 12px 28px;
  }

  .idh-holding-topbar,
  .idh-holding-main,
  .idh-holding-aside,
  .idh-holding-card {
    padding: 18px;
  }

  .idh-holding-main h1 {
    font-size: 2rem;
  }

  .idh-holding-inline-contact,
  .idh-holding-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .idh-holding-secondary,
  .idh-holding-actions .idh-quote-button,
  .idh-holding-actions .idh-holding-direct-primary {
    width: 100%;
  }
}

/* Build-phase site shell for Hello Elementor Free. */
body.idh-build-context {
  background: var(--idh-surface, #f3f6f9);
}

.idh-site-shell {
  width: min(1220px, calc(100% - 36px));
  margin-inline: auto;
}

.idh-site-topbar {
  background: var(--idh-primary, #251fb3);
  color: #fff;
  font-size: .87rem;
}

.idh-site-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  min-height: 38px;
}

.idh-site-topbar-label {
  font-weight: 700;
  letter-spacing: .02em;
}

.idh-site-topbar-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.idh-site-topbar a {
  color: #fff;
  text-decoration: none;
}

.idh-site-topbar a:hover,
.idh-site-topbar a:focus-visible {
  text-decoration: underline;
}

body.idh-build-context #site-header,
body.idh-build-context .site-header {
  background: var(--idh-deep, #17136f);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.16);
  box-shadow: none;
}

body.idh-build-context #site-header .header-inner,
body.idh-build-context .site-header .header-inner {
  width: min(1220px, calc(100% - 36px));
  min-height: 76px;
  margin-inline: auto;
}

body.idh-build-context #site-header .site-title a,
body.idh-build-context #site-header .site-description,
body.idh-build-context #site-header .site-navigation a,
body.idh-build-context #site-header .menu-item a,
body.idh-build-context .site-header .site-title a,
body.idh-build-context .site-header .site-navigation a {
  color: #fff;
}

body.idh-build-context #site-header .site-title a,
body.idh-build-context .site-header .site-title a {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: .015em;
  text-transform: uppercase;
  text-decoration: none;
}

body.idh-build-context #site-header .site-navigation a,
body.idh-build-context .site-header .site-navigation a {
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

body.idh-build-context #site-header .site-navigation a:hover,
body.idh-build-context #site-header .site-navigation a:focus-visible,
body.idh-build-context #site-header .current-menu-item > a,
body.idh-build-context .site-header .site-navigation a:hover,
body.idh-build-context .site-header .site-navigation a:focus-visible {
  color: var(--idh-accent, #8fcb2e);
}

body.idh-build-context #site-header .idh-menu-cta > a,
body.idh-build-context .site-header .idh-menu-cta > a {
  padding: 10px 15px;
  border: 1px solid var(--idh-accent, #8fcb2e);
  border-radius: 6px;
  background: var(--idh-accent, #8fcb2e);
  color: var(--idh-deep, #17136f) !important;
}

body.idh-build-context #site-header .idh-menu-cta > a:hover,
body.idh-build-context #site-header .idh-menu-cta > a:focus-visible,
body.idh-build-context .site-header .idh-menu-cta > a:hover,
body.idh-build-context .site-header .idh-menu-cta > a:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--idh-deep, #17136f) !important;
}

body.idh-build-context #site-header .site-navigation-toggle,
body.idh-build-context .site-header .site-navigation-toggle {
  color: #fff;
}

body.idh-build-context #site-header .site-navigation-dropdown,
body.idh-build-context .site-header .site-navigation-dropdown {
  background: var(--idh-deep, #17136f);
  border-top: 1px solid rgba(255,255,255,.14);
}

body.idh-build-context #site-header .site-navigation-dropdown a,
body.idh-build-context .site-header .site-navigation-dropdown a {
  color: #fff;
}

body.idh-build-context #site-footer,
body.idh-build-context .site-footer:not(.idh-site-footer),
body.idh-build-context footer.site-footer:not(.idh-site-footer) {
  display: none !important;
}

.idh-site-footer {
  margin-top: 0;
  background: var(--idh-deep, #17136f);
  color: rgba(255,255,255,.88);
}

.idh-site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, .75fr) minmax(240px, .9fr);
  gap: 36px;
  padding-block: 46px;
}

.idh-site-footer-name,
.idh-site-footer h2 {
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}

.idh-site-footer-name {
  margin-bottom: 10px;
  font-size: 1.55rem;
  text-transform: uppercase;
}

.idh-site-footer h2 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.idh-site-footer p {
  margin: 0 0 9px;
  line-height: 1.55;
}

.idh-site-footer a {
  color: #fff;
  text-decoration: none;
}

.idh-site-footer a:hover,
.idh-site-footer a:focus-visible {
  color: var(--idh-accent, #8fcb2e);
}

.idh-site-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.idh-site-footer-menu li + li {
  margin-top: 8px;
}

.idh-site-footer-cta {
  display: inline-flex;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--idh-accent, #8fcb2e);
  border-radius: 6px;
  background: var(--idh-accent, #8fcb2e);
  color: var(--idh-deep, #17136f) !important;
  font-weight: 700;
}

.idh-site-footer-cta:hover,
.idh-site-footer-cta:focus-visible {
  background: #fff;
  border-color: #fff;
  color: var(--idh-deep, #17136f) !important;
}

.idh-site-footer-bottom {
  padding-block: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .87rem;
}

body.idh-build-page main.site-main {
  max-width: none;
  padding: 0;
}

body.idh-build-page .page-content {
  padding: 0;
}

@media (max-width: 991px) {
  .idh-site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .idh-site-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .idh-site-shell,
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    width: min(100% - 24px, 1220px);
  }

  .idh-site-topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 8px;
  }

  .idh-site-topbar-contact {
    gap: 5px 12px;
  }

  .idh-site-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 34px;
  }

  .idh-site-footer-brand {
    grid-column: auto;
  }
}

/* Elementor-Free fallback archive and single templates. */
.idh-template-main {
  background: #fff;
  color: var(--idh-ink, #172238);
  font-family: "Noto Sans", sans-serif;
}

.idh-template-main h1,
.idh-template-main h2,
.idh-template-main h3 {
  font-family: "Noto Sans", sans-serif;
  color: var(--idh-deep, #17136f);
  line-height: 1.08;
}

.idh-template-kicker {
  margin: 0 0 9px;
  color: var(--idh-accent-strong, #5c7f13);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.idh-archive-hero .idh-template-kicker,
.idh-service-hero .idh-template-kicker,
.idh-product-hero .idh-template-kicker,
.idh-quote-hero .idh-template-kicker,
.idh-product-final-cta .idh-template-kicker {
  color: var(--idh-accent, #8fcb2e);
}

.idh-archive-hero,
.idh-service-hero,
.idh-product-hero {
  background: var(--idh-deep, #17136f);
  color: #fff;
}

.idh-archive-hero-grid,
.idh-service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 36px;
  padding-block: 52px;
}

.idh-archive-hero h1,
.idh-service-hero h1,
.idh-product-hero h1,
.idh-product-final-cta h2 {
  max-width: 850px;
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(2.1rem, 3.6vw, 3.45rem);
}

.idh-archive-hero p:not(.idh-template-kicker),
.idh-service-hero p:not(.idh-template-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 1.08rem;
  line-height: 1.6;
}

.idh-template-hero-cta,
.idh-product-quote,
.idh-product-final-cta a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid var(--idh-accent, #8fcb2e);
  border-radius: 6px;
  background: var(--idh-accent, #8fcb2e);
  color: var(--idh-deep, #17136f) !important;
  font-weight: 700;
  text-decoration: none !important;
}

.idh-template-hero-cta:hover,
.idh-product-quote:hover,
.idh-product-final-cta a:hover {
  background: #fff;
  border-color: #fff;
}

.idh-catalog-filter-band {
  border-bottom: 1px solid #d8e2ee;
  background: var(--idh-soft, #ecebfa);
}

.idh-catalog-filters {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
  padding-block: 22px;
}

.idh-catalog-filters label span {
  display: block;
  margin-bottom: 6px;
  color: var(--idh-deep, #17136f);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.idh-catalog-filters input,
.idh-catalog-filters select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid #b9c9dc;
  border-radius: 5px;
  background: #fff;
  color: var(--idh-ink, #172238);
}

.idh-catalog-filters button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--idh-deep, #17136f);
  border-radius: 5px;
  background: var(--idh-deep, #17136f);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.idh-template-section {
  padding-block: 54px;
}

.idh-template-soft {
  background: var(--idh-surface, #f3f6f9);
}

.idh-template-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.idh-template-section-head h2,
.idh-prose h2,
.idh-two-panel h2,
.idh-service-detail-row h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}

.idh-reset-link {
  color: var(--idh-deep, #17136f);
  font-weight: 700;
}

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

.idh-archive-card {
  border: 1px solid #d8e2ee;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}

.idh-archive-card-media {
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e0e6ee;
  background: #fff;
  color: var(--idh-muted, #667085);
  text-decoration: none;
  overflow: hidden;
}

.idh-archive-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.idh-archive-card:hover .idh-archive-card-media img {
  transform: scale(1.025);
}

.idh-archive-card-body {
  padding: 19px;
}

.idh-card-eyebrow {
  margin: 0 0 7px !important;
  color: var(--idh-primary, #251fb3) !important;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.idh-archive-card h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.idh-archive-card h3 a,
.idh-archive-card-actions a {
  color: inherit;
  text-decoration: none;
}

.idh-archive-card-body > p {
  color: var(--idh-muted, #667085);
  line-height: 1.55;
}

.idh-card-reference {
  font-size: .86rem;
  font-weight: 600;
}

.idh-card-status {
  color: var(--idh-deep, #17136f) !important;
  font-size: .84rem;
  font-weight: 700;
}

.idh-archive-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  font-weight: 700;
}

.idh-small-quote {
  color: var(--idh-primary, #251fb3) !important;
}

.idh-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.idh-pagination a,
.idh-pagination span {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccd7e5;
  color: var(--idh-deep, #17136f);
  text-decoration: none;
}

.idh-pagination .current {
  background: var(--idh-deep, #17136f);
  color: #fff;
}

.idh-empty-state {
  padding: 34px;
  border-left: 4px solid var(--idh-primary, #251fb3);
  background: var(--idh-soft, #ecebfa);
}

.idh-service-list {
  border-top: 1px solid #d7e0ea;
}

.idh-service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding-block: 22px;
  border-bottom: 1px solid #d7e0ea;
}

.idh-service-number,
.idh-service-detail-number {
  color: var(--idh-primary, #251fb3);
  font-family: "Noto Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.idh-service-row h2 {
  margin: 0 0 6px;
  font-size: 1.75rem;
}

.idh-service-row h2 a,
.idh-service-row-action a {
  color: inherit;
  text-decoration: none;
}

.idh-service-row p {
  margin: 0;
  color: var(--idh-muted, #667085);
}

.idh-service-row-action a {
  font-weight: 700;
}

.idh-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.74);
  font-size: .82rem;
}

.idh-breadcrumbs a {
  color: #fff;
}

.idh-product-hero {
  padding-block: 38px 54px;
}

.idh-product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: start;
}

.idh-product-main-image {
  display: flex;
  min-height: 430px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  background: #fff;
  color: var(--idh-muted, #667085);
}

.idh-product-main-image img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: contain;
}

.idh-product-gallery {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}

.idh-product-gallery img {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255,255,255,.28);
  background: #fff;
  object-fit: contain;
}

.idh-product-summary {
  padding-top: 10px;
}

.idh-product-lead {
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.65;
}

.idh-product-facts {
  margin: 24px 0;
  border-top: 1px solid rgba(255,255,255,.18);
}

.idh-product-facts div {
  display: grid;
  grid-template-columns: 155px 1fr;
  gap: 16px;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.idh-product-facts dt {
  color: rgba(255,255,255,.68);
  font-weight: 600;
}

.idh-product-facts dd {
  margin: 0;
  color: #fff;
  font-weight: 700;
}

.idh-product-price {
  color: #fff !important;
  font-size: 1.35rem;
}

.idh-product-quote-note {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .86rem;
  line-height: 1.5;
}

.idh-prose {
  max-width: 900px;
}

.idh-prose p,
.idh-prose li {
  line-height: 1.7;
}

.idh-two-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 54px;
}

.idh-technical-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.idh-technical-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid #d8e2ee;
  line-height: 1.55;
}

.idh-technical-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--idh-accent, #8fcb2e);
}

.idh-download-panel {
  padding: 28px;
  border: 1px solid #d2deeb;
  background: #fff;
}

.idh-download-panel a {
  font-weight: 700;
  color: var(--idh-deep, #17136f);
}

.idh-product-final-cta {
  padding-block: 42px;
  background: var(--idh-primary, #251fb3);
  color: #fff;
}

.idh-product-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.idh-product-final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.idh-product-final-cta p:not(.idh-template-kicker) {
  margin: 0;
  color: rgba(255,255,255,.86);
}

.idh-service-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
  align-items: center;
}

.idh-service-hero-image {
  border: 1px solid rgba(255,255,255,.2);
  background: #fff;
}

.idh-service-hero-image img {
  display: block;
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.idh-service-detail-row {
  display: grid;
  grid-template-columns: minmax(220px, .55fr) minmax(0, 1.45fr);
  gap: 48px;
}

@media (max-width: 991px) {
  .idh-catalog-filters,
  .idh-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .idh-product-hero-grid,
  .idh-service-hero-grid,
  .idh-two-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .idh-archive-hero-grid,
  .idh-product-final-grid,
  .idh-catalog-filters,
  .idh-archive-grid,
  .idh-service-row,
  .idh-service-detail-row {
    grid-template-columns: 1fr;
  }
  .idh-archive-hero-grid,
  .idh-service-hero-grid {
    align-items: start;
    padding-block: 38px;
  }
  .idh-template-hero-cta,
  .idh-product-final-cta a {
    width: 100%;
  }
  .idh-service-row {
    gap: 8px;
  }
  .idh-product-main-image {
    min-height: 280px;
  }
  .idh-product-facts div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}


/* Typography trial: Noto Sans across the IDH build shell and dynamic templates. */
.idh-build-context,
.idh-build-context button,
.idh-build-context input,
.idh-build-context select,
.idh-build-context textarea {
  font-family: "Noto Sans", Arial, sans-serif;
}

/* Request a Quote workflow: v1.47 consolidated Elementor and CF7 ownership. */
body.idh-build-page-quote {
  --idh-quote-control-border: #cbd5e1;
  --idh-quote-error: #b42318;
  --idh-quote-error-bg: #fff1f0;
  --idh-quote-success: #26743a;
  --idh-quote-success-bg: #effaf2;
  background: var(--idh-surface, #f3f6f9);
  color: var(--idh-ink, #172238);
}

body.idh-build-page-quote .idh-quote-hero {
  padding: 56px 18px;
  background: var(--idh-hero, var(--idh-deep, #17136f)) !important;
  color: #fff;
}

body.idh-build-page-quote .idh-quote-hero > .elementor-container {
  width: 100%;
  max-width: 1220px !important;
  margin-inline: auto;
}

body.idh-build-page-quote .idh-quote-hero-content {
  width: 100% !important;
}

body.idh-build-page-quote .idh-quote-hero-content > .elementor-widget-wrap,
body.idh-build-page-quote .idh-quote-hero-content > .elementor-element-populated {
  padding: 0 !important;
}

body.idh-build-page-quote .idh-quote-hero-kicker,
body.idh-build-page-quote .idh-quote-hero-title,
body.idh-build-page-quote .idh-quote-hero-copy {
  width: 100%;
  max-width: 820px;
  margin-bottom: 0;
}

body.idh-build-page-quote .idh-quote-hero-kicker {
  margin-bottom: 12px;
}

body.idh-build-page-quote .idh-quote-hero-kicker .elementor-heading-title {
  color: var(--idh-accent, #8fcb2e) !important;
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.idh-build-page-quote .idh-quote-hero-title {
  margin-bottom: 18px;
}

body.idh-build-page-quote .idh-quote-hero-title .elementor-heading-title {
  margin: 0;
  color: #fff !important;
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(2.55rem, 3.8vw, 3.35rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.02em;
}

body.idh-build-page-quote .idh-quote-hero-copy p {
  max-width: 800px;
  margin: 0;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  line-height: 1.6;
}

body.idh-build-page-quote .idh-quote-body {
  padding: 52px 18px 58px;
  background: var(--idh-surface, #f3f6f9) !important;
}

body.idh-build-page-quote .idh-quote-body > .elementor-container {
  display: grid !important;
  width: 100%;
  max-width: 1220px !important;
  grid-template-columns: minmax(0, 31fr) minmax(0, 69fr);
  gap: 36px;
  align-items: start;
  margin-inline: auto;
}

body.idh-build-page-quote .idh-quote-body > .elementor-container > .elementor-column {
  width: 100% !important;
  min-width: 0;
}

body.idh-build-page-quote .idh-quote-sidebar > .elementor-widget-wrap,
body.idh-build-page-quote .idh-quote-sidebar > .elementor-element-populated {
  height: 100%;
  padding: 28px !important;
  border: 0;
  border-radius: 7px;
  background: var(--idh-deep, #17136f) !important;
  color: #fff;
}

body.idh-build-page-quote .idh-quote-sidebar .elementor-widget {
  margin-bottom: 0;
}

body.idh-build-page-quote .idh-quote-sidebar-kicker {
  margin-bottom: 8px !important;
}

body.idh-build-page-quote .idh-quote-sidebar-kicker .elementor-heading-title {
  color: var(--idh-accent, #8fcb2e) !important;
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.idh-build-page-quote .idh-quote-sidebar-title {
  margin-bottom: 14px !important;
}

body.idh-build-page-quote .idh-quote-sidebar-title .elementor-heading-title,
body.idh-build-page-quote .idh-quote-contact-heading .elementor-heading-title {
  margin: 0;
  color: #fff !important;
  font-family: "Noto Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

body.idh-build-page-quote .idh-quote-checklist {
  margin-bottom: 24px !important;
}

body.idh-build-page-quote .idh-quote-checklist ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: quote-guidance;
}

body.idh-build-page-quote .idh-quote-checklist li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9);
  font-size: 14px;
  line-height: 1.45;
  counter-increment: quote-guidance;
}

body.idh-build-page-quote .idh-quote-checklist li:first-child {
  padding-top: 6px;
}

body.idh-build-page-quote .idh-quote-checklist li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

body.idh-build-page-quote .idh-quote-checklist li::before {
  content: counter(quote-guidance, decimal-leading-zero);
  color: var(--idh-accent, #8fcb2e);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.7;
}

body.idh-build-page-quote .idh-quote-contact-heading {
  margin: 0 0 12px !important;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

body.idh-build-page-quote .idh-quote-direct-links p {
  display: grid;
  gap: 9px;
  margin: 0;
}

body.idh-build-page-quote .idh-quote-direct-links a {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  overflow-wrap: anywhere;
}

body.idh-build-page-quote .idh-quote-contact-icon {
  display: inline-flex;
  width: 18px;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  color: var(--idh-accent, #8fcb2e);
  font-size: 16px;
  line-height: 1;
}

body.idh-build-page-quote .idh-quote-direct-links a:hover,
body.idh-build-page-quote .idh-quote-direct-links a:focus-visible {
  color: var(--idh-accent, #8fcb2e) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.idh-build-page-quote .idh-quote-direct-links a:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--idh-accent, #8fcb2e);
  outline-offset: 3px;
}

body.idh-build-page-quote .idh-quote-form-shell > .elementor-widget-wrap,
body.idh-build-page-quote .idh-quote-form-shell > .elementor-element-populated {
  padding: 30px !important;
  border: 1px solid var(--idh-mega-divider, #d9e1ea);
  border-radius: 8px;
  background: #fff !important;
  color: var(--idh-ink, #172238);
  box-shadow: none;
}

body.idh-build-page-quote .idh-quote-form-title {
  margin: 0 0 22px !important;
}

body.idh-build-page-quote .idh-quote-form-title .elementor-heading-title {
  margin: 0;
  color: var(--idh-deep, #17136f) !important;
  font-family: "Noto Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

body.idh-build-page-quote .idh-quote-form-shell .elementor-widget-shortcode {
  margin-bottom: 0;
}

.idh-quote-form-only,
.idh-quote-form-only .wpcf7,
.idh-quote-form-only form,
.idh-quote-form-only .idh-cf7-quote-form {
  min-width: 0;
  margin: 0;
  padding: 0;
}

.idh-cf7-quote-form {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--idh-ink, #172238);
}

.idh-quote-selected-request {
  margin: 0 0 20px;
  padding: 12px 14px;
  border: 1px solid var(--idh-mega-divider, #d9e1ea);
  border-left: 4px solid var(--idh-accent, #8fcb2e);
  border-radius: 5px;
  background: var(--idh-surface, #f3f6f9);
  color: var(--idh-ink, #172238);
}

.idh-quote-selected-request[hidden] {
  display: none !important;
}

.idh-quote-selected-request span,
.idh-quote-selected-request strong {
  display: block;
}

.idh-quote-selected-request span {
  margin-bottom: 3px;
  color: var(--idh-accent-strong, #5c7f13);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.35;
  text-transform: uppercase;
}

.idh-quote-selected-request strong {
  color: var(--idh-deep, #17136f);
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  line-height: 1.35;
}

.idh-cf7-section {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--idh-ink, #172238);
}

.idh-cf7-section:last-child {
  margin-bottom: 0;
}

.idh-cf7-section-head {
  display: flex;
  width: 100%;
  max-width: none;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 0;
  margin: 0 0 18px;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--idh-mega-divider, #d9e1ea);
  background: transparent;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.35;
}

.idh-cf7-section-head span,
.idh-cf7-section-head strong {
  display: block;
  margin: 0;
  line-height: 1.35;
}

/* CF7's automatic paragraph wrapper must not reintroduce vertical spacing. */
.idh-cf7-section-head p {
  display: flex;
  width: 100%;
  align-items: center;
  gap: inherit;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit;
}

.idh-cf7-section-head span {
  flex: 0 0 auto;
  color: var(--idh-accent-strong, #5c7f13);
  font-size: 13px;
  font-weight: 800;
}

.idh-cf7-section-head strong {
  min-width: 0;
  color: var(--idh-deep, #17136f);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.idh-cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 15px;
  column-gap: 16px;
}

.idh-cf7-grid > *,
.idh-cf7-grid p,
.idh-cf7-grid label {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.idh-cf7-grid p {
  padding: 0 !important;
}

.idh-cf7-grid br {
  display: none;
}

.idh-cf7-field {
  display: block;
  min-width: 0;
  margin: 0;
  color: var(--idh-ink, #172238);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.idh-cf7-field .idh-required {
  color: var(--idh-quote-error);
}

.idh-cf7-field .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
  line-height: 1.4;
}

.idh-cf7-full {
  grid-column: 1 / -1;
}

.idh-cf7-field input[type="text"],
.idh-cf7-field input[type="email"],
.idh-cf7-field input[type="tel"],
.idh-cf7-field input[type="number"],
.idh-cf7-field select,
.idh-cf7-field textarea,
.idh-cf7-field input[type="file"] {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--idh-quote-control-border, #cbd5e1);
  border-radius: 5px;
  background: #fff;
  color: var(--idh-ink, #172238);
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  box-shadow: none;
}

.idh-cf7-field input[type="text"],
.idh-cf7-field input[type="email"],
.idh-cf7-field input[type="tel"],
.idh-cf7-field input[type="number"],
.idh-cf7-field select {
  min-height: 46px;
  padding: 10px 12px;
  line-height: 1.35;
}

.idh-cf7-field textarea {
  height: 155px;
  min-height: 155px;
  padding: 12px 14px;
  line-height: 1.52;
  resize: vertical;
}

.idh-cf7-field input[type="file"] {
  min-height: 46px;
  padding: 5px;
  background: var(--idh-surface, #f3f6f9);
  font-size: 13px;
  line-height: 1.4;
}

.idh-cf7-field input[type="file"]::file-selector-button {
  min-height: 34px;
  margin-right: 10px;
  padding: 7px 11px;
  border: 0;
  border-right: 1px solid var(--idh-quote-control-border, #cbd5e1);
  background: var(--idh-soft, #ecebfa);
  color: var(--idh-deep, #17136f);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.idh-cf7-field input::placeholder,
.idh-cf7-field textarea::placeholder {
  color: var(--idh-muted, #667085);
  line-height: inherit;
  opacity: 1;
}

.idh-cf7-field input:focus,
.idh-cf7-field select:focus,
.idh-cf7-field textarea:focus,
.idh-cf7-field input[type="file"]:focus-visible {
  border-color: var(--idh-primary, #251fb3);
  outline: 3px solid rgba(37,31,179,.14);
  outline-offset: 1px;
}

.idh-cf7-field small {
  display: block;
  margin-top: 6px;
  color: var(--idh-muted, #667085);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.idh-cf7-submit {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2px;
}

.idh-cf7-submit p {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

.idh-cf7-submit .wpcf7-spinner {
  position: absolute;
  right: 9px;
  margin: 0;
}

.idh-cf7-submit input[type="submit"] {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--idh-quote-bg, #8fcb2e);
  border-radius: 6px;
  background: var(--idh-quote-bg, #8fcb2e);
  color: var(--idh-quote-text, #100d4f);
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.idh-cf7-submit input[type="submit"]:hover,
.idh-cf7-submit input[type="submit"]:focus-visible {
  border-color: var(--idh-accent-strong, #5c7f13);
  background: var(--idh-accent-strong, #5c7f13);
  color: var(--idh-quote-text, #100d4f);
}

.idh-cf7-submit input[type="submit"]:focus-visible {
  outline: 3px solid rgba(37,31,179,.18);
  outline-offset: 2px;
}

.idh-quote-form-only form.submitting input[type="submit"] {
  opacity: .72;
  cursor: wait;
  transform: none !important;
}

.idh-quote-form-only .wpcf7-not-valid {
  border-color: var(--idh-quote-error) !important;
}

.idh-quote-form-only .wpcf7-not-valid-tip {
  display: block;
  margin: 5px 0 0;
  padding: 5px 8px;
  border-left: 3px solid var(--idh-quote-error);
  border-radius: 3px;
  background: var(--idh-quote-error-bg);
  color: var(--idh-quote-error);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.idh-quote-form-only .wpcf7-response-output {
  margin: 18px 0 0 !important;
  padding: 11px 13px !important;
  border: 1px solid var(--idh-mega-divider, #d9e1ea) !important;
  border-left: 4px solid var(--idh-primary, #251fb3) !important;
  border-radius: 4px;
  background: var(--idh-surface, #f3f6f9);
  color: var(--idh-ink, #172238);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.idh-quote-form-only form.invalid .wpcf7-response-output,
.idh-quote-form-only form.failed .wpcf7-response-output,
.idh-quote-form-only form.aborted .wpcf7-response-output,
.idh-quote-form-only form.spam .wpcf7-response-output {
  border-left-color: var(--idh-quote-error) !important;
  background: var(--idh-quote-error-bg);
  color: var(--idh-quote-error);
}

.idh-quote-form-only form.sent .wpcf7-response-output {
  border-left-color: var(--idh-quote-success) !important;
  background: var(--idh-quote-success-bg);
  color: var(--idh-quote-success);
}

/* Quote page has a strong task-specific hero; retain breadcrumb metadata but hide its visual duplicate here only. */
body.idh-build-page-quote .idh-breadcrumbs {
  display: none !important;
}

@media (max-width: 1024px) {
  body.idh-build-page-quote .idh-quote-hero {
    padding-block: 48px;
  }

  body.idh-build-page-quote .idh-quote-body {
    padding-block: 44px 50px;
  }

  body.idh-build-page-quote .idh-quote-body > .elementor-container {
    grid-template-columns: minmax(0, 32fr) minmax(0, 68fr);
    gap: 28px;
  }

  body.idh-build-page-quote .idh-quote-sidebar > .elementor-widget-wrap,
  body.idh-build-page-quote .idh-quote-sidebar > .elementor-element-populated,
  body.idh-build-page-quote .idh-quote-form-shell > .elementor-widget-wrap,
  body.idh-build-page-quote .idh-quote-form-shell > .elementor-element-populated {
    padding: 24px !important;
  }

  body.idh-build-page-quote .idh-quote-sidebar-title .elementor-heading-title,
  body.idh-build-page-quote .idh-quote-contact-heading .elementor-heading-title {
    font-size: 21px;
  }

  body.idh-build-page-quote .idh-quote-form-title .elementor-heading-title {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  body.idh-build-page-quote .idh-quote-body > .elementor-container {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  body.idh-build-page-quote .idh-quote-sidebar,
  body.idh-build-page-quote .idh-quote-form-shell {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  body.idh-build-page-quote .idh-quote-hero {
    padding: 36px 16px 38px;
  }

  body.idh-build-page-quote .idh-quote-hero-kicker {
    margin-bottom: 9px;
  }

  body.idh-build-page-quote .idh-quote-hero-title {
    margin-bottom: 14px;
  }

  body.idh-build-page-quote .idh-quote-hero-title .elementor-heading-title {
    font-size: clamp(2.1rem, 9.4vw, 2.45rem) !important;
    line-height: 1.08 !important;
  }

  body.idh-build-page-quote .idh-quote-hero-copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  body.idh-build-page-quote .idh-quote-body {
    padding: 32px 16px 40px;
  }

  body.idh-build-page-quote .idh-quote-body > .elementor-container {
    gap: 24px;
  }

  body.idh-build-page-quote .idh-quote-sidebar > .elementor-widget-wrap,
  body.idh-build-page-quote .idh-quote-sidebar > .elementor-element-populated {
    padding: 22px !important;
  }

  body.idh-build-page-quote .idh-quote-form-shell > .elementor-widget-wrap,
  body.idh-build-page-quote .idh-quote-form-shell > .elementor-element-populated {
    padding: 20px !important;
  }

  body.idh-build-page-quote .idh-quote-sidebar-title .elementor-heading-title,
  body.idh-build-page-quote .idh-quote-contact-heading .elementor-heading-title {
    font-size: 20px;
  }

  body.idh-build-page-quote .idh-quote-form-title {
    margin-bottom: 19px !important;
  }

  body.idh-build-page-quote .idh-quote-form-title .elementor-heading-title {
    font-size: 22px;
  }

  .idh-cf7-section {
    margin-bottom: 23px;
  }

  .idh-cf7-section-head {
    gap: 8px;
    margin-bottom: 16px;
  }

  .idh-cf7-section-head strong {
    font-size: 13px;
  }

  .idh-cf7-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .idh-cf7-full {
    grid-column: auto;
  }

  .idh-cf7-field textarea {
    height: 145px;
    min-height: 145px;
  }

  .idh-cf7-submit input[type="submit"] {
    width: 100%;
  }

  .idh-cf7-submit p {
    width: 100%;
  }
}

@media (max-width: 389px) {
  body.idh-build-page-quote .idh-quote-hero {
    padding: 32px 14px 34px;
  }

  body.idh-build-page-quote .idh-quote-hero-title .elementor-heading-title {
    font-size: 2.05rem !important;
  }

  body.idh-build-page-quote .idh-quote-body {
    padding: 26px 12px 34px;
  }

  body.idh-build-page-quote .idh-quote-sidebar > .elementor-widget-wrap,
  body.idh-build-page-quote .idh-quote-sidebar > .elementor-element-populated,
  body.idh-build-page-quote .idh-quote-form-shell > .elementor-widget-wrap,
  body.idh-build-page-quote .idh-quote-form-shell > .elementor-element-populated {
    padding: 18px !important;
  }

  .idh-cf7-section-head span {
    font-size: 12px;
  }

  .idh-cf7-section-head strong {
    font-size: 12.5px;
  }
}

/* v1.19, catalogue/detail usability additions adopted from the approved UI prototype,
   restyled to the Acones solid-color design system. */
.idh-product-jumpnav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(23,19,111,.12);
  background: #fff;
}

.admin-bar .idh-product-jumpnav { top: 32px; }

.idh-product-jumpnav .idh-site-shell {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
}

.idh-product-jumpnav a {
  flex: 0 0 auto;
  padding: 13px 16px;
  border-right: 1px solid #e2e6ee;
  color: var(--idh-deep, #17136f);
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.idh-product-jumpnav a:first-child { border-left: 1px solid #e2e6ee; }
.idh-product-jumpnav a:hover,
.idh-product-jumpnav a:focus-visible {
  background: var(--idh-soft, #ecebfa);
  color: var(--idh-primary, #251fb3);
}

.idh-anchor-section { scroll-margin-top: 72px; }
.admin-bar .idh-anchor-section { scroll-margin-top: 104px; }

.idh-product-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.idh-gallery-thumb {
  display: block;
  min-width: 0;
  padding: 4px;
  border: 1px solid #d9dfeb;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease;
}

.idh-gallery-thumb:hover,
.idh-gallery-thumb:focus-visible,
.idh-gallery-thumb.is-active {
  border-color: var(--idh-primary, #251fb3);
  transform: translateY(-1px);
}

.idh-gallery-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.idh-equipment-support {
  padding: 50px 18px;
  background: var(--idh-deep, #17136f);
  color: #fff;
}

.idh-equipment-support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 42px;
  align-items: center;
}

.idh-equipment-support h2 {
  margin: 6px 0 12px;
  color: #fff;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.idh-equipment-support p:not(.idh-template-kicker) {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
}

.idh-outline-action {
  display: inline-flex;
  margin-top: 16px;
  min-height: 42px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid var(--idh-accent, #8fcb2e);
  border-radius: 5px;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}

.idh-outline-action:hover,
.idh-outline-action:focus-visible {
  background: var(--idh-accent, #8fcb2e);
  color: var(--idh-deep, #17136f) !important;
}

.idh-support-links {
  border-top: 1px solid rgba(255,255,255,.2);
}

.idh-support-links a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-weight: 650;
  text-decoration: none;
}

.idh-support-links a:hover,
.idh-support-links a:focus-visible { color: var(--idh-accent, #8fcb2e); }

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

.idh-related-equipment-card {
  min-width: 0;
  border: 1px solid #dfe4ed;
  background: var(--idh-surface, #f3f6f9);
}

.idh-related-media {
  display: flex;
  aspect-ratio: 4 / 3;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  color: var(--idh-muted, #667085);
  text-decoration: none;
}

.idh-related-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 200ms ease;
}

.idh-related-equipment-card:hover .idh-related-media img { transform: scale(1.025); }
.idh-related-equipment-card > div { padding: 16px; }
.idh-related-equipment-card h3 { margin: 0 0 8px; font-size: 1.03rem; }
.idh-related-equipment-card h3 a { color: var(--idh-deep, #17136f); text-decoration: none; }
.idh-related-equipment-card p { margin: 0 0 14px; color: var(--idh-muted, #667085); font-size: .9rem; line-height: 1.5; }

.idh-related-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #dfe4ed;
  border-left: 1px solid #dfe4ed;
}

.idh-related-service-grid article {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid #dfe4ed;
  border-bottom: 1px solid #dfe4ed;
  background: #fff;
}

.idh-related-service-grid article > span {
  display: block;
  margin-bottom: 12px;
  color: var(--idh-accent-strong, #5c7f13);
  font-size: .78rem;
  font-weight: 800;
}

.idh-related-service-grid h3 { margin: 0 0 14px; font-size: 1.08rem; }
.idh-related-service-grid h3 a { color: var(--idh-deep, #17136f); text-decoration: none; }
.idh-related-service-grid article > a { color: var(--idh-primary, #251fb3); font-size: .88rem; font-weight: 700; text-decoration: none; }

.idh-result-count {
  margin: 6px 0 0;
  color: var(--idh-muted, #667085);
  font-size: .88rem;
}

.idh-service-row-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.idh-service-row-quote {
  color: var(--idh-primary, #251fb3) !important;
  font-size: .8rem;
  font-weight: 700;
  text-decoration: none !important;
}

.idh-service-row-quote:hover,
.idh-service-row-quote:focus-visible { text-decoration: underline !important; }

@media (max-width: 991px) {
  .idh-equipment-support-grid,
  .idh-related-equipment-grid,
  .idh-related-service-grid { grid-template-columns: 1fr; }

  .idh-product-jumpnav { position: static; }
  .admin-bar .idh-product-jumpnav { top: auto; }
  .idh-anchor-section,
  .admin-bar .idh-anchor-section { scroll-margin-top: 18px; }
}

@media (max-width: 767px) {
  .idh-product-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .idh-product-jumpnav a { padding: 11px 13px; font-size: .8rem; }
  .idh-equipment-support { padding: 36px 14px; }
  .idh-service-row-action { align-items: flex-start; }
}

/* v1.21: distinct enquiry path and contextual double CTAs */
.idh-product-cta-group,
.idh-final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.idh-product-cta-group {
  margin-top: 16px;
}

.idh-product-secondary-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 10px 17px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 6px;
  background: transparent;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.idh-product-secondary-cta:hover,
.idh-product-secondary-cta:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--idh-primary, #251fb3) !important;
  transform: translateY(-1px);
}

.idh-final-cta-actions {
  justify-content: flex-end;
}

.idh-product-final-cta .idh-final-secondary {
  border-color: rgba(255,255,255,.78);
  background: transparent;
  color: #fff !important;
}

.idh-product-final-cta .idh-final-secondary:hover,
.idh-product-final-cta .idh-final-secondary:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--idh-primary, #251fb3) !important;
}

/* General enquiry CF7 form. The page shell remains Elementor-editable. */
.acv-contact-form-panel {
  border: 1px solid #d9e1ee;
  border-top: 4px solid var(--idh-primary, #251fb3);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 34, 56, .06);
}

.idh-cf7-contact-form {
  margin-top: 16px;
}

.idh-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.idh-contact-field {
  display: block;
  margin: 0;
  color: var(--idh-ink, #172238);
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.3;
}

.idh-contact-field .idh-required {
  color: var(--idh-accent-strong, #5c7f13);
}

.idh-contact-field .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.idh-contact-full {
  grid-column: 1 / -1;
}

.idh-contact-field input[type="text"],
.idh-contact-field input[type="email"],
.idh-contact-field input[type="tel"],
.idh-contact-field select,
.idh-contact-field textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #cbd6e5;
  border-radius: 5px;
  background: #fff;
  color: var(--idh-ink, #172238);
  font: inherit;
  box-shadow: none;
}

.idh-contact-field input[type="text"],
.idh-contact-field input[type="email"],
.idh-contact-field input[type="tel"],
.idh-contact-field select {
  min-height: 44px;
  padding: 9px 11px;
}

.idh-contact-field textarea {
  min-height: 130px;
  padding: 10px 11px;
  resize: vertical;
}

.idh-contact-field input:focus,
.idh-contact-field select:focus,
.idh-contact-field textarea:focus {
  border-color: var(--idh-primary, #251fb3);
  outline: 2px solid rgba(37,31,179,.15);
  outline-offset: 1px;
}

.idh-contact-field .wpcf7-not-valid {
  border-color: #b42318 !important;
}

.idh-cf7-contact-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  padding: 4px 7px;
  border-left: 3px solid #b42318;
  background: #fff1f0;
  color: #8f1d14;
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.3;
}

.idh-contact-submit input[type="submit"] {
  min-height: 44px;
  padding: 10px 20px;
  border: 1px solid var(--idh-primary, #251fb3);
  border-radius: 5px;
  background: var(--idh-primary, #251fb3);
  color: #fff;
  font-family: "Noto Sans", sans-serif;
  font-weight: 750;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.idh-contact-submit input[type="submit"]:hover,
.idh-contact-submit input[type="submit"]:focus-visible {
  border-color: var(--idh-deep, #17136f);
  background: var(--idh-deep, #17136f);
  transform: translateY(-1px);
}

.idh-cf7-contact-form .wpcf7-response-output {
  margin: 14px 0 0 !important;
  padding: 10px 12px !important;
  border: 1px solid #ccd7e5 !important;
  background: var(--idh-surface, #f3f6f9);
  color: var(--idh-ink, #172238);
  font-size: .88rem;
}

@media (max-width: 767px) {
  .idh-product-cta-group,
  .idh-final-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .idh-product-cta-group a,
  .idh-final-cta-actions a {
    width: 100%;
  }
  .idh-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .idh-contact-full { grid-column: auto; }
}

/* v1.22 navigation and catalogue presentation enhancements. */
.idh-site-topbar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 24px;
}

.idh-site-topbar-location {
  font-weight: 700;
  white-space: nowrap;
}

.idh-site-topbar-contact {
  justify-content: center;
}

.idh-site-topbar-support {
  color: var(--idh-accent, #8fcb2e) !important;
  font-weight: 800;
  white-space: nowrap;
}

body.idh-build-context #site-header .site-navigation ul ul,
body.idh-build-context .site-header .site-navigation ul ul {
  min-width: 250px;
  padding: 8px 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 5px;
  background: var(--idh-deep, #17136f);
  box-shadow: 0 10px 22px rgba(23,19,111,.16);
}

body.idh-build-context #site-header .site-navigation ul ul a,
body.idh-build-context .site-header .site-navigation ul ul a {
  padding: 10px 15px;
  border-left: 3px solid transparent;
  font-size: .9rem;
  line-height: 1.25;
}

body.idh-build-context #site-header .site-navigation ul ul a:hover,
body.idh-build-context #site-header .site-navigation ul ul a:focus-visible,
body.idh-build-context .site-header .site-navigation ul ul a:hover,
body.idh-build-context .site-header .site-navigation ul ul a:focus-visible {
  border-left-color: var(--idh-accent, #8fcb2e);
  background: rgba(255,255,255,.06);
}

.idh-archive-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: transform 180ms ease, border-color 180ms ease;
}

.idh-archive-card:hover {
  border-color: #b8c7dc;
  transform: translateY(-2px);
}

.idh-archive-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--idh-surface, #f3f6f9);
}

.idh-archive-card-media img {
  object-fit: cover;
}

.idh-card-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 8px;
  border-radius: 3px;
  background: var(--idh-deep, #17136f);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.15;
  text-transform: uppercase;
}

.idh-card-media-note {
  position: absolute;
  right: 9px;
  bottom: 8px;
  padding: 4px 6px;
  background: rgba(23,19,111,.88);
  color: #fff;
  font-size: .64rem;
  font-weight: 600;
}

.idh-equipment-placeholder {
  color: var(--idh-muted, #667085);
  font-size: .86rem;
  font-weight: 600;
}

.idh-archive-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.idh-archive-card h3 {
  font-size: 1.3rem;
  line-height: 1.18;
}

.idh-card-summary {
  margin-bottom: 14px !important;
}

.idh-card-facts {
  display: grid;
  gap: 7px;
  margin: auto 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #e2e8f0;
}

.idh-card-facts > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
}

.idh-card-facts dt {
  color: var(--idh-muted, #667085);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.idh-card-facts dd {
  margin: 0;
  color: var(--idh-ink, #172238);
  font-size: .8rem;
  font-weight: 600;
}

.idh-archive-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
}

.idh-archive-card-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: .82rem;
  text-align: center;
}

.idh-card-details {
  border: 1px solid #c6d2e2;
  background: var(--idh-soft, #ecebfa);
  color: var(--idh-deep, #17136f) !important;
}

.idh-card-details:hover,
.idh-card-details:focus-visible {
  border-color: var(--idh-primary, #251fb3);
  background: #fff;
}

.idh-archive-card-actions .idh-small-quote {
  border: 1px solid var(--idh-primary, #251fb3);
  background: var(--idh-primary, #251fb3);
  color: #fff !important;
}

.idh-archive-card-actions .idh-small-quote:hover,
.idh-archive-card-actions .idh-small-quote:focus-visible {
  border-color: var(--idh-accent, #8fcb2e);
  background: var(--idh-accent, #8fcb2e);
  color: var(--idh-deep, #17136f) !important;
}

@media (max-width: 991px) {
  .idh-site-topbar-inner {
    grid-template-columns: 1fr auto;
  }
  .idh-site-topbar-contact {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }
  .idh-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .idh-site-topbar-inner {
    display: flex;
    align-items: flex-start;
  }
  .idh-site-topbar-location {
    display: none;
  }
  .idh-site-topbar-support {
    white-space: normal;
  }
  .idh-archive-grid {
    grid-template-columns: 1fr;
  }
}

/* v1.23 compact two-cluster utility topbar, layout inspired by the supplied reference only. */
.idh-site-topbar {
  background: var(--idh-deep, #17136f);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .78rem;
}

.idh-site-topbar-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
}

.idh-site-topbar-primary,
.idh-site-topbar-utility {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0;
}

.idh-site-topbar-primary > *,
.idh-site-topbar-utility > * {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  white-space: nowrap;
}

.idh-site-topbar-primary > * + *,
.idh-site-topbar-utility > * + * {
  margin-left: 11px;
  padding-left: 12px;
}

.idh-site-topbar-primary > * + *::before,
.idh-site-topbar-utility > * + *::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,.24);
  content: "";
  transform: translateY(-50%);
}

.idh-site-topbar-location {
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.idh-site-topbar a {
  color: rgba(255,255,255,.94);
  font-weight: 600;
  text-decoration: none;
}

.idh-topbar-icon {
  display: inline-flex;
  width: 16px;
  align-items: center;
  justify-content: center;
  margin-right: 5px;
  color: var(--idh-accent, #8fcb2e);
  font-size: .78em;
  line-height: 1;
}

.idh-site-topbar-support {
  color: var(--idh-accent, #8fcb2e) !important;
  font-weight: 800 !important;
}

.idh-site-topbar-quote {
  color: #fff !important;
  font-weight: 800 !important;
}

.idh-site-topbar a:hover,
.idh-site-topbar a:focus-visible {
  color: var(--idh-accent, #8fcb2e) !important;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .idh-site-topbar-location,
  .idh-topbar-email {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .idh-site-topbar-inner {
    min-height: 36px;
    gap: 8px 14px;
  }
  .idh-site-topbar-primary .idh-topbar-phone:nth-of-type(n+2) {
    display: none;
  }
  .idh-site-topbar-utility a:not(.idh-site-topbar-support) {
    display: none;
  }
  .idh-site-topbar-primary > * + *,
  .idh-site-topbar-utility > * + * {
    margin-left: 8px;
    padding-left: 9px;
  }
  .idh-site-topbar-primary > * + *::before,
  .idh-site-topbar-utility > * + *::before {
    height: 10px;
  }
}


/* v1.24 common content shell alignment.
 * Full-width/stretched Elementor sections retain edge-to-edge backgrounds,
 * while their direct content container stays aligned to the same 1220px shell
 * used by the topbar, header and footer.
 */
body.idh-build-page .elementor > .elementor-section.elementor-section-stretched > .elementor-container,
body.idh-build-page .elementor > .elementor-section.elementor-section-full_width > .elementor-container,
body.idh-build-page .elementor > .elementor-section > .elementor-container,
body.idh-build-page .elementor > .e-con.e-con-full > .e-con-inner {
  width: min(1220px, calc(100% - 36px));
  max-width: 1220px;
  margin-inline: auto;
}

/* Keep the outer section/background full bleed. */
body.idh-build-page .elementor > .elementor-section.elementor-section-stretched,
body.idh-build-page .elementor > .elementor-section.elementor-section-full_width {
  width: 100%;
  max-width: none;
}

.idh-site-topbar-webmail {
  color: #fff !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {
  body.idh-build-page .elementor > .elementor-section.elementor-section-stretched > .elementor-container,
  body.idh-build-page .elementor > .elementor-section.elementor-section-full_width > .elementor-container,
  body.idh-build-page .elementor > .elementor-section > .elementor-container,
  body.idh-build-page .elementor > .e-con.e-con-full > .e-con-inner {
    width: min(100% - 24px, 1220px);
  }
}

/* v1.25 catalogue-media completeness and Elementor Equipment Grid refinement. */
.idh-catalog-grid--enhanced {
  gap: 18px;
}

.idh-catalog-grid--enhanced .idh-catalog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-color: #d7dfeb;
  border-radius: 6px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}

.idh-catalog-grid--enhanced .idh-catalog-card:hover {
  border-color: #b9c7dc;
  transform: translateY(-2px);
}

.idh-catalog-grid--enhanced .idh-card-media {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 10;
  align-items: center;
  justify-content: center;
  background: var(--idh-surface, #f3f6f9);
}

.idh-catalog-grid--enhanced .idh-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.idh-catalog-grid--enhanced .idh-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.idh-catalog-grid--enhanced .idh-card-category {
  margin: 0 0 6px;
  color: var(--idh-accent-dark, #5c7f13);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .055em;
  line-height: 1.2;
  text-transform: uppercase;
}

.idh-catalog-grid--enhanced .idh-card-title {
  margin-bottom: 7px;
  font-size: 1.08rem;
  line-height: 1.22;
}

.idh-catalog-grid--enhanced .idh-card-summary {
  margin-bottom: 12px;
  color: var(--idh-muted, #667085);
  font-size: .86rem;
  line-height: 1.48;
}

.idh-catalog-grid--enhanced .idh-card-status {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: auto 0 0;
  padding: 10px 0 0;
  border-top: 1px solid #e4e9f0;
  color: var(--idh-muted, #667085);
  font-size: .74rem;
}

.idh-catalog-grid--enhanced .idh-card-status span {
  font-weight: 700;
  text-transform: uppercase;
}

.idh-catalog-grid--enhanced .idh-card-status strong {
  color: var(--idh-ink, #172238);
  font-weight: 700;
  text-align: right;
}

.idh-catalog-grid--enhanced .idh-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.idh-catalog-grid--enhanced .idh-card-actions a {
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: .8rem;
  text-align: center;
}

.idh-catalog-grid--enhanced .idh-card-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c6d2e2;
  background: var(--idh-soft, #ecebfa);
  color: var(--idh-deep, #17136f) !important;
  font-weight: 700;
  text-decoration: none;
}

.idh-catalog-grid--enhanced .idh-card-details:hover,
.idh-catalog-grid--enhanced .idh-card-details:focus-visible {
  border-color: var(--idh-primary, #251fb3);
  background: #fff;
}

.idh-catalog-grid--enhanced .idh-card-actions .idh-quote-button {
  min-height: 40px;
  border-color: var(--idh-primary, #251fb3);
  background: var(--idh-primary, #251fb3);
  font-weight: 700;
}

.idh-catalog-grid--enhanced .idh-card-actions .idh-quote-button:hover,
.idh-catalog-grid--enhanced .idh-card-actions .idh-quote-button:focus-visible {
  border-color: var(--idh-accent, #8fcb2e);
  background: var(--idh-accent, #8fcb2e);
  color: var(--idh-deep, #17136f) !important;
}

.idh-product-main-image {
  position: relative;
}

.idh-product-media-note {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 7px;
  border-radius: 3px;
  background: rgba(23,19,111,.9);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .idh-catalog-grid--enhanced .idh-card-actions {
    grid-template-columns: 1fr;
  }
}

/* v1.26 catalogue browse strip and responsive QA pass. */
.idh-equipment-group-nav {
  border-bottom: 1px solid #d8e2ee;
  background: #fff;
}

.idh-equipment-group-nav-inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.idh-equipment-group-nav a {
  display: flex;
  min-width: 0;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-right: 1px solid #e0e6ee;
  border-bottom: 3px solid transparent;
  color: var(--idh-deep, #17136f);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.idh-equipment-group-nav a:first-child {
  border-left: 1px solid #e0e6ee;
}

.idh-equipment-group-nav a:hover,
.idh-equipment-group-nav a:focus-visible,
.idh-equipment-group-nav a.is-active {
  border-bottom-color: var(--idh-accent, #8fcb2e);
  background: var(--idh-soft, #ecebfa);
  color: var(--idh-primary, #251fb3);
}

.idh-equipment-group-nav a:focus-visible,
.idh-catalog-filters input:focus-visible,
.idh-catalog-filters select:focus-visible,
.idh-catalog-filters button:focus-visible,
.idh-archive-card a:focus-visible,
.idh-product-jumpnav a:focus-visible,
.idh-gallery-thumb:focus-visible,
.idh-service-row a:focus-visible,
.idh-site-footer a:focus-visible {
  outline: 3px solid var(--idh-accent, #8fcb2e);
  outline-offset: 2px;
}

.idh-product-jumpnav .idh-site-shell {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.idh-product-jumpnav a {
  flex: 0 0 auto;
  white-space: nowrap;
}

.idh-site-footer a,
.idh-site-topbar a,
.idh-product-summary,
.idh-archive-card,
.idh-service-row {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .idh-archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .idh-catalog-filters > label:first-child {
    grid-column: 1 / -1;
  }

  .idh-catalog-filters button {
    width: 100%;
  }

  .idh-related-equipment-grid,
  .idh-related-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .idh-product-hero {
    padding-block: 32px 42px;
  }

  .idh-product-hero-grid,
  .idh-service-hero-grid,
  .idh-equipment-support-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .idh-product-main-image {
    min-height: 320px;
  }

  .idh-product-main-image img {
    max-height: 430px;
  }

  .idh-product-summary {
    padding-top: 0;
  }

  .idh-product-jumpnav {
    position: static;
  }

  .admin-bar .idh-product-jumpnav {
    top: auto;
  }

  .idh-template-section {
    padding-block: 44px;
  }

  .idh-service-detail-row {
    grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
    gap: 30px;
  }
}

@media (max-width: 767px) {
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    min-height: 66px;
  }

  body.idh-build-context #site-header .site-logo img,
  body.idh-build-context #site-header img.custom-logo,
  body.idh-build-context .site-header .site-logo img,
  body.idh-build-context .site-header img.custom-logo {
    width: auto;
    max-height: 62px;
  }

  .idh-equipment-group-nav {
    overflow: hidden;
  }

  .idh-equipment-group-nav-inner {
    display: grid;
    width: min(100% - 24px, 1220px);
    grid-auto-flow: column;
    grid-auto-columns: minmax(165px, 1fr);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .idh-equipment-group-nav a {
    justify-content: flex-start;
    min-height: 48px;
    text-align: left;
  }

  .idh-catalog-filters {
    grid-template-columns: 1fr;
    gap: 11px;
    padding-block: 16px;
  }

  .idh-catalog-filters > label:first-child {
    grid-column: auto;
  }

  .idh-catalog-filters button {
    width: 100%;
  }

  .idh-archive-hero-grid,
  .idh-service-hero-grid {
    gap: 20px;
    padding-block: 34px;
  }

  .idh-archive-hero h1,
  .idh-service-hero h1,
  .idh-product-hero h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    line-height: 1.06;
  }

  .idh-template-section {
    padding-block: 34px;
  }

  .idh-template-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .idh-archive-grid,
  .idh-related-equipment-grid,
  .idh-related-service-grid,
  .idh-service-detail-row {
    grid-template-columns: 1fr;
  }

  .idh-product-main-image {
    min-height: 240px;
  }

  .idh-product-main-image img {
    max-height: 340px;
  }

  .idh-product-gallery {
    grid-template-columns: repeat(4, minmax(64px, 1fr));
  }

  .idh-product-facts {
    margin-block: 18px;
  }

  .idh-product-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 9px;
  }

  .idh-product-cta-group,
  .idh-final-cta-actions {
    align-items: stretch;
  }

  .idh-product-cta-group a,
  .idh-final-cta-actions a,
  .idh-template-hero-cta,
  .idh-outline-action {
    width: 100%;
    text-align: center;
  }

  .idh-product-quote-note {
    font-size: .8rem;
    line-height: 1.45;
  }

  .idh-equipment-support {
    padding: 34px 12px;
  }

  .idh-service-row {
    gap: 8px;
    padding-block: 18px;
  }

  .idh-service-row-action {
    margin-top: 4px;
  }

  .idh-site-footer-grid {
    gap: 22px;
  }
}

/* v1.29 responsive and interaction QA hardening. */
.idh-template-main *,
.idh-site-topbar *,
.idh-site-footer *,
.idh-quote-form-only *,
.idh-cf7-contact-form * {
  box-sizing: border-box;
}

.idh-template-main img,
.idh-site-footer img,
.idh-quote-form-only img,
.idh-cf7-contact-form img {
  max-width: 100%;
}

.idh-product-hero-grid > *,
.idh-service-hero-grid > *,
.idh-product-final-grid > *,
.idh-equipment-support-grid > *,
.idh-quote-grid > *,
.idh-cf7-grid > *,
.idh-contact-form-grid > *,
.idh-service-row > * {
  min-width: 0;
}

.idh-service-hero-grid--single {
  grid-template-columns: minmax(0, 860px);
}

.idh-service-hero-image {
  position: relative;
  overflow: hidden;
}

.idh-service-media-note {
  position: absolute;
  right: 9px;
  bottom: 8px;
  max-width: calc(100% - 18px);
  padding: 5px 7px;
  border-radius: 3px;
  background: rgba(23,19,111,.9);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.15;
}

.idh-specifications th,
.idh-specifications td,
.idh-card-facts dd,
.idh-product-facts dd,
.idh-service-row h2,
.idh-related-service-grid h3,
.idh-related-equipment-card h3 {
  overflow-wrap: anywhere;
  word-break: normal;
}

.idh-catalog-filters input,
.idh-catalog-filters select,
.idh-catalog-filters button,
.idh-cf7-field input,
.idh-cf7-field select,
.idh-cf7-field textarea,
.idh-contact-field input,
.idh-contact-field select,
.idh-contact-field textarea {
  min-width: 0;
  max-width: 100%;
}

.idh-cf7-field input[type="file"] {
  overflow: hidden;
  white-space: normal;
}

.idh-cf7-field input[type="file"]::file-selector-button {
  margin-right: 9px;
  padding: 7px 9px;
  border: 0;
  border-right: 1px solid #d0d5dd;
  background: var(--idh-surface, #f3f6f9);
  color: var(--idh-deep, #17136f);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.idh-cf7-submit .wpcf7-spinner,
.idh-contact-submit .wpcf7-spinner {
  flex: 0 0 auto;
  margin: 0 0 0 10px;
}

body.idh-build-context #site-header .site-navigation-dropdown a,
body.idh-build-context .site-header .site-navigation-dropdown a {
  overflow-wrap: anywhere;
  white-space: normal;
}

@media (max-width: 900px) {
  .idh-service-hero-grid--single {
    grid-template-columns: 1fr;
  }

  .idh-product-final-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .idh-final-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    gap: 10px;
  }

  body.idh-build-context #site-header .site-navigation-dropdown,
  body.idh-build-context .site-header .site-navigation-dropdown {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  body.idh-build-context #site-header .site-navigation-dropdown ul,
  body.idh-build-context .site-header .site-navigation-dropdown ul {
    width: 100%;
    max-width: 100%;
  }

  body.idh-build-context #site-header .site-navigation-dropdown .idh-menu-cta > a,
  body.idh-build-context .site-header .site-navigation-dropdown .idh-menu-cta > a {
    width: calc(100% - 24px);
    margin: 8px 12px 12px;
    justify-content: center;
    text-align: center;
  }

  .idh-product-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .idh-gallery-thumb {
    min-width: 0;
  }

  .idh-spec-wrap {
    overflow-x: visible;
  }

  .idh-specifications th,
  .idh-specifications td {
    padding: 10px 11px;
  }

  .idh-archive-card-actions,
  .idh-catalog-grid--enhanced .idh-card-actions {
    grid-template-columns: 1fr 1fr;
  }

  .idh-service-row-action {
    width: 100%;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .idh-service-row-action a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
  }

  .idh-quote-form-shell,
  .idh-quote-form-panel,
  .acv-contact-form-panel {
    max-width: 100%;
  }

  .idh-cf7-field input[type="text"],
  .idh-cf7-field input[type="email"],
  .idh-cf7-field input[type="tel"],
  .idh-cf7-field input[type="number"],
  .idh-cf7-field select,
  .idh-cf7-field textarea,
  .idh-contact-field input[type="text"],
  .idh-contact-field input[type="email"],
  .idh-contact-field input[type="tel"],
  .idh-contact-field select,
  .idh-contact-field textarea {
    font-size: 16px;
  }

  .idh-contact-submit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .idh-contact-submit input[type="submit"] {
    width: 100%;
  }

  .idh-cf7-submit {
    flex-wrap: wrap;
  }

  .idh-cf7-submit input[type="submit"] {
    flex: 1 1 100%;
  }

  .idh-cf7-submit .wpcf7-spinner,
  .idh-contact-submit .wpcf7-spinner {
    margin: 8px 0 0;
  }
}

@media (max-width: 480px) {
  .idh-site-topbar {
    font-size: .72rem;
  }

  .idh-site-topbar-inner {
    min-width: 0;
    flex-wrap: wrap;
    gap: 5px 10px;
  }

  .idh-site-topbar-primary,
  .idh-site-topbar-utility {
    min-width: 0;
  }

  .idh-site-topbar-primary > *,
  .idh-site-topbar-utility > * {
    min-width: 0;
  }

  .idh-site-topbar-primary > * + *,
  .idh-site-topbar-utility > * + * {
    margin-left: 6px;
    padding-left: 7px;
  }

  .idh-topbar-icon {
    width: 12px;
    margin-right: 3px;
  }

  .idh-site-topbar-support {
    line-height: 1.2;
  }

  .idh-archive-card-actions,
  .idh-catalog-grid--enhanced .idh-card-actions {
    grid-template-columns: 1fr;
  }

  .idh-product-main-image {
    min-height: 210px;
  }

  .idh-product-gallery {
    gap: 6px;
  }

  .idh-service-hero-image img {
    max-height: 300px;
  }

}

@media (max-width: 360px) {
  .idh-site-shell,
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner,
  body.idh-build-page .elementor > .elementor-section.elementor-section-stretched > .elementor-container,
  body.idh-build-page .elementor > .elementor-section.elementor-section-full_width > .elementor-container,
  body.idh-build-page .elementor > .elementor-section > .elementor-container,
  body.idh-build-page .elementor > .e-con.e-con-full > .e-con-inner {
    width: min(100% - 18px, 1220px);
  }

  .idh-site-topbar-inner {
    justify-content: space-between;
  }

  .idh-site-topbar-primary .idh-topbar-phone,
  .idh-site-topbar-support {
    font-size: .68rem;
  }

  .idh-product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .idh-archive-hero h1,
  .idh-service-hero h1,
  .idh-product-hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.25rem);
  }
}

/* v1.30 media-context QA. */
.idh-product-media-note[hidden] {
  display: none !important;
}

.idh-related-media {
  position: relative;
}

.idh-related-media-note {
  position: absolute;
  right: 8px;
  bottom: 8px;
  max-width: calc(100% - 16px);
  padding: 5px 7px;
  border-radius: 3px;
  background: var(--idh-deep, #17136f);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.15;
}


/* v1.31 screenshot-driven catalogue/service density and ordering QA. */
.idh-service-archive .idh-template-section {
  padding-block: 42px 48px;
}

.idh-service-archive .idh-service-row {
  grid-template-columns: 52px minmax(0, 1fr) 132px;
  gap: 18px;
  padding: 17px 10px 17px 0;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.idh-service-archive .idh-service-row:hover {
  background: #f8f9fd;
  box-shadow: inset 3px 0 0 var(--idh-accent, #8fcb2e);
}

.idh-service-archive .idh-service-number {
  font-size: 1.05rem;
}

.idh-service-archive .idh-service-row h2 {
  margin-bottom: 4px;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.16;
}

.idh-service-archive .idh-service-row p {
  font-size: .92rem;
  line-height: 1.5;
}

.idh-service-archive .idh-service-row-action > a:first-child {
  font-size: .84rem;
}

.idh-service-archive .idh-service-row-quote {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border: 1px solid #c9d3e3;
  border-radius: 4px;
  background: #fff;
  color: var(--idh-primary, #251fb3) !important;
  line-height: 1.15;
}

.idh-service-archive .idh-service-row-quote:hover,
.idh-service-archive .idh-service-row-quote:focus-visible {
  border-color: var(--idh-primary, #251fb3);
  background: var(--idh-soft, #ecebfa);
  text-decoration: none !important;
}

.idh-service-single .idh-template-section {
  padding-block: 42px;
}

.idh-service-single .idh-prose {
  max-width: 920px;
}

.idh-service-single .idh-service-detail-row {
  align-items: start;
  gap: 42px;
}

.idh-service-single .idh-service-detail-row > div:first-child {
  padding-left: 16px;
  border-left: 3px solid var(--idh-primary, #251fb3);
}

.idh-service-single .idh-service-detail-number {
  margin-bottom: 7px;
  font-size: .95rem;
}

.idh-service-single .idh-technical-list {
  margin-top: 1px;
}

.idh-service-single .idh-service-hero-image.is-representative {
  padding: 12px;
}

.idh-service-single .idh-service-hero-image.is-representative img {
  max-height: 330px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .idh-service-archive .idh-service-row {
    grid-template-columns: 44px minmax(0, 1fr) 120px;
    gap: 14px;
  }

  .idh-service-single .idh-service-detail-row {
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .idh-service-archive .idh-template-section,
  .idh-service-single .idh-template-section {
    padding-block: 32px;
  }

  .idh-service-archive .idh-service-row {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 16px 0;
  }

  .idh-service-archive .idh-service-row-action {
    grid-column: 2;
    justify-content: flex-start;
  }

  .idh-service-archive .idh-service-row-quote {
    min-height: 36px;
    padding-inline: 11px;
  }

  .idh-service-single .idh-service-detail-row > div:first-child {
    padding-left: 12px;
  }
}

/* v1.32 quotation/contact context integrity and form-state QA. */
.idh-contact-form-only {
  min-width: 0;
}

.idh-contact-context {
  margin: 0 0 16px;
  padding: 11px 14px;
  border: 1px solid rgba(37,31,179,.22);
  border-left: 4px solid var(--idh-primary, #251fb3);
  border-radius: 4px;
  background: var(--idh-soft, #ecebfa);
  color: var(--idh-ink, #172238);
}

.idh-contact-context span,
.idh-contact-context strong {
  display: block;
}

.idh-contact-context span {
  margin-bottom: 3px;
  color: var(--idh-accent-strong, #5c7f13);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.idh-contact-context strong {
  color: var(--idh-deep, #17136f);
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.idh-contact-form-only form.submitting input[type="submit"] {
  cursor: wait;
  opacity: .72;
  transform: none !important;
}

.idh-contact-form-only select[name="contact-subject"] {
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  .idh-quote-selected-request,
  .idh-contact-context {
    margin-bottom: 12px;
    padding: 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .idh-template-main *,
  .idh-site-topbar *,
  .idh-site-footer *,
  .idh-quote-form-only *,
  .idh-contact-form-only * {
    scroll-behavior: auto !important;
  }

  .idh-quote-button,
  .idh-cf7-submit input[type="submit"],
  .idh-contact-submit input[type="submit"],
  .idh-service-row,
  .idh-catalog-grid--enhanced article,
  .idh-archive-card {
    transition-duration: 0.01ms !important;
  }
}


/* v1.33 build-page responsive QA, based on the current rendered Home and managed Elementor pages. */
.idh-build-page-home .acv-trust-strip,
.idh-build-page-contact .acv-contact-hero,
.idh-build-page-industries .acv-industries-hero {
  overflow: clip;
}

.idh-build-page-home .acv-trust-strip > .elementor-container,
.idh-build-page-contact .acv-contact-hero > .elementor-container,
.idh-build-page-industries .acv-industries-hero > .elementor-container {
  width: min(100% - 36px, 1220px);
  max-width: 1220px;
  margin-inline: auto;
}

/* Keep the four Home equipment-group panels useful at real content widths. */
.idh-build-page-home .elementor-element-f353129 > .elementor-container {
  align-items: stretch;
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
  display: flex;
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-element-populated,
.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-column-wrap,
.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column .elementor-widget-wrap {
  width: 100%;
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-element-populated,
.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap {
  display: flex;
  flex-direction: column;
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column:hover > .elementor-element-populated,
.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column:hover > .elementor-column-wrap > .elementor-widget-wrap {
  border-color: rgba(37, 31, 179, .42) !important;
  background: #f7f8fc !important;
  transform: translateY(-2px);
}

.idh-build-page-home .elementor-element-f353129 h3 {
  font-size: clamp(1.42rem, 1.8vw, 1.82rem) !important;
  line-height: 1.08 !important;
  overflow-wrap: normal;
  word-break: normal;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-text-editor {
  flex: 1 1 auto;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-text-editor ul {
  margin-bottom: 12px;
  padding-left: 1.15rem;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-text-editor li {
  margin-bottom: 4px;
  line-height: 1.42;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-button {
  margin-top: auto;
}

/* The applications band was visually tall because ten items occupied one narrow column. */
@media (min-width: 901px) {
  .idh-build-page-home .elementor-element-83f0a17 .elementor-element-7dcb3ee ul {
    columns: 2;
    column-gap: 34px;
    margin-top: 0;
  }

  .idh-build-page-home .elementor-element-83f0a17 .elementor-element-7dcb3ee li {
    break-inside: avoid;
    margin-bottom: 7px;
    line-height: 1.45;
  }

  .idh-build-page-home .acv-trust-strip > .elementor-container > .elementor-column + .elementor-column {
    border-left: 1px solid rgba(255, 255, 255, .2);
  }
}

/* Managed Elementor pages: stop large headings and side padding becoming the
   source of overflow on tablet/mobile while preserving Elementor editability. */
@media (max-width: 1024px) {
  .idh-build-page-home .elementor-element-f353129 > .elementor-container {
    flex-wrap: wrap;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
    width: 50% !important;
  }

  .idh-build-page-home .elementor-element-f353129 h3 {
    font-size: clamp(1.4rem, 3.2vw, 1.75rem) !important;
  }

  .idh-build-page-home .elementor-element-83f0a17 > .elementor-container,
  .idh-build-page-about .acv-about-direction > .elementor-container,
  .idh-build-page-about .acv-about-divisions > .elementor-container,
  .idh-build-page-contact .acv-contact-main > .elementor-container,
  .idh-build-page-contact .acv-contact-actions > .elementor-container,
  .idh-build-page-industries .acv-industries-lab > .elementor-container,
  .idh-build-page-industries .acv-industries-medical > .elementor-container,
  .idh-build-page-industries .acv-industries-industrial > .elementor-container {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .idh-build-page-home .acv-trust-strip > .elementor-container,
  .idh-build-page-contact .acv-contact-hero > .elementor-container,
  .idh-build-page-industries .acv-industries-hero > .elementor-container {
    width: min(100% - 28px, 1220px);
  }

  .idh-build-page-contact .acv-contact-hero h1,
  .idh-build-page-industries .acv-industries-hero h1 {
    font-size: clamp(2rem, 9.5vw, 2.45rem) !important;
    line-height: 1.06 !important;
    overflow-wrap: anywhere;
  }

  .idh-build-page-industries .acv-industries-hero .elementor-button-wrapper {
    text-align: left !important;
  }

  .idh-build-page-home .acv-trust-strip > .elementor-container {
    flex-wrap: wrap;
  }

  .idh-build-page-home .acv-trust-strip > .elementor-container > .elementor-column {
    width: 100% !important;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }

  .idh-build-page-home .acv-trust-strip > .elementor-container > .elementor-column:first-child {
    border-top: 0;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
    width: 100% !important;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column:hover > .elementor-element-populated,
  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column:hover > .elementor-column-wrap > .elementor-widget-wrap {
    transform: none;
  }

  .idh-build-page-home .elementor-element-83f0a17 .elementor-element-7dcb3ee ul {
    columns: 1;
    padding-left: 1.1rem;
  }

  .idh-build-page-about .acv-about-direction .elementor-column,
  .idh-build-page-about .acv-about-values .elementor-column,
  .idh-build-page-contact .acv-contact-main .elementor-column,
  .idh-build-page-contact .acv-contact-actions .elementor-column,
  .idh-build-page-industries .acv-industries-lab .elementor-column,
  .idh-build-page-industries .acv-industries-medical .elementor-column,
  .idh-build-page-industries .acv-industries-industrial .elementor-column {
    min-width: 0;
  }

  .idh-build-page-about .acv-about-direction .elementor-element-populated,
  .idh-build-page-contact .acv-contact-main .elementor-element-populated,
  .idh-build-page-contact .acv-contact-actions .elementor-element-populated {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .idh-build-page-contact .acv-contact-hero a,
  .idh-build-page-contact .acv-contact-main a,
  .idh-build-page-industries .acv-industries-hero a {
    overflow-wrap: anywhere;
  }
}

/* v1.34 single-equipment conditional-content and specification QA. */
.idh-two-panel--single {
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
}

.idh-download-panel {
  min-width: 0;
}

.idh-download-panel a {
  overflow-wrap: anywhere;
}

.idh-specifications caption.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 767px) {
  .idh-two-panel--single {
    grid-template-columns: 1fr;
  }

  .idh-specifications tbody {
    display: grid;
    gap: 11px;
  }

  .idh-specifications tr {
    display: block;
    margin: 0;
    border: 1px solid #d9e1ea;
    background: #fff;
  }

  .idh-specifications th,
  .idh-specifications td {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .idh-specifications th {
    padding-bottom: 8px;
    background: var(--idh-soft, #ecebfa);
    font-size: .84rem;
    line-height: 1.3;
  }

  .idh-specifications td {
    padding-top: 10px;
    line-height: 1.5;
  }
}

/* v1.35 screenshot-driven shell hierarchy and Home equipment-group refinement.
 * Keep the utility bar, main navigation and hero as three distinct SOLID blue
 * surfaces, reduce the oversized desktop header, and give the four Home group
 * panels readable type, internal padding and visible separation.
 */
.idh-site-topbar {
  background: var(--idh-topbar, #100d4f);
}

body.idh-build-context #site-header,
body.idh-build-context .site-header {
  background: var(--idh-header, #251fb3);
  border-bottom-color: rgba(255, 255, 255, .13);
}

body.idh-build-context #site-header .header-inner,
body.idh-build-context .site-header .header-inner {
  min-height: 118px;
  padding-block: 4px !important;
}

body.idh-build-context #site-header .site-logo img,
body.idh-build-context #site-header img.custom-logo,
body.idh-build-context .site-header .site-logo img,
body.idh-build-context .site-header img.custom-logo {
  width: auto;
  max-width: 100%;
  max-height: 112px;
  object-fit: contain;
}

/* Template heroes already use the deep blue family. Declare the semantic hero
   surface explicitly so the navigation can use the brighter primary blue. */
.idh-archive-hero,
.idh-service-hero,
.idh-product-hero {
  background: var(--idh-hero, #17136f) !important;
}

/* Home: four Equipment group panels. The previous cards touched each other and
   their titles consumed too much of the available width at desktop size. */
.idh-build-page-home .elementor-element-f353129 > .elementor-container {
  gap: 14px;
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
  width: calc((100% - 42px) / 4) !important;
  flex: 0 0 calc((100% - 42px) / 4);
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-element-populated,
.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap {
  padding: 22px 20px 20px !important;
}

.idh-build-page-home .elementor-element-f353129 h3 {
  margin: 0;
  font-size: clamp(1.16rem, 1.3vw, 1.34rem) !important;
  line-height: 1.13 !important;
  letter-spacing: -.012em;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-heading {
  margin-bottom: 10px;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-text-editor ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 1.08rem;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-text-editor li {
  margin-bottom: 5px;
  line-height: 1.42;
}

@media (max-width: 1024px) {
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    min-height: 94px;
  }

  body.idh-build-context #site-header .site-logo img,
  body.idh-build-context #site-header img.custom-logo,
  body.idh-build-context .site-header .site-logo img,
  body.idh-build-context .site-header img.custom-logo {
    max-height: 86px;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container {
    gap: 16px;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
    width: calc((100% - 16px) / 2) !important;
    flex: 0 0 calc((100% - 16px) / 2);
  }

  .idh-build-page-home .elementor-element-f353129 h3 {
    font-size: clamp(1.18rem, 2.35vw, 1.34rem) !important;
  }
}

@media (max-width: 767px) {
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    min-height: 64px;
    padding-block: 2px !important;
  }

  body.idh-build-context #site-header .site-logo img,
  body.idh-build-context #site-header img.custom-logo,
  body.idh-build-context .site-header .site-logo img,
  body.idh-build-context .site-header img.custom-logo {
    max-height: 58px;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container {
    gap: 14px;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
    width: 100% !important;
    flex: 0 0 100%;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-element-populated,
  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap {
    padding: 20px 18px 18px !important;
  }

  .idh-build-page-home .elementor-element-f353129 h3 {
    font-size: 1.22rem !important;
  }
}

/* v1.36 editable Hello shell + lighter Home hero.
 * The theme owns Site Identity and the Primary Menu. IDH Site Core only styles
 * the shell and supplies the optional utility topbar.
 */
.idh-site-topbar {
  background: var(--idh-topbar, #251fb3);
}

body.idh-build-context #site-header,
body.idh-build-context .site-header {
  background: var(--idh-header, #100d4f);
}

body.idh-build-context #site-header .header-inner,
body.idh-build-context .site-header .header-inner {
  min-height: calc(var(--idh-logo-desktop, 84px) + 8px);
  padding-block: 2px !important;
}

body.idh-build-context #site-header .site-logo img,
body.idh-build-context #site-header img.custom-logo,
body.idh-build-context .site-header .site-logo img,
body.idh-build-context .site-header img.custom-logo {
  max-height: var(--idh-logo-desktop, 84px);
}

body.idh-build-context #site-header .site-navigation ul ul,
body.idh-build-context .site-header .site-navigation ul ul,
body.idh-build-context #site-header .site-navigation-dropdown,
body.idh-build-context .site-header .site-navigation-dropdown {
  background: var(--idh-header, #100d4f);
}

/* WordPress-managed Topbar Utility Menu. */
.idh-site-topbar-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.idh-site-topbar-menu li {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.idh-site-topbar-menu li + li {
  margin-left: 11px;
  padding-left: 12px;
}

.idh-site-topbar-menu li + li::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, .24);
  content: "";
  transform: translateY(-50%);
}

.idh-site-topbar-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    min-height: calc(var(--idh-logo-tablet, 70px) + 8px);
  }

  body.idh-build-context #site-header .site-logo img,
  body.idh-build-context #site-header img.custom-logo,
  body.idh-build-context .site-header .site-logo img,
  body.idh-build-context .site-header img.custom-logo {
    max-height: var(--idh-logo-tablet, 70px);
  }
}

@media (max-width: 767px) {
  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    min-height: calc(var(--idh-logo-mobile, 54px) + 8px);
  }

  body.idh-build-context #site-header .site-logo img,
  body.idh-build-context #site-header img.custom-logo,
  body.idh-build-context .site-header .site-logo img,
  body.idh-build-context .site-header img.custom-logo {
    max-height: var(--idh-logo-mobile, 54px);
  }

  .idh-site-topbar-menu {
    flex-wrap: wrap;
  }

  .idh-site-topbar-menu li + li {
    margin-left: 6px;
    padding-left: 7px;
  }

  .idh-site-topbar-menu li + li::before {
    display: none;
  }
}

.idh-site-topbar-menu .idh-site-topbar-support > a {
  color: var(--idh-topbar-text, #fff) !important;
  font-weight: 800;
}

/* v1.37 editable shell typography/colors and direct logo sizing.
 * The previous control used max-height only. Hello's logo-width rules could
 * therefore remain the limiting dimension, making a desktop height change
 * appear to do nothing. The shell now owns the displayed image height directly
 * while Site Identity continues to own the image itself.
 */
.idh-site-topbar {
  color: var(--idh-topbar-text, #fff);
  font-size: var(--idh-topbar-font-desktop, 12px);
  font-weight: var(--idh-topbar-weight, 600);
}

.idh-site-topbar-location,
.idh-site-topbar a,
.idh-site-topbar-menu a,
.idh-site-topbar-webmail,
.idh-site-topbar-menu .idh-site-topbar-webmail > a {
  color: var(--idh-topbar-text, #fff) !important;
  font-weight: var(--idh-topbar-weight, 600) !important;
}

.idh-topbar-icon,
.idh-site-topbar-menu .idh-site-topbar-support.current-menu-item > a,
.idh-site-topbar a:hover,
.idh-site-topbar a:focus-visible,
.idh-site-topbar-menu a:hover,
.idh-site-topbar-menu a:focus-visible {
  color: var(--idh-topbar-accent, #8fcb2e) !important;
}

body.idh-build-context #site-header .header-inner,
body.idh-build-context .site-header .header-inner {
  min-height: 0 !important;
  padding-block: var(--idh-header-pad-desktop, 6px) !important;
}

body.idh-build-context #site-header .site-branding,
body.idh-build-context .site-header .site-branding,
body.idh-build-context #site-header .site-logo,
body.idh-build-context .site-header .site-logo {
  width: auto !important;
  max-width: none !important;
  flex: 0 0 auto;
}

body.idh-build-context #site-header .site-logo img,
body.idh-build-context #site-header img.custom-logo,
body.idh-build-context .site-header .site-logo img,
body.idh-build-context .site-header img.custom-logo {
  display: block;
  width: auto !important;
  height: var(--idh-logo-desktop, 76px) !important;
  max-width: 240px !important;
  max-height: none !important;
  object-fit: contain;
}

body.idh-build-context #site-header .site-navigation a,
body.idh-build-context #site-header .menu-item > a,
body.idh-build-context .site-header .site-navigation a,
body.idh-build-context .site-header .menu-item > a {
  color: var(--idh-menu-text, #fff) !important;
  font-size: var(--idh-menu-font-desktop, 15px);
  font-weight: var(--idh-menu-weight, 600);
}

body.idh-build-context #site-header .site-navigation a:hover,
body.idh-build-context #site-header .site-navigation a:focus-visible,
body.idh-build-context #site-header .current-menu-item > a,
body.idh-build-context #site-header .current-menu-ancestor > a,
body.idh-build-context .site-header .site-navigation a:hover,
body.idh-build-context .site-header .site-navigation a:focus-visible,
body.idh-build-context .site-header .current-menu-item > a,
body.idh-build-context .site-header .current-menu-ancestor > a {
  color: var(--idh-menu-active, #8fcb2e) !important;
}

body.idh-build-context #site-header .idh-menu-cta > a,
body.idh-build-context .site-header .idh-menu-cta > a {
  border-color: var(--idh-quote-bg, #8fcb2e) !important;
  background: var(--idh-quote-bg, #8fcb2e) !important;
  color: var(--idh-quote-text, #100d4f) !important;
  font-size: var(--idh-button-font-desktop, 15px);
  font-weight: var(--idh-button-weight, 600);
}

/* Button typography token. Elementor continues to own button geometry/colors;
   this control changes only the label typography across the managed build. */
body.idh-build-context .elementor-button,
body.idh-build-context .idh-quote-button,
body.idh-build-context .idh-template-hero-cta,
body.idh-build-context .idh-outline-action,
body.idh-build-context .idh-site-footer-cta,
body.idh-build-context .idh-service-row-action,
body.idh-build-context .idh-archive-card-actions a,
body.idh-build-context .idh-card-actions a,
body.idh-build-context .idh-final-cta-actions a,
body.idh-build-context .idh-cf7-submit,
body.idh-build-context .idh-contact-submit {
  font-size: var(--idh-button-font-desktop, 15px) !important;
  font-weight: var(--idh-button-weight, 600) !important;
}

@media (max-width: 1024px) {
  .idh-site-topbar {
    font-size: var(--idh-topbar-font-tablet, 11.5px);
  }

  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    padding-block: var(--idh-header-pad-tablet, 5px) !important;
  }

  body.idh-build-context #site-header .site-logo img,
  body.idh-build-context #site-header img.custom-logo,
  body.idh-build-context .site-header .site-logo img,
  body.idh-build-context .site-header img.custom-logo {
    height: var(--idh-logo-tablet, 66px) !important;
  }

  body.idh-build-context #site-header .site-navigation a,
  body.idh-build-context #site-header .menu-item > a,
  body.idh-build-context .site-header .site-navigation a,
  body.idh-build-context .site-header .menu-item > a {
    font-size: var(--idh-menu-font-tablet, 14px);
  }

  body.idh-build-context .elementor-button,
  body.idh-build-context .idh-quote-button,
  body.idh-build-context .idh-template-hero-cta,
  body.idh-build-context .idh-outline-action,
  body.idh-build-context .idh-site-footer-cta,
  body.idh-build-context .idh-service-row-action,
  body.idh-build-context .idh-archive-card-actions a,
  body.idh-build-context .idh-card-actions a,
  body.idh-build-context .idh-final-cta-actions a,
  body.idh-build-context .idh-cf7-submit,
  body.idh-build-context .idh-contact-submit,
  body.idh-build-context #site-header .idh-menu-cta > a,
  body.idh-build-context .site-header .idh-menu-cta > a {
    font-size: var(--idh-button-font-tablet, 14.5px) !important;
  }
}

@media (max-width: 767px) {
  .idh-site-topbar {
    font-size: var(--idh-topbar-font-mobile, 12px);
  }

  body.idh-build-context #site-header .header-inner,
  body.idh-build-context .site-header .header-inner {
    padding-block: var(--idh-header-pad-mobile, 4px) !important;
  }

  body.idh-build-context #site-header .site-logo img,
  body.idh-build-context #site-header img.custom-logo,
  body.idh-build-context .site-header .site-logo img,
  body.idh-build-context .site-header img.custom-logo {
    height: var(--idh-logo-mobile, 52px) !important;
    max-width: 180px !important;
  }

  body.idh-build-context #site-header .site-navigation a,
  body.idh-build-context #site-header .menu-item > a,
  body.idh-build-context #site-header .site-navigation-dropdown a,
  body.idh-build-context .site-header .site-navigation a,
  body.idh-build-context .site-header .menu-item > a,
  body.idh-build-context .site-header .site-navigation-dropdown a {
    font-size: var(--idh-menu-font-mobile, 15px);
  }

  body.idh-build-context .elementor-button,
  body.idh-build-context .idh-quote-button,
  body.idh-build-context .idh-template-hero-cta,
  body.idh-build-context .idh-outline-action,
  body.idh-build-context .idh-site-footer-cta,
  body.idh-build-context .idh-service-row-action,
  body.idh-build-context .idh-archive-card-actions a,
  body.idh-build-context .idh-card-actions a,
  body.idh-build-context .idh-final-cta-actions a,
  body.idh-build-context .idh-cf7-submit,
  body.idh-build-context .idh-contact-submit,
  body.idh-build-context #site-header .idh-menu-cta > a,
  body.idh-build-context .site-header .idh-menu-cta > a {
    font-size: var(--idh-button-font-mobile, 14px) !important;
  }
}


/* v1.38 shell/footer ownership and mobile-header QA.
 * Footer presentation is configurable while Footer Menu remains WordPress-owned.
 */
.idh-site-footer {
  background: var(--idh-footer-bg, #17136f);
  color: var(--idh-footer-text, #e8ebf5);
  font-size: var(--idh-footer-font-desktop, 14px);
  font-weight: var(--idh-footer-weight, 400);
}

.idh-site-footer-name,
.idh-site-footer h2 {
  color: var(--idh-footer-heading, #fff);
}

.idh-site-footer a {
  color: var(--idh-footer-link, #fff);
}

.idh-site-footer a:hover,
.idh-site-footer a:focus-visible {
  color: var(--idh-footer-hover, #8fcb2e);
}

.idh-site-footer-cta {
  border-color: var(--idh-footer-quote-bg, #8fcb2e) !important;
  background: var(--idh-footer-quote-bg, #8fcb2e) !important;
  color: var(--idh-footer-quote-text, #100d4f) !important;
}

.idh-site-footer-cta:hover,
.idh-site-footer-cta:focus-visible {
  border-color: var(--idh-footer-hover, #8fcb2e) !important;
  background: transparent !important;
  color: var(--idh-footer-hover, #8fcb2e) !important;
}

.idh-site-footer-bottom {
  color: var(--idh-footer-text, #e8ebf5);
}

body.idh-build-context #site-header .site-navigation-toggle,
body.idh-build-context .site-header .site-navigation-toggle {
  color: var(--idh-menu-text, #fff) !important;
}

body.idh-build-context #site-header .site-navigation-dropdown,
body.idh-build-context .site-header .site-navigation-dropdown,
body.idh-build-context #site-header .site-navigation ul ul,
body.idh-build-context .site-header .site-navigation ul ul {
  background: var(--idh-header, #100d4f) !important;
}

body.idh-build-context #site-header .site-navigation-dropdown a,
body.idh-build-context .site-header .site-navigation-dropdown a,
body.idh-build-context #site-header .site-navigation ul ul a,
body.idh-build-context .site-header .site-navigation ul ul a {
  color: var(--idh-menu-text, #fff) !important;
}

body.idh-build-context #site-header .site-navigation-dropdown a:hover,
body.idh-build-context #site-header .site-navigation-dropdown a:focus-visible,
body.idh-build-context .site-header .site-navigation-dropdown a:hover,
body.idh-build-context .site-header .site-navigation-dropdown a:focus-visible {
  color: var(--idh-menu-active, #8fcb2e) !important;
}

@media (max-width: 1024px) {
  .idh-site-footer {
    font-size: var(--idh-footer-font-tablet, 14px);
  }
}

@media (max-width: 767px) {
  .idh-site-footer {
    font-size: var(--idh-footer-font-mobile, 14px);
  }

  .idh-site-footer-grid {
    gap: 22px;
    padding-block: 30px;
  }

  .idh-site-footer-cta {
    width: 100%;
    max-width: 320px;
  }

  body.idh-build-context #site-header .site-navigation-dropdown,
  body.idh-build-context .site-header .site-navigation-dropdown {
    border-top-color: rgba(255,255,255,.14);
  }

  body.idh-build-context #site-header .site-navigation-dropdown .menu-item > a,
  body.idh-build-context .site-header .site-navigation-dropdown .menu-item > a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }

  body.idh-build-context #site-header .site-navigation-dropdown .idh-menu-cta > a,
  body.idh-build-context .site-header .site-navigation-dropdown .idh-menu-cta > a {
    margin: 10px 14px 14px;
    justify-content: center;
    border-bottom: 0;
  }
}

/* v1.39 editable content typography + Home equipment-group rhythm.
 * Keep the WordPress Primary Menu as the normal Hello menu. No mega-menu
 * structure or menu walker is introduced in this release.
 */
.idh-template-main .idh-technical-list li,
.idh-build-page-home .elementor-widget-text-editor li,
.idh-build-page-about .elementor-widget-text-editor li,
.idh-build-page-industries .elementor-widget-text-editor li {
  font-size: var(--idh-list-font-desktop, 14.5px);
  font-weight: var(--idh-list-weight, 400);
  line-height: 1.45;
}

.idh-template-main .idh-technical-list li::marker,
.idh-build-page-home .elementor-widget-text-editor li::marker,
.idh-build-page-about .elementor-widget-text-editor li::marker,
.idh-build-page-industries .elementor-widget-text-editor li::marker {
  color: var(--idh-accent-strong, #5c7f13);
}

.idh-card-summary,
.idh-service-row-content p,
.idh-related-equipment-card p,
.idh-result-count,
.idh-product-quote-note,
.idh-download-panel p {
  font-size: var(--idh-subtext-font-desktop, 14px) !important;
  font-weight: var(--idh-subtext-weight, 400);
  line-height: 1.5;
}

.idh-card-facts dd,
.idh-product-facts dd {
  font-size: var(--idh-metadata-font-desktop, 12px);
  font-weight: var(--idh-metadata-weight, 500);
  line-height: 1.38;
}

.idh-template-kicker,
.idh-card-facts dt,
.idh-product-facts dt,
.idh-catalog-grid--enhanced .idh-card-category,
.idh-service-detail-number,
.idh-related-service-grid article > span {
  font-size: var(--idh-label-font-desktop, 11px) !important;
  font-weight: var(--idh-label-weight, 700) !important;
  line-height: 1.2;
}

/* Home group panels remain four technical columns on desktop, with adjustable
   gap/padding and restrained title scale. */
.idh-build-page-home .elementor-element-f353129 > .elementor-container {
  gap: var(--idh-home-group-gap, 16px) !important;
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
  width: calc((100% - (var(--idh-home-group-gap, 16px) * 3)) / 4) !important;
  flex: 0 0 calc((100% - (var(--idh-home-group-gap, 16px) * 3)) / 4) !important;
  min-width: 0;
}

.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-element-populated,
.idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap {
  padding: var(--idh-home-group-padding, 22px) !important;
}

.idh-build-page-home .elementor-element-f353129 h3 {
  font-size: var(--idh-home-group-heading-desktop, 20px) !important;
  line-height: 1.12 !important;
  letter-spacing: -.01em;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-heading {
  margin-bottom: 12px;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-text-editor ul {
  margin: 0 0 18px;
  padding-left: 1.1rem;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-text-editor li {
  margin-bottom: 6px;
}

.idh-build-page-home .elementor-element-f353129 .elementor-widget-button {
  padding-top: 2px;
}

@media (max-width: 1024px) {
  .idh-template-main .idh-technical-list li,
  .idh-build-page-home .elementor-widget-text-editor li,
  .idh-build-page-about .elementor-widget-text-editor li,
  .idh-build-page-industries .elementor-widget-text-editor li {
    font-size: var(--idh-list-font-tablet, 14px);
  }

  .idh-card-summary,
  .idh-service-row-content p,
  .idh-related-equipment-card p,
  .idh-result-count,
  .idh-product-quote-note,
  .idh-download-panel p {
    font-size: var(--idh-subtext-font-tablet, 13.5px) !important;
  }

  .idh-card-facts dd,
  .idh-product-facts dd {
    font-size: var(--idh-metadata-font-tablet, 11.5px);
  }

  .idh-template-kicker,
  .idh-card-facts dt,
  .idh-product-facts dt,
  .idh-catalog-grid--enhanced .idh-card-category,
  .idh-service-detail-number,
  .idh-related-service-grid article > span {
    font-size: var(--idh-label-font-tablet, 10.5px) !important;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
    width: calc((100% - var(--idh-home-group-gap, 16px)) / 2) !important;
    flex: 0 0 calc((100% - var(--idh-home-group-gap, 16px)) / 2) !important;
  }

  .idh-build-page-home .elementor-element-f353129 h3 {
    font-size: var(--idh-home-group-heading-tablet, 20px) !important;
  }
}

@media (max-width: 767px) {
  .idh-template-main .idh-technical-list li,
  .idh-build-page-home .elementor-widget-text-editor li,
  .idh-build-page-about .elementor-widget-text-editor li,
  .idh-build-page-industries .elementor-widget-text-editor li {
    font-size: var(--idh-list-font-mobile, 14px);
    line-height: 1.5;
  }

  .idh-card-summary,
  .idh-service-row-content p,
  .idh-related-equipment-card p,
  .idh-result-count,
  .idh-product-quote-note,
  .idh-download-panel p {
    font-size: var(--idh-subtext-font-mobile, 13.5px) !important;
  }

  .idh-card-facts dd,
  .idh-product-facts dd {
    font-size: var(--idh-metadata-font-mobile, 11.5px);
  }

  .idh-template-kicker,
  .idh-card-facts dt,
  .idh-product-facts dt,
  .idh-catalog-grid--enhanced .idh-card-category,
  .idh-service-detail-number,
  .idh-related-service-grid article > span {
    font-size: var(--idh-label-font-mobile, 10.5px) !important;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column {
    width: 100% !important;
    flex: 0 0 100% !important;
  }

  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-element-populated,
  .idh-build-page-home .elementor-element-f353129 > .elementor-container > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap {
    padding: max(16px, calc(var(--idh-home-group-padding, 22px) - 2px)) !important;
  }

  .idh-build-page-home .elementor-element-f353129 h3 {
    font-size: var(--idh-home-group-heading-mobile, 21px) !important;
  }
}


/* v1.40 standard Primary Menu dropdown + shell spacing controls.
 * This remains Hello Elementor's normal WordPress menu/submenu. No mega-menu,
 * custom walker or multi-column dropdown implementation is introduced.
 */
.idh-site-topbar-inner {
  padding-block: var(--idh-topbar-pad-desktop, 5px);
}

body.idh-build-context #site-header .site-navigation > ul,
body.idh-build-context .site-header .site-navigation > ul,
body.idh-build-context #site-header .site-navigation .menu,
body.idh-build-context .site-header .site-navigation .menu {
  column-gap: var(--idh-menu-gap-desktop, 28px);
}

/* Standard one-column dropdown, intentionally distinct from the dark header. */
body.idh-build-context #site-header .site-navigation ul ul,
body.idh-build-context .site-header .site-navigation ul ul {
  width: var(--idh-submenu-width, 268px);
  min-width: var(--idh-submenu-width, 268px);
  max-width: min(360px, calc(100vw - 28px));
  padding: 6px 0;
  border: 1px solid #d9e1ea;
  border-radius: 6px;
  background: var(--idh-submenu-bg, #fff) !important;
  box-shadow: 0 10px 24px rgba(23, 34, 56, .14);
}

body.idh-build-context #site-header .site-navigation ul ul li,
body.idh-build-context .site-header .site-navigation ul ul li {
  width: 100%;
}

body.idh-build-context #site-header .site-navigation ul ul a,
body.idh-build-context .site-header .site-navigation ul ul a {
  width: 100%;
  padding: 10px 14px;
  border-left: 3px solid transparent;
  background: transparent !important;
  color: var(--idh-submenu-text, #172238) !important;
  font-size: min(var(--idh-menu-font-desktop, 15px), 14px);
  font-weight: var(--idh-menu-weight, 600);
  line-height: 1.3;
}

body.idh-build-context #site-header .site-navigation ul ul a:hover,
body.idh-build-context #site-header .site-navigation ul ul a:focus-visible,
body.idh-build-context #site-header .site-navigation ul ul .current-menu-item > a,
body.idh-build-context .site-header .site-navigation ul ul a:hover,
body.idh-build-context .site-header .site-navigation ul ul a:focus-visible,
body.idh-build-context .site-header .site-navigation ul ul .current-menu-item > a {
  border-left-color: var(--idh-submenu-accent, #8fcb2e);
  background: var(--idh-submenu-hover-bg, #ecebfa) !important;
  color: var(--idh-submenu-hover-text, #17136f) !important;
}

/* Keep Hello's caret legible without enlarging or replacing the menu system. */
body.idh-build-context #site-header .menu-item-has-children > a .sub-arrow,
body.idh-build-context .site-header .menu-item-has-children > a .sub-arrow {
  margin-left: 6px;
  color: currentColor;
}

@media (max-width: 1024px) {
  .idh-site-topbar-inner {
    padding-block: var(--idh-topbar-pad-tablet, 5px);
  }

  body.idh-build-context #site-header .site-navigation > ul,
  body.idh-build-context .site-header .site-navigation > ul,
  body.idh-build-context #site-header .site-navigation .menu,
  body.idh-build-context .site-header .site-navigation .menu {
    column-gap: var(--idh-menu-gap-tablet, 18px);
  }
}

@media (max-width: 767px) {
  .idh-site-topbar-inner {
    padding-block: var(--idh-topbar-pad-mobile, 6px);
  }

  /* Hello's collapsed menu remains a stacked mobile menu. Child items are
     indented, not converted into desktop-style floating dropdown panels. */
  body.idh-build-context #site-header .site-navigation-dropdown ul ul,
  body.idh-build-context .site-header .site-navigation-dropdown ul ul {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0 0 4px 14px;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    box-shadow: none;
  }

  body.idh-build-context #site-header .site-navigation-dropdown ul ul a,
  body.idh-build-context .site-header .site-navigation-dropdown ul ul a {
    min-height: 40px;
    padding: 9px 14px;
    border-left: 2px solid rgba(143, 203, 46, .55);
    background: transparent !important;
    color: var(--idh-menu-text, #fff) !important;
    font-size: calc(var(--idh-menu-font-mobile, 15px) - 1px);
  }

  body.idh-build-context #site-header .site-navigation-dropdown ul ul a:hover,
  body.idh-build-context #site-header .site-navigation-dropdown ul ul a:focus-visible,
  body.idh-build-context .site-header .site-navigation-dropdown ul ul a:hover,
  body.idh-build-context .site-header .site-navigation-dropdown ul ul a:focus-visible {
    border-left-color: var(--idh-menu-active, #8fcb2e);
    background: rgba(255,255,255,.06) !important;
    color: var(--idh-menu-active, #8fcb2e) !important;
  }
}

/* v1.42 rendered shell and responsive QA corrections. */
body.idh-build-context #site-header,
body.idh-build-context .site-header {
  /* Hello's outer padding otherwise sits outside the editable inner padding. */
  padding-block: 0 !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  /* The four Home Equipment group panels need two useful columns on tablet. */
  body.idh-build-page-home .elementor-top-section > .elementor-container.elementor-column-gap-extended {
    flex-wrap: wrap;
  }

  body.idh-build-page-home .elementor-top-section > .elementor-container.elementor-column-gap-extended > .elementor-column.elementor-col-25 {
    width: 50%;
  }
}

@media (max-width: 900px) {
  /* Contact's containing Elementor column is already narrow at tablet width. */
  .idh-contact-form-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .idh-contact-full {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .idh-site-topbar-utility {
    display: none !important;
  }

  .idh-site-topbar-inner {
    flex-wrap: nowrap;
    justify-content: center;
  }

  body.idh-build-context #site-header .site-navigation-dropdown > ul,
  body.idh-build-context .site-header .site-navigation-dropdown > ul {
    background: var(--idh-header, #100d4f) !important;
  }

  body.idh-build-context #site-header .site-navigation-toggle,
  body.idh-build-context .site-header .site-navigation-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  body.idh-build-context #site-header .site-navigation-dropdown .menu-item > a,
  body.idh-build-context .site-header .site-navigation-dropdown .menu-item > a {
    background: transparent !important;
    color: var(--idh-menu-text, #fff) !important;
  }

  body.idh-build-context #site-header .site-navigation-dropdown .current-menu-item > a,
  body.idh-build-context #site-header .site-navigation-dropdown .current-menu-ancestor > a,
  body.idh-build-context .site-header .site-navigation-dropdown .current-menu-item > a,
  body.idh-build-context .site-header .site-navigation-dropdown .current-menu-ancestor > a {
    background: rgba(255,255,255,.08) !important;
    color: var(--idh-menu-active, #8fcb2e) !important;
  }

  /* Hello's basic mobile menu has no separate submenu toggle. Keep the normal
     WordPress Equipment children visible as an indented stacked list. */
  body.idh-build-context #site-header .site-navigation-dropdown ul ul,
  body.idh-build-context .site-header .site-navigation-dropdown ul ul {
    position: static !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  body.idh-build-context #site-header .site-navigation-dropdown ul ul li,
  body.idh-build-context .site-header .site-navigation-dropdown ul ul li {
    height: auto !important;
    max-height: none !important;
    transform: none !important;
  }

  body.idh-build-context #site-header .site-navigation-dropdown ul ul a,
  body.idh-build-context .site-header .site-navigation-dropdown ul ul a {
    min-height: 44px;
    padding-block: 10px;
  }

  body.idh-build-context #site-header .site-navigation-dropdown .idh-menu-cta > a,
  body.idh-build-context .site-header .site-navigation-dropdown .idh-menu-cta > a {
    background: var(--idh-quote-bg, #8fcb2e) !important;
    color: var(--idh-quote-text, #100d4f) !important;
  }

}
