.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid transparent; border-radius: 4px; cursor: pointer; font-weight: 900; transition: .2s ease; }
.button-primary { background: var(--cf-primary); color: #fff; }
.button-primary:hover { background: var(--cf-deep); }
.button-secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.44); }
.button-light { background: #fff; color: var(--cf-green); }
.button-xl { min-height: 62px; padding: 0 36px; border-radius: 4px; text-transform: uppercase; letter-spacing: .08em; }
.button-outline { border-color: var(--cf-line); color: var(--cf-ink); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.text-button { color: var(--cf-green); font-weight: 900; border: 0; background: transparent; padding: 0; cursor: pointer; }

@media (min-width: 1025px) {
  .site-header .button.header-cta,
  .site-header .cf-quote {
    display: inline-flex !important;
  }
}

/* Product archives: compact left-side faceted navigation. */
.cf-product-catalog-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}
.cf-product-filter-mobile-trigger,
.cf-product-filter-backdrop,
.cf-product-filter-sidebar-actions > button { display: none; }
.cf-product-filter-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid #d8e1da;
  border-radius: 4px;
  background: #fff;
  overflow: hidden;
}
.cf-product-filter-sidebar-head {
  min-height: 64px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #d8e1da;
  background: #f3f7f4;
}
.cf-product-filter-sidebar-head > div { display: flex; align-items: center; gap: 10px; color: #173f2b; }
.cf-product-filter-sidebar-head > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #e2eee6;
  color: var(--cf-primary);
}
.cf-product-filter-sidebar-head .cf-icon { width: 17px; height: 17px; }
.cf-product-filter-sidebar-head strong { font-size: 14px; }
.cf-product-filter-sidebar-actions { display: flex; align-items: center; gap: 10px; }
.cf-product-filter-sidebar-actions > a { color: var(--cf-primary); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.cf-product-filter-group { border-bottom: 1px solid #e3e9e4; }
.cf-product-filter-group:last-child { border-bottom: 0; }
.cf-product-filter-group summary {
  position: relative;
  padding: 17px 42px 14px 17px;
  color: #203d2e;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  list-style: none;
}
.cf-product-filter-group summary::-webkit-details-marker { display: none; }
.cf-product-filter-group summary::after {
  content: '\2212';
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cf-primary);
  font-size: 18px;
  font-weight: 500;
}
.cf-product-filter-group:not([open]) summary::after { content: '+'; }
.cf-product-filter-group ul { margin: 0; padding: 0 12px 15px; list-style: none; }
.cf-product-filter-group li + li { margin-top: 1px; }
.cf-product-filter-group a {
  min-height: 32px;
  padding: 6px 5px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-radius: 3px;
  color: #5b6961;
  font-size: 12px;
  line-height: 1.45;
  transition: color .18s ease, background .18s ease;
}
.cf-product-filter-group a:hover { color: var(--cf-primary); background: #f4f8f5; }
.cf-filter-check {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-top: 1px;
  border: 1px solid #b9c8bd;
  border-radius: 2px;
  background: #fff;
  position: relative;
}
.cf-product-filter-group a.is-active { color: #0a6538; font-weight: 800; background: #edf6f0; }
.cf-product-filter-group a.is-active .cf-filter-check { border-color: var(--cf-primary); background: var(--cf-primary); }
.cf-product-filter-group a.is-active .cf-filter-check::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cf-product-filter-capacities { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px 4px; }
.cf-product-catalog-results { min-width: 0; }
.cf-product-catalog-results .cf-product-archive-grid.cf-product-clean-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cf-product-catalog-results .cf-product-clean-grid .cf-product-media { aspect-ratio: 1 / 1; }
.cf-product-catalog-results .cf-product-clean-grid .cf-product-media img { width: 100%; height: 100%; object-fit: fill; padding: 0; }

@media (max-width: 1100px) {
  .cf-product-catalog-layout { grid-template-columns: 240px minmax(0, 1fr); gap: 24px; }
  .cf-product-catalog-results .cf-product-archive-grid.cf-product-clean-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .cf-product-catalog-layout { grid-template-columns: 1fr; }
  .cf-product-filter-mobile-trigger {
    width: 100%;
    min-height: 48px;
    margin-bottom: 22px;
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 1px solid #cbd9ce;
    border-radius: 4px;
    background: #fff;
    color: #164a2f;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
  }
  .cf-product-filter-mobile-trigger .cf-icon { width: 18px; height: 18px; color: var(--cf-primary); }
  .cf-product-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1190;
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(17, 33, 25, .42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
  }
  .cf-product-filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1200;
    width: min(88vw, 360px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 18px 0 44px rgba(10, 35, 22, .18);
    transform: translateX(-104%);
    visibility: hidden;
    transition: transform .24s ease, visibility .24s ease;
  }
  .cf-product-filter-sidebar-head {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 70px;
  }
  .cf-product-filter-sidebar-actions > button {
    width: 36px;
    height: 36px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 1px solid #cbd9ce;
    border-radius: 50%;
    background: #fff;
    color: #173f2b;
    cursor: pointer;
  }
  .cf-product-filter-sidebar-actions > button .cf-icon { width: 16px; height: 16px; }
  body.cf-product-filters-open { overflow: hidden; }
  body.cf-product-filters-open .cf-product-filter-backdrop {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  body.cf-product-filters-open .cf-product-filter-sidebar {
    transform: translateX(0);
    visibility: visible;
  }
}
@media (max-width: 520px) {
  .cf-product-catalog-results .cf-product-archive-grid.cf-product-clean-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .site-header .header-shell {
    position: relative;
  }

  .site-header .primary-nav {
    display: none !important;
  }

  body.nav-open .site-header .primary-nav {
    display: block !important;
  }

  .site-header .nav-toggle {
    display: inline-flex !important;
    position: absolute;
    right: auto;
    left: min(calc(100vw - 64px), 320px);
    top: 50%;
    transform: translateY(-50%);
  }

  .site-header .button.header-cta,
  .site-header .cf-quote {
    display: none !important;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-main .px-margin-desktop {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .site-main .text-headline-xl {
    font-size: var(--cf-title-h1) !important;
    line-height: 48px !important;
  }

  .site-main .text-headline-lg {
    font-size: var(--cf-title-h2) !important;
    line-height: 40px !important;
  }

  .cf-hero-actions a {
    width: 100%;
    text-align: center;
  }

  .cf-hero-stat-grid {
    column-gap: 20px !important;
    row-gap: 24px !important;
  }

  .cf-hero-stat-grid > div {
    min-width: 0;
    gap: 10px !important;
  }

  .cf-hero-stat-grid .text-headline-sm {
    font-size: 24px !important;
    line-height: 30px !important;
  }
}
.card { background: #fff; border: 1px solid var(--cf-line); border-radius: 4px; overflow: hidden; min-width: 0; }
.card-media { display: block; background: #eef2ee; }
.card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 24px; }
.card-body h3 a:hover { color: var(--cf-green); }
.cf-product-card { min-width: 0; }
.cf-product-media { display: block; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 4px; background: #e9eee9; margin-bottom: 22px; }
.cf-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cf-product-card:hover .cf-product-media img { transform: scale(1.05); }

.cf-hero-stat-grid > div {
  position: relative;
  min-width: 0;
}

.cf-hero-stat-grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  width: 1px;
  height: 36px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.16);
}

.cf-hero-stat-grid .text-headline-sm {
  font-size: 32px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  letter-spacing: 0;
  color: var(--cf-lime) !important;
  font-family: "Hanken Grotesk", Inter, Arial, Helvetica, sans-serif;
}

.cf-hero-stat-grid .text-caption {
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 900 !important;
  letter-spacing: .13em;
}

.cf-home-heritage-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
  padding-top: 32px;
  border-top: 1px solid var(--cf-line);
}

.cf-home-heritage-stats div {
  min-height: 126px;
  padding: 22px 20px;
  border: 1px solid rgba(190,201,190,.74);
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f7faf7);
  box-shadow: 0 18px 45px rgba(8,51,38,.06);
}

.cf-home-heritage-stats strong {
  display: block;
  color: var(--cf-primary);
  font-family: "Hanken Grotesk", Inter, Arial, Helvetica, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: .96;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.cf-home-heritage-stats span {
  display: block;
  color: #56645d;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.cf-home-about-section {
  padding: clamp(84px, 7.5vw, 118px) 0;
  background: #fff;
  overflow: hidden;
}

.cf-home-about-layout {
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 92px);
}

.cf-home-about-media {
  position: relative;
  padding: 0 0 26px 26px;
}

.cf-home-about-media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 88%;
  height: 88%;
  background: linear-gradient(135deg, #00351e, var(--cf-primary));
  box-shadow: 0 22px 52px rgba(0, 53, 30, .18);
}

.cf-home-about-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #eef3ef;
  box-shadow: 0 24px 64px rgba(8, 51, 38, .14);
}

.cf-home-about-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.cf-home-about-image-link {
  position: relative;
  display: block;
  color: inherit;
  isolation: isolate;
}

.cf-home-about-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,53,30,.02), rgba(0,53,30,.14));
  transition: background .25s ease;
}

.cf-home-about-image-link img {
  transition: transform .45s ease;
}

.cf-home-about-image-link:hover img {
  transform: scale(1.015);
}

.cf-home-about-image-link:hover::after {
  background: linear-gradient(180deg, rgba(0,53,30,0), rgba(0,53,30,.08));
}

.cf-home-about-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255,255,255,.9);
  border-radius: 50%;
  background: var(--cf-primary);
  box-shadow: 0 16px 34px rgba(0,53,30,.3);
  transform: translate(-50%, -50%);
  transition: transform .25s ease, background .25s ease;
}

.cf-home-about-play::before,
.cf-home-about-play::after {
  content: "";
  position: absolute;
  inset: -3px;
  border: 2px solid rgba(0,105,55,.5);
  border-radius: 50%;
  animation: cfAboutPlayRipple 2.4s ease-out infinite;
}

.cf-home-about-play::after {
  animation-delay: 1.2s;
}

.cf-home-about-play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
}

.cf-home-about-image-link:hover .cf-home-about-play {
  background: #00884a;
  transform: translate(-50%, -50%) scale(1.06);
}

.cf-home-about-image-link:focus-visible {
  outline: 3px solid var(--cf-primary);
  outline-offset: 5px;
}

#about-company {
  scroll-margin-top: 82px;
}

@keyframes cfAboutPlayRipple {
  0% { opacity: .7; transform: scale(1); }
  75%, 100% { opacity: 0; transform: scale(1.65); }
}

@media (max-width: 640px) {
  .cf-home-about-play { width: 62px; height: 62px; }
  .cf-home-about-play i {
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 14px;
  }
  #about-company { scroll-margin-top: 72px; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-home-about-play::before,
  .cf-home-about-play::after { animation: none; }
  .cf-home-about-image-link img { transition: none; }
}

/* Shared inquiry form: compact paired fields across every form instance. */
.fluentform form.fluent_form_1 > fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 14px;
}
.fluentform form.fluent_form_1 > fieldset > .ff-el-group {
  grid-column: 1 / -1;
}
.fluentform form.fluent_form_1 > fieldset > .ff-el-group.cf-inquiry-half {
  grid-column: span 1;
}
@media (max-width: 640px) {
  .fluentform form.fluent_form_1 > fieldset {
    grid-template-columns: 1fr;
  }
  .fluentform form.fluent_form_1 > fieldset > .ff-el-group.cf-inquiry-half {
    grid-column: 1;
  }
}

.cf-home-about-copy {
  min-width: 0;
}

.cf-home-about-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.cf-home-about-title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--cf-primary);
  background: rgba(0, 105, 55, .09);
  border-radius: 4px;
}

.cf-home-about-title .cf-icon {
  width: 25px;
  height: 25px;
}

.cf-home-about-title h2 {
  margin: 0;
  color: var(--cf-ink);
  letter-spacing: 0;
}

.cf-home-about-lead {
  max-width: 720px;
  color: #2f3933;
  font-size: 17px;
  line-height: 1.76;
  font-weight: 400;
}

.cf-home-about-lead strong {
  color: #18231d;
  font-weight: 600;
}

.cf-home-about-points {
  display: grid;
  gap: 14px;
  margin: 26px 0 28px;
}

.cf-home-about-points > :is(div, a) {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #18231d;
  font-size: 16px;
  font-weight: 600;
}

.cf-home-about-points .cf-icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  color: var(--cf-primary);
}

.cf-home-about-certs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-bottom: 30px;
}

.cf-home-about-certs img {
  width: 100%;
  aspect-ratio: 1 / .72;
  object-fit: contain;
  padding: 8px;
  border: 1px solid rgba(190, 201, 190, .84);
  background: #fff;
  box-shadow: 0 12px 28px rgba(8, 51, 38, .06);
}

.cf-home-about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 4px;
  background: var(--cf-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 105, 55, .2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.cf-home-about-button:hover {
  transform: translateY(-2px);
  background: var(--cf-deep);
  box-shadow: 0 24px 52px rgba(0, 53, 30, .24);
}

@media (max-width: 1024px) {
  .cf-hero-stat-grid > div:not(:last-child)::after {
    display: none;
  }

  .cf-home-heritage-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cf-home-about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cf-home-about-media {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .cf-hero-stat-grid .text-headline-sm {
    font-size: 25px !important;
    line-height: 1.05 !important;
  }

  .cf-hero-stat-grid .text-caption {
    font-size: 10px !important;
    letter-spacing: .1em;
  }

  .cf-home-heritage-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
    padding-top: 26px;
  }

  .cf-home-heritage-stats div {
    min-height: 0;
  }

  .cf-home-heritage-stats strong {
    font-size: 38px;
  }

  .cf-home-about-section {
    padding: 68px 0;
  }

  .cf-home-about-media {
    padding: 0 0 16px 16px;
  }

  .cf-home-about-title {
    gap: 12px;
    margin-bottom: 18px;
  }

  .cf-home-about-title > span {
    width: 38px;
    height: 38px;
    border-radius: 4px;
  }

  .cf-home-about-lead {
    font-size: 16px;
    line-height: 1.68;
  }

  .cf-home-about-certs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .cf-home-about-button {
    width: 100%;
  }
}
.cf-product-body h4 { font-size: var(--cf-title-h4); line-height: 1.22; margin-bottom: 14px; }
.cf-product-body h4 a:hover { color: var(--cf-primary); }
.cf-news-card { display: grid; grid-template-columns: minmax(190px, .76fr) minmax(0, 1fr); align-items: stretch; min-height: 286px; overflow: hidden; border: 1px solid rgba(190,201,190,.72); border-radius: 4px; background: #fff; box-shadow: 0 18px 50px rgba(8, 51, 38, .06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.cf-news-card:hover { transform: translateY(-3px); border-color: rgba(0,105,55,.36); box-shadow: 0 28px 70px rgba(8, 51, 38, .1); }
.cf-news-media { display: block; align-self: stretch; min-height: 230px; margin: 14px 0 14px 14px; overflow: hidden; border-radius: 4px; background: #e9eee9; }
.cf-news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.cf-news-card:hover .cf-news-media img { transform: scale(1.06); }
.cf-news-body { display: flex; min-width: 0; flex-direction: column; padding: 28px 30px 26px; }
.cf-news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px; margin-bottom: 18px; color: #7b857f; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.cf-news-meta span { display: inline-flex; align-items: center; min-height: 28px; padding: 0 11px; border-radius: 4px; background: rgba(0,105,55,.08); color: var(--cf-primary); }
.cf-news-meta time { color: #7b857f; }
.cf-news-body h3 { font-size: var(--cf-title-h3); line-height: 1.16; margin-bottom: 14px; }
.cf-news-body h3 a:hover { color: var(--cf-primary); }
.cf-news-excerpt { color: var(--cf-muted); margin-bottom: 22px; }
.cf-news-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: auto; color: var(--cf-primary); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.cf-news-link .cf-icon { width: 16px; height: 16px; transition: transform .2s ease; }
.cf-news-link:hover .cf-icon { transform: translateX(3px); }
.solution-tile { min-height: 190px; display: flex; align-items: flex-end; padding: 22px; color: #fff; border-radius: 4px; background: linear-gradient(145deg, #0b4f3f, #2e6f52); font-weight: 900; }
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, #00351e, var(--cf-green) 58%, #006937); color: #fff; }
.cta-band::after { content: ""; position: absolute; right: max(20px, calc((100vw - var(--cf-shell))/2)); top: -90px; width: 260px; height: 260px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; pointer-events: none; }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 42px; }
.cta-inner > div { max-width: 840px; }
.cta-inner .eyebrow { display: inline-flex; align-items: center; min-height: 30px; padding: 0 12px; margin-bottom: 18px; border: 1px solid rgba(183,243,151,.34); border-radius: 4px; background: rgba(183,243,151,.1); color: var(--cf-lime); font-size: 12px; font-weight: 900; letter-spacing: .16em; }
.cta-inner h2 { color: #fff; font-size: 46px; line-height: 1.04; margin-bottom: 18px; text-shadow: 0 8px 28px rgba(0,0,0,.22); }
.cta-inner p:not(.eyebrow) { max-width: 760px; color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.72; }
.cta-inner .button-light { flex: 0 0 auto; min-height: 58px; padding: 0 30px; border-radius: 4px; color: var(--cf-deep); box-shadow: 0 18px 42px rgba(0,0,0,.18); }
.form-card { background: #fff; border: 1px solid var(--cf-line); padding: 28px; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.spec-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.spec-table th, .spec-table td { border: 1px solid var(--cf-line); padding: 12px 14px; text-align: left; }
.archive-sidebar { border: 1px solid var(--cf-line); padding: 22px; border-radius: 4px; }
.archive-sidebar ul { list-style: none; margin: 0; padding: 0; }
.archive-sidebar a { display: inline-block; padding: 7px 0; color: var(--cf-green); font-weight: 600; }
.inquiry-modal { display: none; position: fixed; inset: 0; z-index: 1000; padding: 28px; }
.inquiry-modal.is-open { display: grid; place-items: center; }
.inquiry-backdrop { position: absolute; inset: 0; background: rgba(5,20,15,.72); backdrop-filter: blur(8px); }
.inquiry-panel { position: relative; width: min(1080px, 100%); max-height: calc(100vh - 56px); overflow: auto; display: grid; grid-template-columns: .88fr 1.12fr; border: 1px solid rgba(255,255,255,.22); border-radius: 4px; background: #fff; box-shadow: 0 34px 120px rgba(0,0,0,.42); }
.inquiry-close { position: absolute; right: 20px; top: 20px; z-index: 4; width: 52px; height: 52px; border: 1px solid rgba(0,47,26,.14); border-radius: 50%; background: #fff; color: var(--cf-deep); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 14px 34px rgba(8,51,38,.12); transition: transform .18s ease, background .18s ease, color .18s ease; }
.inquiry-close:hover { transform: rotate(90deg); background: var(--cf-deep); color: #fff; }
.inquiry-close .cf-icon { width: 25px; height: 25px; stroke-width: 2.2; }
.inquiry-intro { position: relative; overflow: hidden; padding: 48px 42px; background: linear-gradient(150deg, #00351e, #095540 58%, #006937); color: #fff; }
.inquiry-intro::after { content: ""; position: absolute; right: -120px; bottom: -150px; width: 330px; height: 330px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; }
.inquiry-intro .eyebrow { color: var(--cf-lime); }
.inquiry-intro h2 { color: #fff; font-size: 42px; line-height: 1.05; margin-bottom: 18px; }
.inquiry-intro > p { color: rgba(255,255,255,.78); font-size: 18px; line-height: 1.7; }
.inquiry-points { position: relative; z-index: 1; display: grid; gap: 12px; margin-top: 34px; }
.inquiry-points span { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: center; min-height: 48px; padding: 12px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 4px; background: rgba(255,255,255,.08); color: #fff; font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.inquiry-points .cf-icon { width: 24px; height: 24px; color: var(--cf-lime); }
.inquiry-proof { position: relative; z-index: 1; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.18); }
.inquiry-proof strong { display: block; color: #fff; font-family: "Hanken Grotesk", Inter, sans-serif; font-size: 24px; line-height: 1.12; margin-bottom: 10px; }
.inquiry-proof p { color: rgba(255,255,255,.72); margin: 0; }
.inquiry-form-wrap { padding: 50px 46px 42px; background: linear-gradient(180deg, #fff, #f7faf7); }
.inquiry-form-head { display: grid; grid-template-columns: 58px 1fr; gap: 16px; align-items: start; padding-right: 62px; margin-bottom: 26px; }
.inquiry-form-head > span { width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center; border-radius: 4px; background: rgba(0,105,55,.1); color: var(--cf-primary); }
.inquiry-form-head .cf-icon { width: 30px; height: 30px; }
.inquiry-form-head strong { display: block; color: #002f1a; font-family: "Hanken Grotesk", Inter, sans-serif; font-size: 32px; line-height: 1.1; margin-bottom: 8px; }
.inquiry-form-head p { color: var(--cf-muted); margin: 0; }
.inquiry-panel .ff-el-group,
.cf-contact-form-body .ff-el-group { margin-bottom: 18px !important; }
.inquiry-panel .ff-el-input--label label,
.cf-contact-form-body .ff-el-input--label label { color: #23352d !important; font-size: 13px !important; font-weight: 900 !important; text-transform: uppercase; letter-spacing: .08em; }
.form-embed input, .form-embed textarea, .form-card input, .form-card textarea,
.inquiry-panel input, .inquiry-panel textarea, .inquiry-panel select,
.cf-contact-form-body input, .cf-contact-form-body textarea, .cf-contact-form-body select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(190,201,190,.86) !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--cf-ink) !important;
  font-size: 16px !important;
  padding: 13px 15px !important;
  box-shadow: none !important;
}
.inquiry-panel textarea,
.cf-contact-form-body textarea { min-height: 132px; resize: vertical; }
.inquiry-panel input:focus, .inquiry-panel textarea:focus, .inquiry-panel select:focus,
.cf-contact-form-body input:focus, .cf-contact-form-body textarea:focus, .cf-contact-form-body select:focus {
  border-color: var(--cf-primary) !important;
  box-shadow: 0 0 0 4px rgba(0,105,55,.12) !important;
  outline: 0 !important;
}

@media (max-width: 820px) {
  .cf-news-card { grid-template-columns: 1fr; min-height: 0; }
  .cf-news-media { aspect-ratio: 16 / 10; min-height: 0; margin: 14px 14px 0; }
  .cf-news-body { padding: 24px; }
}
.fluentform .ff-btn-submit,
.fluentform .ff-btn-submit:not(.ff_btn_no_style),
.form-card .ff-btn-submit {
  background: var(--cf-primary) !important;
  border-color: var(--cf-primary) !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: 15px 26px !important;
  font-weight: 900 !important;
  min-height: 54px !important;
  font-size: 14px !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  box-shadow: 0 16px 34px rgba(0,105,55,.22) !important;
}
.fluentform .ff-btn-submit:hover,
.form-card .ff-btn-submit:hover {
  background: var(--cf-deep) !important;
  border-color: var(--cf-deep) !important;
}
@media (max-width: 768px) {
  .cta-inner { display: block; }
  .cta-inner h2 { font-size: 34px; }
  .cta-inner .button-light { margin-top: 12px; width: 100%; }
  .inquiry-modal { padding: 14px; align-items: start; }
  .inquiry-panel { grid-template-columns: 1fr; max-height: calc(100vh - 28px); border-radius: 4px; }
  .inquiry-close { right: 14px; top: 14px; width: 46px; height: 46px; }
  .inquiry-intro { padding: 36px 24px 28px; }
  .inquiry-intro h2 { font-size: 32px; padding-right: 52px; }
  .inquiry-form-wrap { padding: 30px 22px 26px; }
  .inquiry-form-head { grid-template-columns: 1fr; padding-right: 0; }
  .inquiry-form-head strong { font-size: 26px; }
}

.cf-home-first-screen h1 {
  max-width: 900px;
}

.cf-home-first-screen {
  min-height: 720px;
}

.cf-home-first-screen video {
  object-position: center top;
}

@media (min-width: 1025px) {
  .cf-home-first-screen {
    height: 100vh !important;
    min-height: 100vh;
  }

  .cf-home-first-screen > .relative.w-full {
    transform: translateY(-18px);
  }
}

.cf-home-first-screen .inline-flex:first-child {
  min-height: 34px;
  padding: 0 14px;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.12);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
}

.cf-home-action {
  border: 0;
  min-width: 190px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: Inter, Arial, Helvetica, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.cf-home-action:hover {
  transform: translateY(-2px);
}

.cf-home-action-primary {
  background: linear-gradient(135deg, var(--cf-primary), var(--cf-deep));
  color: #fff;
  box-shadow: 0 22px 48px rgba(0,65,42,.32);
}

.cf-home-action-primary:hover {
  box-shadow: 0 28px 58px rgba(0,65,42,.42);
}

.cf-home-action-secondary {
  border: 1px solid rgba(255,255,255,.46);
  background: rgba(255,255,255,.1);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
}

.cf-home-action-secondary:hover {
  border-color: rgba(183,243,151,.62);
  background: rgba(255,255,255,.16);
}

@media (min-width: 768px) {
  .cf-home-product-feature {
    height: 397px !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
  }
}

.cf-hero-stat-grid {
  align-items: center;
}

.cf-hero-stat-grid > div {
  min-height: 58px;
  padding: 4px 0;
}

.cf-home-heritage-stats {
  gap: 14px;
  margin-top: 42px;
  padding-top: 30px;
}

.cf-home-heritage-stats div {
  position: relative;
  overflow: hidden;
  min-height: 136px;
  padding: 24px 20px 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f7faf7);
  border: 1px solid rgba(190,201,190,.8);
  box-shadow: 0 18px 55px rgba(8,51,38,.07);
}

.cf-home-heritage-stats div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cf-primary), var(--cf-lime));
}

.cf-home-heritage-stats div::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -44px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(0,105,55,.06);
}

.cf-home-heritage-stats strong {
  position: relative;
  z-index: 1;
  color: #00351e;
  font-size: 40px;
  line-height: .92;
  margin-bottom: 18px;
}

.cf-home-heritage-stats span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  color: var(--cf-primary);
  font-size: 11px;
  letter-spacing: .12em;
}

.cf-home-final-section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.cf-home-final-cta {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: 54px 64px;
  border-radius: 4px;
  background: linear-gradient(135deg, #00351e, #095540 58%, #006937);
  text-align: center;
  box-shadow: 0 26px 80px rgba(8,51,38,.18);
}

.cf-home-final-cta::after {
  content: "";
  position: absolute;
  right: -88px;
  top: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.cf-home-final-cta h2 {
  font-size: 42px !important;
  line-height: 1.06 !important;
  margin-bottom: 18px !important;
}

.cf-home-final-cta p {
  max-width: 660px !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
  margin-bottom: 30px !important;
}

.cf-home-final-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  padding: 0 26px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cf-home-final-button:hover {
  transform: translateY(-2px);
}

.cf-home-final-button-primary {
  border: 0;
  background: #fff;
  color: var(--cf-deep);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  cursor: pointer;
}

.cf-home-final-button-secondary {
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
  background: rgba(255,255,255,.08);
}

.cf-home-final-button-secondary .cf-icon {
  width: 18px;
  height: 18px;
}

.cf-hero-stats-band {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.14) !important;
  background:
    linear-gradient(135deg, rgba(0,53,30,.94), rgba(9,85,64,.92) 58%, rgba(0,105,55,.9)) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}

.cf-hero-stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.075) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(183,243,151,.12), transparent 56%);
  background-size: 58px 58px, 58px 58px, auto;
  opacity: .32;
}

.cf-hero-stats-band .cf-hero-stat-grid {
  position: relative;
  z-index: 1;
}

.cf-hero-stats-band .cf-hero-stat-grid > div {
  position: relative;
  overflow: hidden;
  min-height: 78px;
  padding: 14px 18px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 16px 36px rgba(0,0,0,.12);
}

.cf-hero-stats-band .cf-hero-stat-grid > div::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -48px;
  height: 92px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(0deg, rgba(183,243,151,.24), rgba(183,243,151,0));
  filter: blur(12px);
  opacity: .54;
}

.cf-hero-stats-band .cf-hero-stat-grid span {
  position: relative;
  z-index: 1;
}

.cf-home-news-section {
  padding-top: 104px;
  padding-bottom: 112px;
}

.cf-home-news-head {
  margin-bottom: 34px;
}

.cf-home-news-grid {
  margin-top: 0;
}

.cf-home-news-section .cf-news-card {
  min-height: 100%;
}

.cf-b2b-partner-card {
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease;
  will-change: transform;
}

.cf-b2b-partner-card::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -64px;
  height: 136px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(0deg, rgba(183,243,151,.18), rgba(183,243,151,0) 72%);
  filter: blur(16px);
  opacity: .72;
  pointer-events: none;
}

.cf-b2b-partner-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(255,255,255,.055), transparent);
  pointer-events: none;
}

.cf-b2b-partner-card h4,
.cf-b2b-partner-card p {
  position: relative;
  z-index: 1;
}

.cf-manufacturing-section {
  isolation: isolate;
}

.cf-manufacturing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='980' height='540' viewBox='0 0 980 540' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.42)' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M45 420 C160 330 236 334 352 402 S594 494 738 404 883 318 950 350'/%3E%3Cpath d='M88 478 C206 392 292 398 420 464 S640 520 766 438 890 390 952 420' opacity='.58'/%3E%3Cpath d='M90 168 C172 120 270 106 370 128 C472 150 540 214 638 224 C748 236 826 172 924 118' opacity='.64'/%3E%3Cpath d='M70 226 C180 178 296 174 412 214 C520 252 590 306 708 292 C802 280 864 226 948 198' opacity='.42'/%3E%3Cpath d='M238 70 C300 58 366 68 420 104 C474 140 516 198 588 210' opacity='.46'/%3E%3Cpath d='M220 118 C310 92 394 116 468 178' opacity='.36'/%3E%3Cpath d='M704 76 C738 112 778 132 832 132 C876 132 910 112 940 88' opacity='.46'/%3E%3Cpath d='M704 76 C748 92 788 94 828 84' opacity='.32'/%3E%3Cpath d='M134 342 h104 m-82 -34 h154 m-118 -34 h184' opacity='.38'/%3E%3Cpath d='M724 300 c42 -36 92 -36 134 0 c-42 32 -92 32 -134 0Z' opacity='.42'/%3E%3Cpath d='M790 300 c18 -32 48 -52 88 -58' opacity='.32'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 980px 540px;
  opacity: .22;
  mix-blend-mode: screen;
}

.cf-manufacturing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%, rgba(183,243,151,.06));
}

.cf-manufacturing-section > div {
  position: relative;
  z-index: 1;
}

.cf-b2b-partner-card:hover {
  transform: translateY(-10px);
  border-color: rgba(183,243,151,.34) !important;
  background: rgba(255,255,255,.085) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 26px 70px rgba(0,0,0,.18);
}

.cf-b2b-partner-card:hover::before {
  opacity: 1;
  background: linear-gradient(0deg, rgba(183,243,151,.28), rgba(183,243,151,0) 72%);
}

.cf-b2b-partner-card:hover::after {
  background: linear-gradient(0deg, rgba(255,255,255,.09), transparent);
}

.cf-b2b-partner-card h4 {
  font-weight: 600 !important;
  transition: color .24s ease;
}

.cf-b2b-partner-card:hover h4 {
  color: var(--cf-lime) !important;
}

.cf-home-standards-section {
  position: relative;
  overflow: hidden;
  border-top: 0 !important;
  background:
    linear-gradient(135deg, #f7faf7 0%, #eef5ef 56%, #f9fbf8 100%) !important;
}

.cf-home-standards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,105,55,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0,105,55,.05) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: .46;
}

.cf-home-standards-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(44vw, 680px);
  background: linear-gradient(135deg, rgba(0,105,55,.1), rgba(183,243,151,.08));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.cf-home-standards-layout {
  position: relative;
  z-index: 1;
}

.cf-home-standards-copy > span {
  display: inline-flex !important;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 4px;
  background: rgba(0,105,55,.09);
  letter-spacing: .22em !important;
}

.cf-home-standards-copy h2 {
  max-width: 620px;
  color: #00351e;
}

.cf-home-standards-copy p {
  max-width: 650px;
}

.cf-home-standards-button {
  min-height: 56px;
  border-radius: 4px !important;
  background: linear-gradient(135deg, var(--cf-primary), var(--cf-deep)) !important;
  box-shadow: 0 20px 46px rgba(0,65,42,.2) !important;
}

.cf-home-standards-grid {
  align-items: stretch;
}

.cf-home-standard-card {
  position: relative;
  overflow: hidden;
  min-height: 184px;
  border-radius: 4px !important;
  border-color: rgba(0,105,55,.14) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(246,250,247,.96)) !important;
  box-shadow: 0 20px 58px rgba(8,51,38,.08);
}

.cf-home-standard-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cf-primary), var(--cf-lime));
}

.cf-home-standard-card .cf-home-cert-icon {
  width: 48px;
  height: 48px;
  padding: 11px;
  border-radius: 4px;
  color: var(--cf-primary);
  background: rgba(0,105,55,.09);
}

.cf-home-standard-card p:first-child {
  font-size: 15px !important;
  letter-spacing: .08em !important;
}

.cf-home-standard-card p:last-child {
  font-size: 12px !important;
  color: rgba(0,53,30,.68) !important;
}

.cf-product-card {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(190,201,190,.62) !important;
  border-radius: 4px;
  background: linear-gradient(180deg, #fff, #f7faf7);
  box-shadow: 0 18px 55px rgba(8,51,38,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.cf-product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,105,55,.24) !important;
  box-shadow: 0 26px 72px rgba(8,51,38,.12);
}

.cf-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--cf-primary), var(--cf-lime));
  opacity: .82;
}

.cf-product-media {
  aspect-ratio: 4 / 3 !important;
  margin: 0 !important;
  border-radius: 4px !important;
}

.cf-product-body {
  padding: 22px 8px 8px !important;
}

.cf-product-body .eyebrow {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 4px;
  background: rgba(0,105,55,.08);
  letter-spacing: .1em;
}

.cf-product-body h4 {
  font-size: var(--cf-title-h4) !important;
  line-height: 1.22 !important;
  margin-bottom: 12px !important;
}

.cf-product-body > p:not(.eyebrow) {
  margin-bottom: 0 !important;
}

.cf-product-body > div {
  display: none !important;
}

h1,
h2 {
  font-weight: 900 !important;
}

h3,
h4,
h5,
h6,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 600 !important;
}

.eyebrow,
[class*="tracking-\\[0\\.3em\\]"],
[class*="tracking-\\[0\\.4em\\]"],
.cf-section-title .eyebrow,
.cta-inner .eyebrow,
.cf-product-body .eyebrow {
  font-size: 13px !important;
  letter-spacing: .2rem !important;
}

:where(.button, button, input[type="button"], input[type="submit"], input[type="reset"], .text-button, .cf-home-action, .cf-home-final-button, .cf-home-standards-button, .cf-about-profile-actions a, .cf-about-inline-link, .cf-heritage-final-cta a, .cf-blog-nav a, .cf-article-back-link, .cf-news-link, .fluentform .ff-btn-submit, .form-card .ff-btn-submit) {
  font-weight: 600 !important;
}

.site-header .button.header-cta,
.site-header .cf-quote {
  font-size: 14px !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .cf-home-action {
    width: 100%;
    min-height: 56px;
  }

  .cf-home-heritage-stats strong {
    font-size: 40px;
  }

  .cf-home-final-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cf-home-final-cta {
    padding: 36px 24px;
    border-radius: 4px;
  }

  .cf-home-final-cta h2 {
    font-size: 32px !important;
  }

  .cf-home-final-cta p {
    font-size: 16px !important;
  }

  .cf-home-final-button {
    width: 100%;
  }
}

/* Normalize large image and content block corners site-wide. */
:where(
  .rounded-2xl,
  .rounded-3xl,
  .card,
  .form-card,
  figure,
  img[class*="rounded-"],
  [class*="-card"],
  [class*="-panel"],
  [class*="-tile"],
  [class*="-media"],
  [class*="-image"],
  [class*="-images"],
  [class*="-figure"],
  [class*="-gallery"],
  [class*="-mosaic"],
  [class*="-banner"],
  [class*="-visual"],
  [class*="-feature"],
  [class*="-cta"],
  [class*="-command"],
  [class*="-aside"],
  [class*="-summary"],
  [class*="-content"],
  [class*="-grid"] > article,
  [class*="-grid"] > a,
  [class*="-list"] > article,
  [class*="-row"] > article
):not(button):not(.button):not([class*="-button"]):not(.header-cta):not(.cf-quote):not(.rounded-full):not(.cf-pill):not(.cf-icon):not(.cf-social-icon):not(.inquiry-close):not(.nav-toggle) {
  border-radius: 4px !important;
}

.site-main :where(
  img,
  figure,
  iframe,
  article,
  details,
  aside,
  .rounded-2xl,
  .rounded-3xl,
  .card,
  .form-card,
  .archive-sidebar,
  .content-shell,
  [class*="-card"],
  [class*="-panel"],
  [class*="-tile"],
  [class*="-media"],
  [class*="-image"],
  [class*="-images"],
  [class*="-figure"],
  [class*="-gallery"],
  [class*="-mosaic"],
  [class*="-banner"],
  [class*="-visual"],
  [class*="-feature"],
  [class*="-cta"],
  [class*="-command"],
  [class*="-aside"],
  [class*="-summary"],
  [class*="-content"]
):not(button):not(.button):not([class*="-button"]):not(.header-cta):not(.cf-quote):not(.rounded-full):not([class*="rounded-full"]):not(.cf-pill):not(.cf-icon):not(.cf-social-icon):not(.site-logo-img):not(.footer-logo):not(.cf-footer-logo):not(.inquiry-close):not(.nav-toggle) {
  border-radius: 4px !important;
}

:where(
  button,
  input[type="button"],
  input[type="submit"],
  input[type="reset"],
  .button,
  .text-button,
  .ff-btn-submit,
  .fluentform .ff-btn-submit,
  .form-card .ff-btn-submit,
  a[class*="button"],
  [class*="-button"],
  .cf-quote,
  .header-cta,
  .nav-toggle,
  .inquiry-close
) {
  border-radius: 4px !important;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.button,
.text-button,
.cf-home-action,
.cf-home-action-primary,
.cf-home-action-secondary,
.cf-home-about-button,
.cf-home-final-button,
.cf-home-standards-button,
.cf-about-profile-actions a,
.cf-about-inline-link,
.cf-about-closing button,
.cf-heritage-final-cta button,
.cf-heritage-final-cta a,
.cf-solution-case-rich button,
.cf-download-list button,
.cf-video-grid button,
.cf-empty-state button,
.cf-search-form button,
.cf-search-form input[type="submit"],
.cf-article-action-panel button,
.cf-article-help-card button,
.cf-news-subscribe-card button,
.cf-news-detail-cta-panel button,
.cf-product-story-summary button,
.cf-product-story-card button,
.fluentform .ff-btn-submit,
.fluentform .ff-btn-submit:not(.ff_btn_no_style),
.form-card .ff-btn-submit,
.header-cta,
.cf-quote,
.nav-toggle,
.inquiry-close {
  border-radius: 4px !important;
}

.site-header .button.header-cta,
.site-header .cf-quote,
.site-header button.header-cta {
  border-radius: 4px !important;
}

/* 2026 client optimization: home trust, category, OEM and inline inquiry modules */
.cf-home-certificate-ticker { position: relative; overflow: hidden; padding: 58px 0; background: #17231f; border-top: 1px solid #33433c; border-bottom: 1px solid #33433c; }
.cf-home-certificate-ticker::before { content: ""; position: absolute; inset: 0; opacity: .28; background-image: linear-gradient(rgba(183,243,151,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(183,243,151,.14) 1px, transparent 1px); background-size: 34px 34px; pointer-events: none; }
.cf-home-certificate-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px,.7fr) minmax(0,1.3fr); gap: 58px; align-items: center; }
.cf-home-certificate-copy { position: relative; padding: 10px 0 10px 26px; border-left: 2px solid var(--cf-lime); }
.cf-home-certificate-copy::after { content: none; display: none; }
.cf-home-certificate-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; color: var(--cf-lime); font: 700 11px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.cf-home-certificate-kicker span { display: inline-grid; place-items: center; width: 27px; height: 27px; border: 1px solid rgba(183,243,151,.6); border-radius: 50%; font-size: 10px; }
.cf-home-certificate-copy h2 { max-width: 360px; margin-bottom: 16px; color: #fff; font-size: clamp(30px,3vw,45px); line-height: 1.02; letter-spacing: -.025em; }
.cf-home-certificate-copy > p:not(.cf-home-certificate-kicker) { max-width: 390px; margin-bottom: 24px; color: rgba(255,255,255,.67); font-size: 15px; line-height: 1.75; }
.cf-home-certificate-copy > a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font: 800 11px/1.3 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; text-transform: uppercase; }
.cf-home-certificate-copy > a:hover { color: var(--cf-lime); }
.cf-home-certificate-copy > a .cf-icon { width: 16px; height: 16px; }
.cf-home-certificate-window { min-width: 0; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.cf-home-certificate-track { display: flex; width: max-content; animation: cfCertificateScroll 28s linear infinite; }
.cf-home-certificate-window:hover .cf-home-certificate-track { animation-play-state: paused; }
.cf-home-certificate-set { display: flex; gap: 18px; padding-right: 18px; }
.cf-home-certificate-item { width: 142px; display: grid; gap: 10px; padding: 10px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.055); color: #fff; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.cf-home-certificate-item:hover { transform: translateY(-4px); border-color: var(--cf-lime); background: rgba(183,243,151,.1); }
.cf-home-certificate-image { width: 120px; height: 128px; display: grid; place-items: center; overflow: hidden; background: #fff; }
.cf-home-certificate-image img { width: 100%; height: 100%; padding: 8px; object-fit: contain; }
.cf-home-certificate-item > strong { display: block; min-height: 17px; color: #fff; font: 800 12px/1.35 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; text-transform: uppercase; text-align: center; }
@keyframes cfCertificateScroll { to { transform: translateX(-50%); } }

.cf-home-product-categories { padding: 104px 0; background: #f7f8f7; }
.cf-home-simple-heading { max-width: 780px; margin: 0 auto 38px; text-align: center; }
.cf-home-simple-heading > span { display: block; margin-bottom: 12px; color: var(--cf-primary); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .22em; }
.cf-home-simple-heading h2 { color: var(--cf-deep); margin-bottom: 16px; }
.cf-home-simple-heading p { color: var(--cf-muted); margin: 0; }
.cf-home-category-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 34px; }
.cf-home-category-buttons a { padding: 11px 20px; border: 1px solid #cfd8d0; border-radius: 4px; background: #fff; color: var(--cf-deep); font-size: 13px; font-weight: 800; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.cf-home-category-buttons a:hover { background: var(--cf-primary); border-color: var(--cf-primary); color: #fff; }
.cf-home-category-products { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.cf-home-category-product { padding: 18px 18px 22px; border: 1px solid #e0e6e1; border-radius: 4px; background: #fff; text-align: center; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.cf-home-category-product:hover { transform: translateY(-5px); border-color: rgba(0,105,55,.35); box-shadow: 0 22px 48px rgba(0,47,26,.09); }
.cf-home-category-product > div { aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; border-radius: 4px; background: #fff; }
.cf-home-category-product img { width: 100%; height: 100%; object-fit: contain; padding: 10px; transition: transform .35s ease; }
.cf-home-category-product:hover img { transform: scale(1.045); }
.cf-home-category-product h3 { margin: 17px 0 9px; color: var(--cf-deep); font-size: 19px; }
.cf-home-category-product span { display: inline-flex; align-items: center; gap: 7px; color: var(--cf-primary); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.cf-home-category-product .cf-icon { width: 16px; height: 16px; }

.cf-home-about-media::before { display: none !important; }
.cf-home-about-title { display: block; }
.cf-home-about-title h2 { margin-bottom: 22px; }

.cf-home-oem-flow { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 16px; }
.cf-home-oem-flow article { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 4px; background: rgba(255,255,255,.07); }
.cf-home-oem-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.cf-home-oem-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,35,21,.55), transparent 62%); }
.cf-home-oem-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.cf-home-oem-flow article:hover img { transform: scale(1.05); }
.cf-home-oem-image span { position: absolute; left: 14px; bottom: 14px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--cf-lime); color: #00351e; font-size: 12px; font-weight: 900; }
.cf-home-oem-flow article > div:last-child { padding: 22px 18px 24px; }
.cf-home-oem-flow h3 { color: #fff; font-size: 19px; line-height: 1.25; margin-bottom: 10px; }
.cf-home-oem-flow p { color: rgba(255,255,255,.66); font-size: 14px; line-height: 1.7; margin: 0; }
.cf-home-oem-action { display: flex; justify-content: center; margin-top: 38px; }
.cf-home-oem-action button { min-height: 54px; padding: 0 28px; border: 1px solid var(--cf-lime); border-radius: 4px; background: var(--cf-lime); color: #00351e; font-weight: 900; cursor: pointer; }

.cf-home-inline-inquiry { padding: 104px 0; background: #f5f7f5; }
.cf-home-inline-inquiry-grid { display: grid; grid-template-columns: .86fr 1.14fr; overflow: hidden; border: 1px solid #dce4dd; border-radius: 4px; background: #fff; box-shadow: 0 30px 80px rgba(0,47,26,.1); }
.cf-home-inline-inquiry-copy { padding: 54px 46px; background: linear-gradient(150deg, #00351e, #006937); color: #fff; }
.cf-home-inline-inquiry-copy > span { color: var(--cf-lime); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .18em; }
.cf-home-inline-inquiry-copy h2 { margin-top: 16px; color: #fff; font-size: 42px; }
.cf-home-inline-inquiry-copy > p { color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.75; }
.cf-home-inline-inquiry-copy ul { display: grid; gap: 10px; padding: 0; margin: 30px 0; list-style: none; }
.cf-home-inline-inquiry-copy li { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.15); border-radius: 4px; background: rgba(255,255,255,.07); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.cf-home-inline-inquiry-copy li .cf-icon { color: var(--cf-lime); }
.cf-home-inline-inquiry-copy > a { min-height: 50px; padding: 0 20px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.42); border-radius: 4px; color: #fff; font-weight: 800; }
.cf-home-inline-inquiry-form { padding: 50px 48px; }
.cf-home-inline-inquiry-form > div:first-child { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.cf-home-inline-inquiry-form > div:first-child > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 4px; background: rgba(0,105,55,.1); color: var(--cf-primary); }
.cf-home-inline-inquiry-form h3 { margin: 0; color: var(--cf-deep); font-size: 30px; }
.cf-home-inline-inquiry-form .ff-el-group { margin-bottom: 16px !important; }
.cf-home-inline-inquiry-form input, .cf-home-inline-inquiry-form textarea, .cf-home-inline-inquiry-form select { width: 100%; min-height: 52px; padding: 12px 14px !important; border: 1px solid #cdd8ce !important; border-radius: 4px !important; background: #fff !important; box-shadow: none !important; }
.cf-home-inline-inquiry-form textarea { min-height: 126px; }

@media (max-width: 1100px) {
  .cf-home-category-products { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .cf-home-oem-flow { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 768px) {
  .cf-home-certificate-layout { grid-template-columns: 1fr; gap: 32px; }
  .cf-home-certificate-copy { max-width: 560px; }
  .cf-home-certificate-window { width: calc(100% + 20px); }
  .cf-home-product-categories, .cf-home-inline-inquiry { padding: 72px 0; }
  .cf-home-category-products { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cf-home-oem-flow { grid-template-columns: 1fr; }
  .cf-home-inline-inquiry-grid { grid-template-columns: 1fr; border-radius: 4px; }
  .cf-home-inline-inquiry-copy, .cf-home-inline-inquiry-form { padding: 34px 26px; }
}
@media (max-width: 520px) {
  .cf-home-certificate-ticker { padding: 46px 0; }
  .cf-home-certificate-copy { padding-left: 18px; }
  .cf-home-certificate-copy::after { display: none; }
  .cf-home-certificate-item { width: 126px; }
  .cf-home-certificate-image { width: 104px; height: 112px; }
  .cf-home-category-products { grid-template-columns: 1fr; }
  .cf-home-category-buttons { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .cf-home-category-buttons a { flex: 0 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-home-certificate-track { animation: none; }
}

/* Certificate ticker: bright, restrained industrial presentation. */
.cf-home-certificate-ticker { background: #f3f5f5; border-top-color: #d8dfe0; border-bottom-color: #d8dfe0; }
.cf-home-certificate-ticker::before { opacity: .55; background-image: linear-gradient(rgba(66,86,91,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(66,86,91,.08) 1px, transparent 1px); }
.cf-home-certificate-copy { border-left-color: #d18443; }
.cf-home-certificate-copy::after { color: rgba(38,54,59,.28); }
.cf-home-certificate-kicker { color: #bd6f2f; }
.cf-home-certificate-kicker span { border-color: rgba(189,111,47,.5); }
.cf-home-certificate-copy h2 { color: #26363b; }
.cf-home-certificate-copy > p:not(.cf-home-certificate-kicker) { color: #5c6b70; }
.cf-home-certificate-copy > a { color: #26363b; }
.cf-home-certificate-copy > a:hover { color: #bd6f2f; }
.cf-home-certificate-item { border-color: #d5ddde; background: rgba(255,255,255,.86); color: #26363b; }
.cf-home-certificate-item:hover { border-color: #d18443; background: #fff; }
.cf-home-certificate-item > strong { color: #26363b; }

/* Homepage industrial refinement: compact radii, neutral industrial palette and clearer hierarchy. */
.cf-home-category-buttons a { border-radius: 4px; background: #f7f8f8; color: #26363b; }
.cf-home-category-buttons a:hover { background: #26363b; border-color: #26363b; color: #fff; }
.cf-home-category-products { gap: 0; border-top: 1px solid #d7dfe0; border-left: 1px solid #d7dfe0; }
.cf-home-category-product { padding: 18px 18px 22px; border: 0; border-right: 1px solid #d7dfe0; border-bottom: 1px solid #d7dfe0; border-radius: 0; background: #fff; box-shadow: none; }
.cf-home-category-product:hover { transform: none; border-color: #d7dfe0; box-shadow: inset 0 -3px 0 #d88b45; }
.cf-home-category-product > div { aspect-ratio: 1 / 1; border-radius: 3px; background: #f2f4f4; }
.cf-home-category-product img { padding: 14px; object-fit: contain; }
.cf-home-category-product h3 { margin-top: 15px; font-size: 18px; }
.cf-home-category-product span { color: #bd6f2f; }
.cf-manufacturing-section { background: #202a2e !important; }
.cf-manufacturing-section::after { background: linear-gradient(135deg, rgba(255,255,255,.06), transparent 45%, rgba(216,139,69,.08)); }
.cf-home-oem-flow { gap: 10px; }
.cf-home-oem-flow article { position: relative; overflow: visible; border-radius: 4px; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.055); }
.cf-home-oem-flow article .cf-home-oem-image { overflow: hidden; }
.cf-home-oem-flow article:not(:last-child)::after { content: ""; position: absolute; top: calc(42% - 9px); right: -19px; z-index: 4; width: 28px; height: 18px; background: #d88b45; clip-path: polygon(0 44%, 68% 44%, 68% 14%, 100% 50%, 68% 86%, 68% 56%, 0 56%); }
.cf-home-oem-image span { left: 14px; bottom: 14px; width: 42px; height: 42px; border-radius: 4px; background: #d88b45; color: #202a2e; }
.cf-home-oem-action button { border-radius: 4px; border-color: #d88b45; background: #d88b45; color: #202a2e; }
.cf-home-inline-inquiry { position: relative; padding: 112px 0; background: #263237 var(--cf-inquiry-bg) center / cover no-repeat; }
.cf-home-inline-inquiry::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,31,35,.62), rgba(20,31,35,.40)); }
.cf-home-inline-inquiry-grid { position: relative; z-index: 1; grid-template-columns: 1.05fr 1fr; border-radius: 4px; border-color: rgba(255,255,255,.22); background: rgba(16,28,32,.18); box-shadow: 0 24px 70px rgba(0,0,0,.2); }
.cf-home-inline-inquiry-copy { padding: 58px 54px; background: rgba(24,42,47,.72); }
.cf-home-inline-inquiry-copy li { border-radius: 4px; }
.cf-home-inline-inquiry-copy > a { border-radius: 4px; }
.cf-home-inline-inquiry-contact { display: grid; gap: 10px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); }
.cf-home-inline-inquiry-contact a { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.86); font-size: 14px; }
.cf-home-inline-inquiry-contact .cf-icon { width: 17px; height: 17px; color: #e4a267; }
.cf-home-inline-inquiry-form { margin: 18px; padding: 42px 42px; border-radius: 4px; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); }
.cf-home-inline-inquiry-form > div:first-child > span { border-radius: 4px; background: rgba(216,139,69,.12); color: #bd6f2f; }
.cf-home-inline-inquiry-form input, .cf-home-inline-inquiry-form textarea, .cf-home-inline-inquiry-form select { border-radius: 3px !important; }
.cf-home-partners-section { min-height: 82vh; display: flex; align-items: center; padding: 112px 0; background: #eef1f2; border-top: 1px solid #d9e0e1; border-bottom: 1px solid #d9e0e1; }
.cf-home-partners-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 72px; align-items: center; }
.cf-home-partners-copy > span, .cf-home-partners-grid small { color: #bd6f2f; font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.cf-home-partners-copy h2 { margin: 16px 0 18px; color: #202a2e; font-size: clamp(32px, 4vw, 52px); line-height: 1.05; }
.cf-home-partners-copy p { max-width: 520px; color: #536268; font-size: 17px; line-height: 1.75; }
.cf-home-partners-copy button { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; min-height: 48px; padding: 0 18px; border: 1px solid #26363b; border-radius: 4px; background: #26363b; color: #fff; font-weight: 800; cursor: pointer; }
.cf-home-partners-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #cbd4d6; border-left: 1px solid #cbd4d6; }
.cf-home-partners-grid article { display: grid; grid-template-columns: 42px 1fr; gap: 18px; min-height: 180px; padding: 26px; border-right: 1px solid #cbd4d6; border-bottom: 1px solid #cbd4d6; background: rgba(255,255,255,.42); }
.cf-home-partners-grid article > span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 4px; background: #26363b; color: #e4a267; }
.cf-home-partners-grid h3 { margin: 10px 0 9px; color: #202a2e; font-size: 19px; }
.cf-home-partners-grid p { margin: 0; color: #647278; font-size: 14px; line-height: 1.6; }
.cf-home-news-section { padding-top: 104px; }
@media (max-width: 1100px) {
  .cf-home-oem-flow article:not(:last-child)::after { display: none; }
  .cf-home-partners-layout { grid-template-columns: 1fr; gap: 42px; }
}
@media (max-width: 768px) {
  .cf-home-inline-inquiry-grid { grid-template-columns: 1fr; }
  .cf-home-inline-inquiry-form { margin: 0; border-radius: 0; }
  .cf-home-partners-section { padding: 72px 0; }
  .cf-home-partners-grid { grid-template-columns: 1fr; }
}

/* About page rebuilt from the client-approved structure */
.cf-about-slider { position: relative; min-height: 680px; display: flex; align-items: flex-end; overflow: hidden; background: #062f22; color: #fff; }
.cf-about-slider-slides, .cf-about-slider-slide, .cf-about-slider-overlay { position: absolute; inset: 0; }
.cf-about-slider-slide { opacity: 0; transform: scale(1.025); transition: opacity .75s ease, transform 5.5s ease; }
.cf-about-slider-slide.is-active { opacity: 1; transform: scale(1); }
.cf-about-slider-slide img { width: 100%; height: 100%; object-fit: cover; }
.cf-about-slider-overlay { z-index: 1; background: linear-gradient(90deg, rgba(0,37,23,.9), rgba(0,55,32,.54) 55%, rgba(0,30,18,.18)); }
.cf-about-slider-copy { position: relative; z-index: 2; padding-bottom: 86px; }
.cf-about-slider-copy .eyebrow { color: var(--cf-lime); }
.cf-about-slider-copy h1 { max-width: 890px; color: #fff; margin-bottom: 24px; }
.cf-about-slider-copy > p:not(.eyebrow) { max-width: 790px; color: rgba(255,255,255,.8); font-size: 19px; line-height: 1.75; }
.cf-about-slider-dots { display: flex; gap: 10px; margin-top: 32px; }
.cf-about-slider-dots button { width: 34px; height: 5px; padding: 0; border: 0; border-radius: 4px; background: rgba(255,255,255,.38); cursor: pointer; transition: width .2s ease, background .2s ease; }
.cf-about-slider-dots button.is-active { width: 58px; background: var(--cf-lime); }

.cf-about-company-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 72px; align-items: center; }
.cf-about-company-grid > div:first-child > p:not(.eyebrow) { color: #46534c; font-size: 17px; line-height: 1.8; }
.cf-about-company-video { overflow: hidden; border: 1px solid var(--cf-line); border-radius: 4px; background: #081f18; box-shadow: 0 24px 64px rgba(0,47,26,.12); }
.cf-about-company-video video { width: 100%; aspect-ratio: 16 / 10; display: block; object-fit: cover; background: #071b15; }
.cf-about-company-video > span { display: block; padding: 14px 18px; background: #fff; color: var(--cf-muted); font-size: 13px; }
.cf-about-factory-gallery { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, 260px); gap: 18px; }
.cf-about-factory-gallery figure { position: relative; overflow: hidden; margin: 0; border-radius: 4px; background: #dce4dd; }
.cf-about-factory-gallery figure.wide { grid-row: 1 / 3; }
.cf-about-factory-gallery figure:last-child { grid-column: 2 / 4; }
.cf-about-factory-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.cf-about-factory-gallery figure:hover img { transform: scale(1.04); }
.cf-about-factory-gallery figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; border-radius: 4px; background: rgba(0,47,26,.84); color: #fff; font-size: 12px; font-weight: 800; }
.cf-about-timeline { position: relative; display: grid; gap: 0; }
.cf-about-timeline::before { content: ""; position: absolute; left: 88px; top: 28px; bottom: 28px; width: 2px; background: #cdd9ce; }
.cf-about-timeline article { position: relative; display: grid; grid-template-columns: 120px minmax(0,1fr); gap: 28px; padding: 24px 0; }
.cf-about-timeline article > span { position: relative; z-index: 1; width: 82px; min-height: 46px; display: grid; place-items: center; border: 6px solid #f5f5f5; border-radius: 4px; background: var(--cf-primary); color: #fff; font-weight: 900; }
.cf-about-timeline article > div { padding: 2px 0 22px; border-bottom: 1px solid var(--cf-line); }
.cf-about-timeline h3 { color: var(--cf-deep); margin-bottom: 8px; }
.cf-about-timeline p { color: var(--cf-muted); margin: 0; }
.cf-about-certificate-row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; margin-bottom: 30px; }
.cf-about-certificate-row a { aspect-ratio: 4 / 3; display: block; overflow: hidden; padding: 0; border: 1px solid var(--cf-line); border-radius: 4px; background: #f4f5f3; }
.cf-about-certificate-row img { width: 100%; height: 100%; display: block; object-fit: cover; }
.cf-about-partner-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.cf-about-partner-grid article { min-height: 250px; padding: 30px; border: 1px solid #dce3dc; border-radius: 4px; background: #fff; }
.cf-about-partner-grid .cf-icon { width: 38px; height: 38px; color: var(--cf-primary); margin-bottom: 22px; }
.cf-about-partner-grid h3 { color: var(--cf-deep); font-size: 21px; }
.cf-about-partner-grid p { color: var(--cf-muted); margin: 0; }
.cf-about-client-letter { position: relative; overflow: hidden; background: #f4f6f4; }
.cf-about-client-letter::before { content: ""; position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(rgba(38,54,59,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(38,54,59,.055) 1px, transparent 1px); background-size: 48px 48px; pointer-events: none; }
.cf-about-client-letter .site-shell { position: relative; z-index: 1; }
.cf-about-client-letter-intro { display: block; margin-bottom: 40px; padding-bottom: 28px; border-bottom: 1px solid #cfd8d4; }
.cf-about-client-letter-intro h2 { margin: 0; color: var(--cf-deep); }
.cf-about-client-letter-intro > p { max-width: 590px; margin: 0; color: #5f6e68; font-size: 16px; line-height: 1.75; }
.cf-about-client-letter-grid { display: grid; grid-template-columns: minmax(0,1.12fr) minmax(390px,.88fr); gap: 30px; align-items: stretch; }
.cf-about-client-letter-copy { position: relative; height: 100%; overflow: hidden; padding: 54px; border: 1px solid #d5ddda; border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 24px 70px rgba(20,52,42,.08); }
.cf-about-client-letter-copy::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 5px; background: linear-gradient(180deg, var(--cf-primary), #bf9a2f); }
.cf-about-client-letter-quote { position: absolute; top: 20px; right: 34px; color: rgba(0,105,55,.08); font-family: Georgia, serif; font-size: 150px; line-height: 1; pointer-events: none; }
.cf-about-client-letter-lead { position: relative; max-width: 620px; margin: 0 0 24px; color: #173c30; font-size: 29px; font-weight: 600; line-height: 1.25; }
.cf-about-client-letter-copy > p:not(.cf-about-client-letter-lead) { position: relative; max-width: 760px; margin: 0 0 18px; color: #5a6963; font-size: 16px; line-height: 1.78; }
.cf-about-client-letter-promises { display: grid; grid-template-columns: 1fr; gap: 9px; margin-top: 28px; }
.cf-about-client-letter-promises > div { display: grid; grid-template-columns: 42px minmax(0,1fr); gap: 15px; align-items: center; padding: 13px 15px; border: 1px solid #d8e0dc; border-radius: 8px; background: #f7f9f8; }
.cf-about-client-letter-promises > div + div { border-top: 1px solid #d8e0dc; border-left: 1px solid #d8e0dc; }
.cf-about-client-letter-promises .cf-icon { width: 42px; height: 42px; padding: 10px; border-radius: 8px; background: #173c30; color: #d8ba61; }
.cf-about-client-letter-promises span { display: grid; gap: 4px; }
.cf-about-client-letter-promises strong { color: #263832; font-size: 14px; font-weight: 600; line-height: 1.3; }
.cf-about-client-letter-promises small { color: #75827d; font-size: 11px; line-height: 1.55; }
.cf-about-client-letter-commitment { display: grid; gap: 7px; margin-top: 28px; padding: 19px 22px; border-left: 3px solid #d8ba61; border-radius: 8px; background: #173c30; color: #fff; }
.cf-about-client-letter-commitment span { color: #d8ba61; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.cf-about-client-letter-commitment strong { max-width: 620px; font-size: 17px; font-weight: 600; line-height: 1.45; }
.cf-about-client-letter-copy footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 32px; }
.cf-about-client-letter-copy footer > div { display: grid; gap: 5px; }
.cf-about-client-letter-copy footer strong { color: #263832; font-size: 15px; font-weight: 600; }
.cf-about-client-letter-copy footer span { color: #8a9691; font-size: 10px; line-height: 1.4; letter-spacing: .08em; }
.cf-about-client-letter-copy footer button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 19px; border: 1px solid var(--cf-primary); border-radius: 8px; background: var(--cf-primary); color: #fff; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.cf-about-client-letter-copy footer button:hover { border-color: #173c30; background: #173c30; transform: translateY(-2px); }
.cf-about-client-letter-copy footer button .cf-icon { width: 17px; height: 17px; }
.cf-about-client-letter-media { position: relative; min-height: 620px; overflow: hidden; margin: 0; border-radius: 12px; background: #123b30; box-shadow: 0 24px 70px rgba(20,52,42,.12); }
.cf-about-client-letter-media img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center top; }
.cf-about-inline-inquiry { padding: 104px 0; background: #fff; }

@media (min-width: 1025px) {
  body:not(.home):not(.single-post) .site-main .section.cf-about-client-letter {
    padding-top: clamp(18px, 2.5vh, 36px);
    padding-bottom: clamp(18px, 2.5vh, 36px);
  }
  .cf-about-client-letter-intro {
    margin-bottom: 18px;
    padding-bottom: 14px;
  }
  .cf-about-client-letter-grid {
    grid-template-columns: minmax(0,1.18fr) minmax(460px,.82fr);
    gap: 45px;
  }
  .cf-about-client-letter-copy {
    min-height: 700px;
    display: flex;
    flex-direction: column;
    padding: clamp(28px, 3vw, 40px);
  }
  .cf-about-client-letter-quote { top: 10px; right: 24px; font-size: 112px; }
  .cf-about-client-letter-lead { margin-bottom: 16px; font-size: 24px; line-height: 1.22; }
  .cf-about-client-letter-copy > p:not(.cf-about-client-letter-lead) {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.58;
  }
  .cf-about-client-letter-promises {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }
  .cf-about-client-letter-promises > div {
    grid-template-columns: 34px minmax(0,1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 12px;
  }
  .cf-about-client-letter-promises > div + div {
    border-top: 1px solid #d8e0dc;
    border-left: 1px solid #d8e0dc;
  }
  .cf-about-client-letter-promises .cf-icon { width: 34px; height: 34px; padding: 8px; }
  .cf-about-client-letter-promises span { gap: 3px; }
  .cf-about-client-letter-promises strong { font-size: 13px; }
  .cf-about-client-letter-promises small { font-size: 10px; line-height: 1.4; }
  .cf-about-client-letter-commitment {
    gap: 4px;
    margin-top: 16px;
    padding: 12px 16px;
  }
  .cf-about-client-letter-commitment strong { font-size: 15px; line-height: 1.35; }
  .cf-about-client-letter-copy footer { gap: 16px; margin-top: auto; padding-top: 22px; }
  .cf-about-client-letter-copy footer button { min-height: 42px; padding: 0 16px; font-size: 12px; }
  .cf-about-client-letter-media {
    min-height: 700px;
    background: #fff;
  }
}

@media (max-width: 1024px) {
  .cf-about-slider { min-height: 600px; }
  .cf-about-company-grid { grid-template-columns: 1fr; }
  .cf-about-factory-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 260px 260px; }
  .cf-about-factory-gallery figure.wide { grid-column: 1 / 3; grid-row: auto; }
  .cf-about-factory-gallery figure:last-child { grid-column: 1 / 3; }
  .cf-about-partner-grid, .cf-about-certificate-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cf-about-client-letter-intro { grid-template-columns: 1fr; gap: 18px; }
  .cf-about-client-letter-grid { grid-template-columns: 1fr; }
  .cf-about-client-letter-media { height: min(720px, 112vw); }
}
@media (max-width: 640px) {
  .cf-about-slider { min-height: 560px; }
  .cf-about-slider-copy { padding-bottom: 58px; }
  .cf-about-slider-copy > p:not(.eyebrow) { font-size: 16px; }
  .cf-about-factory-gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .cf-about-factory-gallery figure, .cf-about-factory-gallery figure.wide, .cf-about-factory-gallery figure:last-child { grid-column: auto; grid-row: auto; min-height: 270px; }
  .cf-about-timeline::before { left: 36px; }
  .cf-about-timeline article { grid-template-columns: 72px minmax(0,1fr); gap: 14px; }
  .cf-about-timeline article > span { width: 72px; font-size: 12px; }
  .cf-about-partner-grid, .cf-about-certificate-row { grid-template-columns: 1fr; }
  .cf-about-client-letter-copy { padding: 34px 26px; }
  .cf-about-client-letter-lead { font-size: 24px; }
  .cf-about-client-letter-promises { grid-template-columns: 1fr; }
  .cf-about-client-letter-promises > div + div { border-top: 1px solid #d8e0dc; border-left: 0; }
  .cf-about-client-letter-copy footer { align-items: stretch; flex-direction: column; }
  .cf-about-client-letter-copy footer button { width: 100%; }
  .cf-about-client-letter-media { height: 500px; }
  .cf-about-inline-inquiry { padding: 72px 0; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-about-slider-slide { transition: none; transform: none; }
}

/* About page review refinements. */
.cf-about-slider-copy h1.eyebrow { margin: 0 0 14px; color: var(--cf-lime); font-size: 12px; line-height: 1.4; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.cf-about-slider-copy h2 { max-width: 890px; margin-bottom: 24px; color: #fff; font-size: var(--cf-title-h1); line-height: 1.04; }
.cf-about-company-grid > div:first-child h2 { max-width: 620px; margin-bottom: 22px; color: #26363b; font-size: clamp(30px, 3.4vw, 46px); line-height: 1.08; }
.cf-about-company-grid > div:first-child > p:not(.eyebrow) { font-family: inherit; font-weight: 400; }
.cf-about-company-video { border-radius: 4px; }
.cf-about-factory-gallery figure { border-radius: 4px; }
.cf-about-factory-gallery figcaption, .cf-about-factory-gallery-more figcaption { border-radius: 3px; background: rgba(30,46,51,.84); }
.cf-about-factory-gallery-more { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 18px; }
.cf-about-factory-gallery-more figure { position: relative; overflow: hidden; height: 230px; margin: 0; border-radius: 4px; background: #dce4dd; }
.cf-about-factory-gallery-more img { width: 100%; height: 100%; object-fit: cover; }
.cf-about-factory-gallery-more figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 12px; color: #fff; font-size: 12px; font-weight: 800; }
.cf-about-values-section { background: #eef2f2; }
.cf-about-value-panel { align-items: stretch; }
.cf-about-values-grid { gap: 1px; overflow: hidden; border: 1px solid #cfd8da; border-radius: 4px; background: #cfd8da; }
.cf-about-values-grid article { min-height: 270px; padding: 30px 26px; border: 0; border-radius: 0; background: #26363b; box-shadow: none; color: #fff; }
.cf-about-values-grid article::before { display: none; }
.cf-about-values-grid article > .cf-icon { width: 42px; height: 42px; padding: 10px; display: block; border-radius: 4px; background: #e4a267; color: #26363b; stroke-width: 1.8; }
.cf-about-values-grid h3 { margin: 22px 0 12px; color: #fff; font-size: 22px; }
.cf-about-values-grid p { color: rgba(255,255,255,.74); }
.cf-about-values-cta { align-self: end; justify-self: start; display: inline-flex; align-items: center; gap: 9px; min-height: 50px; margin-top: -78px; padding: 0 20px; border: 1px solid #26363b; border-radius: 4px; background: #26363b; color: #fff; font-weight: 800; cursor: pointer; }
.cf-about-values-cta .cf-icon { width: 17px; height: 17px; }
.cf-about-timeline-section { position: relative; background-position: center; background-size: cover; }
.cf-about-timeline-section .site-shell { position: relative; z-index: 1; }
.cf-about-timeline-section .cf-section-title { padding: 30px; border-left: 4px solid #d18443; background: rgba(255,255,255,.62); backdrop-filter: blur(5px); }
.cf-about-timeline-section .cf-about-timeline { margin-top: 34px; padding: 18px 30px; border-radius: 4px; background: rgba(255,255,255,.70); backdrop-filter: blur(6px); }
.cf-about-timeline article > span { border-radius: 4px; border-color: rgba(255,255,255,.72); background: #26363b; }
.cf-about-timeline article > div { border-bottom-color: rgba(74,93,98,.24); }
.cf-about-certificate-row a { height: auto; aspect-ratio: 4 / 3; display: block; padding: 0; border-radius: 4px; overflow: hidden; background: #f4f5f3; }
.cf-about-certificate-row img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }
.cf-about-inline-inquiry { position: relative; padding: 112px 0; background: #263237 var(--cf-inquiry-bg) center / cover no-repeat; }
.cf-about-inline-inquiry::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,31,35,.62), rgba(20,31,35,.40)); }
.cf-about-inline-inquiry .cf-home-inline-inquiry-grid { position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .cf-about-values-cta { margin-top: 0; }
}
@media (max-width: 640px) {
  .cf-about-slider-copy h2 { font-size: clamp(36px, 11vw, 54px); }
  .cf-about-factory-gallery-more { grid-template-columns: 1fr; }
  .cf-about-factory-gallery-more figure { height: 270px; }
  .cf-about-certificate-row a { height: auto; }
}

/* Product detail page: gallery, sticky summary and ACF-driven content */
.cf-product-breadcrumb { padding: 18px 0; background: #f4f6f4; border-bottom: 1px solid var(--cf-line); color: var(--cf-muted); font-size: 12px; }
.cf-product-breadcrumb .site-shell { display: flex; align-items: center; gap: 9px; }
.cf-product-breadcrumb a:hover { color: var(--cf-primary); }
.cf-product-breadcrumb strong { color: var(--cf-deep); font-weight: 800; }
.cf-product-detail-sticky { position: sticky; top: 80px; z-index: 42; padding: 11px 0; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--cf-line); box-shadow: 0 10px 28px rgba(0,47,26,.06); backdrop-filter: blur(12px); }
.cf-product-detail-sticky .site-shell { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.cf-product-detail-sticky .site-shell > div { display: grid; gap: 2px; }
.cf-product-detail-sticky span { color: var(--cf-primary); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.cf-product-detail-sticky strong { color: var(--cf-deep); font-size: 15px; }
.cf-product-detail-sticky button, .cf-product-faq-layout button { min-height: 42px; padding: 0 18px; border: 0; border-radius: 4px; background: var(--cf-primary); color: #fff; font-size: 12px; font-weight: 900; cursor: pointer; }
.cf-product-detail-hero { padding: 74px 0 94px; background: #fff; }
.cf-product-detail-main { display: grid; grid-template-columns: 1.08fr .92fr; gap: 76px; align-items: start; }
.cf-product-gallery { min-width: 0; }
.cf-product-main-image { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; border: 1px solid #e1e8e1; border-radius: 4px; background: #fff; }
.cf-product-main-image img { width: 100%; height: 100%; object-fit: contain; padding: 34px; transition: opacity .18s ease, transform .45s ease; }
.cf-product-main-image:hover img { transform: scale(1.025); }
.cf-product-main-image img.is-changing { opacity: .35; }
.cf-product-main-image > a { position: absolute; right: 18px; bottom: 18px; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid #d4ddd5; border-radius: 50%; background: rgba(255,255,255,.95); color: var(--cf-deep); box-shadow: 0 10px 24px rgba(0,47,26,.12); }
.cf-product-main-image > a:hover { background: var(--cf-primary); color: #fff; }
.cf-product-gallery-thumbs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.cf-product-gallery-thumbs button { width: 82px; height: 82px; padding: 5px; border: 1px solid #dbe3dc; border-radius: 4px; background: #fff; cursor: pointer; }
.cf-product-gallery-thumbs button.is-active { border: 2px solid var(--cf-primary); }
.cf-product-gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.cf-product-purchase-panel { padding-top: 8px; }
.cf-product-purchase-panel h1 { color: var(--cf-deep); margin-bottom: 14px; }
.cf-product-model { margin-bottom: 8px; color: var(--cf-primary); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cf-product-subtitle { color: var(--cf-muted); font-size: 19px; line-height: 1.6; }
.cf-product-quick-specs { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 32px 0; border: 1px solid #dce4dd; border-radius: 4px; overflow: hidden; }
.cf-product-quick-specs article { min-height: 96px; padding: 16px; display: grid; align-content: center; gap: 8px; background: #f4f7f4; }
.cf-product-quick-specs article + article { border-left: 1px solid #dce4dd; }
.cf-product-quick-specs span { color: var(--cf-muted); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.cf-product-quick-specs strong { color: var(--cf-deep); font-size: 17px; }
.cf-product-purchase-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cf-product-purchase-actions button, .cf-product-purchase-actions a { min-height: 54px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 4px; font-size: 13px; font-weight: 900; cursor: pointer; }
.cf-product-purchase-actions button { border: 1px solid var(--cf-primary); background: var(--cf-primary); color: #fff; }
.cf-product-purchase-actions a { border: 1px solid #bfcfc1; background: #fff; color: var(--cf-deep); }
.cf-product-purchase-actions a:hover { border-color: var(--cf-primary); color: var(--cf-primary); }
.cf-product-trust-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--cf-line); }
.cf-product-trust-row span { display: inline-flex; align-items: center; gap: 6px; color: var(--cf-muted); font-size: 11px; }
.cf-product-trust-row .cf-icon { width: 17px; height: 17px; color: var(--cf-primary); }
.cf-product-summary-copy { margin-top: 28px; color: #46534c; font-size: 16px; line-height: 1.8; }
.cf-product-anchor-nav { position: sticky; top: 137px; z-index: 38; background: #f5f7f5; border-top: 1px solid var(--cf-line); border-bottom: 1px solid var(--cf-line); }
.cf-product-anchor-nav .site-shell { display: flex; justify-content: center; gap: 28px; overflow-x: auto; }
.cf-product-anchor-nav a { padding: 15px 0; color: #526159; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; white-space: nowrap; }
.cf-product-anchor-nav a:hover { color: var(--cf-primary); }
.cf-product-detail-section { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.cf-product-detail-section.is-visible { opacity: 1; transform: none; }
.cf-product-feature-cards { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 22px; }
.cf-product-feature-cards article { overflow: hidden; border: 1px solid var(--cf-line); border-radius: 4px; background: #fff; }
.cf-product-feature-cards article > img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.cf-product-feature-cards article > span { width: 62px; height: 62px; margin: 24px 22px 0; display: grid; place-items: center; border-radius: 4px; background: rgba(0,105,55,.1); color: var(--cf-primary); }
.cf-product-feature-cards article > div { padding: 22px; }
.cf-product-feature-cards h3 { color: var(--cf-deep); font-size: 22px; }
.cf-product-feature-cards p { color: var(--cf-muted); margin: 0; }
.cf-product-specification-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.cf-product-specification-layout > div > p:not(.eyebrow) { color: var(--cf-muted); line-height: 1.75; }
.cf-product-specification-accordion { border: 1px solid #d6e0d7; border-radius: 4px; background: #fff; overflow: hidden; }
.cf-product-specification-accordion summary { padding: 20px 24px; color: var(--cf-deep); font-weight: 900; cursor: pointer; list-style: none; }
.cf-product-specification-accordion summary::-webkit-details-marker { display: none; }
.cf-product-specification-accordion summary::after { content: ""; float: right; width: 20px; height: 20px; color: var(--cf-primary); background: linear-gradient(currentColor,currentColor) center / 13px 1.5px no-repeat, linear-gradient(currentColor,currentColor) center / 1.5px 13px no-repeat; }
.cf-product-specification-accordion[open] summary::after { background: linear-gradient(currentColor,currentColor) center / 13px 1.5px no-repeat; }
.cf-product-specification-table { border-top: 1px solid var(--cf-line); }
.cf-product-specification-table > div { display: grid; grid-template-columns: 1fr 1fr auto; gap: 16px; padding: 15px 24px; border-bottom: 1px solid #edf1ed; }
.cf-product-specification-table span { color: var(--cf-muted); }
.cf-product-specification-table strong { color: var(--cf-deep); }
.cf-product-specification-table small { color: var(--cf-muted); }
.cf-product-evidence-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; }
.cf-product-evidence-grid.is-reversed { grid-template-columns: 1.1fr .9fr; }
.cf-product-evidence-grid > div > p:not(.eyebrow) { color: #46534c; font-size: 17px; line-height: 1.8; }
.cf-product-evidence-images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-product-evidence-images img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }
.cf-product-oem-panels { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 24px; }
.cf-product-oem-panels article { padding: 32px; border: 1px solid var(--cf-line); border-radius: 4px; background: #fff; }
.cf-product-oem-panels .cf-icon { width: 38px; height: 38px; margin-bottom: 20px; color: var(--cf-primary); }
.cf-product-oem-panels h3 { color: var(--cf-deep); }
.cf-product-oem-panels p { color: var(--cf-muted); line-height: 1.75; }
.cf-product-application-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.cf-product-application-chips span { padding: 10px 16px; border-radius: 4px; background: #edf4ee; color: var(--cf-deep); font-size: 13px; font-weight: 800; }
.cf-product-faq-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: start; }
.cf-product-faq-layout > div:first-child > p:not(.eyebrow) { color: var(--cf-muted); line-height: 1.75; }
.cf-product-detail-faq { display: grid; gap: 12px; }
.cf-product-detail-faq details { border: 1px solid var(--cf-line); border-radius: 4px; background: #fff; }
.cf-product-detail-faq summary { padding: 18px 20px; color: var(--cf-deep); font-weight: 800; cursor: pointer; list-style: none; }
.cf-product-detail-faq summary::-webkit-details-marker { display: none; }
.cf-product-detail-faq summary::after { content: ""; float: right; width: 20px; height: 20px; color: var(--cf-primary); background: linear-gradient(currentColor,currentColor) center / 13px 1.5px no-repeat, linear-gradient(currentColor,currentColor) center / 1.5px 13px no-repeat; }
.cf-product-detail-faq details[open] summary::after { background: linear-gradient(currentColor,currentColor) center / 13px 1.5px no-repeat; }
.cf-product-detail-faq p { padding: 0 20px 18px; margin: 0; color: var(--cf-muted); line-height: 1.75; }

@media (max-width: 1024px) {
  .cf-product-detail-main, .cf-product-specification-layout, .cf-product-evidence-grid, .cf-product-evidence-grid.is-reversed, .cf-product-faq-layout { grid-template-columns: 1fr; gap: 42px; }
  .cf-product-feature-cards { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cf-product-anchor-nav { top: 80px; }
}
@media (max-width: 640px) {
  .cf-product-detail-sticky { top: 80px; }
  .cf-product-detail-sticky strong { font-size: 13px; }
  .cf-product-detail-sticky button { padding: 0 12px; }
  .cf-product-detail-hero { padding: 42px 0 64px; }
  .cf-product-main-image img { padding: 18px; }
  .cf-product-quick-specs { grid-template-columns: 1fr; }
  .cf-product-quick-specs article + article { border-top: 1px solid #dce4dd; border-left: 0; }
  .cf-product-purchase-actions { display: grid; }
  .cf-product-purchase-actions button, .cf-product-purchase-actions a { width: 100%; }
  .cf-product-anchor-nav .site-shell { justify-content: flex-start; gap: 22px; }
  .cf-product-feature-cards, .cf-product-oem-panels { grid-template-columns: 1fr; }
  .cf-product-specification-table > div { grid-template-columns: 1fr; gap: 4px; }
  .cf-product-evidence-images { grid-template-columns: 1fr; }
}

/* Blog discovery: categories, tags, search and popular reading */
.cf-blog-archive-section { padding-top: 72px; }
.cf-blog-category-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 28px; }
.cf-blog-category-nav a { min-height: 44px; padding: 0 18px; display: inline-flex; align-items: center; border: 1px solid #cfdacf; border-radius: 4px; color: var(--cf-deep); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.cf-blog-category-nav a:hover, .cf-blog-category-nav a.is-active { border-color: var(--cf-primary); background: var(--cf-primary); color: #fff; }
.cf-blog-filter-bar { display: grid; grid-template-columns: .8fr 1.5fr auto; gap: 14px; align-items: end; padding: 22px; border: 1px solid #dce4dd; border-radius: 4px; background: #f6f8f6; }
.cf-blog-filter-bar label { display: grid; gap: 7px; }
.cf-blog-filter-bar label > span { color: #46534c; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.cf-blog-filter-bar select, .cf-blog-filter-bar input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid #ccd7cd; border-radius: 4px; background: #fff; color: var(--cf-ink); }
.cf-blog-filter-bar input:focus, .cf-blog-filter-bar select:focus { border-color: var(--cf-primary); outline: 0; box-shadow: 0 0 0 3px rgba(0,105,55,.1); }
.cf-blog-filter-bar button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border: 0; border-radius: 4px; background: var(--cf-primary); color: #fff; font-weight: 900; cursor: pointer; }
.cf-blog-filter-bar button .cf-icon { width: 18px; height: 18px; }
.cf-blog-tag-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 18px 0 34px; }
.cf-blog-tag-chips > span { color: var(--cf-muted); font-size: 12px; font-weight: 800; margin-right: 4px; }
.cf-blog-tag-chips a { padding: 6px 10px; border-radius: 4px; background: #edf4ee; color: var(--cf-deep); font-size: 11px; }
.cf-blog-tag-chips a:hover { background: var(--cf-primary); color: #fff; }
.cf-blog-popular-section, .cf-popular-reading-section { border-top: 1px solid var(--cf-line); }
.cf-blog-popular-section .cf-news-card, .cf-popular-reading-section .cf-news-card { background: #fff; }

@media (max-width: 800px) {
  .cf-blog-filter-bar { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cf-blog-archive-section { padding-top: 52px; }
  .cf-blog-category-nav { justify-content: flex-start; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; }
  .cf-blog-category-nav a { flex: 0 0 auto; }
}

/* Product catalog: centered categories and ACF-driven filters */
.cf-product-catalog-hero { padding: 152px 0 70px; background: linear-gradient(180deg, #f4f6f4, #fff); text-align: center; }
.cf-product-catalog-hero h1 { color: var(--cf-deep); margin-bottom: 18px; }
.cf-product-catalog-hero > div > p:not(.eyebrow) { max-width: 720px; margin: 0 auto; color: var(--cf-muted); font-size: 18px; }
.cf-product-catalog-section { padding: 72px 0 104px; background: #fff; }
.cf-product-category-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 38px; }
.cf-product-category-nav a { min-height: 48px; padding: 0 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid #d4ddd5; border-radius: 4px; background: #fff; color: var(--cf-deep); font-size: 13px; font-weight: 800; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.cf-product-category-nav a:hover, .cf-product-category-nav a.is-active { background: var(--cf-primary); border-color: var(--cf-primary); color: #fff; }
.cf-product-filter-form { margin-bottom: 42px; padding: 26px; border: 1px solid #dce4dd; border-radius: 4px; background: #f6f8f6; }
.cf-product-filter-heading { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 20px; }
.cf-product-filter-heading > div { display: flex; align-items: center; gap: 10px; color: var(--cf-deep); }
.cf-product-filter-heading .cf-icon { color: var(--cf-primary); }
.cf-product-filter-heading a { color: var(--cf-primary); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.cf-product-filter-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)) 1.15fr auto; gap: 14px; align-items: end; }
.cf-product-filter-grid label { display: grid; gap: 7px; }
.cf-product-filter-grid label > span { color: #425047; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.cf-product-filter-grid select, .cf-product-filter-grid input { width: 100%; min-height: 50px; padding: 0 14px; border: 1px solid #ccd7cd; border-radius: 4px; background: #fff; color: var(--cf-ink); outline: 0; }
.cf-product-filter-grid select:focus, .cf-product-filter-grid input:focus { border-color: var(--cf-primary); box-shadow: 0 0 0 3px rgba(0,105,55,.1); }
.cf-product-filter-grid > button { min-height: 50px; padding: 0 22px; border: 0; border-radius: 4px; background: var(--cf-primary); color: #fff; font-weight: 900; cursor: pointer; white-space: nowrap; }
.cf-product-results-heading { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--cf-line); color: var(--cf-muted); font-size: 13px; }
.cf-product-results-heading span { color: var(--cf-primary); font-size: 22px; font-weight: 900; }
.cf-product-results-heading p { margin: 0; }
.cf-product-search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid #d4dcde;
  border-radius: 4px;
  background: #f5f7f7;
}
.cf-product-search-bar input[type="search"] {
  width: 100%;
  min-height: 52px;
  padding: 0 17px;
  border: 1px solid #cbd5d6;
  border-radius: 4px;
  background: #fff;
  color: #26363b;
  outline: 0;
}
.cf-product-search-bar input[type="search"]:focus {
  border-color: var(--cf-primary);
  box-shadow: 0 0 0 3px rgba(0,105,55,.1);
}
.cf-product-search-bar button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: var(--cf-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}
.cf-product-search-bar button:hover { background: #26363b; }
.cf-product-search-bar button .cf-icon { width: 17px; height: 17px; }
.cf-product-clean-grid .cf-product-card { padding: 0; overflow: hidden; border-radius: 4px; background: #fff; box-shadow: none; }
.cf-product-clean-grid .cf-product-card::before { display: none !important; }
.cf-product-clean-grid .cf-product-media { aspect-ratio: 1 / 1; border-radius: 0; background: #fff; border-bottom: 1px solid #edf0ed; }
.cf-product-clean-grid .cf-product-media img { object-fit: contain; padding: 20px; }
.cf-product-clean-grid .cf-product-body { padding: 22px; }
.cf-product-card-meta { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0 0 14px; list-style: none; }
.cf-product-card-meta li { padding: 5px 8px; border-radius: 4px; background: #f0f4f1; color: #4f5e55; font-size: 11px; }
.cf-product-empty { grid-column: 1 / -1; padding: 70px 28px; border: 1px dashed #becbbf; border-radius: 4px; background: #f8faf8; text-align: center; }
.cf-product-empty h2 { color: var(--cf-deep); }
.cf-product-empty p { color: var(--cf-muted); }
.cf-product-empty button { min-height: 48px; padding: 0 20px; border: 0; border-radius: 4px; background: var(--cf-primary); color: #fff; font-weight: 800; cursor: pointer; }
.navigation.pagination { margin-top: 42px; }
.nav-links { display: flex; justify-content: center; gap: 8px; }
.nav-links .page-numbers { min-width: 42px; height: 42px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--cf-line); border-radius: 4px; color: var(--cf-deep); font-size: 13px; font-weight: 800; }
.nav-links .page-numbers.current, .nav-links .page-numbers:hover { background: var(--cf-primary); border-color: var(--cf-primary); color: #fff; }

@media (max-width: 1024px) {
  .cf-product-filter-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cf-product-filter-grid > button { width: 100%; }
}
@media (max-width: 640px) {
  .cf-product-catalog-hero { padding: 120px 0 52px; }
  .cf-product-catalog-section { padding: 52px 0 72px; }
  .cf-product-search-bar { grid-template-columns: 1fr; padding: 14px; }
  .cf-product-category-nav { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 7px; }
  .cf-product-category-nav a { flex: 0 0 auto; }
  .cf-product-filter-grid { grid-template-columns: 1fr; }
  .cf-product-results-heading { display: grid; }
}

/* Product catalog: four-column compact industrial cards and live category switching. */
.cf-product-catalog-section { transition: opacity .18s ease; }
.cf-product-catalog-section.is-loading { opacity: .52; pointer-events: none; }
.cf-product-category-nav a { min-height: 42px; padding: 0 18px; border-radius: 4px; border-color: #cfd8da; color: #34474d; font-size: 12px; }
.cf-product-category-nav a:hover, .cf-product-category-nav a.is-active { background: #26363b; border-color: #26363b; color: #fff; }
.cf-product-filter-form { border-radius: 4px; }
.cf-product-filter-grid select, .cf-product-filter-grid input, .cf-product-filter-grid > button { border-radius: 4px; }
.cf-product-archive-grid.cf-product-clean-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cf-product-clean-grid .cf-product-card { border: 1px solid #d7dfe0; border-radius: 4px; background: #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.cf-product-clean-grid .cf-product-card:hover { transform: none; border-color: #9eabad; box-shadow: inset 0 -3px 0 #d18443; }
.cf-product-clean-grid .cf-product-media { aspect-ratio: 4 / 3; background: #f2f4f4; }
.cf-product-clean-grid .cf-product-media img { padding: 12px; }
.cf-product-clean-grid .cf-product-body { padding: 16px 16px 18px; }
.cf-product-clean-grid .cf-product-body .eyebrow { min-height: 22px; padding: 0; border-radius: 0; background: transparent; color: #bd6f2f; font-size: 9px; letter-spacing: .13em; }
.cf-product-clean-grid .cf-product-body h4 { margin: 8px 0 10px; color: #26363b; }
.cf-product-clean-grid .cf-product-card-meta { gap: 5px; margin-bottom: 0; }
.cf-product-clean-grid .cf-product-card-meta li { padding: 4px 6px; border-radius: 2px; background: #eef1f1; color: #617075; font-size: 9px; }
.cf-product-clean-grid .cf-product-body > p:not(.eyebrow) { display: none; }
@media (max-width: 1100px) {
  .cf-product-archive-grid.cf-product-clean-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .cf-product-archive-grid.cf-product-clean-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .cf-product-archive-grid.cf-product-clean-grid { grid-template-columns: 1fr; }
}

/* Site-wide corner standard: non-circular elements use a maximum 4px radius. */
.rounded-full { border-radius: 4px !important; }
.w-2.h-2.rounded-full,
.cf-pill > span,
.cf-product-story-split li::before { border-radius: 50% !important; }

/* Unified industrial typography system. */
body,
p,
li,
input,
textarea,
select { font-family: var(--cf-font-body) !important; }
.site-main h1,
.site-main h2,
.site-main h3,
.site-main h4,
.site-main h5,
.site-main h6 { font-family: var(--cf-font-display) !important; letter-spacing: -.012em !important; text-transform: none; }
.site-main h1 { font-size: var(--cf-title-h1) !important; line-height: 1.14 !important; font-weight: 700 !important; }
.site-main h2 { font-size: var(--cf-title-h2) !important; line-height: 1.2 !important; font-weight: 600 !important; }
.site-main h3 { font-size: var(--cf-title-h3) !important; line-height: 1.25 !important; font-weight: 600 !important; }
.site-main h4 { font-size: var(--cf-title-h4) !important; line-height: 1.33 !important; font-weight: 600 !important; }
.site-main h5 { font-size: var(--cf-title-h5) !important; line-height: 1.35 !important; font-weight: 600 !important; }
.site-main h6 { font-size: var(--cf-title-h6) !important; line-height: 1.4 !important; font-weight: 600 !important; }
button,
.button,
[class*="-button"],
.eyebrow,
nav a,
label > span { font-family: var(--cf-font-display) !important; }
.site-main p { font-size: 16px; line-height: 1.5; font-weight: 400; }
.cf-about-slider-copy h1.eyebrow { color: #fff !important; }

/* Homepage category hierarchy and unified primary-green CTA system. */
.site-main .cf-home-simple-heading .cf-home-category-title {
  display: block;
  margin: 12px auto 18px;
  color: #26363b;
  font-family: var(--cf-font-display) !important;
  font-size: var(--cf-title-h2) !important;
  line-height: 1.07 !important;
  font-weight: 700 !important;
}
button[type="submit"],
input[type="submit"],
button[data-inquiry-open],
.header-cta,
.cf-quote,
.cf-home-action-primary,
.cf-home-standards-button,
.cf-home-partners-copy button,
.cf-about-values-cta,
.cf-about-profile-actions a:first-child,
.cf-heritage-final-cta button,
.cf-product-purchase-actions button,
.cf-product-filter-grid > button,
.cf-empty-state button,
.cf-download-list button,
.cf-news-subscribe-card button,
.fluentform .ff-btn-submit,
.form-card .ff-btn-submit {
  border-color: var(--cf-primary) !important;
  background: var(--cf-primary) !important;
  color: #fff !important;
  box-shadow: none !important;
}
button[type="submit"]:hover,
input[type="submit"]:hover,
button[data-inquiry-open]:hover,
.header-cta:hover,
.cf-quote:hover,
.cf-home-action-primary:hover,
.cf-home-standards-button:hover,
.cf-home-partners-copy button:hover,
.cf-about-values-cta:hover,
.cf-about-profile-actions a:first-child:hover,
.cf-heritage-final-cta button:hover,
.cf-product-purchase-actions button:hover,
.cf-product-filter-grid > button:hover,
.cf-empty-state button:hover,
.cf-download-list button:hover,
.cf-news-subscribe-card button:hover,
.fluentform .ff-btn-submit:hover,
.form-card .ff-btn-submit:hover {
  border-color: var(--cf-deep) !important;
  background: var(--cf-deep) !important;
  color: #fff !important;
}
.cf-home-action-secondary {
  border-color: rgba(255,255,255,.72) !important;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
}
.cf-home-action-secondary:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--cf-deep) !important;
}
.cf-conversion-rail button[data-inquiry-open] {
  border-color: var(--cf-cta-yellow) !important;
  background: var(--cf-cta-yellow) !important;
  color: var(--cf-cta-ink) !important;
}
.cf-conversion-rail button[data-inquiry-open]:hover {
  border-color: var(--cf-cta-yellow-hover) !important;
  background: var(--cf-cta-yellow-hover) !important;
  color: #fff !important;
}

/* Product detail gallery: vertical thumbnail rail with large primary image. */
.cf-product-gallery {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}
.cf-product-gallery-rail {
  min-width: 0;
  display: grid;
  grid-template-rows: 34px minmax(0, 1fr) 34px;
  gap: 10px;
}
.cf-product-gallery-scroll {
  width: 100%;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #d5ddde;
  border-radius: 4px;
  background: #fff;
  color: #40545a;
  cursor: pointer;
}
.cf-product-gallery-scroll:hover { border-color: var(--cf-cta-yellow); color: var(--cf-cta-yellow-hover); }
.cf-product-gallery-scroll .cf-icon { width: 17px; height: 17px; }
.cf-product-gallery-scroll.is-prev .cf-icon { transform: rotate(-90deg); }
.cf-product-gallery-scroll.is-next .cf-icon { transform: rotate(90deg); }
.cf-product-gallery-thumbs {
  max-height: 530px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.cf-product-gallery-thumbs::-webkit-scrollbar { display: none; }
.cf-product-gallery-thumbs button {
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  padding: 5px;
  border: 1px solid #d5ddde;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}
.cf-product-gallery-thumbs button:hover { border-color: #9aa9ac; }
.cf-product-gallery-thumbs button.is-active {
  border: 2px solid var(--cf-cta-yellow);
  box-shadow: inset 0 0 0 1px #fff;
}
.cf-product-gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.cf-product-gallery .cf-product-main-image {
  min-height: 610px;
  aspect-ratio: auto;
  padding: 0;
  border-color: #d5ddde;
  background: linear-gradient(145deg, #f8faf9, #eef3f2);
  box-shadow: none;
}
.cf-product-gallery .cf-product-main-image::before { display: none; }
.cf-product-gallery .cf-product-main-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  padding: 28px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .cf-product-gallery { grid-template-columns: 1fr; gap: 12px; }
  .cf-product-gallery .cf-product-main-image { order: 1; min-height: 420px; }
  .cf-product-gallery-rail { order: 2; grid-template-columns: 34px minmax(0,1fr) 34px; grid-template-rows: 82px; gap: 8px; }
  .cf-product-gallery-thumbs { max-height: none; flex-direction: row; overflow-x: auto; overflow-y: hidden; }
  .cf-product-gallery-scroll { width: 34px; height: 82px; }
  .cf-product-gallery-scroll.is-prev .cf-icon { transform: rotate(180deg); }
  .cf-product-gallery-scroll.is-next .cf-icon { transform: none; }
}

/* Homepage interaction and standards-card refinements. */
.site-main button.cf-home-action.cf-home-action-secondary[data-inquiry-open] {
  border: 1px solid #fff !important;
  background: transparent !important;
  color: #fff !important;
}
.site-main button.cf-home-action.cf-home-action-secondary[data-inquiry-open]:hover {
  border-color: #fff !important;
  background: #fff !important;
  color: var(--cf-deep) !important;
}
.cf-home-category-buttons a.is-active {
  border-color: var(--cf-primary);
  background: var(--cf-primary);
  color: #fff;
}
.cf-home-category-products.is-filtering { opacity: .45; transition: opacity .18s ease; }
.cf-home-category-product[hidden] { display: none !important; }
.cf-home-category-product small {
  display: block;
  margin-top: 14px;
  color: #bd6f2f;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-main .cf-home-category-product h3 {
  margin: 7px 0 10px;
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}
.cf-home-category-empty { grid-column: 1 / -1; text-align: center; }
.cf-home-standard-card::before { display: none !important; }
.cf-home-standard-card {
  border: 1px solid #d4dcde !important;
  border-left: 3px solid #536b73 !important;
  background: #f8faf9 !important;
}
.cf-home-standard-card .cf-home-cert-icon {
  color: #2f4850 !important;
  background: #e6ecec !important;
  stroke-width: 1.8;
}
.cf-home-standard-card:hover {
  border-color: #9aa9ac !important;
  border-left-color: var(--cf-cta-yellow) !important;
  box-shadow: none !important;
}

/* About certificates, partner icons and shared inquiry consistency. */
.cf-about-certificate-row img {
  object-fit: cover;
  padding: 0;
}
.cf-about-certificate-row a:first-child img {
  width: 100%;
  height: 100%;
  padding: 0;
}
.cf-about-partner-grid .cf-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  padding: 11px;
  border-radius: 4px;
  background: #26363b;
  color: var(--cf-cta-yellow);
  stroke-width: 1.8;
}
.cf-about-partner-grid article {
  border-color: #d4dcde;
  background: #f8faf9;
}

/* Certificate archive: normalize document scale inside equal frames. */
.cf-cert-grid a {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.cf-cert-grid img {
  width: 82%;
  height: 82%;
  aspect-ratio: auto;
  padding: 0;
  object-fit: contain;
}
.cf-cert-grid article:first-child img {
  width: 72%;
  height: 72%;
}
.cf-certificate-gallery-grid a {
  aspect-ratio: 4 / 3;
  background: #f4f5f3;
}
.cf-certificate-gallery-grid img,
.cf-certificate-gallery-grid article:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Simplified product detail: specifications are the only long-form data section. */
.cf-product-specification-accordion.is-static .cf-product-specification-table { border-top: 0; }
.cf-product-specification-accordion.is-static .cf-product-specification-table > div {
  min-height: 58px;
  align-items: center;
}
.cf-product-specification-accordion.is-static .cf-product-specification-table > div:nth-child(even) {
  background: #f6f8f7;
}

/* Article footer: four product recommendations in one row. */
.cf-product-archive-grid.cf-product-clean-grid.cf-article-product-recommendations {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 820px) {
  .cf-product-archive-grid.cf-product-clean-grid.cf-article-product-recommendations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .cf-product-archive-grid.cf-product-clean-grid.cf-article-product-recommendations { grid-template-columns: 1fr; }
}

/* Compact homepage certificate cards: larger document, less empty space. */
.cf-home-certificate-set { gap: 12px; padding-right: 12px; }
.cf-home-certificate-item {
  width: 120px;
  gap: 4px;
  padding: 7px;
}
.cf-home-certificate-image {
  width: 104px;
  height: 96px;
}
.cf-home-certificate-image img {
  padding: 2px;
  transform: scale(1.1);
}
.cf-home-certificate-item > strong {
  min-height: 0;
  margin: 0;
  font-size: 10px;
  line-height: 1.2;
}
@media (max-width: 520px) {
  .cf-home-certificate-item { width: 108px; }
  .cf-home-certificate-image { width: 94px; height: 88px; }
}

/* Column-page visual system: align Solutions, Support, Blog and company pages with the homepage. */
.cf-page-hero {
  position: relative;
  height: 500px;
  min-height: 500px;
  overflow: hidden;
  border-bottom: 3px solid var(--cf-cta-yellow);
}
.cf-page-hero .site-shell {
  border-left: 3px solid var(--cf-cta-yellow);
  padding-left: 28px;
}
.cf-page-hero .eyebrow { color: #efd36f !important; }
.section-muted { background-color: #f1f3f3; }
.cf-section-title { margin-bottom: 46px; }
.cf-section-title .eyebrow { color: #bd6f2f; }

.cf-solution-overview-grid a,
.cf-solution-panels article,
.cf-solution-copy-panel,
.cf-solution-product-row article,
.cf-support-grid a,
.cf-download-list article,
.cf-video-grid article,
.cf-case-grid article,
.cf-contact-support article,
.cf-advantage-grid article,
.cf-factory-process-visual article,
.cf-heritage-timeline article,
.cf-about-partner-grid article,
.cf-news-card,
.cf-search-result,
.cf-error-actions a {
  border: 1px solid #d4dcde !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
}
.cf-solution-overview-grid a:hover,
.cf-solution-product-row article:hover,
.cf-support-grid a:hover,
.cf-video-grid article:hover,
.cf-case-grid article:hover,
.cf-news-card:hover {
  transform: none !important;
  border-color: rgba(0,105,55,.42) !important;
  box-shadow: inset 0 -3px 0 var(--cf-primary) !important;
}
.site-main .cf-solution-overview-grid h3,
.site-main .cf-solution-product-row h3,
.site-main .cf-support-grid h3,
.site-main .cf-download-list h3,
.site-main .cf-video-grid h3,
.site-main .cf-case-grid h3,
.site-main .cf-contact-support h3,
.site-main .cf-advantage-grid h3,
.site-main .cf-factory-process-visual h3,
.site-main .cf-heritage-timeline h3,
.site-main .cf-about-partner-grid h3 {
  font-size: 22px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}
.cf-solution-overview-grid div,
.cf-solution-product-row div,
.cf-video-grid div,
.cf-case-grid div { padding: 22px; }
.cf-solution-detail li,
.cf-support-checks span,
.cf-solution-strength-grid span {
  border: 1px solid #d4dcde;
  border-left: 3px solid #536b73;
  border-radius: 4px;
  background: #f8faf9;
}
.cf-solution-detail img,
.cf-support-feature img,
.cf-solution-strength img { border-radius: 4px; box-shadow: none; }
.cf-solution-media-stack img { box-shadow: none; }
.cf-solution-media-stack div { background: #26363b; box-shadow: none; }
.cf-solution-detail-rich li span,
.cf-solution-product-row span,
.cf-oem-flow span,
.cf-oem-step-media span {
  border-radius: 4px;
  background: #26363b;
  color: var(--cf-cta-yellow);
}

/* Information markers share one restrained industrial treatment; circles are reserved for true icon controls. */
.cf-home-certificate-kicker span,
.cf-heritage-timeline article > span,
.cf-factory-process-visual span,
.cf-heritage-commitments span,
.cf-product-step-list span,
.cf-solution-detail-rich li span,
.cf-solution-product-row span,
.cf-contact-response span {
  border-radius: 4px;
  border-color: #26363b;
  background: #26363b;
  color: var(--cf-cta-yellow);
  box-shadow: none;
}

.cf-support-grid .cf-icon,
.cf-contact-support .cf-icon,
.cf-download-list .cf-icon,
.cf-video-grid .cf-icon,
.cf-advantage-grid .cf-icon,
.cf-about-partner-grid .cf-icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 4px;
  background: #26363b;
  color: var(--cf-cta-yellow);
  stroke-width: 1.8;
}

/* Product and process cards: flatter materials, sharper hierarchy, no layout changes. */
.cf-product-card,
.cf-product-attribute-grid article,
.cf-product-step-list article,
.cf-product-story-summary,
.cf-heritage-commitments article {
  border: 1px solid #d4dcde !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
}
.cf-product-card::before,
.cf-product-attribute-grid article::before,
.cf-product-story-summary::before { display: none; }
.cf-product-card:hover {
  transform: none;
  border-color: #9aa9ac;
  box-shadow: inset 0 -3px 0 var(--cf-cta-yellow) !important;
}
.cf-product-card:hover .cf-product-media img { transform: scale(1.02); }
.cf-product-attribute-grid .cf-icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 4px;
  background: #26363b;
  color: var(--cf-cta-yellow);
  stroke-width: 1.8;
}
.site-main .cf-product-attribute-grid h3,
.site-main .cf-product-step-list h3,
.site-main .cf-heritage-commitments h3 {
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}
.cf-product-story-summary span { background: #e8eded; color: #40545a; }
.cf-product-story-summary button,
.cf-product-story-card button {
  background: var(--cf-primary);
  color: #fff;
  box-shadow: none;
}
.cf-product-story-summary button:hover,
.cf-product-story-card button:hover { background: #26363b; }
.cf-support-grid a { min-height: 230px; padding: 28px; }
.cf-download-list article { padding: 22px 24px; background: #f8faf9 !important; }
.cf-support-checks span { font-weight: 600; letter-spacing: .04em; }
.cf-faq-board-aside { background: #26363b; }
.cf-faq-board-aside::after { border-color: rgba(191,154,47,.16); }
.cf-faq-board-aside .eyebrow { color: #efd36f; }
.cf-faq-list details { box-shadow: none; }
.cf-faq-list details:hover { transform: none; border-color: #9aa9ac; }
.cf-faq-list details[open] { border-color: var(--cf-cta-yellow); box-shadow: none; }
.cf-faq-list summary > span,
.cf-faq-list summary::after { border-radius: 4px; }
.cf-faq-list summary > span { background: #e8eded; color: #26363b; }
.cf-faq-list details[open] summary::after { background-color: #26363b; color: #fff; }

.cf-blog-grid { gap: 18px; }
.cf-news-media { margin: 0; border-right: 1px solid #e0e5e6; }
.cf-news-body { padding: 24px; }
.site-main .cf-news-body h3 { font-size: 24px !important; line-height: 1.25 !important; }
.cf-news-meta span { background: #e8eded; color: #40545a; }
.cf-blog-filter-bar,
.cf-search-form { border: 1px solid #d4dcde; border-left: 3px solid #536b73; background: #f8faf9; }
.cf-article-intro-card,
.cf-article-content,
.cf-article-featured { box-shadow: none; }
.cf-article-content { border-color: #d4dcde; }
.cf-article-meta-row span { background: #e8eded; color: #40545a; }

.cf-page-stats article,
.cf-nav-cards a,
.cf-process-grid article,
.cf-about-mosaic article,
.cf-about-capability-strip article,
.cf-about-hub-grid a {
  border: 1px solid #d4dcde;
  border-radius: 4px;
  box-shadow: none;
}
.cf-page-stats article { border-top: 3px solid #536b73; }
.cf-nav-cards a:hover { transform: none; border-color: rgba(0,105,55,.42); box-shadow: inset 0 -3px 0 var(--cf-primary); }
.cf-process-grid span { border-radius: 4px; background: #26363b; color: var(--cf-cta-yellow); }
@media (max-width: 640px) {
  .cf-page-hero { height: 430px; min-height: 430px; }
  .cf-page-hero .site-shell { padding-left: 18px; }
  .cf-article-content { padding: 30px 24px; }
}

/* Column-page second pass: forms, article reading, archives and responsive details. */
.cf-contact-command {
  background: #26363b;
  box-shadow: none;
}
.cf-contact-command::after { border-color: rgba(191,154,47,.18); }
.cf-contact-command .eyebrow { color: #efd36f; }
.cf-contact-command .cf-contact-list .cf-icon,
.cf-contact-response span {
  border-radius: 4px;
  background: rgba(191,154,47,.14);
  color: #efd36f;
}
.cf-contact-form-card { border-color: #d4dcde; box-shadow: none; }
.cf-contact-form-top { background: #f8faf9; }
.cf-contact-form-top > span { background: #26363b; color: var(--cf-cta-yellow); }
.cf-contact-form-body .ff-el-input--label label { font-weight: 600 !important; letter-spacing: .04em; }
.cf-contact-form-body input,
.cf-contact-form-body textarea,
.cf-contact-form-body select { background: #fff !important; border-color: #cfd8da !important; }
.cf-contact-socials a:hover { transform: none; border-color: var(--cf-cta-yellow); color: #efd36f; }

.cf-article-hero { border-bottom: 3px solid var(--cf-cta-yellow); }
.cf-article-intro-card { padding: 30px 34px; border-left: 3px solid #536b73; }
.cf-article-intro-card p { font-size: 18px; line-height: 1.62; }
.cf-article-content { padding: 44px 48px; }
.cf-article-content p { font-size: 17px; line-height: 1.68; }
.cf-article-content blockquote {
  border-left: 3px solid var(--cf-cta-yellow);
  background: #f1f3f3;
  color: #26363b;
  font-size: 22px;
  font-weight: 600;
}
.cf-article-content th { background: #e8eded; font-weight: 600; }
.cf-article-action-panel { background: #26363b; }
.cf-article-action-panel .eyebrow { color: #efd36f; }
.cf-article-side-card { border-color: #d4dcde; box-shadow: none; }
.cf-article-toc a,
.cf-article-note-list span { background: #f1f3f3; font-weight: 600; }
.cf-article-toc a:hover { background: #e1e7e7; color: #26363b; }
.cf-article-help-card { background: #f1f3f3; }
.cf-article-help-card .cf-icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 4px;
  background: #26363b;
  color: var(--cf-cta-yellow);
}

.cf-blog-archive-section .cf-blog-grid,
.cf-blog-popular-section .cf-blog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.cf-blog-archive-section .cf-news-card,
.cf-blog-popular-section .cf-news-card { display: flex; flex-direction: column; min-height: 100%; }
.cf-blog-archive-section .cf-news-media,
.cf-blog-popular-section .cf-news-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-right: 0;
  border-bottom: 1px solid #e0e5e6;
}
.cf-blog-archive-section .cf-news-body,
.cf-blog-popular-section .cf-news-body { flex: 1; padding: 22px; }
.cf-blog-archive-section .cf-news-excerpt,
.cf-blog-popular-section .cf-news-excerpt { font-size: 14px; line-height: 1.6; }

.cf-search-result { padding: 24px; border-left: 3px solid #536b73 !important; }
.site-main .cf-search-result h2 { font-size: 26px !important; }
.cf-error-actions a { min-height: 210px; }
.cf-error-actions .cf-icon {
  width: 46px;
  height: 46px;
  padding: 11px;
  border-radius: 4px;
  background: #26363b;
  color: var(--cf-cta-yellow);
}
.site-main .cf-error-actions h2 { font-size: 24px !important; }

@media (max-width: 1024px) {
  .cf-blog-archive-section .cf-blog-grid,
  .cf-blog-popular-section .cf-blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cf-blog-archive-section .cf-blog-grid,
  .cf-blog-popular-section .cf-blog-grid { grid-template-columns: 1fr; }
  .cf-article-intro-card,
  .cf-article-content { padding: 26px 22px; }
  .cf-article-content p { font-size: 16px; line-height: 1.65; }
  .cf-contact-command,
  .cf-contact-form-body { padding: 26px; }
}

/* Global chrome refinement: quieter navigation, precise controls and consistent icon contrast. */
.site-header,
body.home.cf-header-scrolled .site-header,
body.home.nav-open .site-header {
  border-bottom-color: #d4dcde;
  box-shadow: none;
}
.primary-menu .sub-menu {
  border-color: #d4dcde;
  box-shadow: 0 12px 30px rgba(38,54,59,.10);
}
.primary-menu .sub-menu a:hover { background: #eef1f2; color: #26363b; }
.cf-header-search { border-bottom-color: #d4dcde; box-shadow: 0 12px 30px rgba(38,54,59,.10); }
.cf-page-hero h1 { text-shadow: none; }

.cf-conversion-rail a,
.cf-conversion-rail button {
  border-color: #d4dcde;
  color: #26363b;
  box-shadow: 0 6px 18px rgba(38,54,59,.12);
}
.cf-conversion-rail a:hover,
.cf-conversion-rail button:hover {
  transform: none;
  border-color: #26363b;
  background: #26363b;
  color: #fff;
}
.cf-conversion-rail .cf-conversion-whatsapp { border-color: var(--cf-primary); }

.footer-menu a:hover,
.social-links a:hover,
.cf-footer-contact-list a:hover {
  color: #efd36f;
  transform: none;
}
.cf-footer-contact-list .cf-icon { color: #efd36f; stroke-width: 1.8; }
.cf-footer-socials a:hover {
  transform: none;
  border-color: var(--cf-cta-yellow);
  background: rgba(191,154,47,.14);
  color: #efd36f;
}

.cf-product-filter-form {
  border-color: #d4dcde;
  border-left: 3px solid #536b73;
  background: #f8faf9;
}
.cf-product-filter-heading > div > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #26363b;
  color: var(--cf-cta-yellow);
}
.cf-product-filter-heading .cf-icon {
  width: 19px;
  height: 19px;
  color: inherit;
  stroke-width: 1.8;
}
.cf-product-filter-grid select:focus,
.cf-product-filter-grid input:focus {
  border-color: #536b73;
  box-shadow: 0 0 0 3px rgba(83,107,115,.12);
}

/* Product detail content navigation and standardized buyer-information sections. */
.cf-product-section-nav {
  position: sticky;
  top: 72px;
  z-index: 42;
  padding: 10px 0;
  border-top: 1px solid #d8e1da;
  border-bottom: 1px solid #d8e1da;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.cf-product-section-nav .site-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}
.cf-product-section-nav a {
  position: relative;
  min-height: 52px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e6e1;
  border-radius: 3px;
  background: #f2f5f3;
  color: #31473b;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.cf-product-section-nav a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  top: -11px;
  height: 3px;
  background: transparent;
}
.cf-product-section-nav a:hover { color: var(--cf-primary); border-color: #b9d0c0; background: #f8fbf9; }
.cf-product-section-nav a.is-active { color: #fff; border-color: var(--cf-primary); background: var(--cf-primary); }
.cf-product-section-nav a.is-active::after { background: var(--cf-cta-yellow); }
#product-info,
#specifications,
#applications,
#why-choose-pandora,
#faq { scroll-margin-top: 150px; }
.cf-product-standard-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.cf-product-standard-heading h2 { margin: 8px 0 14px; color: var(--cf-deep); }
.cf-product-standard-heading > p:last-child { margin: 0; color: var(--cf-muted); font-size: 16px; line-height: 1.75; }
.cf-product-application-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid #d9e2db; border-left: 1px solid #d9e2db; }
.cf-product-application-grid article {
  min-height: 112px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-right: 1px solid #d9e2db;
  border-bottom: 1px solid #d9e2db;
  background: #fff;
}
.cf-product-application-grid article > span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #edf5ef;
  color: var(--cf-primary);
}
.cf-product-application-grid .cf-icon { width: 21px; height: 21px; }
.cf-product-application-grid h3 { margin: 0; color: #263b30; font-size: 17px; line-height: 1.35; }
.cf-product-why-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 70px; align-items: start; }
.cf-product-why-intro { position: sticky; top: 170px; }
.cf-product-why-intro h2 { margin: 8px 0 18px; color: var(--cf-deep); }
.cf-product-why-intro > p:not(.eyebrow) { color: var(--cf-muted); font-size: 16px; line-height: 1.8; }
.cf-product-why-intro button {
  min-height: 48px;
  margin-top: 18px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: var(--cf-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.cf-product-advantage-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid #d6dfd8; border-left: 1px solid #d6dfd8; }
.cf-product-advantage-list article {
  min-height: 138px;
  padding: 24px;
  display: flex;
  gap: 16px;
  border-right: 1px solid #d6dfd8;
  border-bottom: 1px solid #d6dfd8;
  background: #fff;
}
.cf-product-advantage-list article > span {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #e9f3ec;
  color: var(--cf-primary);
}
.cf-product-advantage-list .cf-icon { width: 20px; height: 20px; }
.cf-product-advantage-list small { display: block; margin-bottom: 7px; color: #a88223; font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.cf-product-advantage-list h3 { margin: 0; color: #263b30; font-size: 16px; line-height: 1.45; }

@media (max-width: 900px) {
  .cf-product-section-nav { top: 72px; overflow-x: auto; }
  .cf-product-section-nav .site-shell { width: max-content; min-width: 100%; grid-template-columns: repeat(4, minmax(170px, 1fr)); }
  .cf-product-section-nav a { min-height: 48px; }
  .cf-product-application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cf-product-why-layout { grid-template-columns: 1fr; gap: 40px; }
  .cf-product-why-intro { position: static; }
}
@media (max-width: 560px) {
  .cf-product-section-nav .site-shell { grid-template-columns: repeat(4, 155px); }
  .cf-product-application-grid,
  .cf-product-advantage-list { grid-template-columns: 1fr; }
  .cf-product-application-grid article { min-height: 92px; padding: 18px; }
}

/* About detail pages: editorial depth without glossy shadows or green-heavy overlays. */
.cf-about-editorial figure,
.cf-about-profile-card,
.cf-about-closing {
  border: 1px solid #d4dcde;
  box-shadow: none;
}
.cf-about-link-stack a {
  border-color: #d4dcde;
  box-shadow: none;
  font-size: 19px;
  font-weight: 600;
}
.cf-about-link-stack a:hover {
  transform: none;
  border-color: #9aa9ac;
  box-shadow: inset 0 -3px 0 var(--cf-cta-yellow);
}
.cf-about-link-stack span { font-family: "Hanken Grotesk", Inter, sans-serif; font-weight: 600; }
.cf-about-mosaic article::after,
.cf-about-hub-grid a::after {
  background: linear-gradient(0deg, rgba(24,38,43,.92), rgba(38,54,59,.08));
}
.cf-about-mosaic article:hover img,
.cf-about-hub-grid a:hover img { transform: scale(1.02); }
.cf-about-hub-grid span {
  border: 1px solid rgba(239,211,111,.34);
  background: rgba(38,54,59,.58);
  color: #efd36f;
}
.cf-about-profile-card div {
  border: 1px solid rgba(212,220,222,.88);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

/* Product detail: crisp technical presentation and restrained interaction. */
.cf-product-detail-sticky {
  border-bottom-color: #d4dcde;
  box-shadow: none;
}
.cf-product-gallery .cf-product-main-image {
  background: #f7f9f9;
}
.cf-product-main-image > a {
  border-color: #cfd8da;
  box-shadow: none;
}
.cf-product-main-image > a:hover { background: #26363b; border-color: #26363b; }
.cf-product-quick-specs {
  border-color: #d4dcde;
  background: #d4dcde;
  gap: 1px;
}
.cf-product-quick-specs article {
  background: #f8faf9;
  border: 0 !important;
}
.cf-product-quick-specs span { color: #647278; font-weight: 600; }
.cf-product-quick-specs strong { color: #26363b; font-weight: 600; }
.cf-product-trust-row { border-top-color: #d4dcde; gap: 10px 18px; }
.cf-product-trust-row span { color: #536268; font-weight: 600; }
.cf-product-trust-row .cf-icon { color: #536b73; stroke-width: 1.8; }
.cf-product-specification-accordion {
  border-color: #d4dcde;
  box-shadow: none;
}
.cf-product-specification-table > div {
  border-bottom-color: #dfe5e6;
  background: #fff;
}
.cf-product-specification-table > div:nth-child(even) { background: #f8faf9; }
.cf-product-specification-table span { color: #647278; font-size: 13px; }
.cf-product-specification-table strong { color: #26363b; font-weight: 600; }
.cf-product-specification-table small { color: #7a878b; }

/* Homepage precision pass 01: hero through OEM, preserving the existing section structure. */
.cf-home-first-overlay {
  background: linear-gradient(90deg, rgba(19,31,36,.90) 0%, rgba(28,44,49,.62) 48%, rgba(28,44,49,.12) 100%) !important;
}
.cf-home-first-screen > .relative.w-full { max-width: var(--cf-shell); }
.cf-home-first-screen .max-w-4xl { max-width: 830px; }
.cf-home-hero-kicker {
  min-height: 32px !important;
  padding: 0 13px !important;
  border-radius: 4px !important;
  border-color: rgba(255,255,255,.34) !important;
  background: rgba(21,33,38,.34) !important;
  box-shadow: none !important;
  font-size: 10px !important;
  font-weight: 600 !important;
}
.cf-home-hero-kicker > span { border-radius: 50%; background: #efd36f !important; }
.cf-home-first-screen h1 {
  max-width: 820px;
  margin-bottom: 24px !important;
  font-size: clamp(48px, 5.6vw, 74px) !important;
  line-height: 1.02 !important;
  letter-spacing: -.035em;
  text-shadow: none;
}
.cf-home-first-screen h1 + p {
  max-width: 650px;
  margin-bottom: 34px !important;
  color: rgba(255,255,255,.80) !important;
  font-size: 18px !important;
  line-height: 1.68 !important;
}
.cf-home-action { gap: 10px; min-width: 184px; min-height: 54px; font-weight: 700; }
.cf-home-action .cf-icon { width: 17px; height: 17px; transition: transform .2s ease; }
.cf-home-action:hover { transform: none; }
.cf-home-action:hover .cf-icon { transform: translateX(3px); }
.cf-home-first-screen > .absolute.bottom-0 {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  border-top-color: rgba(255,255,255,.18) !important;
  background: rgba(18,30,35,.68) !important;
  backdrop-filter: blur(12px);
}
.cf-hero-stat-grid { gap: 0 !important; }
.cf-hero-stat-grid > div { position: relative; min-height: 64px; padding: 5px 28px; }
.cf-hero-stat-grid > div:first-child { padding-left: 0; }
.cf-hero-stat-grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: auto;
  width: 1px;
  height: 36px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.18);
}
.cf-hero-stat-grid .text-headline-sm { color: #efd36f !important; font-size: 29px !important; font-weight: 600 !important; }
.cf-hero-stat-grid .text-caption { color: rgba(255,255,255,.70) !important; font-size: 10px !important; font-weight: 600 !important; }

.cf-home-certificate-ticker { padding: 50px 0; }
.cf-home-certificate-layout { grid-template-columns: minmax(285px,.76fr) minmax(0,1.24fr); gap: 44px; }
.cf-home-certificate-copy { padding-left: 24px; border-left-width: 3px; }
.cf-home-certificate-copy::after { letter-spacing: .18em; }
.cf-home-certificate-kicker { margin-bottom: 14px; font-family: "Hanken Grotesk", Inter, sans-serif; font-weight: 600; }
.cf-home-certificate-copy h2 { margin-bottom: 12px; font-size: clamp(30px, 2.7vw, 42px); line-height: 1.06; }
.cf-home-certificate-copy > p:not(.cf-home-certificate-kicker) { margin-bottom: 18px; font-size: 14px; line-height: 1.65; }
.cf-home-certificate-copy > a { font-family: "Hanken Grotesk", Inter, sans-serif; font-weight: 700; }
.cf-home-certificate-item {
  border-color: #d4dcde;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.cf-home-certificate-item:hover {
  transform: none;
  border-color: #9aa9ac;
  background: #fff;
  box-shadow: inset 0 -3px 0 var(--cf-cta-yellow);
}
.cf-home-certificate-image { background: #f9fafa; }
.cf-home-certificate-item > strong { font-family: "Hanken Grotesk", Inter, sans-serif; font-weight: 600; letter-spacing: .08em; }

.cf-home-product-categories { padding: 96px 0 104px; background: #f4f6f6; }
.cf-home-simple-heading { max-width: 720px; margin-bottom: 32px; }
.cf-home-simple-heading > span { margin-bottom: 10px; color: #bd6f2f; font-size: 10px; font-weight: 700; letter-spacing: .20em; }
.cf-home-simple-heading h2 { margin-bottom: 13px; }
.cf-home-simple-heading p { max-width: 650px; margin: 0 auto; font-size: 16px; line-height: 1.65; }
.cf-home-category-buttons { gap: 8px; margin-bottom: 30px; }
.cf-home-category-buttons a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 17px;
  border-color: #cfd8da;
  font-size: 12px;
  font-weight: 600;
}
.cf-home-category-products { border-color: #cfd8da; }
.cf-home-category-product { min-width: 0; padding: 14px 14px 19px; border-color: #cfd8da; text-align: left; }
.cf-home-category-product > div { background: #f8f9f9; }
.cf-home-category-product img { padding: 18px; }
.cf-home-category-product:hover img { transform: scale(1.02); }
.cf-home-category-product small { margin-top: 13px; color: #647278; }
.site-main .cf-home-category-product h3 { min-height: 47px; margin: 6px 0 8px; color: #26363b; }
.cf-home-category-product span { color: #536b73; font-size: 10px; font-weight: 700; }

.cf-home-about-section { padding: 104px 0; border-top: 1px solid #e0e5e6; }
.cf-home-about-layout { gap: clamp(54px, 6vw, 86px); }
.cf-home-about-media { padding: 0; }
.cf-home-about-image { border: 1px solid #d4dcde; border-radius: 4px; background: #f5f7f7; box-shadow: none; }
.cf-home-about-image img { aspect-ratio: 4 / 3; }
.cf-home-about-title { margin-bottom: 18px; }
.cf-home-about-title h2 { margin-bottom: 0; }
.cf-home-about-lead { color: #536268; font-size: 16px; line-height: 1.72; }
.cf-home-about-lead strong { color: #26363b; font-weight: 600; }
.cf-home-about-points { gap: 0; margin: 28px 0 30px; border-top: 1px solid #d4dcde; }
.cf-home-about-points > :is(div, a) { min-height: 54px; padding: 0 4px; border-bottom: 1px solid #d4dcde; color: #26363b; font-size: 14px; }
.cf-home-about-points .cf-icon { width: 32px; height: 32px; padding: 7px; border-radius: 4px; background: #26363b; color: var(--cf-cta-yellow); }
.cf-home-about-button { gap: 9px; min-height: 50px; padding: 0 22px; box-shadow: none; }
.cf-home-about-button:hover { transform: none; box-shadow: none; }
.cf-home-about-button .cf-icon { width: 16px; height: 16px; }

.cf-home-featured-section { padding: 96px 0 104px !important; border-top: 1px solid #d9e0e1; border-bottom: 1px solid #d9e0e1; background: #eef1f2 !important; }
.cf-home-featured-section .mb-16 { margin-bottom: 34px !important; }
.cf-home-featured-section .text-pantone-349c { color: #bd6f2f !important; }
.cf-home-featured-section .tracking-\[0\.3em\] { letter-spacing: .20em !important; }
.cf-home-featured-card { min-width: 0; padding: 13px 13px 18px; border: 1px solid #cfd8da; border-radius: 4px; background: #fff; }
.cf-home-featured-media { aspect-ratio: 4 / 3 !important; margin-bottom: 15px !important; border-radius: 3px !important; background: #f7f9f9 !important; }
.cf-home-featured-media img { padding: 18px; object-fit: contain !important; }
.cf-home-featured-card:hover .cf-home-featured-media img { transform: scale(1.02) !important; }
.cf-home-featured-category { margin-bottom: 5px !important; color: #647278 !important; font-size: 10px !important; font-weight: 600 !important; }
.site-main .cf-home-featured-title { min-height: 48px; margin-bottom: 8px !important; color: #26363b !important; font-size: 18px !important; line-height: 1.3 !important; font-weight: 600 !important; }
.cf-home-featured-link { color: #536b73 !important; font-size: 11px; font-weight: 700 !important; text-transform: uppercase; letter-spacing: .06em; }
.cf-home-featured-link .cf-icon { width: 15px; height: 15px; }
.cf-home-featured-card:hover { border-color: rgba(0,105,55,.42); box-shadow: inset 0 -3px 0 var(--cf-primary); }

.cf-manufacturing-section { padding-top: 104px !important; padding-bottom: 104px !important; background: #26363b !important; }
.cf-manufacturing-section::before { opacity: .10; }
.cf-manufacturing-section::after { background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 48%, rgba(191,154,47,.05)); }
.cf-home-oem-heading { max-width: 760px; margin-right: auto; margin-left: auto; margin-bottom: 42px !important; }
.cf-home-oem-heading > span { color: #efd36f !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: .28em !important; }
.cf-home-oem-heading h2 { margin-bottom: 18px !important; }
.cf-home-oem-heading p { color: rgba(255,255,255,.68) !important; font-size: 16px !important; line-height: 1.65 !important; }
.cf-home-oem-flow { gap: 9px; }
.cf-home-oem-flow article { overflow: visible; border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.035); }
.cf-home-oem-image { aspect-ratio: 16 / 11; }
.cf-home-oem-image::after { background: linear-gradient(0deg, rgba(24,38,43,.54), transparent 58%); }
.cf-home-oem-flow article:hover img { transform: scale(1.02); }
.cf-home-oem-image span { width: 40px; height: 40px; background: #e4a267; }
.cf-home-oem-image span .cf-icon { width: 19px; height: 19px; stroke-width: 1.8; }
.cf-home-oem-flow article > div:last-child { padding: 19px 17px 21px; }
.cf-home-oem-flow h3 { margin-bottom: 8px; font-size: 18px; font-weight: 600; }
.cf-home-oem-flow p { color: rgba(255,255,255,.64); font-size: 13px; line-height: 1.62; }
.cf-home-oem-flow article:not(:last-child)::after { right: -18px; width: 25px; background: #e4a267; }
.cf-home-oem-action { margin-top: 32px; }
.cf-home-oem-action button { min-height: 50px; padding: 0 22px; }

@media (max-width: 1024px) {
  .cf-hero-stat-grid > div { padding-right: 16px; padding-left: 16px; }
  .cf-home-certificate-layout { grid-template-columns: 1fr; gap: 32px; }
  .cf-home-featured-section .grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 640px) {
  .cf-home-first-screen h1 { font-size: clamp(42px, 12vw, 56px) !important; }
  .cf-home-first-screen > .absolute.bottom-0 { padding: 14px 0 !important; }
  .cf-hero-stat-grid > div { padding: 8px 12px; }
  .cf-hero-stat-grid > div:first-child { padding-left: 12px; }
  .cf-hero-stat-grid > div:not(:last-child)::after { display: none; }
  .cf-home-product-categories,
  .cf-home-about-section,
  .cf-home-featured-section,
  .cf-manufacturing-section { padding-top: 72px !important; padding-bottom: 72px !important; }
  .cf-home-featured-section .grid { grid-template-columns: 1fr; }
}

/* Homepage precision pass 02: partnership, editorial, standards and inquiry. */
.cf-home-partners-section {
  min-height: 0;
  padding: 104px 0;
  background: #f4f6f6;
  border-color: #d9e0e1;
}
.cf-home-partners-layout { gap: clamp(48px, 6vw, 78px); }
.cf-home-partners-copy { padding-left: 24px; border-left: 3px solid #536b73; }
.cf-home-partners-copy > span { color: #bd6f2f; font-size: 10px; font-weight: 700; letter-spacing: .20em; }
.cf-home-partners-copy h2 { max-width: 510px; margin: 13px 0 16px; font-size: clamp(34px, 3.8vw, 48px); line-height: 1.07; }
.cf-home-partners-copy p { max-width: 500px; color: #5c6b70; font-size: 16px; line-height: 1.68; }
.cf-home-partners-copy button { gap: 9px; min-height: 50px; margin-top: 24px; padding: 0 21px; font-weight: 700; }
.cf-home-partners-copy button .cf-icon { width: 16px; height: 16px; }
.cf-home-partners-grid { border-color: #cfd8da; background: #cfd8da; gap: 1px; }
.cf-home-partners-grid article {
  min-height: 172px;
  padding: 24px;
  border: 0;
  background: #fff;
  transition: box-shadow .2s ease, background .2s ease;
}
.cf-home-partners-grid article:hover { background: #f9fafa; box-shadow: inset 0 -3px 0 var(--cf-primary); }
.cf-home-partners-grid article > span { width: 40px; height: 40px; border: 1px solid #d8e0dc; border-radius: 8px; background: #eef2f0; color: var(--cf-primary); }
.cf-home-partners-grid article > span .cf-icon { width: 19px; height: 19px; stroke-width: 1.8; }
.cf-home-partners-grid small { color: #7a878b; font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.cf-home-partners-grid h3 { margin: 8px 0 7px; font-size: 18px; font-weight: 600; }
.cf-home-partners-grid p { color: #647278; font-size: 13px; line-height: 1.58; }

.cf-home-news-section { padding-top: 104px; padding-bottom: 104px; }
.cf-home-news-head {
  align-items: flex-end !important;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d4dcde;
}
.cf-home-news-head > div > span { color: #bd6f2f !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: .20em !important; }
.cf-home-news-head h2 { color: #26363b !important; }
.cf-home-news-head > a { padding-bottom: 7px; border-bottom-width: 1px; border-color: #9aa9ac; color: #536b73 !important; font-size: 10px; font-weight: 700; }
.cf-home-news-head > a:hover { border-color: var(--cf-cta-yellow); color: #26363b !important; }
.cf-home-news-head > a .cf-icon { width: 15px; height: 15px; }
.cf-home-news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
.cf-home-news-section .cf-news-card {
  border-color: #d4dcde !important;
  background: #fff !important;
  box-shadow: none !important;
}
.cf-home-news-section .cf-news-card:hover { transform: none; border-color: rgba(0,105,55,.42) !important; box-shadow: inset 0 -3px 0 var(--cf-primary) !important; }
.cf-home-news-section .cf-news-media { border-right-color: #dfe5e6; }
.cf-home-news-section .cf-news-media img { transition: transform .35s ease; }
.cf-home-news-section .cf-news-card:hover .cf-news-media img { transform: scale(1.02); }
.cf-home-news-section .cf-news-body { padding: 25px; }
.cf-home-news-section .cf-news-meta span { background: #e8eded; color: #536268; }
.site-main .cf-home-news-section .cf-news-body h3 { font-size: 23px !important; line-height: 1.25 !important; font-weight: 600 !important; }
.cf-home-news-section .cf-news-excerpt { color: #647278; font-size: 14px; line-height: 1.62; }

.cf-home-standards-section {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
  border-top: 1px solid #d9e0e1 !important;
  border-bottom: 1px solid #d9e0e1 !important;
  background: #eef1f2 !important;
}
.cf-home-standards-section::before {
  background: linear-gradient(90deg, rgba(66,86,91,.055) 1px, transparent 1px), linear-gradient(180deg, rgba(66,86,91,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .50;
}
.cf-home-standards-section::after { display: none; }
.cf-home-standards-layout { gap: clamp(48px, 6vw, 76px) !important; }
.cf-home-standards-copy > span {
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #bd6f2f !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .20em !important;
}
.cf-home-standards-copy h2 { max-width: 580px; margin-top: 13px; color: #26363b; }
.cf-home-standards-copy p { max-width: 610px; margin-bottom: 30px !important; color: #5c6b70; font-size: 16px; line-height: 1.68; }
.cf-home-standards-button { gap: 9px; min-height: 50px; padding: 0 21px !important; box-shadow: none !important; }
.cf-home-standards-button .cf-icon { width: 16px; height: 16px; }
.cf-home-standards-grid { gap: 1px !important; border: 1px solid #cfd8da; background: #cfd8da; }
.cf-home-standard-card {
  min-height: 168px;
  padding: 24px !important;
  border: 0 !important;
  border-left: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
}
.cf-home-standard-card:hover { background: #f9fafa !important; box-shadow: inset 0 -3px 0 var(--cf-primary) !important; }
.cf-home-standard-card .cf-home-cert-icon { width: 43px; height: 43px; padding: 10px; background: #26363b !important; color: var(--cf-cta-yellow) !important; }
.cf-home-standard-card p:first-child { color: #26363b !important; font-size: 13px !important; font-weight: 600 !important; }
.cf-home-standard-card p:last-child { color: #647278 !important; }

.cf-home-inline-inquiry { padding: 104px 0; }
.cf-home-inline-inquiry::before { background: linear-gradient(90deg, rgba(20,31,35,.86), rgba(20,31,35,.58)); }
.cf-home-inline-inquiry-grid {
  grid-template-columns: 1.08fr .92fr;
  border-color: rgba(255,255,255,.24);
  background: rgba(16,28,32,.16);
  box-shadow: 0 18px 52px rgba(0,0,0,.16);
}
.cf-home-inline-inquiry-copy { padding: 54px 52px; background: rgba(24,42,47,.78); }
.cf-home-inline-inquiry-copy > span { color: #efd36f; font-size: 10px; font-weight: 700; letter-spacing: .20em; }
.cf-home-inline-inquiry-copy h2 { margin-top: 13px; margin-bottom: 16px; font-size: 40px; line-height: 1.08; }
.cf-home-inline-inquiry-copy > p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.68; }
.cf-home-inline-inquiry-copy ul { gap: 7px; margin: 24px 0; }
.cf-home-inline-inquiry-copy li {
  min-height: 44px;
  padding: 10px 13px;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
  font-size: 11px;
  font-weight: 600;
}
.cf-home-inline-inquiry-copy li .cf-icon { width: 18px; height: 18px; color: #efd36f; }
.cf-home-inline-inquiry-copy > a { min-height: 46px; padding: 0 16px; font-size: 12px; }
.cf-home-inline-inquiry-contact { margin-top: 24px; padding-top: 18px; }
.cf-home-inline-inquiry-contact .cf-icon { color: #efd36f; }
.cf-home-inline-inquiry-form {
  margin: 14px;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.68);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
}
.cf-home-inline-inquiry-form > div:first-child { margin-bottom: 22px; }
.cf-home-inline-inquiry-form > div:first-child > span { width: 46px; height: 46px; background: #26363b; color: var(--cf-cta-yellow); }
.cf-home-inline-inquiry-form > div:first-child > span .cf-icon { width: 20px; height: 20px; }
.cf-home-inline-inquiry-form h3 { color: #26363b; font-size: 27px; font-weight: 600; }
.cf-home-inline-inquiry-form .ff-el-group { margin-bottom: 13px !important; }
.cf-home-inline-inquiry-form input,
.cf-home-inline-inquiry-form textarea,
.cf-home-inline-inquiry-form select { min-height: 49px; border-color: #cfd8da !important; background: #fff !important; }
.cf-home-inline-inquiry-form input:focus,
.cf-home-inline-inquiry-form textarea:focus,
.cf-home-inline-inquiry-form select:focus { border-color: #536b73 !important; box-shadow: 0 0 0 3px rgba(83,107,115,.12) !important; }

@media (max-width: 1024px) {
  .cf-home-partners-layout,
  .cf-home-inline-inquiry-grid { grid-template-columns: 1fr; }
  .cf-home-news-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cf-home-partners-section,
  .cf-home-news-section,
  .cf-home-standards-section,
  .cf-home-inline-inquiry { padding-top: 72px !important; padding-bottom: 72px !important; }
  .cf-home-partners-copy { padding-left: 18px; }
  .cf-home-partners-grid,
  .cf-home-standards-grid { grid-template-columns: 1fr; }
  .cf-home-inline-inquiry-copy,
  .cf-home-inline-inquiry-form { padding: 30px 24px; }
}

/* Homepage precision pass 03: micro hierarchy, focus states and responsive finish. */
.cf-home-simple-heading > span,
.cf-home-oem-heading > span,
.cf-home-partners-copy > span,
.cf-home-news-head > div > span,
.cf-home-standards-copy > span,
.cf-home-inline-inquiry-copy > span {
  align-items: center;
  gap: 10px;
}
.cf-home-simple-heading > span,
.cf-home-oem-heading > span { display: flex; justify-content: center; }
.cf-home-partners-copy > span,
.cf-home-news-head > div > span,
.cf-home-standards-copy > span,
.cf-home-inline-inquiry-copy > span { display: inline-flex !important; }
.cf-home-simple-heading > span::before,
.cf-home-simple-heading > span::after,
.cf-home-oem-heading > span::before,
.cf-home-oem-heading > span::after,
.cf-home-partners-copy > span::before,
.cf-home-news-head > div > span::before,
.cf-home-standards-copy > span::before,
.cf-home-inline-inquiry-copy > span::before {
  content: "";
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  opacity: .68;
}

.cf-home-category-product,
.cf-home-featured-card,
.cf-home-oem-flow article,
.cf-home-partners-grid article,
.cf-home-standard-card { height: 100%; }
.cf-home-category-product,
.cf-home-featured-card { display: flex; flex-direction: column; }
.cf-home-category-product > span,
.cf-home-featured-link { margin-top: auto; }
.cf-home-category-product .cf-icon,
.cf-home-featured-link .cf-icon,
.cf-home-partners-copy button .cf-icon,
.cf-home-news-head > a .cf-icon,
.cf-home-standards-button .cf-icon,
.cf-home-certificate-copy > a .cf-icon {
  transition: transform .18s ease;
}
.cf-home-category-product:hover > span .cf-icon,
.cf-home-featured-link:hover .cf-icon,
.cf-home-partners-copy button:hover .cf-icon,
.cf-home-news-head > a:hover .cf-icon,
.cf-home-standards-button:hover .cf-icon,
.cf-home-certificate-copy > a:hover .cf-icon { transform: translateX(3px); }

.cf-home-certificate-track { animation-duration: 34s; will-change: transform; }
.cf-home-certificate-image img,
.cf-home-category-product img,
.cf-home-about-image img,
.cf-home-featured-media img,
.cf-home-oem-image img,
.cf-home-news-section img { backface-visibility: hidden; }

.cf-home-first-screen a:focus-visible,
.cf-home-first-screen button:focus-visible,
.cf-manufacturing-section button:focus-visible,
.cf-home-inline-inquiry-copy a:focus-visible {
  outline: 2px solid #efd36f;
  outline-offset: 3px;
}
.cf-home-certificate-ticker a:focus-visible,
.cf-home-product-categories a:focus-visible,
.cf-home-about-section a:focus-visible,
.cf-home-featured-section a:focus-visible,
.cf-home-partners-section button:focus-visible,
.cf-home-news-section a:focus-visible,
.cf-home-standards-section a:focus-visible,
.cf-home-inline-inquiry-form input:focus-visible,
.cf-home-inline-inquiry-form textarea:focus-visible,
.cf-home-inline-inquiry-form select:focus-visible,
.cf-home-inline-inquiry-form button:focus-visible {
  outline: 2px solid #536b73;
  outline-offset: 3px;
}
.cf-home-inline-inquiry-form label,
.cf-home-inline-inquiry-form .ff-el-input--label label {
  color: #40545a !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .05em;
}

@media (max-width: 820px) {
  .cf-home-first-screen .max-w-4xl { max-width: 680px; }
  .cf-home-first-screen h1 + p { max-width: 560px; }
  .cf-home-about-layout { gap: 42px; }
  .cf-home-news-head { align-items: flex-start !important; }
}
@media (max-width: 640px) {
  .cf-home-hero-kicker { margin-bottom: 22px !important; }
  .cf-home-first-screen h1 { margin-bottom: 18px !important; letter-spacing: -.025em; }
  .cf-home-first-screen h1 + p { margin-bottom: 26px !important; font-size: 16px !important; line-height: 1.6 !important; }
  .cf-hero-actions { gap: 10px !important; }
  .cf-home-action { width: 100%; min-width: 0; min-height: 50px; }
  .cf-home-certificate-copy h2,
  .cf-home-inline-inquiry-copy h2 { font-size: 32px; }
  .cf-home-simple-heading h2,
  .cf-home-partners-copy h2,
  .cf-home-standards-copy h2 { font-size: 32px !important; }
  .cf-home-category-product { padding: 13px 13px 18px; }
  .cf-home-about-points > :is(div, a) { min-height: 50px; }
  .cf-home-news-head { gap: 18px !important; }
  .cf-home-news-section .cf-news-card { display: block; }
  .cf-home-news-section .cf-news-media { aspect-ratio: 16 / 10; border-right: 0; border-bottom: 1px solid #dfe5e6; }
  .cf-home-inline-inquiry-form { margin: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-home-certificate-track { animation: none !important; transform: none !important; }
  .cf-home-certificate-set[aria-hidden="true"] { display: none; }
  .cf-home-certificate-window { overflow-x: auto; mask-image: none; }
  .cf-home-first-screen *,
  .cf-home-certificate-ticker *,
  .cf-home-product-categories *,
  .cf-home-about-section *,
  .cf-home-featured-section *,
  .cf-manufacturing-section *,
  .cf-home-partners-section *,
  .cf-home-news-section *,
  .cf-home-standards-section *,
  .cf-home-inline-inquiry * { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* Internal-page typography pass: intentionally excludes the homepage and single article detail. */
body:not(.home):not(.single-post) .site-main h3 {
  font-size: 22px !important;
  line-height: 1.28 !important;
  font-weight: 600 !important;
  letter-spacing: -.01em;
}
body:not(.home):not(.single-post) .site-main h4 {
  font-size: 18px !important;
  line-height: 1.34 !important;
  font-weight: 600 !important;
}
body:not(.home):not(.single-post) .site-main h5 { font-size: 16px !important; }
body:not(.home):not(.single-post) .site-main h6 { font-size: 13px !important; letter-spacing: .10em; }
body:not(.home):not(.single-post) .site-main .eyebrow {
  margin-bottom: 10px;
  font-size: 10px !important;
  line-height: 1.4;
  font-weight: 700 !important;
  letter-spacing: .17em !important;
}
body:not(.home):not(.single-post) .site-main .cf-section-title { margin-bottom: 36px; }
body:not(.home):not(.single-post) .site-main .cf-section-title h2 {
  font-size: clamp(32px, 3vw, 38px) !important;
  line-height: 1.14 !important;
}
body:not(.home):not(.single-post) .site-main .cf-section-title > p:not(.eyebrow) {
  max-width: 720px;
  color: #647278;
  font-size: 15px;
  line-height: 1.68;
}
body:not(.home):not(.single-post) .site-main .section { padding-top: 96px; padding-bottom: 96px; }

body:not(.home):not(.single-post) .cf-nav-cards h3,
body:not(.home):not(.single-post) .cf-process-grid h3,
body:not(.home):not(.single-post) .cf-cert-grid h3,
body:not(.home):not(.single-post) .cf-about-values-grid h3,
body:not(.home):not(.single-post) .cf-about-partner-grid h3,
body:not(.home):not(.single-post) .cf-advantage-grid h3,
body:not(.home):not(.single-post) .cf-factory-process-visual h3,
body:not(.home):not(.single-post) .cf-heritage-commitments h3,
body:not(.home):not(.single-post) .cf-product-attribute-grid h3,
body:not(.home):not(.single-post) .cf-product-step-list h3,
body:not(.home):not(.single-post) .cf-solution-overview-grid h3,
body:not(.home):not(.single-post) .cf-solution-product-row h3,
body:not(.home):not(.single-post) .cf-support-grid h3,
body:not(.home):not(.single-post) .cf-download-list h3,
body:not(.home):not(.single-post) .cf-video-grid h3,
body:not(.home):not(.single-post) .cf-case-grid h3,
body:not(.home):not(.single-post) .cf-oem-visual-flow h3,
body:not(.home):not(.single-post) .cf-contact-support h3,
body:not(.home):not(.single-post) .cf-error-actions h2 {
  font-size: 19px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}
body:not(.home):not(.single-post) .cf-about-timeline h3,
body:not(.home):not(.single-post) .cf-heritage-timeline h3,
body:not(.home):not(.single-post) .cf-about-mosaic h3,
body:not(.home):not(.single-post) .cf-about-hub-grid h3,
body:not(.home):not(.single-post) .cf-solution-case h3 {
  font-size: 20px !important;
  line-height: 1.28 !important;
}
body:not(.home):not(.single-post) .cf-about-profile-card strong,
body:not(.home):not(.single-post) .cf-about-advantage-media strong,
body:not(.home):not(.single-post) .cf-heritage-hero-card strong,
body:not(.home):not(.single-post) .cf-solution-media-stack strong,
body:not(.home):not(.single-post) .cf-product-story-summary strong {
  font-size: 20px !important;
  line-height: 1.25 !important;
  font-weight: 600 !important;
}
body:not(.home):not(.single-post) .cf-product-body h4,
body:not(.home):not(.single-post) .cf-product-clean-grid .cf-product-body h4 {
  font-size: 18px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}
body:not(.home):not(.single-post) .cf-news-body h3 {
  font-size: 20px !important;
  line-height: 1.3 !important;
  font-weight: 600 !important;
}
body:not(.home):not(.single-post) .cf-search-result h2 { font-size: 22px !important; line-height: 1.25 !important; }
body:not(.home):not(.single-post) .cf-faq-list summary {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}
body:not(.home):not(.single-post) .cf-faq-board-aside h2 { font-size: 30px !important; line-height: 1.14 !important; }
body:not(.home):not(.single-post) .cf-contact-list h3 { font-size: 15px !important; letter-spacing: .05em; }

body:not(.home):not(.single-post) .site-main p,
body:not(.home):not(.single-post) .site-main li { text-wrap: pretty; }
body:not(.home):not(.single-post) .cf-nav-cards p,
body:not(.home):not(.single-post) .cf-process-grid p,
body:not(.home):not(.single-post) .cf-about-values-grid p,
body:not(.home):not(.single-post) .cf-about-partner-grid p,
body:not(.home):not(.single-post) .cf-advantage-grid p,
body:not(.home):not(.single-post) .cf-factory-process-visual p,
body:not(.home):not(.single-post) .cf-solution-overview-grid p,
body:not(.home):not(.single-post) .cf-solution-product-row p,
body:not(.home):not(.single-post) .cf-support-grid p,
body:not(.home):not(.single-post) .cf-video-grid p,
body:not(.home):not(.single-post) .cf-case-grid p,
body:not(.home):not(.single-post) .cf-contact-support p {
  color: #647278;
  font-size: 14px;
  line-height: 1.62;
}

.inquiry-intro h2 { font-size: 36px; line-height: 1.1; }
.inquiry-proof strong { font-size: 20px; }
.inquiry-form-head strong { font-size: 28px; }
.site-footer h6 { font-size: 13px; font-weight: 600; letter-spacing: .10em; }

@media (max-width: 768px) {
  body:not(.home):not(.single-post) .site-main .section { padding-top: 70px; padding-bottom: 70px; }
  body:not(.home):not(.single-post) .site-main h3 { font-size: 20px !important; }
  body:not(.home):not(.single-post) .site-main .cf-section-title { margin-bottom: 28px; }
  body:not(.home):not(.single-post) .site-main .cf-section-title h2 { font-size: 30px !important; }
  body:not(.home):not(.single-post) .cf-faq-list summary { font-size: 16px; }
  .inquiry-intro h2 { font-size: 30px; }
  .inquiry-form-head strong { font-size: 24px; }
}

/* Internal-page density pass: smaller supporting components without changing grids. */
body:not(.home):not(.single-post) .cf-page-stats article {
  min-height: 190px;
  padding: 24px;
}
body:not(.home):not(.single-post) .cf-page-stats strong { margin-bottom: 14px; font-size: 30px; font-weight: 600; }
body:not(.home):not(.single-post) .cf-page-stats h3 { margin-bottom: 8px; }
body:not(.home):not(.single-post) .cf-nav-cards a,
body:not(.home):not(.single-post) .cf-process-grid article,
body:not(.home):not(.single-post) .cf-support-grid a,
body:not(.home):not(.single-post) .cf-contact-support article,
body:not(.home):not(.single-post) .cf-error-actions a {
  min-height: 0;
  padding: 24px;
}
body:not(.home):not(.single-post) .cf-support-grid .cf-icon,
body:not(.home):not(.single-post) .cf-contact-support .cf-icon,
body:not(.home):not(.single-post) .cf-advantage-grid .cf-icon,
body:not(.home):not(.single-post) .cf-about-partner-grid .cf-icon,
body:not(.home):not(.single-post) .cf-error-actions .cf-icon {
  width: 42px;
  height: 42px;
  padding: 10px;
}
body:not(.home):not(.single-post) .cf-about-values-grid article { min-height: 240px; padding: 26px 24px; }
body:not(.home):not(.single-post) .cf-about-values-grid article > .cf-icon { width: 40px; height: 40px; padding: 10px; }
body:not(.home):not(.single-post) .cf-about-values-grid h3 { margin-top: 18px; margin-bottom: 9px; }
body:not(.home):not(.single-post) .cf-about-partner-grid article,
body:not(.home):not(.single-post) .cf-advantage-grid article { padding: 24px; }
body:not(.home):not(.single-post) .cf-about-mosaic h3,
body:not(.home):not(.single-post) .cf-about-mosaic p { margin-right: 24px; margin-left: 24px; }
body:not(.home):not(.single-post) .cf-about-hub-grid div { right: 22px; bottom: 22px; left: 22px; }
body:not(.home):not(.single-post) .cf-heritage-timeline article { gap: 22px; padding: 19px; }
body:not(.home):not(.single-post) .cf-factory-process-visual span { margin: 18px 18px 0; }
body:not(.home):not(.single-post) .cf-factory-process-visual h3 { margin: 13px 18px 8px; }
body:not(.home):not(.single-post) .cf-factory-process-visual p { margin: 0 18px 20px; }

body:not(.home):not(.single-post) .cf-product-clean-grid .cf-product-body { padding: 17px 17px 19px; }
body:not(.home):not(.single-post) .cf-product-clean-grid .cf-product-body .eyebrow { font-size: 9px !important; }
body:not(.home):not(.single-post) .cf-product-card-meta { margin-bottom: 11px; }
body:not(.home):not(.single-post) .cf-product-card-meta li { padding: 4px 7px; font-size: 10px; }
body:not(.home):not(.single-post) .cf-product-purchase-panel h1 { margin-bottom: 10px; }
body:not(.home):not(.single-post) .cf-product-quick-specs { margin: 26px 0; }
body:not(.home):not(.single-post) .cf-product-quick-specs article { min-height: 86px; padding: 14px; }
body:not(.home):not(.single-post) .cf-product-specification-layout h2 { font-size: 34px !important; }
body:not(.home):not(.single-post) .cf-product-specification-table > div { min-height: 54px; padding: 13px 20px; }

body:not(.home):not(.single-post) .cf-solution-copy-panel { padding: 30px; }
body:not(.home):not(.single-post) .cf-solution-detail-rich li { grid-template-columns: 40px 1fr; gap: 12px; padding: 15px; }
body:not(.home):not(.single-post) .cf-solution-detail-rich li span { width: 40px; height: 40px; }
body:not(.home):not(.single-post) .cf-solution-product-row div { padding: 20px; }
body:not(.home):not(.single-post) .cf-solution-case-rich > div { padding: 26px; }

body:not(.home):not(.single-post) .cf-download-list article { grid-template-columns: 42px 1fr auto; padding: 19px 22px; }
body:not(.home):not(.single-post) .cf-download-list .cf-icon { width: 40px; height: 40px; padding: 9px; }
body:not(.home):not(.single-post) .cf-video-grid div,
body:not(.home):not(.single-post) .cf-case-grid div { padding: 20px; }
body:not(.home):not(.single-post) .cf-oem-visual-flow div { padding: 20px; }

body:not(.home):not(.single-post) .cf-faq-list { gap: 12px; }
body:not(.home):not(.single-post) .cf-faq-list summary {
  grid-template-columns: 38px 1fr 36px;
  gap: 14px;
  padding: 19px 21px;
}
body:not(.home):not(.single-post) .cf-faq-list summary > span { width: 38px; height: 38px; font-size: 11px; }
body:not(.home):not(.single-post) .cf-faq-list summary::after { width: 36px; height: 36px; }
body:not(.home):not(.single-post) .cf-faq-list details p { padding: 0 21px 21px 73px; font-size: 15px; line-height: 1.68; }

body:not(.home):not(.single-post) .cf-contact-command { padding: 38px; }
body:not(.home):not(.single-post) .cf-contact-command h2,
body:not(.home):not(.single-post) .cf-contact-form-card h2 { font-size: 34px !important; line-height: 1.14 !important; }
body:not(.home):not(.single-post) .cf-contact-form-top { padding: 28px 32px; }
body:not(.home):not(.single-post) .cf-contact-form-body { padding: 32px; }
body:not(.home):not(.single-post) .cf-search-result { padding: 21px; }
body:not(.home):not(.single-post) .cf-error-actions a { min-height: 180px; }

@media (max-width: 640px) {
  body:not(.home):not(.single-post) .cf-faq-list summary { grid-template-columns: 32px 1fr 32px; gap: 10px; padding: 16px; }
  body:not(.home):not(.single-post) .cf-faq-list summary > span,
  body:not(.home):not(.single-post) .cf-faq-list summary::after { width: 32px; height: 32px; }
  body:not(.home):not(.single-post) .cf-faq-list details p { padding: 0 16px 18px 58px; font-size: 14px; }
  body:not(.home):not(.single-post) .cf-contact-command,
  body:not(.home):not(.single-post) .cf-contact-form-body { padding: 26px; }
}

/* Homepage color harmony pass: one neutral industrial palette with restrained green and warm-gold accents. */
body.home {
  --cf-home-ink: #26363b;
  --cf-home-deep: #1f2e33;
  --cf-home-muted: #617075;
  --cf-home-line: #d4dcde;
  --cf-home-surface: #f7f8f8;
  --cf-home-surface-alt: #eef2f2;
  --cf-home-gold: #bf9a2f;
  --cf-home-gold-light: #e1c15f;
}
.cf-home-first-overlay {
  background: linear-gradient(90deg, rgba(19,31,36,.92) 0%, rgba(28,46,49,.66) 48%, rgba(31,51,49,.14) 100%) !important;
}
.cf-home-hero-kicker { background: rgba(31,46,51,.42) !important; }
.cf-home-hero-kicker > span,
.cf-hero-stat-grid .text-headline-sm { color: var(--cf-home-gold-light) !important; }
.cf-home-first-screen > .absolute.bottom-0 {
  border-top-color: rgba(225,193,95,.18) !important;
  background: linear-gradient(90deg, rgba(24,38,43,.78), rgba(31,48,53,.68)) !important;
}

.cf-home-certificate-ticker {
  border-top-color: rgba(212,220,222,.78);
  border-bottom-color: rgba(212,220,222,.72);
  background: linear-gradient(180deg, #f7f8f8 0%, #f1f4f4 100%);
}
.cf-home-certificate-ticker::before {
  background-image: linear-gradient(rgba(72,91,97,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(72,91,97,.055) 1px, transparent 1px);
  opacity: .62;
}
.cf-home-certificate-copy { border-left-color: var(--cf-home-gold); }
.cf-home-certificate-copy::after { color: rgba(38,54,59,.22); }
.cf-home-certificate-kicker,
.cf-home-certificate-copy > a:hover { color: #9b7721; }
.cf-home-certificate-kicker span { border-color: rgba(191,154,47,.46); }
.cf-home-certificate-copy h2,
.cf-home-certificate-copy > a,
.cf-home-certificate-item > strong { color: var(--cf-home-ink); }
.cf-home-certificate-copy > p:not(.cf-home-certificate-kicker) { color: var(--cf-home-muted); }
.cf-home-certificate-item { border-color: var(--cf-home-line); background: rgba(255,255,255,.82); }
.cf-home-certificate-image { background: rgba(255,255,255,.92); }

.cf-home-product-categories {
  background: linear-gradient(180deg, #f1f4f4 0%, #f6f8f8 100%);
}
.cf-home-simple-heading > span,
.cf-home-category-product small { color: #9b7721; }
.cf-home-simple-heading h2,
.cf-home-category-product h3 { color: var(--cf-home-ink) !important; }
.cf-home-simple-heading p,
.cf-home-category-product span { color: var(--cf-home-muted); }
.cf-home-category-buttons a { border-color: var(--cf-home-line); background: rgba(255,255,255,.62); color: var(--cf-home-ink); }
.cf-home-category-buttons a:hover { border-color: #536b73; background: #536b73; color: #fff; }
.cf-home-category-buttons a.is-active { border-color: var(--cf-primary); background: var(--cf-primary); color: #fff; }
.cf-home-category-products { border-color: var(--cf-home-line); }
.cf-home-category-product { border-color: var(--cf-home-line); background: rgba(255,255,255,.90); }
.cf-home-category-product > div { background: #f6f8f8; }

.cf-home-about-section {
  border-top-color: rgba(212,220,222,.56);
  background: linear-gradient(180deg, #fff 0%, #f8f9f9 100%);
}
.cf-home-about-image { border-color: var(--cf-home-line); background: var(--cf-home-surface-alt); }
.cf-home-about-title h2,
.cf-home-about-lead strong,
.cf-home-about-points > :is(div, a) { color: var(--cf-home-ink); }
.cf-home-about-lead { color: var(--cf-home-muted); }
.cf-home-about-points { border-top-color: var(--cf-home-line); }
.cf-home-about-points > :is(div, a) { border-bottom-color: var(--cf-home-line); }
.cf-home-about-point-icon {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #d8e0dc;
  border-radius: 8px;
  background: #eef2f0;
  color: var(--cf-primary);
}
.cf-home-about-points .cf-home-about-point-icon .cf-icon {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}
.cf-home-about-point-icon--tools .cf-icon:first-child {
  width: 25px;
  height: 25px;
}
.cf-home-about-point-icon--tools .cf-icon:last-child {
  position: absolute;
  right: 6px;
  bottom: 5px;
  width: 17px;
  height: 17px;
  padding: 2px;
  border-radius: 50%;
  background: #eef2f0;
}
.cf-home-about-point-icon--export .cf-icon:first-child {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 25px;
  height: 25px;
  opacity: .78;
}
.cf-home-about-point-icon--export .cf-icon:last-child {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 23px;
  height: 23px;
  padding: 2px;
  background: #eef2f0;
}

.cf-home-featured-section {
  border-top-color: rgba(212,220,222,.55);
  border-bottom-color: rgba(212,220,222,.72);
  background: linear-gradient(180deg, #f1f4f4 0%, #ebefef 100%) !important;
}
.cf-home-featured-section .text-pantone-349c,
.cf-home-featured-category { color: #9b7721 !important; }
.cf-home-featured-section h2,
.cf-home-featured-title { color: var(--cf-home-ink) !important; }
.cf-home-featured-section p,
.cf-home-featured-link { color: var(--cf-home-muted) !important; }
.cf-home-featured-card { border-color: var(--cf-home-line); background: rgba(255,255,255,.92); }
.cf-home-featured-media { background: #f6f8f8 !important; }

.cf-manufacturing-section {
  border-top: 1px solid rgba(225,193,95,.14);
  border-bottom: 1px solid rgba(225,193,95,.10);
  background: linear-gradient(180deg, #2a3a3f 0%, #223238 100%) !important;
}
.cf-home-oem-heading > span { color: var(--cf-home-gold-light) !important; }
.cf-home-oem-heading p { color: rgba(235,239,240,.70) !important; }
.cf-home-oem-flow article { border-color: rgba(225,232,233,.16); background: rgba(255,255,255,.035); }
.cf-home-oem-flow h3 { color: #f7f8f8; }
.cf-home-oem-flow p { color: rgba(226,232,233,.67); }
.cf-home-oem-image span { background: var(--cf-primary); color: #fff; }
.cf-home-oem-flow article:not(:last-child)::after { background: var(--cf-home-gold-light); }

.cf-home-partners-section {
  border-top-color: rgba(212,220,222,.58);
  border-bottom-color: rgba(212,220,222,.62);
  background: linear-gradient(180deg, #edf1f1 0%, #f6f8f8 100%);
}
.cf-home-partners-copy { border-left-color: #536b73; }
.cf-home-partners-copy > span,
.cf-home-partners-grid small { color: #9b7721; }
.cf-home-partners-copy h2,
.cf-home-partners-grid h3 { color: var(--cf-home-ink); }
.cf-home-partners-copy p,
.cf-home-partners-grid p { color: var(--cf-home-muted); }
.cf-home-partners-grid { border-color: var(--cf-home-line); background: var(--cf-home-line); }
.cf-home-partners-grid article { background: rgba(255,255,255,.92); }
.cf-home-partners-grid article:hover { background: #fff; }
.cf-home-partners-grid article > span { border-color: #d8e0dc; background: #eef2f0; color: var(--cf-primary); }

.cf-home-news-section { background: linear-gradient(180deg, #fff 0%, #fafbfb 100%); }
.cf-home-news-head { border-bottom-color: var(--cf-home-line); }
.cf-home-news-head > div > span { color: #9b7721 !important; }
.cf-home-news-head h2,
.cf-home-news-head > a:hover,
.cf-home-news-section .cf-news-body h3 { color: var(--cf-home-ink) !important; }
.cf-home-news-head > a,
.cf-home-news-section .cf-news-excerpt { color: var(--cf-home-muted) !important; }
.cf-home-news-section .cf-news-card { border-color: var(--cf-home-line) !important; }
.cf-home-news-section .cf-news-meta span { background: #e9eeee; color: #53656b; }

.cf-home-standards-section {
  border-top-color: rgba(212,220,222,.68) !important;
  border-bottom-color: rgba(212,220,222,.72) !important;
  background: linear-gradient(180deg, #f0f3f3 0%, #e9eeee 100%) !important;
}
.cf-home-standards-copy > span { color: #9b7721 !important; }
.cf-home-standards-copy h2,
.cf-home-standard-card p:first-child { color: var(--cf-home-ink) !important; }
.cf-home-standards-copy p,
.cf-home-standard-card p:last-child { color: var(--cf-home-muted) !important; }
.cf-home-standards-grid { border-color: var(--cf-home-line); background: var(--cf-home-line); }
.cf-home-standard-card { background: rgba(255,255,255,.94) !important; }
.cf-home-standard-card .cf-home-cert-icon { background: var(--cf-home-ink) !important; color: var(--cf-home-gold-light) !important; }

.cf-home-inline-inquiry {
  border-top: 1px solid rgba(225,193,95,.12);
  background-color: var(--cf-home-deep);
}
.cf-home-inline-inquiry::before {
  background: linear-gradient(90deg, rgba(20,31,35,.88) 0%, rgba(27,43,48,.68) 58%, rgba(30,47,51,.54) 100%);
}
.cf-home-inline-inquiry-grid { border-color: rgba(225,232,233,.22); background: rgba(22,35,40,.20); }
.cf-home-inline-inquiry-copy { background: linear-gradient(145deg, rgba(30,48,53,.86), rgba(25,40,45,.74)); }
.cf-home-inline-inquiry-copy > span,
.cf-home-inline-inquiry-copy li .cf-icon,
.cf-home-inline-inquiry-contact .cf-icon { color: var(--cf-home-gold-light); }
.cf-home-inline-inquiry-copy > p { color: rgba(235,239,240,.72); }
.cf-home-inline-inquiry-copy li { border-color: rgba(225,232,233,.16); background: rgba(255,255,255,.045); }
.cf-home-inline-inquiry-form { border-color: rgba(255,255,255,.70); background: rgba(250,251,251,.97); }
.cf-home-inline-inquiry-form > div:first-child > span { background: var(--cf-home-ink); color: var(--cf-home-gold-light); }
.cf-home-inline-inquiry-form h3 { color: var(--cf-home-ink); }

.cf-home-certificate-item:hover,
.cf-home-category-product:hover,
.cf-home-featured-card:hover,
.cf-home-partners-grid article:hover,
.cf-home-news-section .cf-news-card:hover,
.cf-home-standard-card:hover {
  box-shadow: inset 0 -3px 0 var(--cf-home-gold) !important;
}

/* Internal-page color harmony: matches the homepage while excluding single article detail. */
body:not(.home):not(.single-post) {
  --cf-deep: #26363b;
  --cf-ink: #26363b;
  --cf-muted: #617075;
  --cf-line: #d4dcde;
  --cf-lime: #e1c15f;
}
body:not(.home):not(.single-post) .site-main { color: #26363b; }
body:not(.home):not(.single-post) .site-main .section-muted {
  background-color: #f0f3f3;
  background-image: linear-gradient(180deg, #f2f4f4 0%, #edf1f1 100%);
}
body:not(.home):not(.single-post) .site-main .eyebrow,
body:not(.home):not(.single-post) .cf-section-title .eyebrow { color: #9b7721 !important; }
body:not(.home):not(.single-post) .cf-page-hero .eyebrow,
body:not(.home):not(.single-post) .cf-about-hero .eyebrow,
body:not(.home):not(.single-post) .cf-about-slider-copy .eyebrow,
body:not(.home):not(.single-post) .cf-contact-command .eyebrow,
body:not(.home):not(.single-post) .cf-faq-board-aside .eyebrow,
body:not(.home):not(.single-post) .inquiry-intro .eyebrow { color: #e1c15f !important; }
body:not(.home):not(.single-post) .cf-page-hero { border-bottom-color: #bf9a2f; }
body:not(.home):not(.single-post) .cf-page-hero .site-shell { border-left-color: #bf9a2f; }
body:not(.home):not(.single-post) .cf-section-title h2,
body:not(.home):not(.single-post) .cf-about-editorial h2,
body:not(.home):not(.single-post) .cf-story-band h2,
body:not(.home):not(.single-post) .cf-advantage-split h2,
body:not(.home):not(.single-post) .cf-heritage-closing-copy h2,
body:not(.home):not(.single-post) .cf-product-specification-layout h2,
body:not(.home):not(.single-post) .cf-solution-strength h2,
body:not(.home):not(.single-post) .cf-support-feature h2,
body:not(.home):not(.single-post) .cf-contact-map-block h2 { color: #26363b !important; }

body:not(.home):not(.single-post) .cf-about-values-grid article,
body:not(.home):not(.single-post) .cf-contact-command,
body:not(.home):not(.single-post) .cf-faq-board-aside,
body:not(.home):not(.single-post) .cf-solution-media-stack div,
body:not(.home):not(.single-post) .cf-about-capability-strip article { background: #26363b !important; }
body:not(.home):not(.single-post) .cf-about-values-grid article > .cf-icon,
body:not(.home):not(.single-post) .cf-support-grid .cf-icon,
body:not(.home):not(.single-post) .cf-contact-support .cf-icon,
body:not(.home):not(.single-post) .cf-about-partner-grid .cf-icon,
body:not(.home):not(.single-post) .cf-advantage-grid .cf-icon,
body:not(.home):not(.single-post) .cf-error-actions .cf-icon,
body:not(.home):not(.single-post) .cf-contact-form-top > span,
body:not(.home):not(.single-post) .cf-process-grid span,
body:not(.home):not(.single-post) .cf-oem-flow span,
body:not(.home):not(.single-post) .cf-oem-step-media span {
  border: 1px solid #d8e0dc !important;
  border-radius: 8px !important;
  background: #eef2f0 !important;
  color: var(--cf-primary) !important;
  box-shadow: none !important;
}
body:not(.home):not(.single-post) .cf-about-values-grid article > .cf-icon {
  border-color: #d8e0dc !important;
  background: #eef2f0 !important;
  color: var(--cf-primary) !important;
}
.cf-support-grid .cf-icon {
  border: 1px solid #dce3e0;
  border-radius: 8px;
  background: #f1f3f2 !important;
  color: var(--cf-primary) !important;
}
body:not(.home):not(.single-post) .cf-about-values-grid p,
body:not(.home):not(.single-post) .cf-contact-command p,
body:not(.home):not(.single-post) .cf-faq-board-aside p { color: rgba(239,243,244,.72); }

body:not(.home):not(.single-post) .cf-nav-cards a,
body:not(.home):not(.single-post) .cf-process-grid article,
body:not(.home):not(.single-post) .cf-cert-grid article,
body:not(.home):not(.single-post) .cf-product-card,
body:not(.home):not(.single-post) .cf-support-grid a,
body:not(.home):not(.single-post) .cf-download-list article,
body:not(.home):not(.single-post) .cf-video-grid article,
body:not(.home):not(.single-post) .cf-case-grid article,
body:not(.home):not(.single-post) .cf-contact-support article,
body:not(.home):not(.single-post) .cf-search-result,
body:not(.home):not(.single-post) .cf-error-actions a {
  border-color: #d4dcde !important;
  background-color: rgba(255,255,255,.96) !important;
}
body:not(.home):not(.single-post) .cf-nav-cards a:hover,
body:not(.home):not(.single-post) .cf-product-card:hover,
body:not(.home):not(.single-post) .cf-support-grid a:hover,
body:not(.home):not(.single-post) .cf-video-grid article:hover,
body:not(.home):not(.single-post) .cf-case-grid article:hover {
  border-color: rgba(0,105,55,.42) !important;
  box-shadow: inset 0 -3px 0 var(--cf-primary) !important;
}
body:not(.home):not(.single-post) .cf-product-category-nav a,
body:not(.home):not(.single-post) .cf-blog-category-nav a,
body:not(.home):not(.single-post) .cf-blog-nav a {
  border-color: #d4dcde;
  background: #fff;
  color: #40545a;
}
body:not(.home):not(.single-post) .cf-product-category-nav a:hover,
body:not(.home):not(.single-post) .cf-product-category-nav a.is-active,
body:not(.home):not(.single-post) .cf-blog-category-nav a:hover,
body:not(.home):not(.single-post) .cf-blog-category-nav a.is-active,
body:not(.home):not(.single-post) .cf-blog-nav a:hover,
body:not(.home):not(.single-post) .cf-blog-nav a.is-active {
  border-color: var(--cf-primary);
  background: var(--cf-primary);
  color: #fff;
}
body:not(.home):not(.single-post) .cf-product-category-nav {
  padding-bottom: 7px;
}
body:not(.home):not(.single-post) .cf-product-category-nav a.is-active {
  position: relative;
}
body:not(.home):not(.single-post) .cf-product-category-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--cf-primary);
  transform: translateX(-50%);
}
body:not(.home):not(.single-post) .cf-product-filter-form,
body:not(.home):not(.single-post) .cf-blog-filter-bar,
body:not(.home):not(.single-post) .cf-search-form {
  border-color: #d4dcde;
  border-left-color: #536b73;
  background: #f7f9f9;
}
body:not(.home):not(.single-post) .cf-faq-list details[open] { border-color: #bf9a2f; }
body:not(.home):not(.single-post) .cf-faq-list summary > span { background: #e8eded; color: #40545a; }
body:not(.home):not(.single-post) .cf-faq-list details[open] summary::after { background-color: #26363b; color: #fff; }
body:not(.home):not(.single-post) .cf-product-specification-table > div:nth-child(even) { background: #f3f6f6; }
body:not(.home):not(.single-post) .cf-product-quick-specs article { background: #f6f8f8; }

body:not(.home):not(.single-post) .site-main a:focus-visible,
body:not(.home):not(.single-post) .site-main button:focus-visible,
body:not(.home):not(.single-post) .site-main input:focus-visible,
body:not(.home):not(.single-post) .site-main textarea:focus-visible,
body:not(.home):not(.single-post) .site-main select:focus-visible {
  outline: 2px solid #536b73;
  outline-offset: 3px;
}

/* Micro-component finish: forms, crumbs, chips, pagination, modal and footer. */
.inquiry-backdrop { background: rgba(16,27,31,.76); backdrop-filter: blur(7px); }
.inquiry-panel {
  border-color: rgba(212,220,222,.44);
  background: #fff;
  box-shadow: 0 24px 80px rgba(9,18,21,.30);
}
.inquiry-close {
  right: 16px;
  top: 16px;
  width: 44px;
  height: 44px;
  border: 1px solid #d4dcde;
  border-radius: 4px;
  color: #40545a;
  box-shadow: none;
}
.inquiry-close:hover { transform: none; border-color: #26363b; background: #26363b; color: #fff; }
.inquiry-close .cf-icon { width: 20px; height: 20px; stroke-width: 1.8; }
.inquiry-intro {
  padding: 44px 38px;
  background: linear-gradient(150deg, #2a3a3f, #223238 68%, #1f2e33);
}
.inquiry-intro::after { border-color: rgba(225,193,95,.13); }
.inquiry-intro .eyebrow { color: #e1c15f !important; font-size: 10px !important; font-weight: 700 !important; letter-spacing: .18em !important; }
.inquiry-intro h2 { margin-bottom: 15px; font-size: 34px; line-height: 1.12; }
.inquiry-intro > p { color: rgba(239,243,244,.72); font-size: 15px; line-height: 1.66; }
.inquiry-points { gap: 8px; margin-top: 28px; }
.inquiry-points span {
  grid-template-columns: 24px 1fr;
  min-height: 44px;
  padding: 10px 12px;
  border-color: rgba(225,232,233,.16);
  background: rgba(255,255,255,.045);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 600;
}
.inquiry-points .cf-icon { width: 19px; height: 19px; color: #e1c15f; stroke-width: 1.8; }
.inquiry-proof { margin-top: 28px; padding-top: 22px; border-top-color: rgba(225,232,233,.17); }
.inquiry-proof strong { margin-bottom: 7px; font-size: 19px; font-weight: 600; }
.inquiry-proof p { color: rgba(239,243,244,.68); font-size: 13px; line-height: 1.6; }
.inquiry-form-wrap { padding: 42px 40px 36px; background: #f7f9f9; }
.inquiry-form-head { grid-template-columns: 48px 1fr; gap: 14px; padding-right: 48px; margin-bottom: 22px; }
.inquiry-form-head > span { width: 48px; height: 48px; background: #26363b; color: #e1c15f; }
.inquiry-form-head .cf-icon { width: 22px; height: 22px; stroke-width: 1.8; }
.inquiry-form-head strong { color: #26363b; font-size: 26px; font-weight: 600; }
.inquiry-form-head p { color: #617075; font-size: 13px; line-height: 1.55; }
.inquiry-panel .ff-el-group,
.cf-contact-form-body .ff-el-group { margin-bottom: 14px !important; }
.inquiry-panel .ff-el-input--label label,
.cf-contact-form-body .ff-el-input--label label {
  color: #40545a !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .05em;
}
.form-embed input,
.form-embed textarea,
.form-card input,
.form-card textarea,
.inquiry-panel input,
.inquiry-panel textarea,
.inquiry-panel select,
.cf-contact-form-body input,
.cf-contact-form-body textarea,
.cf-contact-form-body select {
  min-height: 48px;
  border-color: #cfd8da !important;
  color: #26363b !important;
  font-size: 14px !important;
  padding: 11px 13px !important;
}
.inquiry-panel textarea,
.cf-contact-form-body textarea { min-height: 120px; }
.inquiry-panel input:focus,
.inquiry-panel textarea:focus,
.inquiry-panel select:focus,
.cf-contact-form-body input:focus,
.cf-contact-form-body textarea:focus,
.cf-contact-form-body select:focus {
  border-color: #536b73 !important;
  box-shadow: 0 0 0 3px rgba(83,107,115,.12) !important;
}

.cf-product-breadcrumb,
.cf-product-story-breadcrumb {
  color: #7a878b;
  font-size: 11px;
  font-weight: 600;
}
.cf-product-breadcrumb { padding: 14px 0; border-bottom-color: #d4dcde; background: #f4f6f6; }
.cf-product-breadcrumb a,
.cf-product-story-breadcrumb a { color: #536b73; }
.cf-product-breadcrumb a:hover,
.cf-product-story-breadcrumb a:hover { color: var(--cf-primary); }
.cf-product-breadcrumb strong,
.cf-product-story-breadcrumb strong { color: #26363b; font-weight: 600; }

body:not(.single-post) .cf-product-meta-tags { gap: 7px; margin: 20px 0; }
body:not(.single-post) .cf-product-meta-tags span,
body:not(.single-post) .cf-blog-tag-chips a,
body:not(.single-post) .cf-news-meta span,
body:not(.single-post) .cf-product-card-meta li {
  border: 1px solid #d7dfe1;
  border-radius: 4px;
  background: #e9eeee;
  color: #53656b;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: .05em;
}
body:not(.single-post) .cf-product-meta-tags span { padding: 6px 9px; }
body:not(.single-post) .cf-blog-tag-chips { gap: 7px; margin: 16px 0 28px; }
body:not(.single-post) .cf-blog-tag-chips > span { color: #7a878b; font-size: 10px; font-weight: 600; }
body:not(.single-post) .cf-blog-tag-chips a { padding: 6px 9px; }
body:not(.single-post) .cf-blog-tag-chips a:hover { border-color: var(--cf-primary); background: var(--cf-primary); color: #fff; }

body:not(.home):not(.single-post) .cf-product-filter-grid label > span,
body:not(.home):not(.single-post) .cf-blog-filter-bar label,
body:not(.home):not(.single-post) .cf-search-form label {
  color: #536268;
  font-size: 10px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: .07em;
}
body:not(.home):not(.single-post) .cf-product-filter-grid select,
body:not(.home):not(.single-post) .cf-product-filter-grid input,
body:not(.home):not(.single-post) .cf-blog-filter-bar select,
body:not(.home):not(.single-post) .cf-blog-filter-bar input,
body:not(.home):not(.single-post) .cf-search-form input[type="search"] {
  min-height: 46px;
  border-color: #cfd8da;
  color: #26363b;
  font-size: 13px;
}
body:not(.home):not(.single-post) .cf-product-filter-grid > button,
body:not(.home):not(.single-post) .cf-blog-filter-bar button,
body:not(.home):not(.single-post) .cf-search-form button,
body:not(.home):not(.single-post) .cf-search-form input[type="submit"] {
  min-height: 46px;
  padding: 0 18px;
  font-size: 11px;
  font-weight: 700;
}

.navigation.pagination { margin-top: 34px; }
.nav-links { gap: 6px; }
.nav-links .page-numbers {
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border-color: #d4dcde;
  color: #40545a;
  font-size: 11px;
  font-weight: 600;
}

.site-footer {
  padding: 68px 0 36px;
  border-top: 1px solid rgba(225,193,95,.12);
  background: linear-gradient(180deg, #2b3235 0%, #252b2e 100%);
}
.footer-grid { gap: 36px; }
.footer-logo,
.cf-footer-logo { margin-bottom: 20px; }
.footer-brand p { color: rgba(232,236,237,.68); font-size: 13px; line-height: 1.65; }
.site-footer h6 { margin-bottom: 18px; color: #f4f6f6; font-size: 12px; letter-spacing: .11em; }
.footer-menu a,
.social-links a { margin-bottom: 9px; color: rgba(232,236,237,.68); font-size: 12px; line-height: 1.45; }
.cf-footer-contact-list { gap: 12px; }
.cf-footer-contact-list p { grid-template-columns: 21px 1fr; gap: 10px; color: rgba(232,236,237,.70); font-size: 12px; line-height: 1.58; }
.cf-footer-contact-list .cf-icon { width: 18px; height: 18px; color: #e1c15f; }
.cf-footer-socials a { width: 42px; height: 42px; }
.cf-footer-bottom { margin-top: 48px; padding-top: 22px; border-top-color: rgba(232,236,237,.10); font-size: 11px; }
.cf-footer-bottom div { gap: 20px; font-size: 10px; }

@media (max-width: 640px) {
  .inquiry-intro,
  .inquiry-form-wrap { padding: 30px 24px; }
  .inquiry-form-head { grid-template-columns: 42px 1fr; padding-right: 42px; }
  .inquiry-form-head > span { width: 42px; height: 42px; }
  .inquiry-form-head strong { font-size: 23px; }
  .site-footer { padding-top: 54px; }
}

/* About timeline year markers use the primary brand green. */
.cf-about-timeline article > span {
  border-color: var(--cf-primary) !important;
  background: var(--cf-primary) !important;
  color: #fff !important;
}

/* About certificates: the first document follows the same scale as the adjacent card. */
.cf-about-certificate-row a:first-child img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
}

.cf-home-certificate-copy h2 { margin-bottom: 20px; }

/* Homepage certificate ticker: tighter vertical rhythm. */
.cf-home-certificate-ticker { padding-top: 30px; padding-bottom: 30px; }
.cf-home-certificate-layout { gap: 38px; }
.cf-home-certificate-copy { align-self: center; padding-top: 10px; padding-bottom: 10px; }
.cf-home-certificate-kicker { margin-bottom: 8px; }
.cf-home-certificate-copy h2 {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 38px);
}
.cf-home-certificate-item { padding: 6px; }
.cf-home-certificate-image {
  width: 104px;
  height: 82px;
}
@media (max-width: 520px) {
  .cf-home-certificate-ticker { padding-top: 34px; padding-bottom: 34px; }
}

/* Homepage review adjustments from visual feedback. */
.cf-home-oem-flow h3,
.site-main .cf-home-oem-flow h3 {
  font-size: 18px !important;
  line-height: 1.25 !important;
}
.cf-home-partners-grid h3,
.site-main .cf-home-partners-grid h3 {
  font-size: 20px !important;
  line-height: 1.28 !important;
}
.cf-home-standard-card p:first-child,
.site-main .cf-home-standard-card p:first-child {
  font-size: 18px !important;
  line-height: 1.3 !important;
}
.cf-hero-stat-grid [data-stat-count] {
  display: inline-block;
  min-width: 6ch;
  color: #efd36f !important;
  font-size: 33px !important;
  font-variant-numeric: tabular-nums lining-nums;
  white-space: nowrap;
  transform-origin: left center;
  will-change: transform, opacity;
}
.cf-hero-stat-grid [data-stat-count].is-counting { animation: cfStatCountSettle 1.15s cubic-bezier(.22,.75,.26,1) both; }
@keyframes cfStatCountSettle {
  0% { opacity: .72; transform: translateY(5px) scale(.96); }
  68% { opacity: 1; transform: translateY(0) scale(1.018); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cf-home-certificate-ticker { border-bottom: 0 !important; }
.cf-home-product-categories { padding: 50px 0 104px; }
.cf-home-category-product > div { aspect-ratio: 3 / 2 !important; }
.cf-home-category-product img {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  object-fit: cover !important;
}
@media (max-width: 640px) {
  .cf-home-first-screen .cf-hero-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    column-gap: 0 !important;
    row-gap: 0 !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .cf-home-first-screen .cf-hero-stat-grid > div {
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 7px !important;
    min-height: 52px;
    padding: 7px 8px !important;
  }
  .cf-home-first-screen .cf-hero-stat-grid > div:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.13);
  }
  .cf-home-first-screen .cf-hero-stat-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.13);
  }
  .cf-hero-stat-grid [data-stat-count] {
    min-width: 0;
    font-size: 23px !important;
    white-space: nowrap;
  }
  .cf-home-first-screen .cf-hero-stat-grid .text-caption {
    min-width: 0;
    font-size: 8px !important;
    line-height: 1.25 !important;
    letter-spacing: .04em;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cf-hero-stat-grid [data-stat-count] { animation: none !important; transform: none !important; }
}
.cf-conversion-rail {
  top: auto;
  right: 18px;
  bottom: 64px;
  transform: none;
}
.cf-conversion-rail button[data-inquiry-open],
.cf-conversion-rail button[data-inquiry-open]:hover {
  color: #fff !important;
}
.cf-home-about-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top-color: rgba(212,220,222,.48);
  background: linear-gradient(180deg, #f6f8f8 0%, #f1f4f4 100%);
}
@media (max-width: 768px) {
  .cf-conversion-rail {
    bottom: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cf-conversion-rail .cf-back-to-top {
    width: 100%;
  }
}

/* VIP membership and protected resource hub */
.cf-vip-menu-item > a { display: flex !important; align-items: center; gap: 6px; }
.cf-vip-menu-badge { display: inline-grid; place-items: center; min-width: 28px; height: 18px; padding: 0 5px; border-radius: 2px; background: #b79536; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
body.cf-vip-modal-open { overflow: hidden; }
.cf-vip-modal { position: fixed; inset: 0; z-index: 10020; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.cf-vip-modal.is-open { opacity: 1; visibility: visible; }
.cf-vip-modal-backdrop { position: absolute; inset: 0; background: rgba(5,18,15,.84); backdrop-filter: blur(10px); }
.cf-vip-modal-panel { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; width: min(1060px, 100%); max-height: calc(100vh - 48px); overflow: auto; border: 1px solid rgba(225,197,111,.25); background: #fff; box-shadow: 0 32px 100px rgba(0,0,0,.32); transform: translateY(18px) scale(.985); transition: transform .3s cubic-bezier(.22,.8,.28,1); }
.cf-vip-modal.is-open .cf-vip-modal-panel { transform: none; }
.cf-vip-modal-close { position: absolute; top: 18px; right: 18px; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid #dce2df; background: #fff; color: #1c302a; cursor: pointer; }
.cf-vip-modal-close .cf-icon { width: 19px; }
.cf-vip-modal-intro { position: relative; padding: 64px 52px; overflow: hidden; color: #fff; background: radial-gradient(circle at 25% 10%, rgba(194,159,67,.24), transparent 36%), linear-gradient(145deg,#0b3f34,#061e1a); }
.cf-vip-modal-intro::after { content: "VIP"; position: absolute; right: -20px; bottom: -58px; color: rgba(255,255,255,.035); font: 800 180px/1 var(--cf-font-display); }
.cf-vip-crown { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; margin-bottom: 30px; border: 1px solid rgba(218,185,93,.7); color: #e1c56f; font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.cf-vip-modal-intro .eyebrow, .cf-vip-hero .eyebrow, .cf-vip-gate .eyebrow { color: #d8ba61; }
.cf-vip-modal-intro h2 { max-width: 420px; margin-bottom: 20px; font-size: 46px; line-height: 1.02; }
.cf-vip-modal-intro > p:not(.eyebrow) { color: rgba(255,255,255,.68); line-height: 1.7; }
.cf-vip-modal-intro ul { position: relative; z-index: 1; display: grid; gap: 19px; padding: 28px 0 0; margin: 28px 0 0; border-top: 1px solid rgba(255,255,255,.13); list-style: none; }
.cf-vip-modal-intro li { display: grid; grid-template-columns: 30px 1fr; gap: 14px; color: rgba(255,255,255,.56); font-size: 13px; }
.cf-vip-modal-intro li .cf-icon { color: #d8ba61; }
.cf-vip-modal-intro li strong { display: block; margin-bottom: 2px; color: #fff; font-size: 14px; }
.cf-vip-modal-auth { display: grid; align-content: center; padding: 62px 58px 48px; }
.cf-vip-auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 30px; border-bottom: 1px solid #dce2df; }
.cf-vip-auth-tabs button { position: relative; padding: 14px 8px; border: 0; background: none; color: #77817d; font-weight: 700; cursor: pointer; }
.cf-vip-auth-tabs button::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: #08734a; transform: scaleX(0); transition: transform .2s ease; }
.cf-vip-auth-tabs button.is-active { color: #10251f; }
.cf-vip-auth-tabs button.is-active::after { transform: scaleX(1); }
.cf-vip-auth-panel form { display: grid; gap: 17px; }
.cf-vip-auth label, .cf-vip-request label { display: grid; gap: 7px; color: #33473f; font-size: 12px; font-weight: 700; }
.cf-vip-auth input, .cf-vip-request input, .cf-vip-request select, .cf-vip-request textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #cfd8d4; border-radius: 0; background: #fff; color: #15241f; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.cf-vip-auth input:focus, .cf-vip-request select:focus, .cf-vip-request textarea:focus { border-color: #08734a; box-shadow: 0 0 0 3px rgba(8,115,74,.1); }
.cf-vip-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-vip-auth .cf-vip-check { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.cf-vip-auth .cf-vip-check input { width: 16px; min-height: 16px; margin: 0; }
.cf-vip-submit { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; min-height: 50px; border-radius: 0; }
.cf-vip-submit .cf-icon { width: 17px; }
.cf-vip-submit:disabled { opacity: .6; cursor: wait; }
.cf-vip-review-note { display: flex; gap: 8px; margin: 0; color: #76817c; font-size: 12px; line-height: 1.5; }
.cf-vip-review-note .cf-icon { flex: 0 0 18px; color: #9d7c20; }
.cf-vip-form-message { min-height: 20px; margin: 0; font-size: 12px; line-height: 1.5; }
.cf-vip-form-message.is-error { color: #b22f2f; }
.cf-vip-form-message.is-success { color: #08734a; }

.cf-vip-gate { position: relative; min-height: calc(100vh - 82px); display: grid; align-items: center; padding: 80px 0; overflow: hidden; color: #fff; background: linear-gradient(120deg,#061b17 0%,#0a3d32 56%,#0b5540 100%); }
.cf-vip-gate::before { content: ""; position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px); background-size: 72px 72px; }
.cf-vip-gate-glow { position: absolute; width: 520px; height: 520px; right: 6%; top: 10%; border: 1px solid rgba(216,186,97,.17); border-radius: 50%; box-shadow: 0 0 120px rgba(189,154,47,.14), inset 0 0 100px rgba(189,154,47,.08); }
.cf-vip-gate-shell { position: relative; display: grid; grid-template-columns: 1fr minmax(480px, .8fr); align-items: center; gap: 90px; }
.cf-vip-gate-copy h1 { max-width: 680px; font-size: clamp(48px,5vw,76px); line-height: .98; }
.cf-vip-gate-lead { max-width: 650px; color: rgba(255,255,255,.68); font-size: 18px; line-height: 1.7; }
.cf-vip-gate-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.cf-vip-gate-points span { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.82); font-size: 12px; }
.cf-vip-gate-points .cf-icon { width: 17px; color: #ddc46f; }
.cf-vip-gate-card { padding: 42px; color: #17231f; background: #fff; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.cf-vip-pending { padding: 26px 10px; text-align: center; }
.cf-vip-pending > span { display: grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 24px; border: 1px solid #d8c16e; color: #9b7b23; }
.cf-vip-pending h2 { font-size: 32px; }
.cf-vip-pending p:not(.eyebrow) { color: #65716c; }

.page-template-page-vip .site-main { background: #f3f5f4; }
.cf-vip-hero { position: relative; padding: 100px 0 92px; overflow: hidden; color: #fff; background: radial-gradient(circle at 78% 15%,rgba(203,172,80,.16),transparent 28%),linear-gradient(135deg,#061d18,#0a4336); }
.cf-vip-hero::after { content: "PRIVATE / 03"; position: absolute; right: -20px; bottom: -25px; color: rgba(255,255,255,.035); font-size: 118px; font-weight: 800; letter-spacing: -.05em; }
.cf-vip-hero-shell { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 340px; align-items: end; gap: 80px; }
.cf-vip-hero h1 { margin-bottom: 24px; font-size: clamp(56px,6vw,88px); line-height: .92; }
.cf-vip-hero p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.67); font-size: 18px; }
.cf-vip-member-card { padding: 28px; border: 1px solid rgba(220,193,106,.42); background: rgba(3,27,22,.48); backdrop-filter: blur(8px); }
.cf-vip-member-card > span { color: #c9b25f; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.cf-vip-member-card > strong { display: block; margin: 13px 0 4px; color: #fff; font-size: 28px; }
.cf-vip-member-card > p { margin-bottom: 24px !important; font-size: 13px !important; }
.cf-vip-member-card > div { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.15); font-size: 10px; letter-spacing: .1em; }
.cf-vip-member-card > a { display: inline-block; margin-top: 20px; color: rgba(255,255,255,.55); font-size: 12px; text-decoration: underline; }
.cf-vip-member-card > em { display: block; margin-top: 20px; color: rgba(255,255,255,.5); font-size: 11px; font-style: normal; line-height: 1.5; }
.cf-vip-demo-notice { color: #27342f; background: #f4edcf; border-bottom: 1px solid #ddcd91; }
.cf-vip-demo-notice .site-shell { display: flex; align-items: center; gap: 18px; padding-top: 13px; padding-bottom: 13px; }
.cf-vip-demo-notice strong { flex: 0 0 auto; padding: 4px 7px; background: #a88528; color: #fff; font-size: 9px; letter-spacing: .12em; }
.cf-vip-demo-notice span { font-size: 12px; }
.cf-vip-signal-strip { color: #fff; background: #b29236; }
.cf-vip-signal-strip .site-shell { display: grid; grid-template-columns: repeat(4,1fr); }
.cf-vip-signal-strip .site-shell > div { padding: 18px 26px; border-left: 1px solid rgba(255,255,255,.22); }
.cf-vip-signal-strip .site-shell > div:last-child { border-right: 1px solid rgba(255,255,255,.22); }
.cf-vip-signal-strip strong, .cf-vip-signal-strip span { display: block; }
.cf-vip-signal-strip strong { font-size: 11px; letter-spacing: .14em; }
.cf-vip-signal-strip span { opacity: .75; font-size: 11px; }
.cf-vip-section { padding: 96px 0; }
.cf-vip-section-head { display: grid; grid-template-columns: 1fr 390px; align-items: end; gap: 60px; margin-bottom: 42px; }
.cf-vip-section-head h2 { margin: 0; font-size: 42px; }
.cf-vip-section-head > p { color: #67736e; }
.cf-vip-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.cf-vip-product-card { overflow: hidden; border: 1px solid #d9dfdc; background: #fff; }
.cf-vip-product-image { position: relative; display: block; aspect-ratio: 3/2; overflow: hidden; background: #e8edeb; }
.cf-vip-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cf-vip-product-card:hover img { transform: scale(1.035); }
.cf-vip-product-image > span { position: absolute; top: 14px; left: 14px; padding: 6px 9px; background: #0a4839; color: #dfc875; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.cf-vip-product-card > div { padding: 24px; }
.cf-vip-product-card h3 { min-height: 56px; font-size: 23px; }
.cf-vip-product-card > div > a, .cf-vip-insight-grid article > a { display: inline-flex; align-items: center; gap: 8px; color: #08734a; font-size: 12px; font-weight: 700; }
.cf-vip-product-card .cf-icon, .cf-vip-insight-grid .cf-icon { width: 15px; }
.cf-vip-intel { color: #fff; background: #0c2520; }
.cf-vip-intel .cf-vip-section-head > p { color: rgba(255,255,255,.55); }
.cf-vip-insight-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.cf-vip-insight-grid article { min-height: 310px; padding: 34px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.cf-vip-insight-number { display: block; margin-bottom: 52px; color: #d6bd67; font: 700 26px/1 var(--cf-font-display); }
.cf-vip-insight-grid h3 { font-size: 25px; }
.cf-vip-insight-grid article > p:not(.eyebrow) { color: rgba(255,255,255,.55); }
.cf-vip-insight-grid article > a { color: #dbc36c; }
.cf-vip-pdf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-vip-pdf-grid article { display: grid; grid-template-columns: 52px 1fr 46px; align-items: center; gap: 18px; padding: 22px; border: 1px solid #d6ddda; background: #fff; }
.cf-vip-pdf-icon, .cf-vip-pdf-grid article > a, .cf-vip-pdf-grid article > button { display: grid; place-items: center; width: 46px; height: 52px; padding: 0; border: 0; background: #0b4b3c; color: #d9c166; }
.cf-vip-pdf-grid article > div > p { margin: 0 0 4px; color: #9b7b23; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.cf-vip-pdf-grid h3 { margin: 0 0 3px; font-size: 17px; }
.cf-vip-pdf-grid article > div > span { color: #7b8581; font-size: 11px; }
.cf-vip-pdf-grid article > a, .cf-vip-pdf-grid article > button { width: 42px; height: 42px; background: #edf1ef; color: #0b4b3c; }
.cf-vip-pdf-grid article.is-demo > button { cursor: default; opacity: .78; }
.cf-vip-empty { padding: 54px; border: 1px dashed #c8d1cd; text-align: center; background: rgba(255,255,255,.5); }
.cf-vip-empty > span { display: grid; place-items: center; width: 54px; height: 54px; margin: 0 auto 20px; background: #0b4b3c; color: #dec66e; }
.cf-vip-empty h3 { margin-bottom: 8px; }
.cf-vip-empty p { margin: 0; color: #74807b; }
.cf-vip-empty-dark { border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.03); }
.cf-vip-empty-dark p { color: rgba(255,255,255,.5); }
.cf-vip-request { color: #fff; background: linear-gradient(120deg,#0c493a,#086143); }
.cf-vip-request-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.cf-vip-request h2 { font-size: 46px; }
.cf-vip-request-shell > div > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.cf-vip-request form { display: grid; gap: 16px; padding: 34px; background: #fff; }
.cf-vip-request textarea { resize: vertical; }
.cf-vip-demo-form-note { margin: 0; color: #75807c; font-size: 11px; text-align: center; }

@media (max-width: 980px) {
  .cf-vip-modal-panel { grid-template-columns: 1fr; max-width: 680px; }
  .cf-vip-modal-intro { display: none; }
  .cf-vip-gate-shell, .cf-vip-hero-shell, .cf-vip-request-shell { grid-template-columns: 1fr; gap: 48px; }
  .cf-vip-gate-shell { max-width: 760px; }
  .cf-vip-member-card { max-width: 420px; }
  .cf-vip-product-grid, .cf-vip-insight-grid { grid-template-columns: repeat(2,1fr); }
  .cf-vip-signal-strip .site-shell { grid-template-columns: 1fr 1fr; }
  .cf-vip-section-head { grid-template-columns: 1fr; gap: 10px; }
}
@media (max-width: 640px) {
  .cf-vip-modal { padding: 10px; }
  .cf-vip-modal-auth, .cf-vip-gate-card { padding: 54px 22px 28px; }
  .cf-vip-field-row, .cf-vip-product-grid, .cf-vip-insight-grid, .cf-vip-pdf-grid { grid-template-columns: 1fr; }
  .cf-vip-gate { padding: 56px 0; }
  .cf-vip-gate-copy h1 { font-size: 44px; }
  .cf-vip-gate-lead { font-size: 16px; }
  .cf-vip-hero { padding: 70px 0; }
  .cf-vip-hero h1 { font-size: 50px; }
  .cf-vip-signal-strip .site-shell { width: 100%; }
  .cf-vip-demo-notice .site-shell { align-items: flex-start; }
  .cf-vip-signal-strip .site-shell > div { padding: 14px; }
  .cf-vip-section { padding: 66px 0; }
  .cf-vip-section-head h2, .cf-vip-request h2 { font-size: 34px; }
  .cf-vip-request form { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-vip-modal, .cf-vip-modal-panel, .cf-vip-product-image img { transition: none !important; }
}

/* Homepage certification ribbon: clean logo marks without bordered cards. */
.cf-home-certificate-window { padding: 12px 0; }
.cf-home-certificate-set { align-items: center; gap: 46px; padding-right: 46px; }
.cf-home-certificate-item.cf-home-cert-logo-item {
  width: 168px;
  min-height: 106px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #314247;
  opacity: .72;
  transition: opacity .25s ease, transform .25s ease, color .25s ease;
}
.cf-home-certificate-item.cf-home-cert-logo-item:hover {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #095540;
  opacity: 1;
  transform: translateY(-3px);
}
.cf-home-certificate-logo {
  width: 150px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: currentColor;
  filter: saturate(.75);
}
.cf-home-certificate-logo b,
.cf-home-certificate-logo em { margin: 0; font-style: normal; line-height: 1; }
.cf-home-certificate-logo .cf-logo-word { font-family: Arial, Helvetica, sans-serif; font-size: 31px; font-weight: 800; letter-spacing: -.075em; }
.cf-ce-mark {
  display: block;
  flex: 0 0 auto;
  width: 73px;
  height: 52px;
  background: currentColor;
  -webkit-mask: url('../images/ce-mark-official.png') center / contain no-repeat;
  mask: url('../images/ce-mark-official.png') center / contain no-repeat;
}
.cf-logo-sgs { font-size: 38px !important; font-weight: 800 !important; letter-spacing: -.09em !important; }
.cf-logo-iso-mark { display: flex; align-items: center; gap: 4px; }
.cf-logo-iso-mark i { width: 30px; height: 30px; border: 2px solid currentColor; border-radius: 50%; background: repeating-radial-gradient(ellipse at center,transparent 0 4px,currentColor 5px 6px,transparent 7px 9px); opacity: .85; }
.cf-logo-iso-mark b { font-family: Arial, sans-serif; font-size: 29px; letter-spacing: -.06em; }
.cf-cert-logo-iso > em { padding-left: 8px; border-left: 1px solid currentColor; font: 700 16px/1 Arial,sans-serif; }
.cf-cert-logo-tuv svg { width: 46px; height: 40px; fill: none; stroke: currentColor; stroke-width: 3; }
.cf-cert-logo-tuv > b { font: 800 31px/1 Arial,sans-serif; letter-spacing: -.04em; }
.cf-logo-rohs-check { display: grid; place-items: center; width: 34px; height: 34px; border: 2px solid currentColor; border-radius: 50%; font-size: 24px; font-weight: 800; }
.cf-logo-reach-ring { display: grid; place-items: center; width: 38px; height: 38px; border: 3px solid currentColor; border-radius: 50%; font: 800 24px/1 Arial,sans-serif; }
.cf-cert-logo-reach .cf-logo-word { font-size: 25px; letter-spacing: -.04em; }
.cf-logo-ukca { font-size: 24px !important; line-height: .72 !important; letter-spacing: -.08em !important; transform: scaleX(1.3); }
.cf-cert-logo-patent .cf-icon { width: 37px; height: 37px; stroke-width: 1.6; }
.cf-cert-logo-patent .cf-logo-word { font-size: 21px; letter-spacing: .02em; }
.cf-home-certificate-name { display: grid; gap: 3px; text-align: center; }
.cf-home-certificate-item.cf-home-cert-logo-item .cf-home-certificate-name strong {
  min-height: 0;
  margin: 0;
  color: #26363b;
  font: 700 12px/1.2 "Hanken Grotesk", Inter, sans-serif;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cf-home-certificate-name small { color: #7b888b; font-size: 9px; font-weight: 500; letter-spacing: .04em; white-space: nowrap; }
@media (max-width: 640px) {
  .cf-home-certificate-set { gap: 28px; padding-right: 28px; }
  .cf-home-certificate-item.cf-home-cert-logo-item { width: 146px; min-height: 96px; }
  .cf-home-certificate-logo { width: 132px; transform: scale(.92); }
}

/* Homepage R&D and quality management showcase. */
.cf-home-rd-quality-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: #f1f4f3;
}
.cf-home-rd-quality-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image: linear-gradient(rgba(21,65,54,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(21,65,54,.055) 1px,transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}
.cf-home-rd-quality-section > .site-shell { position: relative; z-index: 1; }
.cf-home-rd-quality-head {
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(380px,.72fr);
  align-items: end;
  gap: 100px;
  margin-bottom: 46px;
}
.cf-home-rd-quality-head > div:first-child > span,
.cf-home-quality-lab-content > span,
.cf-home-rd-team-card > div > span {
  display: block;
  margin-bottom: 15px;
  color: #9a7721;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .22em;
}
.cf-home-rd-quality-head h2 { margin: 0; color: #1e312b; font-size: clamp(42px,4.2vw,64px); line-height: .98; letter-spacing: -.035em; }
.cf-home-rd-quality-head > div:last-child > p { margin: 0 0 24px; color: #62706b; font-size: 16px; line-height: 1.75; }
.cf-home-rd-quality-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.cf-home-rd-quality-actions a { display: inline-flex; align-items: center; gap: 8px; color: #0a6447; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.cf-home-rd-quality-actions a + a { color: #6f7975; text-decoration: underline; text-underline-offset: 4px; }
.cf-home-rd-quality-actions .cf-icon { width: 16px; transition: transform .2s ease; }
.cf-home-rd-quality-actions a:hover .cf-icon { transform: translateX(4px); }
.cf-home-rd-quality-showcase { display: grid; grid-template-columns: minmax(0,1.06fr) minmax(460px,.94fr); min-height: 610px; gap: 18px; }
.cf-home-quality-lab-card,
.cf-home-rd-team-card { position: relative; overflow: hidden; background: #153c32; }
.cf-home-quality-lab-card > img,
.cf-home-rd-team-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.cf-home-quality-lab-card:hover > img,
.cf-home-rd-team-card:hover > img { transform: scale(1.035); }
.cf-home-quality-lab-overlay { position: absolute; inset: 0; background: linear-gradient(180deg,transparent 24%,rgba(4,24,19,.28) 52%,rgba(4,24,19,.94) 100%); }
.cf-home-quality-lab-content { position: absolute; right: 0; bottom: 0; left: 0; padding: 42px; color: #fff; }
.cf-home-quality-lab-content > span { color: #e0c66e; }
.cf-home-quality-lab-content h3 { max-width: 620px; margin-bottom: 12px; font-size: clamp(32px,3vw,46px); line-height: 1.02; }
.cf-home-quality-lab-content > p { max-width: 620px; margin-bottom: 24px; color: rgba(255,255,255,.7); line-height: 1.65; }
.cf-home-quality-lab-content ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.cf-home-quality-lab-content li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.23); color: rgba(255,255,255,.82); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cf-home-rd-quality-side { display: grid; grid-template-rows: 1fr auto; gap: 18px; }
.cf-home-rd-team-card { min-height: 320px; }
.cf-home-rd-team-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,31,25,.93) 0%,rgba(5,31,25,.72) 45%,rgba(5,31,25,.1) 100%); }
.cf-home-rd-team-card > div { position: absolute; z-index: 1; top: 50%; left: 34px; width: min(56%,390px); color: #fff; transform: translateY(-50%); }
.cf-home-rd-team-card > div > span { color: #e0c66e; }
.cf-home-rd-team-card h3 { margin-bottom: 10px; font-size: 29px; line-height: 1.08; }
.cf-home-rd-team-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.6; }
.cf-home-quality-capabilities { display: grid; grid-template-columns: 1fr 1fr; background: #d7dfdc; gap: 1px; }
.cf-home-quality-capabilities article { display: grid; grid-template-columns: 38px 1fr; gap: 13px; min-height: 128px; padding: 25px 22px; background: #fff; }
.cf-home-quality-capabilities i { display: grid; place-items: center; width: 38px; height: 38px; background: #0b513f; color: #dfc66d; font-style: normal; }
.cf-home-quality-capabilities i .cf-icon { width: 19px; height: 19px; }
.cf-home-quality-capabilities h4 { margin: 1px 0 6px; color: #243832; font-size: 16px; line-height: 1.2; }
.cf-home-quality-capabilities p { margin: 0; color: #71807a; font-size: 11px; line-height: 1.5; }
@media (max-width: 1080px) {
  .cf-home-rd-quality-head { grid-template-columns: 1fr; gap: 24px; }
  .cf-home-rd-quality-head > div:last-child { max-width: 720px; }
  .cf-home-rd-quality-showcase { grid-template-columns: 1fr; }
  .cf-home-quality-lab-card { min-height: 560px; }
  .cf-home-rd-team-card { min-height: 360px; }
}
@media (max-width: 640px) {
  .cf-home-rd-quality-section { padding: 70px 0; }
  .cf-home-rd-quality-head h2 { font-size: 40px; }
  .cf-home-rd-quality-showcase { min-height: 0; }
  .cf-home-quality-lab-card { min-height: 540px; }
  .cf-home-quality-lab-content { padding: 28px 22px; }
  .cf-home-rd-team-card { min-height: 420px; }
  .cf-home-rd-team-card::after { background: linear-gradient(180deg,rgba(5,31,25,.15),rgba(5,31,25,.94)); }
  .cf-home-rd-team-card > div { top: auto; right: 22px; bottom: 26px; left: 22px; width: auto; transform: none; }
  .cf-home-quality-capabilities { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-home-quality-lab-card > img,
  .cf-home-rd-team-card > img { transition: none !important; }
}

/* About page: premium animated development history. */
.cf-about-history-section {
  --cf-history-gold: #d0ae51;
  position: relative;
  overflow: hidden;
  padding: 112px 0 86px;
  color: #fff;
  background: #071f1a;
  isolation: isolate;
}
.cf-about-history-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: linear-gradient(100deg,rgba(4,25,20,.90) 5%,rgba(5,35,28,.80) 48%,rgba(4,27,22,.68)),var(--cf-history-bg);
  background-position: center;
  background-size: cover;
}
.cf-about-history-section::after {
  content: "1993";
  position: absolute;
  z-index: -1;
  right: -1.5vw;
  top: 54px;
  color: rgba(255,255,255,.026);
  font: 800 clamp(170px,24vw,360px)/.8 var(--cf-font-display);
  letter-spacing: -.08em;
  pointer-events: none;
}
.cf-about-history-head { display: grid; grid-template-columns: 1.12fr .72fr; align-items: end; gap: 110px; margin-bottom: 72px; }
.cf-about-history-head .eyebrow { margin-bottom: 18px; color: var(--cf-history-gold); font-size: 10px; font-weight: 800; letter-spacing: .23em; }
.cf-about-history-head h2 { margin: 0; color: #fff; font-size: clamp(45px,5vw,72px); line-height: .96; letter-spacing: -.04em; }
.cf-about-history-head > div:last-child { padding-left: 26px; border-left: 1px solid rgba(208,174,81,.48); }
.cf-about-history-head > div:last-child > span { display: block; margin-bottom: 13px; color: var(--cf-history-gold); font-size: 10px; font-weight: 800; letter-spacing: .2em; }
.cf-about-history-head > div:last-child > p { margin: 0; color: rgba(255,255,255,.59); font-size: 15px; line-height: 1.75; }
.cf-about-history-stage { position: relative; padding-top: 0; }
.cf-about-history-rail { position: absolute; top: 18px; right: 8%; left: 8%; height: 1px; overflow: visible; background: rgba(255,255,255,.16); }
.cf-about-history-rail > span { position: absolute; inset: -1px 0 auto; height: 3px; background: linear-gradient(90deg,#8a6c20,var(--cf-history-gold),#f0d98c); box-shadow: 0 0 18px rgba(208,174,81,.34); transform-origin: left center; }
.cf-about-history-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 14px; }
.cf-about-history-grid article { position: relative; min-width: 0; }
.cf-about-history-marker { position: relative; z-index: 2; display: grid; justify-items: center; min-height: 88px; }
.cf-about-history-marker i { display: block; width: 13px; height: 13px; margin-top: 12px; border: 3px solid #0b3027; border-radius: 50%; background: var(--cf-history-gold); box-shadow: 0 0 0 1px var(--cf-history-gold),0 0 22px rgba(208,174,81,.35); }
.cf-about-history-marker strong { margin-top: 15px; color: #fff; font: 700 20px/1 var(--cf-font-display); letter-spacing: -.02em; }
.cf-about-history-card { position: relative; min-height: 280px; padding: 26px 23px 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(150deg,rgba(255,255,255,.095),rgba(255,255,255,.035)); backdrop-filter: blur(8px); transition: border-color .3s ease, background .3s ease, transform .3s ease; }
.cf-about-history-grid article:nth-child(even) .cf-about-history-card { margin-top: 44px; }
.cf-about-history-card::after { content: ""; position: absolute; right: -45px; bottom: -62px; width: 140px; height: 140px; border: 1px solid rgba(208,174,81,.13); border-radius: 50%; box-shadow: 0 0 0 24px rgba(208,174,81,.025),0 0 0 48px rgba(208,174,81,.018); }
.cf-about-history-card:hover { border-color: rgba(208,174,81,.65); background: linear-gradient(150deg,rgba(255,255,255,.13),rgba(208,174,81,.055)); transform: translateY(-7px); }
.cf-about-history-card > span { display: block; margin-bottom: 34px; color: var(--cf-history-gold); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.cf-about-history-card > .cf-icon { width: 27px; height: 27px; margin-bottom: 18px; color: rgba(222,196,112,.86); stroke-width: 1.5; }
.cf-about-history-card h3 { margin-bottom: 10px; color: #fff; font-size: 21px; line-height: 1.12; }
.cf-about-history-card p { margin: 0; color: rgba(255,255,255,.53); font-size: 12px; line-height: 1.65; }
.cf-about-history-foot { display: grid; grid-template-columns: auto 1fr auto 1fr auto; align-items: center; gap: 16px; margin-top: 64px; color: rgba(255,255,255,.38); font-size: 9px; font-weight: 700; letter-spacing: .18em; }
.cf-about-history-foot div { height: 1px; background: rgba(255,255,255,.13); }
.cf-about-history-foot strong { color: var(--cf-history-gold); font-size: 9px; letter-spacing: .18em; }
[data-history-item],
[data-history-head],
[data-history-progress] { will-change: transform, opacity; }
@media (max-width: 1080px) {
  .cf-about-history-head { grid-template-columns: 1fr; gap: 30px; }
  .cf-about-history-head > div:last-child { max-width: 680px; }
  .cf-about-history-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .cf-about-history-rail { display: none; }
  .cf-about-history-marker { justify-items: start; min-height: 75px; }
  .cf-about-history-marker i { margin-left: 12px; }
  .cf-about-history-grid article:nth-child(even) .cf-about-history-card { margin-top: 0; }
}
@media (max-width: 680px) {
  .cf-about-history-section { padding: 76px 0 64px; }
  .cf-about-history-section::after { top: 40px; font-size: 150px; }
  .cf-about-history-head { margin-bottom: 50px; }
  .cf-about-history-head h2 { font-size: 42px; }
  .cf-about-history-grid { position: relative; grid-template-columns: 1fr; gap: 0; padding-left: 28px; }
  .cf-about-history-grid::before { content: ""; position: absolute; top: 16px; bottom: 20px; left: 7px; width: 1px; background: rgba(255,255,255,.18); }
  .cf-about-history-grid article { display: grid; grid-template-columns: 1fr; padding-bottom: 24px; }
  .cf-about-history-marker { position: static; display: flex; align-items: center; gap: 14px; min-height: 54px; }
  .cf-about-history-marker i { position: absolute; left: -28px; margin: 0; }
  .cf-about-history-marker strong { margin: 0; }
  .cf-about-history-card { min-height: 0; padding: 24px 22px; }
  .cf-about-history-card > span { margin-bottom: 24px; }
  .cf-about-history-foot { margin-top: 34px; grid-template-columns: auto 1fr auto; }
  .cf-about-history-foot strong,
  .cf-about-history-foot div:nth-of-type(2) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-about-history-card { transition: border-color .2s ease, background .2s ease; }
  [data-history-item], [data-history-head], [data-history-progress] { will-change: auto; }
}

/* Context-aware FAQ system: three visual treatments across the site. */
.cf-context-faq { position: relative; overflow: hidden; padding: 104px 0; }
.cf-context-faq-head > span { display: block; margin-bottom: 17px; color: #9b7721; font-size: 9px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.cf-context-faq-head h2 { margin-bottom: 18px; color: #20332d; font-size: clamp(38px,3.7vw,54px); line-height: 1.02; letter-spacing: -.035em; }
.cf-context-faq-head > p { color: #68746f; font-size: 15px; line-height: 1.72; }
.cf-context-faq-head > p strong { color: #31443d; font-weight: 700; }
.cf-context-faq-head > button { display: inline-flex; align-items: center; gap: 9px; min-height: 46px; padding: 0 18px; border: 1px solid #0a6648; background: transparent; color: #0a6648; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; cursor: pointer; transition: background .2s ease,color .2s ease; }
.cf-context-faq-head > button:hover { background: #0a6648; color: #fff; }
.cf-context-faq-head > button .cf-icon { width: 16px; height: 16px; }
.cf-context-faq-list details { position: relative; }
.cf-context-faq-list summary { display: grid; align-items: center; cursor: pointer; list-style: none; }
.cf-context-faq-list summary::-webkit-details-marker { display: none; }
.cf-context-faq-list summary > span { color: #a27d22; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.cf-context-faq-list summary > strong { color: #263832; font-size: 17px; font-weight: 650; line-height: 1.38; }
.cf-context-faq-list summary > i { position: relative; display: block; width: 30px; height: 30px; border: 1px solid #c9d1cd; border-radius: 50%; }
.cf-context-faq-list summary > i::before,
.cf-context-faq-list summary > i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: currentColor; transform: translate(-50%,-50%); transition: transform .25s ease; }
.cf-context-faq-list summary > i::after { transform: translate(-50%,-50%) rotate(90deg); }
.cf-context-faq-list details[open] summary > i::after { transform: translate(-50%,-50%) rotate(0); }
.cf-context-faq-list details > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.cf-context-faq-list details[open] > div { grid-template-rows: 1fr; }
.cf-context-faq-list details > div > p { min-height: 0; overflow: hidden; margin: 0; color: #6c7873; font-size: 14px; line-height: 1.72; }

/* Editorial: asymmetric reading column for company and general pages. */
.cf-context-faq--editorial { background: #f3f0e8; }
.page-id-12 .cf-context-faq--editorial { background: #fff; }
.cf-context-faq--editorial::before { content: "FAQ"; position: absolute; left: -22px; bottom: -35px; color: rgba(45,64,57,.035); font: 800 210px/.8 var(--cf-font-display); letter-spacing: -.08em; }
.cf-context-faq--editorial .cf-context-faq-shell { display: grid; grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: 110px; align-items: start; }
.cf-context-faq--editorial .cf-context-faq-head { position: sticky; top: 110px; }
.cf-context-faq--editorial .cf-context-faq-head h2 { max-width: 470px; }
.cf-context-faq--editorial .cf-context-faq-list { counter-reset: faq; border-top: 1px solid #cbd2ce; }
.cf-context-faq--editorial .cf-context-faq-list details { border-bottom: 1px solid #cbd2ce; }
.cf-context-faq--editorial .cf-context-faq-list summary { grid-template-columns: 38px 1fr 34px; gap: 18px; min-height: 84px; padding: 18px 0; }
.cf-context-faq--editorial .cf-context-faq-list summary > strong { font-size: 18px; font-weight: 600; }
.cf-context-faq--editorial .cf-context-faq-list details > div > p { padding: 0 52px 26px 56px; }

/* Technical: modular two-column sourcing cards for products and support. */
.cf-context-faq--technical { background: #f6f8f7; }
.cf-context-faq--technical::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: linear-gradient(rgba(25,63,52,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(25,63,52,.045) 1px,transparent 1px); background-size: 46px 46px; }
.cf-context-faq--technical .cf-context-faq-shell { position: relative; z-index: 1; }
.cf-context-faq--technical .cf-context-faq-head { display: grid; grid-template-columns: .95fr 1.05fr; column-gap: 90px; align-items: end; margin-bottom: 46px; }
.cf-context-faq--technical .cf-context-faq-head > span { grid-column: 1 / -1; }
.cf-context-faq--technical .cf-context-faq-head h2 { margin: 0; }
.cf-context-faq--technical .cf-context-faq-head > p { margin: 0 0 18px; }
.cf-context-faq--technical .cf-context-faq-head > button { grid-column: 2; justify-self: start; }
.cf-context-faq--technical .cf-context-faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cf-context-faq--technical .cf-context-faq-list details { align-self: start; border: 1px solid #d4ddda; background: rgba(255,255,255,.92); transition: border-color .2s ease,box-shadow .2s ease; }
.cf-context-faq--technical .cf-context-faq-list details[open] { border-color: #8ba599; box-shadow: 0 16px 38px rgba(20,54,44,.07); }
.cf-context-faq--technical .cf-context-faq-list summary { grid-template-columns: 32px 1fr 32px; gap: 13px; min-height: 92px; padding: 20px; }
.cf-context-faq--technical .cf-context-faq-list summary > strong { font-size: 15px; }
.cf-context-faq--technical .cf-context-faq-list details > div > p { padding: 0 64px 23px 65px; font-size: 13px; }

/* Field: dark intelligence matrix for application and membership pages. */
.cf-context-faq--field { color: #fff; background: radial-gradient(circle at 85% 5%,rgba(204,169,73,.12),transparent 28%),#082820; }
.cf-context-faq--field::after { content: "BUYER / QUESTIONS"; position: absolute; right: -18px; bottom: -14px; color: rgba(255,255,255,.026); font: 800 78px/1 var(--cf-font-display); letter-spacing: -.04em; }
.cf-context-faq--field .cf-context-faq-head { display: grid; grid-template-columns: .8fr 1.2fr; column-gap: 100px; align-items: end; margin-bottom: 44px; }
.cf-context-faq--field .cf-context-faq-head > span { grid-column: 1 / -1; color: #d3b65e; }
.cf-context-faq--field .cf-context-faq-head h2 { margin: 0; color: #fff; }
.cf-context-faq--field .cf-context-faq-head > p { margin: 0 0 18px; color: rgba(255,255,255,.57); }
.cf-context-faq--field .cf-context-faq-head > p strong { color: rgba(255,255,255,.86); }
.cf-context-faq--field .cf-context-faq-head > button { grid-column: 2; justify-self: start; border-color: #d3b65e; color: #e2cb7e; }
.cf-context-faq--field .cf-context-faq-head > button:hover { background: #d3b65e; color: #11231d; }
.cf-context-faq--field .cf-context-faq-list { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.cf-context-faq--field .cf-context-faq-list details { min-height: 190px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.025); transition: background .25s ease; }
.cf-context-faq--field .cf-context-faq-list details[open] { background: rgba(255,255,255,.075); }
.cf-context-faq--field .cf-context-faq-list summary { grid-template-columns: 1fr 30px; gap: 16px; min-height: 158px; align-content: start; padding: 27px; }
.cf-context-faq--field .cf-context-faq-list summary > span { grid-column: 1 / -1; margin-bottom: 34px; color: #d3b65e; }
.cf-context-faq--field .cf-context-faq-list summary > strong { color: #fff; font-size: 16px; }
.cf-context-faq--field .cf-context-faq-list summary > i { border-color: rgba(255,255,255,.24); color: #d3b65e; }
.cf-context-faq--field .cf-context-faq-list details > div > p { padding: 0 27px 28px; color: rgba(255,255,255,.57); font-size: 12px; }

/* VIP page: brighter editorial intelligence and FAQ sections. */
.cf-vip-page .cf-vip-intel {
  color: #18372e;
  background:
    linear-gradient(rgba(16,91,68,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(16,91,68,.035) 1px,transparent 1px),
    #eef3f1;
  background-size: 48px 48px;
}
.cf-vip-page .cf-vip-intel .cf-vip-section-head > p { color: #64766f; }
.cf-vip-page .cf-vip-intel .cf-vip-section-head h2 { color: #18372e; }
.cf-vip-page .cf-vip-insight-grid {
  gap: 12px;
  border: 0;
}
.cf-vip-page .cf-vip-insight-grid article {
  min-height: 300px;
  border: 1px solid #d5dfdb;
  border-radius: 12px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 14px 36px rgba(24,55,46,.055);
  transition: transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.cf-vip-page .cf-vip-insight-grid article:hover {
  transform: translateY(-4px);
  border-color: #b9ccc4;
  box-shadow: 0 20px 44px rgba(24,55,46,.09);
}
.cf-vip-page .cf-vip-insight-number { color: #ad8d2e; }
.cf-vip-page .cf-vip-insight-grid .eyebrow { color: #9b7721; }
.cf-vip-page .cf-vip-insight-grid h3,
.cf-vip-page .cf-vip-insight-grid h3 a { color: #203b32; }
.cf-vip-page .cf-vip-insight-grid article > p:not(.eyebrow) { color: #687a73; }
.cf-vip-page .cf-vip-insight-grid article > a { color: #08734a; }

.cf-vip-page .cf-context-faq--field {
  color: #203b32;
  background:
    radial-gradient(circle at 88% 8%,rgba(204,169,73,.12),transparent 28%),
    #f4f6f5;
}
.cf-vip-page .cf-context-faq--field::after { color: rgba(15,86,63,.035); }
.cf-vip-page .cf-context-faq--field .cf-context-faq-head > span { color: #9b7721; }
.cf-vip-page .cf-context-faq--field .cf-context-faq-head h2 { color: #203b32; }
.cf-vip-page .cf-context-faq--field .cf-context-faq-head > p { color: #687a73; }
.cf-vip-page .cf-context-faq--field .cf-context-faq-head > p strong { color: #203b32; }
.cf-vip-page .cf-context-faq--field .cf-context-faq-head > button {
  border-color: #08734a;
  color: #08734a;
}
.cf-vip-page .cf-context-faq--field .cf-context-faq-head > button:hover {
  background: #08734a;
  color: #fff;
}
.cf-vip-page .cf-context-faq--field .cf-context-faq-list {
  gap: 12px;
  border: 0;
}
.cf-vip-page .cf-context-faq--field .cf-context-faq-list details {
  border: 1px solid #d5dfdb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(24,55,46,.045);
}
.cf-vip-page .cf-context-faq--field .cf-context-faq-list details[open] {
  border-color: #b8cec5;
  background: #f9fbfa;
}
.cf-vip-page .cf-context-faq--field .cf-context-faq-list summary > span { color: #a38429; }
.cf-vip-page .cf-context-faq--field .cf-context-faq-list summary > strong { color: #29443b; }
.cf-vip-page .cf-context-faq--field .cf-context-faq-list summary > i {
  border-color: #c8d7d1;
  color: #08734a;
}
.cf-vip-page .cf-context-faq--field .cf-context-faq-list details > div > p { color: #687a73; }
@media (max-width: 960px) {
  .cf-context-faq--editorial .cf-context-faq-shell { grid-template-columns: 1fr; gap: 48px; }
  .cf-context-faq--editorial .cf-context-faq-head { position: static; max-width: 680px; }
  .cf-context-faq--technical .cf-context-faq-head,
  .cf-context-faq--field .cf-context-faq-head { display: block; }
  .cf-context-faq--technical .cf-context-faq-head h2,
  .cf-context-faq--field .cf-context-faq-head h2 { margin-bottom: 18px; }
  .cf-context-faq--technical .cf-context-faq-list,
  .cf-context-faq--field .cf-context-faq-list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .cf-context-faq { padding: 72px 0; }
  .cf-context-faq-head h2 { font-size: 36px; }
  .cf-context-faq--technical .cf-context-faq-list,
  .cf-context-faq--field .cf-context-faq-list { grid-template-columns: 1fr; }
  .cf-context-faq--technical .cf-context-faq-list summary { min-height: 82px; padding: 17px; }
  .cf-context-faq--technical .cf-context-faq-list details > div > p { padding: 0 50px 20px 62px; }
  .cf-context-faq--field .cf-context-faq-list details { min-height: 0; }
  .cf-context-faq--field .cf-context-faq-list summary { min-height: 0; }
  .cf-context-faq--field::after { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-context-faq-list details > div { transition: none; }
}

/* Homepage refinement pass: certificate ribbon, catalog hover, R&D and journal. */
.cf-home-about-section { padding-bottom: 82px !important; }
.cf-home-category-product:hover {
  border-color: #9ebcaf !important;
  box-shadow: inset 0 -3px 0 var(--cf-primary) !important;
}

.cf-home-certificate-ticker::before {
  opacity: 1 !important;
  background-image:
    radial-gradient(ellipse at 7% 118%, transparent 0 112px, rgba(0,105,55,.07) 113px 114px, transparent 115px 148px, rgba(0,105,55,.045) 149px 150px, transparent 151px),
    radial-gradient(ellipse at 92% -24%, transparent 0 128px, rgba(27,101,78,.065) 129px 130px, transparent 131px 166px, rgba(27,101,78,.04) 167px 168px, transparent 169px),
    repeating-linear-gradient(112deg, transparent 0 58px, rgba(37,117,91,.026) 59px, transparent 60px 116px) !important;
  background-size: auto !important;
}
.cf-home-certificate-layout {
  grid-template-columns: minmax(310px,.56fr) minmax(0,1.44fr) !important;
  gap: 24px !important;
}
.cf-home-certificate-kicker {
  font-size: 13px !important;
  letter-spacing: .09em !important;
}
.cf-home-certificate-window { padding: 4px 0 !important; }
.cf-home-certificate-set { gap: 24px; padding-right: 24px; }
.cf-home-certificate-item.cf-home-cert-logo-item {
  width: 136px;
  min-height: 78px;
  gap: 0;
  border: 0;
}
.cf-home-certificate-logo { width: 132px; height: 68px; }
.cf-home-certificate-name { display: none !important; }
.cf-home-certificate-logo.cf-home-certificate-real-logo {
  overflow: hidden;
  padding: 1px 2px;
  border: 0;
  border-radius: 4px;
  background: #fff;
}
.cf-home-certificate-real-icon {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform: scale(1.28);
  transform-origin: center;
  transition: transform .25s ease;
}
.cf-home-certificate-item.cf-home-cert-logo-item:hover .cf-home-certificate-real-icon {
  transform: scale(1.34);
}

/* Crisp certification marks for the homepage compliance ribbon. */
.cf-home-certificate-logo { color: #667477; filter: none; }
.cf-home-certificate-logo svg { display: block; fill: none; stroke: currentColor; stroke-width: 1.6; }
.cf-cert-iso-emblem { position: relative; display: grid; width: 50px; height: 50px; place-items: center; }
.cf-cert-iso-emblem svg { position: absolute; inset: 0; width: 50px; height: 50px; opacity: .62; }
.cf-cert-iso-emblem b { position: relative; font: 900 17px/1 Arial, sans-serif; letter-spacing: 0; }
.cf-cert-iso-code { display: grid; gap: 3px; padding-left: 9px; border-left: 1px solid currentColor; }
.cf-cert-iso-code b { font: 900 17px/1 Arial, sans-serif; letter-spacing: 0; }
.cf-cert-iso-code small { font: 600 7px/1 Arial, sans-serif; letter-spacing: .1em; text-transform: uppercase; }
.cf-cert-ce-mark { font: 400 48px/.8 Arial, sans-serif; letter-spacing: -.16em; transform: scaleX(1.08); }
.cf-cert-iaf-mark { position: relative; display: grid; width: 76px; height: 54px; place-items: center; }
.cf-cert-iaf-mark svg { position: absolute; left: 0; width: 54px; height: 54px; opacity: .5; }
.cf-cert-iaf-mark b { position: relative; margin-left: 27px; font: 900 25px/1 Arial, sans-serif; letter-spacing: 0; }
.cf-cert-cnas-mark { position: relative; display: grid; width: 112px; height: 48px; place-items: center; }
.cf-cert-cnas-mark::before,
.cf-cert-cnas-mark::after { content: ""; position: absolute; inset: 7px 0; border: 2px solid currentColor; border-radius: 50%; transform: rotate(-8deg); }
.cf-cert-cnas-mark::after { inset: 12px 5px; border-width: 1px; transform: rotate(7deg); opacity: .65; }
.cf-cert-cnas-mark i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: currentColor; }
.cf-cert-cnas-mark b { position: relative; padding: 0 5px; background: #f7f9f8; font: 900 24px/1 Arial, sans-serif; letter-spacing: 0; }
.cf-home-certificate-logo .cf-cert-ccc-mark { width: 116px; height: 54px; fill: none; stroke: currentColor; stroke-width: 5; stroke-linecap: butt; stroke-linejoin: round; }
.cf-home-certificate-logo .cf-cert-ccc-mark ellipse { stroke-width: 3.5; }
.cf-cert-rohs-leaf { width: 43px; height: 43px; fill: rgba(0, 109, 71, .08) !important; stroke-width: 2.2 !important; }
.cf-cert-rohs-word { font: 900 29px/1 Arial, sans-serif; letter-spacing: -.04em; }
.cf-cert-bsci-rings { position: relative; width: 51px; height: 42px; }
.cf-cert-bsci-rings i { position: absolute; top: 5px; width: 32px; height: 32px; border: 4px solid currentColor; border-radius: 50%; }
.cf-cert-bsci-rings i:first-child { left: 0; }
.cf-cert-bsci-rings i:last-child { right: 0; }
.cf-cert-bsci-word { display: grid; gap: 1px; }
.cf-cert-bsci-word small { font: 600 9px/1 Arial, sans-serif; letter-spacing: .02em; }
.cf-cert-bsci-word b { font: 900 25px/1 Arial, sans-serif; letter-spacing: 0; }
.cf-cert-soncap-seal { display: grid; width: 43px; height: 43px; place-items: center; border: 3px double currentColor; border-radius: 50%; }
.cf-cert-soncap-seal b { font: 900 11px/1 Arial, sans-serif; letter-spacing: 0; }
.cf-cert-soncap-word { display: grid; gap: 3px; }
.cf-cert-soncap-word b { font: 900 18px/1 Arial, sans-serif; letter-spacing: 0; }
.cf-cert-soncap-word small { max-width: 76px; font: 600 6px/1.15 Arial, sans-serif; letter-spacing: .04em; }
.cf-home-certificate-item.cf-home-cert-logo-item:hover .cf-home-certificate-logo { color: var(--cf-primary); }

.cf-home-rd-quality-stage {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #0b352b;
}
.cf-home-rd-quality-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}
.cf-home-rd-quality-stage:hover > img { transform: scale(1.025); }
.cf-home-rd-quality-stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(3,25,20,.9) 0%,rgba(4,31,25,.68) 46%,rgba(4,27,22,.56) 100%),linear-gradient(180deg,transparent 38%,rgba(3,24,19,.72));
}
.cf-home-rd-quality-primary {
  position: absolute;
  z-index: 1;
  bottom: 46px;
  left: 46px;
  width: min(44%,590px);
  color: #fff;
}
.cf-home-rd-quality-primary > span,
.cf-home-rd-quality-panel > span { display: block; margin-bottom: 16px; color: #dfc66e; font-size: 9px; font-weight: 800; letter-spacing: .2em; }
.cf-home-rd-quality-primary h3 { margin-bottom: 14px; font-size: clamp(35px,3.4vw,50px); line-height: 1.02; }
.cf-home-rd-quality-primary > p { max-width: 590px; color: rgba(255,255,255,.68); line-height: 1.65; }
.cf-home-rd-quality-primary ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 25px 0 0; list-style: none; }
.cf-home-rd-quality-primary li { padding: 7px 10px; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cf-home-rd-quality-panel {
  position: absolute;
  z-index: 1;
  top: 34px;
  right: 34px;
  width: min(46%,610px);
  padding: 32px;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: rgba(12,62,49,.82);
  backdrop-filter: blur(12px);
}
.cf-home-rd-quality-panel h3 { max-width: 510px; margin-bottom: 10px; font-size: 29px; line-height: 1.08; }
.cf-home-rd-quality-panel > p { margin-bottom: 25px; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.6; }
.cf-home-rd-quality-panel .cf-home-quality-capabilities { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(202,222,214,.2); }
.cf-home-rd-quality-panel .cf-home-quality-capabilities article {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 11px;
  min-height: 94px;
  padding: 17px 15px;
  border: 1px solid rgba(226,239,234,.08);
  background: rgba(222,235,230,.14);
}
.cf-home-rd-quality-panel .cf-home-quality-capabilities article:nth-child(2),
.cf-home-rd-quality-panel .cf-home-quality-capabilities article:nth-child(3) { background: rgba(194,218,209,.11); }
.cf-home-rd-quality-panel .cf-home-quality-capabilities i { width: 35px; height: 35px; background: rgba(239,244,241,.92); color: var(--cf-primary); }
.cf-home-rd-quality-panel .cf-home-quality-capabilities h4 { margin: 1px 0 4px; color: #fff; font-size: 14px; }
.cf-home-rd-quality-panel .cf-home-quality-capabilities p { color: rgba(255,255,255,.49); font-size: 10px; }

.cf-home-journal-section { padding: 96px 0 104px; overflow: hidden; background: #f5f7f6; }
.cf-home-journal-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; padding-bottom: 24px; margin-bottom: 28px; border-bottom: 1px solid #cfd8d4; }
.cf-home-journal-head span { display: block; margin-bottom: 12px; color: #9b7721; font-size: 13px; font-weight: 600; letter-spacing: .2rem; text-transform: uppercase; }
.cf-home-journal-head h2 { margin: 0; color: #22352f; line-height: 1.05; }
.cf-home-journal-head > a { display: inline-flex; align-items: center; gap: 9px; padding: 10px 0 8px; border-bottom: 1px solid #8ca49a; color: #315448; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.cf-home-journal-head > a .cf-icon { width: 15px; }
.cf-home-journal-grid { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); grid-template-rows: 310px 280px; gap: 14px; }
.cf-home-journal-card { position: relative; min-width: 0; overflow: hidden; border: 1px solid #d5ddda; border-radius: 12px; background: #fff; box-shadow: 0 12px 35px rgba(22,55,44,.055); }
.cf-home-journal-card.is-lead { grid-column: 1 / span 7; grid-row: 1 / span 2; display: grid; grid-template-rows: minmax(0,1fr) auto; }
.cf-home-journal-card.is-feature { grid-column: 8 / span 5; grid-row: 1; display: grid; grid-template-columns: minmax(220px,.95fr) 1.05fr; }
.cf-home-journal-card.is-feature-bottom { grid-row: 2; }
.cf-home-journal-card.is-compact:nth-child(3) { grid-column: 8 / span 2; grid-row: 2; }
.cf-home-journal-card.is-compact:nth-child(4) { grid-column: 10 / span 3; grid-row: 2; }
.cf-home-journal-card.is-compact { display: grid; grid-template-rows: 53% 47%; }
.cf-home-journal-media { position: relative; display: block; min-width: 0; min-height: 0; overflow: hidden; background: #dfe5e2; }
.cf-home-journal-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 58%,rgba(7,39,30,.2)); opacity: .7; pointer-events: none; }
.cf-home-journal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease,filter .55s ease; }
.cf-home-journal-card:hover .cf-home-journal-media img { transform: scale(1.035); filter: saturate(1.06); }
.cf-home-journal-media > span { position: absolute; z-index: 1; top: 15px; left: 15px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.26); border-radius: 8px; background: rgba(7,49,39,.9); color: #e1c96f; font-size: 10px; font-weight: 600; }
.cf-home-journal-body { position: relative; display: grid; align-content: start; min-width: 0; padding: 25px 62px 24px 25px; }
.cf-home-journal-card.is-lead .cf-home-journal-body { min-height: 220px; padding: 27px 82px 27px 30px; }
.cf-home-journal-card.is-feature .cf-home-journal-body { align-content: center; padding: 25px 58px 25px 24px; }
.cf-home-journal-card.is-compact .cf-home-journal-body { padding: 18px 42px 18px 17px; }
.cf-home-journal-body > div { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; color: #78847f; font-size: 9px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.cf-home-journal-body > div > span { color: #9b7721; }
.cf-home-journal-body h3 { margin: 0; color: #263832; font-size: 20px; line-height: 1.25; }
.cf-home-journal-card.is-lead .cf-home-journal-body h3 { max-width: 650px; font-size: 30px; line-height: 1.18; }
.cf-home-journal-card.is-feature .cf-home-journal-body h3 { font-size: 21px; }
.cf-home-journal-card.is-feature-bottom .cf-home-journal-body h3 { font-size: 17px; }
.cf-home-journal-card.is-compact .cf-home-journal-body h3 { display: -webkit-box; overflow: hidden; font-size: 16px; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
main#primary .cf-home-journal-card .cf-home-journal-body h3 {
  display: -webkit-box;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.35;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.cf-home-journal-body > p { max-width: 620px; margin: 13px 0 0; color: #687872; font-size: 13px; line-height: 1.65; }
.cf-home-journal-body > a:last-child { position: absolute; right: 20px; bottom: 20px; display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid #cbd5d1; border-radius: 8px; color: #0a6648; transition: background .2s ease,color .2s ease,border-color .2s ease; }
.cf-home-journal-card.is-compact .cf-home-journal-body > a:last-child { right: 12px; bottom: 12px; width: 30px; height: 30px; }
.cf-home-journal-body > a:last-child:hover { border-color: #0a6648; background: #0a6648; color: #fff; }
.cf-home-journal-body > a .cf-icon { width: 16px; }
@media (max-width: 1024px) {
  .cf-home-about-section { padding-bottom: 66px !important; }
  .cf-home-certificate-layout { grid-template-columns: 1fr !important; gap: 22px !important; }
  .cf-home-rd-quality-stage { min-height: 820px; }
  .cf-home-rd-quality-primary { right: 34px; bottom: 38px; left: 34px; width: auto; }
  .cf-home-rd-quality-panel { top: 30px; right: 30px; left: 30px; width: auto; }
  .cf-home-journal-grid { grid-template-columns: repeat(2,minmax(0,1fr)); grid-template-rows: auto; }
  .cf-home-journal-card.is-lead { grid-column: 1 / -1; grid-row: auto; grid-template-columns: 1.05fr .95fr; grid-template-rows: none; min-height: 360px; }
  .cf-home-journal-card.is-feature,
  .cf-home-journal-card.is-compact:nth-child(3),
  .cf-home-journal-card.is-compact:nth-child(4) { grid-column: auto; grid-row: auto; }
  .cf-home-journal-card.is-feature { display: grid; grid-template-columns: 1fr; grid-template-rows: 54% 46%; min-height: 420px; }
  .cf-home-journal-card.is-compact { min-height: 420px; }
}
@media (max-width: 640px) {
  .cf-home-about-section { padding-bottom: 52px !important; }
  .cf-home-certificate-kicker { font-size: 12px !important; }
  .cf-home-certificate-item.cf-home-cert-logo-item { width: 138px; }
  .cf-home-rd-quality-stage { min-height: 930px; }
  .cf-home-rd-quality-panel { top: 18px; right: 18px; left: 18px; padding: 22px; }
  .cf-home-rd-quality-panel .cf-home-quality-capabilities { grid-template-columns: 1fr; }
  .cf-home-rd-quality-primary { right: 22px; bottom: 25px; left: 22px; }
  .cf-home-rd-quality-primary h3 { font-size: 34px; }
  .cf-home-journal-section { padding: 68px 0 76px; }
  .cf-home-journal-head { display: block; }
  .cf-home-journal-head > a { margin-top: 22px; }
  .cf-home-journal-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
  .cf-home-journal-card,
  .cf-home-journal-card.is-lead,
  .cf-home-journal-card.is-feature,
  .cf-home-journal-card.is-compact { grid-column: auto !important; grid-row: auto; display: block; min-height: 0; }
  .cf-home-journal-media,
  .cf-home-journal-card.is-lead .cf-home-journal-media { height: auto; aspect-ratio: 16/10; }
  .cf-home-journal-body,
  .cf-home-journal-card.is-lead .cf-home-journal-body,
  .cf-home-journal-card.is-feature .cf-home-journal-body,
  .cf-home-journal-card.is-compact .cf-home-journal-body { height: auto; min-height: 180px; padding: 23px 65px 23px 22px; }
  .cf-home-journal-card.is-lead .cf-home-journal-body h3 { font-size: 23px; }
  .cf-home-journal-card.is-compact .cf-home-journal-body h3 { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-home-rd-quality-stage > img,
  .cf-home-journal-media img { transition: none !important; }
}

/* Header search dropdown: opens directly beneath the navigation search button. */
.cf-header-tools { position: relative; flex-shrink: 0; }
.cf-header-search-wrap { position: relative; display: flex; align-items: center; }
.cf-header-search-inline {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 60;
  width: min(370px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-9px) scale(.985);
  transform-origin: top right;
  transition: opacity .2s ease, visibility .2s ease, transform .26s cubic-bezier(.22,.8,.28,1);
}
.cf-header-search-inline.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.cf-header-search-inline-form {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0,1fr) 44px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--cf-line);
  border-top: 3px solid var(--cf-primary);
  border-radius: 0 0 4px 4px;
  background: #fff;
  color: #26363b;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
}
.cf-header-search-inline-form input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #d4dcde;
  border-radius: 3px;
  outline: 0;
  background: #f7f9f8;
  box-shadow: none;
  color: #1d332c;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.cf-header-search-inline-form input::placeholder { color: #7d8985; opacity: 1; }
.cf-header-search-inline-form input:focus,
.cf-header-search-inline-form input:focus-visible {
  border-color: var(--cf-primary) !important;
  outline: none !important;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,105,55,.12) !important;
}
.cf-header-search-inline-form button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--cf-primary);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cf-header-search-inline-form button:hover,
.cf-header-search-inline-form button:focus-visible {
  outline: none;
  background: #095540;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(0,105,55,.16);
  transform: translateY(-1px);
}
.cf-header-search-inline-form button .cf-icon { width: 18px; height: 18px; }
.cf-global-header .cf-header-search-wrap.is-search-open .cf-search-toggle[aria-expanded="true"] {
  background: #26363b;
  border-color: #26363b;
  color: #fff;
}

/* Official WhatsApp mark and a clear quote-request cue. */
.cf-conversion-rail .cf-conversion-whatsapp,
.cf-conversion-rail .cf-conversion-whatsapp:hover {
  border-color: #25d366 !important;
  background: #25d366 !important;
  color: #fff !important;
}
.cf-conversion-whatsapp .cf-social-icon { width: 26px; height: 26px; }
.cf-conversion-rail button[data-inquiry-open] .cf-icon {
  width: 27px;
  height: 27px;
  animation: cf-quote-attention 5.6s ease-in-out infinite;
  transform-origin: 50% 55%;
}

/* Certificates page: accessible category tabs and full-document presentation. */
.cf-certificate-tabs {
  margin-top: 38px;
}
.cf-certificate-tab-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid #d4dcde;
  border-radius: 4px;
  background: #edf1f0;
}
.cf-certificate-tab {
  min-height: 54px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  color: #526168;
  font-family: "Hanken Grotesk", Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.cf-certificate-tab:hover {
  color: #095540;
  background: rgba(255,255,255,.7);
}
.cf-certificate-tab.is-active {
  border-color: #c7d1d2;
  background: #fff;
  color: #006937;
  box-shadow: 0 7px 20px rgba(38,54,59,.08);
}
.cf-certificate-tab:focus-visible {
  outline: 2px solid #006937;
  outline-offset: 2px;
}
.cf-certificate-tab-panel {
  padding-top: 28px;
}
.cf-certificate-tab-panel[hidden] {
  display: none;
}
.cf-certificate-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4dcde;
}
.cf-certificate-panel-head p {
  margin: 0;
  color: #526168;
  font-size: 15px;
}
.cf-certificate-panel-head span {
  flex: 0 0 auto;
  color: #006937;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cf-certificate-tab-panel .cf-certificate-document-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.cf-certificate-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d4dcde;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(38,54,59,.055);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.cf-certificate-card:hover {
  transform: translateY(-3px);
  border-color: #9cafb0;
  box-shadow: 0 16px 38px rgba(38,54,59,.10);
}
.cf-certificate-card > a,
.cf-certificate-card > a:hover,
.cf-certificate-card > .cf-certificate-preview {
  display: block;
  aspect-ratio: auto;
  background: #f1f3f3;
}
.cf-certificate-document {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  padding: 15px 15px 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(242,245,244,.96)),
    linear-gradient(#dce3e2 1px, transparent 1px),
    linear-gradient(90deg, #dce3e2 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
}
.cf-certificate-tab-panel .cf-certificate-card img,
.cf-certificate-tab-panel .cf-certificate-card:first-child img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: auto;
  padding: 0;
  object-fit: fill;
  object-position: center;
  transform: none;
}
[data-certificate-panel="certification"] .cf-certificate-document {
  position: relative;
  display: block;
  padding: 0;
}
[data-certificate-panel="certification"] .cf-certificate-card img,
[data-certificate-panel="certification"] .cf-certificate-card:first-child img {
  position: absolute;
  top: 15px;
  right: 15px;
  bottom: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 15px);
  max-width: none;
  max-height: none;
  object-fit: fill;
  transform: translate(var(--cf-cert-shift-x, 0), var(--cf-cert-shift-y, 0)) scale(var(--cf-cert-scale-x, 1), var(--cf-cert-scale-y, 1));
  transform-origin: center;
}
[data-certificate-panel="honors"] .cf-certificate-document {
  display: grid;
  place-items: center;
  padding: 12px;
}
[data-certificate-panel="honors"] .cf-certificate-card.is-portrait .cf-certificate-document {
  aspect-ratio: 4 / 5;
}
[data-certificate-panel="honors"] .cf-certificate-card.is-landscape .cf-certificate-document {
  aspect-ratio: 4 / 3;
}
[data-certificate-panel="honors"] .cf-certificate-card .cf-certificate-document {
  aspect-ratio: 3 / 2;
  padding: 0;
  background: #fff;
}

/* Footer navigation groups and official social platform colors. */
.cf-footer .footer-grid {
  grid-template-columns: minmax(280px, 1.12fr) minmax(170px, .72fr) minmax(250px, 1fr) minmax(290px, 1.18fr);
}
.cf-footer .cf-footer-link-divider { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.10); }
.cf-footer-socials a[data-social] { color: #fff; border-color: transparent; }
.cf-footer-socials a[data-social="youtube"] { background: #ff0000; }
.cf-footer-socials a[data-social="facebook"] { background: #1877f2; }
.cf-footer-socials a[data-social="instagram"] { background: linear-gradient(135deg, #833ab4 0%, #c13584 38%, #e1306c 62%, #f77737 100%); }
.cf-footer-socials a[data-social]:hover,
.cf-footer-socials a[data-social]:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.82);
  color: #fff;
  filter: brightness(1.08);
}
@media (max-width: 1024px) {
  .cf-footer .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .cf-footer .footer-grid { grid-template-columns: 1fr; }
  .cf-footer .cf-footer-link-divider { margin-top: 12px; padding-top: 12px; }
}
[data-certificate-panel="honors"] .cf-certificate-card img,
[data-certificate-panel="honors"] .cf-certificate-card:first-child img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}
[data-certificate-panel="honors"] .cf-certificate-card.is-honor-02 img,
[data-certificate-panel="honors"] .cf-certificate-card.is-honor-02:first-child img {
  transform: translate(1.6%, -4.8%) scale(1.3);
  transform-origin: center;
}
.cf-certificate-card:hover img {
  transform: none;
}
[data-certificate-panel="certification"] .cf-certificate-card:hover img {
  transform: translate(var(--cf-cert-shift-x, 0), var(--cf-cert-shift-y, 0)) scale(var(--cf-cert-scale-x, 1), var(--cf-cert-scale-y, 1));
}
[data-certificate-panel="honors"] .cf-certificate-card.is-honor-02:hover img {
  transform: translate(1.6%, -4.8%) scale(1.3);
}
.cf-certificate-card > p {
  min-height: 54px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 15px;
  border-top: 1px solid #d4dcde;
  color: #26363b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
@media (max-width: 1024px) {
  .cf-certificate-tab-panel .cf-certificate-document-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .cf-certificate-tab-list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .cf-certificate-tab {
    min-width: max-content;
    flex: 1 0 auto;
    scroll-snap-align: start;
  }
  .cf-certificate-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .cf-certificate-tab-panel .cf-certificate-document-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .cf-certificate-document {
    padding: 10px;
  }
  .cf-certificate-card > p {
    min-height: 48px;
    padding: 10px;
    font-size: 12px;
  }
}

.cf-conversion-rail .cf-back-to-top {
  position: static;
  width: 56px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #d4dcde;
  border-radius: 4px;
  background: rgba(255,255,255,.97);
  color: #26363b;
  box-shadow: 0 6px 18px rgba(38,54,59,.12);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: background .2s ease,color .2s ease,border-color .2s ease;
  cursor: pointer;
}
.cf-conversion-rail .cf-back-to-top:hover,
.cf-conversion-rail .cf-back-to-top:focus-visible {
  border-color: #26363b;
  outline: none;
  background: #26363b;
  color: #fff;
}
.cf-back-to-top .cf-icon { width: 25px; height: 25px; stroke-width: 1.9; }
@keyframes cf-quote-attention {
  0%, 76%, 100% { transform: translateX(0) rotate(0); }
  80% { transform: translateX(-1px) rotate(-7deg); }
  83% { transform: translateX(1px) rotate(6deg); }
  86% { transform: translateX(-1px) rotate(-4deg); }
  89% { transform: translateX(1px) rotate(3deg); }
  92% { transform: translateX(0) rotate(0); }
}

@media (max-width: 768px) {
  .cf-header-search-inline { width: min(360px, calc(100vw - 24px)); }
  .cf-conversion-rail .cf-back-to-top { width: 56px; min-height: 56px; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-header-search-inline { transition: none; }
  .cf-conversion-rail button[data-inquiry-open] .cf-icon { animation: none; }
  .cf-conversion-rail .cf-back-to-top { transition: none; }
}

/* Homepage journal slider: editorial intro with a five-post horizontal rail. */
.cf-home-news-slider-section {
  overflow: hidden;
  padding: 94px 0 102px;
  background: #f5f7f6;
}
.cf-home-news-slider {
  display: grid;
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
}
.cf-home-news-slider-intro > span {
  display: block;
  margin-bottom: 12px;
  color: var(--cf-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2rem;
  text-transform: uppercase;
}
.cf-home-news-slider-intro h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #22352f;
  font-size: 38px;
  line-height: 1.08;
}
.cf-home-news-slider-intro h2 .cf-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: #263832;
  stroke-width: 1.8;
}
.cf-home-news-slider-intro > p {
  margin: 0 0 28px;
  color: #687872;
  font-size: 14px;
  line-height: 1.7;
}
.cf-home-news-all {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid #9aa9a3;
  border-radius: 8px;
  color: #263832;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.cf-home-news-all:hover {
  border-color: var(--cf-primary);
  background: var(--cf-primary);
  color: #fff;
}
.cf-home-news-all .cf-icon,
.cf-home-news-read .cf-icon { width: 16px; height: 16px; }
.cf-home-news-controls {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}
.cf-home-news-controls button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid #88a096;
  border-radius: 8px;
  background: transparent;
  color: var(--cf-primary);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}
.cf-home-news-controls button:first-child .cf-icon { transform: rotate(180deg); }
.cf-home-news-controls button:hover:not(:disabled) {
  border-color: var(--cf-primary);
  background: var(--cf-primary);
  color: #fff;
}
.cf-home-news-controls button:disabled {
  opacity: .32;
  cursor: default;
}
.cf-home-news-controls .cf-icon { width: 20px; height: 20px; }
.cf-home-news-viewport {
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cf-home-news-viewport::-webkit-scrollbar { display: none; }
.cf-home-news-viewport:focus-visible {
  outline: 2px solid var(--cf-primary);
  outline-offset: 5px;
}
.cf-home-news-track {
  display: flex;
  gap: 22px;
}
.cf-home-news-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}
.cf-home-news-slide-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 17px;
  border-radius: 12px;
  background: #dfe5e2;
}
.cf-home-news-slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 68%, rgba(9,48,37,.14));
  pointer-events: none;
}
.cf-home-news-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease, filter .42s ease;
}
.cf-home-news-slide:hover .cf-home-news-slide-media img {
  transform: scale(1.035);
  filter: saturate(1.05);
}
.cf-home-news-slide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  margin-bottom: 9px;
  color: #7a8782;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.cf-home-news-slide-meta span { color: #9b7721; }
main#primary .cf-home-news-slide h3 {
  min-height: 73px;
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 14px;
  color: #263832;
  font-size: 19px !important;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.cf-home-news-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid #88a096;
  color: var(--cf-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cf-home-news-read:hover { border-bottom-color: var(--cf-primary); }
@media (max-width: 1200px) {
  .cf-home-news-slider { grid-template-columns: minmax(210px, 240px) minmax(0, 1fr); gap: 30px; }
  .cf-home-news-slide { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 800px) {
  .cf-home-news-slider-section { padding: 72px 0 78px; }
  .cf-home-news-slider { grid-template-columns: 1fr; align-items: start; }
  .cf-home-news-slider-intro { max-width: 620px; }
  .cf-home-news-controls { margin-top: 18px; }
}
@media (max-width: 560px) {
  .cf-home-news-slider-intro h2 { font-size: 34px; }
  .cf-home-news-slide { flex-basis: 86%; }
  .cf-home-news-track { gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .cf-home-news-viewport { scroll-behavior: auto; }
  .cf-home-news-slide-media img { transition: none; }
}

/* Gallery page: reference-led filtering and immersive image review. */
.cf-gallery-hero { background-position: center 54%; }
.cf-gallery-intro { background: #fff; }
.cf-gallery-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: start;
}
.cf-gallery-intro h2 { max-width: 600px; margin: 14px 0 0; color: #26363b; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; }
.cf-gallery-intro-copy > p { max-width: 680px; margin: 0 0 26px; color: #5c6b70; font-size: 17px; line-height: 1.78; }
.cf-gallery-intro-copy > div { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid #d8e0e2; color: #26363b; font-size: 14px; }
.cf-gallery-intro-copy > div:last-child { border-bottom: 1px solid #d8e0e2; }
.cf-gallery-intro-copy > div span { display: grid; width: 34px; height: 34px; place-items: center; padding: 8px; border-radius: 4px; background: #26363b; color: var(--cf-cta-yellow); }
.cf-gallery-intro-copy .cf-icon { width: 18px; height: 18px; }
.cf-gallery-browser { position: relative; background: #f1f3f3; }
.cf-gallery-heading { display: grid; grid-template-columns: minmax(0, 1fr) minmax(300px, 480px); gap: 48px; align-items: end; }
.cf-gallery-heading h2 { margin-bottom: 0; }
.cf-gallery-heading > p { margin: 0 0 4px; color: #617075; font-size: 16px; line-height: 1.7; }
.cf-gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 36px 0 34px; }
.cf-gallery-filters button {
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #bdc8cb;
  border-radius: 4px;
  background: #fff;
  color: #3e4d52;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.cf-gallery-filters button:hover,
.cf-gallery-filters button.is-active { border-color: #26363b; background: #26363b; color: var(--cf-cta-yellow); }
.cf-gallery-grid-pro { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.cf-gallery-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: #d8dfdf;
  cursor: zoom-in;
  box-shadow: 0 14px 36px rgba(20,42,47,.10);
}
.cf-gallery-card[hidden] { display: none !important; }
.cf-gallery-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease, filter .55s ease; }
.cf-gallery-card-overlay {
  position: absolute;
  inset: auto 0 0;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-content: end;
  gap: 6px 16px;
  padding: 38px 18px 17px;
  background: linear-gradient(180deg, transparent, rgba(12,31,34,.88));
  color: #fff;
  text-align: left;
}
.cf-gallery-card-overlay small { grid-column: 1; color: #e2c663; font-size: 10px; font-style: normal; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.cf-gallery-card-overlay strong { grid-column: 1; font-size: 17px; font-weight: 600; line-height: 1.25; }
.cf-gallery-card-overlay i { grid-column: 2; grid-row: 1 / span 2; align-self: end; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.52); border-radius: 50%; color: #fff; font-style: normal; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.cf-gallery-card-overlay .cf-icon { width: 18px; height: 18px; }
.cf-gallery-card:hover img { transform: scale(1.045); filter: saturate(1.04) contrast(1.02); }
.cf-gallery-card:hover .cf-gallery-card-overlay i { border-color: var(--cf-cta-yellow); background: var(--cf-cta-yellow); color: #26363b; }
.cf-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 20px;
  padding: 54px clamp(20px, 4vw, 70px);
  background: rgba(10,23,27,.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.cf-gallery-lightbox[hidden] { display: none; }
.cf-gallery-lightbox.is-open { opacity: 1; visibility: visible; }
.cf-gallery-lightbox figure { grid-column: 2; max-width: 1320px; max-height: calc(100vh - 108px); display: grid; justify-self: center; margin: 0; }
.cf-gallery-lightbox img { max-width: 100%; max-height: calc(100vh - 150px); width: auto; height: auto; display: block; margin: auto; object-fit: contain; box-shadow: 0 28px 90px rgba(0,0,0,.42); }
.cf-gallery-lightbox figcaption { padding-top: 14px; color: rgba(255,255,255,.86); font-size: 14px; text-align: center; }
.cf-gallery-lightbox button { border: 1px solid rgba(255,255,255,.34); background: rgba(255,255,255,.07); color: #fff; cursor: pointer; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.cf-gallery-lightbox button:hover { border-color: var(--cf-cta-yellow); background: var(--cf-cta-yellow); color: #26363b; }
.cf-gallery-lightbox-close { position: absolute; top: 22px; right: 24px; width: 46px; height: 46px; border-radius: 50%; font-size: 30px; line-height: 1; }
.cf-gallery-lightbox-nav { width: 54px; height: 54px; border-radius: 50%; font-size: 22px; }
.cf-gallery-lightbox-prev { grid-column: 1; }
.cf-gallery-lightbox-next { grid-column: 3; }
body.cf-gallery-lightbox-open { overflow: hidden; }
.cf-gallery-review { background: #fff; }
.cf-gallery-review-panel { display: grid; grid-template-columns: minmax(0, 1.2fr) auto; gap: 52px; align-items: center; padding: clamp(40px, 5vw, 70px); border-radius: 4px; background: #26363b; }
.cf-gallery-review-panel h2 { max-width: 760px; margin: 13px 0 15px; color: #fff; font-size: clamp(32px, 4vw, 48px); line-height: 1.08; }
.cf-gallery-review-panel > div:first-child > p:last-child { max-width: 780px; margin: 0; color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.72; }
.cf-gallery-review-actions { display: grid; gap: 12px; min-width: 235px; }
.cf-gallery-review-actions button,
.cf-gallery-review-actions a { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid var(--cf-cta-yellow); border-radius: 4px; font-size: 12px; font-weight: 700; letter-spacing: .04em; cursor: pointer; }
.cf-gallery-review-actions button { background: var(--cf-cta-yellow); color: #26363b; }
.cf-gallery-review-actions a { background: transparent; color: #fff; }
.cf-gallery-review-actions .cf-icon { width: 17px; height: 17px; }

/* Internal-page icon system: match the homepage About and Partner card icons. */
body:not(.home) .cf-about-client-letter-promises .cf-icon,
body:not(.home) .cf-about-values-grid article > .cf-icon,
body:not(.home) .cf-support-grid .cf-icon,
body:not(.home) .cf-contact-support .cf-icon,
body:not(.home) .cf-download-list .cf-icon,
body:not(.home) .cf-video-grid .cf-icon,
body:not(.home) .cf-about-partner-grid .cf-icon,
body:not(.home) .cf-product-attribute-grid .cf-icon,
body:not(.home) .cf-article-help-card .cf-icon,
body:not(.home) .cf-error-actions .cf-icon,
body:not(.home) .cf-contact-command .cf-contact-list .cf-icon,
body:not(.home) .cf-advantage-grid .cf-advantage-icon,
body:not(.home) .cf-factory-process-visual .cf-factory-process-icon,
body:not(.home) .cf-contact-form-top > span,
body:not(.home) .inquiry-form-head > span,
body:not(.home) .cf-product-filter-heading > div > span,
body:not(.home) .cf-gallery-intro-copy > div span,
body:not(.home) .cf-about-timeline article > span,
body:not(.home) .cf-heritage-timeline article > span,
body:not(.home) .cf-heritage-commitments span,
body:not(.home) .cf-product-step-list span,
body:not(.home) .cf-solution-detail-rich li span,
body:not(.home) .cf-solution-product-row span,
body:not(.home) .cf-contact-response span,
body:not(.home) .cf-process-grid span,
body:not(.home) .cf-oem-flow span,
body:not(.home) .cf-oem-step-media span {
  border: 1px solid #d8e0dc !important;
  border-radius: 8px !important;
  background: #eef2f0 !important;
  color: var(--cf-primary) !important;
  box-shadow: none !important;
}
body:not(.home) .cf-advantage-grid .cf-advantage-icon .cf-icon,
body:not(.home) .cf-factory-process-visual .cf-factory-process-icon .cf-icon,
body:not(.home) .cf-contact-form-top > span .cf-icon,
body:not(.home) .inquiry-form-head > span .cf-icon,
body:not(.home) .cf-product-filter-heading > div > span .cf-icon,
body:not(.home) .cf-gallery-intro-copy > div span .cf-icon {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
}

@media (max-width: 1024px) {
  .cf-gallery-review-panel { grid-template-columns: 1fr; }
  .cf-gallery-review-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 560px; }
}
@media (max-width: 1180px) {
  .cf-gallery-grid-pro { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .cf-gallery-intro-grid,
  .cf-gallery-heading { grid-template-columns: 1fr; gap: 28px; }
  .cf-gallery-filters { flex-wrap: nowrap; overflow-x: auto; margin-top: 28px; padding-bottom: 6px; scrollbar-width: thin; }
  .cf-gallery-filters button { flex: 0 0 auto; }
  .cf-gallery-grid-pro { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cf-gallery-card-overlay { min-height: 88px; grid-template-columns: minmax(0, 1fr) 34px; padding: 30px 12px 12px; }
  .cf-gallery-card-overlay strong { font-size: 14px; }
  .cf-gallery-card-overlay i { width: 34px; height: 34px; }
  .cf-gallery-lightbox { grid-template-columns: 1fr; padding: 64px 16px 86px; }
  .cf-gallery-lightbox figure { grid-column: 1; }
  .cf-gallery-lightbox-nav { position: absolute; bottom: 20px; }
  .cf-gallery-lightbox-prev { left: calc(50% - 64px); }
  .cf-gallery-lightbox-next { right: calc(50% - 64px); }
  .cf-gallery-review-actions { grid-template-columns: 1fr; min-width: 0; }
}
@media (max-width: 520px) {
  .cf-gallery-grid-pro { grid-template-columns: 1fr; }
}

/* Homepage light-section joins: keep similar backgrounds visually continuous. */
.cf-home-about-section {
  border-top: 0 !important;
}

.cf-home-partners-section {
  border-bottom: 0 !important;
}

.cf-home-rd-quality-section {
  background: linear-gradient(
    180deg,
    #f6f8f8 0%,
    #f1f4f3 16%,
    #f1f4f3 80%,
    #f5f7f6 100%
  );
}

.cf-home-rd-quality-section::before {
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 70px, #000 calc(100% - 70px), transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #000 70px, #000 calc(100% - 70px), transparent 100%);
}

/* About-suite visual direction: spacious, image-led and distinctly PANDORA. */
.cf-about-unified-hero,
.cf-gallery-hero {
  min-height: clamp(560px, 68vh, 720px);
  align-items: flex-end;
  padding: 132px 0 86px;
  border-bottom: 0;
  background-position: center;
  background-size: cover;
}
.cf-about-unified-hero .site-shell,
.cf-gallery-hero .site-shell { width: min(1385px, calc(100% - 56px)); }
.cf-about-unified-hero h1,
.cf-gallery-hero h1 {
  max-width: 920px;
  margin: 12px 0 22px;
  color: #fff;
  font-size: clamp(52px, 5.6vw, 78px);
  line-height: .98;
  letter-spacing: -.045em;
}
.cf-about-unified-hero .site-shell > p:last-child,
.cf-gallery-hero .site-shell > p:last-child {
  max-width: 690px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.62;
}
.cf-about-unified-hero .eyebrow,
.cf-gallery-hero .eyebrow { color: #e1c15f; letter-spacing: .18em; }

.cf-about-slider { min-height: clamp(650px, 78vh, 790px); }
.cf-about-slider-overlay {
  background: linear-gradient(90deg, rgba(5,47,34,.78) 0%, rgba(9,58,42,.46) 52%, rgba(9,58,42,.08) 100%);
}
.cf-about-slider-copy { padding-bottom: clamp(76px, 8vh, 108px); }
.cf-about-slider-copy h2 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(54px, 5.8vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
}
.cf-about-slider-copy > p:not(.eyebrow) { max-width: 700px; font-size: 18px; line-height: 1.62; }
.cf-about-slider-dots button { height: 4px; border-radius: 999px; }

.cf-about-company-section,
.cf-about-factory-gallery-section .cf-about-profile-actions { justify-content: center; }

.cf-about-factory-gallery-section,
.cf-about-values-section,
.cf-about-partners-section,
.cf-about-client-letter,
.cf-gallery-intro,
.cf-gallery-browser,
.cf-gallery-review { padding-top: clamp(84px, 7vw, 116px); padding-bottom: clamp(84px, 7vw, 116px); }
.cf-about-company-grid { grid-template-columns: minmax(0,.86fr) minmax(0,1.14fr); gap: clamp(54px,6vw,92px); }
.cf-about-company-grid > div:first-child h2 { max-width: 660px; font-size: clamp(40px,4vw,58px); line-height: 1.02; letter-spacing: -.035em; }
.cf-about-company-grid > div:first-child > p:not(.eyebrow) { max-width: 640px; color: #61706a; font-size: 16px; line-height: 1.72; }
.cf-about-company-video { border: 0; border-radius: 20px; box-shadow: none; }
.cf-about-company-video > span { padding: 16px 20px; background: #f2f5f3; }
.cf-about-profile-actions a,
.cf-about-inline-link,
.cf-about-values-cta { border-radius: 999px; }

.cf-about-values-actions .cf-about-inline-link:hover,
.cf-about-values-actions .cf-about-inline-link:focus-visible {
  border-color: var(--cf-primary);
  background: var(--cf-primary);
  color: #fff;
}
.cf-about-values-actions .cf-about-inline-link:hover .cf-icon,
.cf-about-values-actions .cf-about-inline-link:focus-visible .cf-icon {
  color: inherit;
}

.cf-about-factory-gallery-section,
.cf-about-partners-section,
.cf-gallery-browser { background: #f3f5f4 !important; }
.cf-about-factory-gallery,
.cf-about-factory-gallery-more { gap: 12px; }
.cf-about-factory-gallery figure,
.cf-about-factory-gallery-more figure { border-radius: 18px; }
.cf-about-factory-gallery figcaption,
.cf-about-factory-gallery-more figcaption { border-radius: 999px; background: rgba(5,47,34,.76); backdrop-filter: blur(8px); }

.cf-about-values-section { background: #fff; }
.cf-about-values-grid { gap: 14px; overflow: visible; border: 0; border-radius: 0; background: transparent; }
.cf-about-values-grid article {
  min-height: 280px;
  padding: 34px;
  border: 0 !important;
  border-radius: 18px !important;
  background: #f1f4f2 !important;
  color: #26363b !important;
}
.cf-about-values-grid article > .cf-icon { border: 1px solid #d8e0dc; border-radius: 10px; background: #e8efeb; color: #006937; }
.cf-about-values-grid h3 { color: #26363b; }
.cf-about-values-grid p { color: #67756f; }
.cf-about-values-cta { margin-top: 24px; border-color: #006937; background: #006937; }

.cf-about-partner-grid { gap: 14px; }
.cf-about-partner-grid article {
  min-height: 240px;
  padding: 30px;
  border: 0 !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: none !important;
}
.cf-about-client-letter { background: #f7f8f7; }
.cf-about-client-letter::before { opacity: .16; }
.cf-about-client-letter-intro { border-bottom: 0; }
.cf-about-client-letter-copy,
.cf-about-client-letter-media { border: 0; border-radius: 20px; box-shadow: none; }
.cf-about-client-letter-copy { background: #fff; }
.cf-about-client-letter-promises > div { border: 0; border-radius: 12px; background: #f2f5f3; }
.cf-about-client-letter-promises > div + div { border: 0; }
.cf-about-client-letter-commitment { border-radius: 12px; }
.cf-about-client-letter-copy footer button { border-radius: 999px; }

.cf-advantage-system > .cf-section-title,
.cf-heritage-timeline > .cf-section-title,
.cf-gallery-intro-grid,
.cf-gallery-heading { margin-bottom: clamp(38px,4vw,58px); }
.cf-advantage-system > .cf-section-title h2,
.cf-heritage-timeline > .cf-section-title h2,
.cf-gallery-intro h2,
.cf-gallery-heading h2 { font-size: clamp(40px,4.4vw,62px); line-height: 1.02; letter-spacing: -.04em; }

@media (min-width: 1025px) {
  .cf-heritage-timeline {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
  }
  .cf-heritage-timeline > .cf-section-title { grid-column: 1 / -1; }
  .cf-heritage-timeline article {
    grid-template-columns: 54px minmax(0,1fr);
    grid-template-areas: "media media" "number copy";
    gap: 24px 18px;
    align-items: start;
    padding: 14px 14px 30px;
    border: 0 !important;
    border-radius: 20px !important;
    background: #f2f5f3 !important;
    box-shadow: none !important;
  }
  .cf-heritage-timeline article > img { grid-area: media; width: 100%; border-radius: 14px; }
  .cf-heritage-timeline article > span { grid-area: number; width: 46px; height: 46px; margin-left: 8px; border-radius: 10px !important; }
  .cf-heritage-timeline article > div { grid-area: copy; padding: 3px 18px 0 0; }
}
.cf-heritage-timeline h3 { margin-bottom: 10px; font-size: clamp(24px,2vw,31px); letter-spacing: -.025em; }
.cf-heritage-timeline p { color: #687670; font-size: 15px; line-height: 1.65; }
.cf-heritage-closing-section { background: #fff !important; }
.cf-heritage-closing { gap: clamp(48px,6vw,90px); }
.cf-heritage-closing-media { border-radius: 22px; box-shadow: none; }
.cf-heritage-closing-copy h2 { font-size: clamp(42px,4.4vw,62px); letter-spacing: -.04em; }
.cf-heritage-commitments { gap: 12px; }
.cf-heritage-commitments article { border: 0; border-radius: 16px; background: #f2f5f3; box-shadow: none; }
.cf-heritage-final-cta { border-radius: 16px; background: #063d2c; }
.cf-heritage-final-cta button,
.cf-heritage-final-cta a { border-radius: 999px; }

.cf-advantage-grid { gap: 14px; }
.cf-advantage-grid article {
  min-height: 300px;
  padding: 32px;
  border: 0 !important;
  border-radius: 18px !important;
  background: #f2f5f3 !important;
  box-shadow: none !important;
}
.cf-advantage-grid h3 { font-size: 24px; letter-spacing: -.025em; }
.cf-advantage-grid p { color: #687670; font-size: 15px; line-height: 1.65; }
.cf-advantage-split { gap: clamp(54px,6vw,90px); }
.cf-advantage-slider { border-radius: 22px; box-shadow: none; }
.cf-advantage-split h2 { font-size: clamp(42px,4.4vw,62px); letter-spacing: -.04em; }
.cf-advantage-slider-dots { border: 0; background: rgba(5,47,34,.72); }

.cf-gallery-grid { gap: 14px; }
.cf-gallery-grid figure { border-radius: 18px; }
.cf-gallery-grid figcaption { right: 14px; bottom: 14px; left: 14px; border-radius: 999px; }
.cf-factory-process-visual { gap: 14px; }
.cf-factory-process-visual article { border: 0 !important; border-radius: 18px !important; background: #fff !important; box-shadow: none !important; }
.cf-factory-process-visual img { border-radius: 18px 18px 0 0; }
.cf-factory-process-visual h3 { font-size: 23px; letter-spacing: -.025em; }
.cf-factory-process-visual p { color: #687670; font-size: 15px; line-height: 1.62; }

.cf-gallery-intro { background: #fff; }
.cf-gallery-filters { gap: 8px; }
.cf-gallery-filters button { border: 0; border-radius: 999px; background: #e8eeeb; }
.cf-gallery-filters button:hover,
.cf-gallery-filters button.is-active { background: #006937; color: #fff; }
.cf-gallery-grid-pro { gap: 14px; }
.cf-gallery-card { border-radius: 16px; box-shadow: none; }
.cf-gallery-card-overlay { padding-right: 16px; padding-left: 16px; }
.cf-gallery-review-panel { border: 0; border-radius: 20px; background: #f2f5f3; box-shadow: none; }

.cf-certificate-tab-list { gap: 6px; padding: 6px; border: 0; border-radius: 999px; background: #e9efec; }
.cf-certificate-tab { border: 0; border-radius: 999px; }
.cf-certificate-tab.is-active { border: 0; background: #006937; color: #fff; box-shadow: none; }
.cf-certificate-card { border: 0; border-radius: 14px; background: #fff; box-shadow: none; }
.cf-certificate-card:hover { border-color: transparent; box-shadow: 0 12px 30px rgba(24,54,44,.08); }
.cf-certificate-document { background: #f3f5f4; }
.cf-certificate-panel-head { border-bottom: 0; }
.cf-certificate-card {
  position: relative;
  padding: 18px 14px 16px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(12,18,16,.08), rgba(5,11,9,.22)),
    url('../img/certificate-card-bg.webp') center / cover no-repeat;
  box-shadow: 0 14px 34px rgba(17,33,28,.14);
}
.cf-certificate-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(12,28,23,.2);
}
.cf-certificate-card-title {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  margin: 0 2px 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -.015em;
}
.cf-certificate-card-title::before {
  width: 4px;
  height: 24px;
  flex: 0 0 auto;
  margin: 0 10px 0 0;
  border-radius: 99px;
  background: #8bc53f;
  content: '';
}
.cf-certificate-card > .cf-certificate-preview,
.cf-certificate-card > .cf-certificate-preview:hover {
  overflow: hidden;
  border-radius: 14px;
  background: transparent;
}
.cf-certificate-card .cf-certificate-document {
  border-radius: 14px;
  background: #fff;
}
.cf-certificate-card > p { display: none; }
.cf-story-band { gap: clamp(48px,6vw,86px); }
.cf-story-band > img { border-radius: 20px; box-shadow: none; }
.cf-story-band h2 { font-size: clamp(40px,4.2vw,58px); letter-spacing: -.04em; }

.cf-context-faq--editorial { background: #f6f7f6 !important; }
.cf-shared-inline-inquiry,
.cf-about-inline-inquiry { border-top: 0; }

@media (max-width: 1024px) {
  .cf-about-unified-hero,
  .cf-gallery-hero { min-height: 560px; padding: 118px 0 68px; }
  .cf-about-company-grid { grid-template-columns: 1fr; }
  .cf-about-values-grid article { min-height: 0; }
  .cf-certificate-tab-list { border-radius: 16px; }
}
@media (max-width: 640px) {
  .cf-about-unified-hero,
  .cf-gallery-hero { min-height: 500px; padding: 100px 0 54px; }
  .cf-about-unified-hero .site-shell,
  .cf-gallery-hero .site-shell { width: min(100% - 28px, 1385px); }
  .cf-about-unified-hero h1,
  .cf-gallery-hero h1 { font-size: clamp(40px,12vw,54px); }
  .cf-about-unified-hero .site-shell > p:last-child,
  .cf-gallery-hero .site-shell > p:last-child { font-size: 16px; }
  .cf-about-slider { min-height: 600px; }
  .cf-about-slider-copy h2 { font-size: clamp(42px,12vw,58px); }
  .cf-about-company-video,
  .cf-about-factory-gallery figure,
  .cf-about-factory-gallery-more figure,
  .cf-about-values-grid article,
  .cf-about-partner-grid article,
  .cf-about-client-letter-copy,
  .cf-about-client-letter-media,
  .cf-advantage-grid article,
  .cf-advantage-slider,
  .cf-gallery-grid figure,
  .cf-factory-process-visual article,
  .cf-gallery-card,
  .cf-gallery-review-panel,
  .cf-story-band > img { border-radius: 14px; }
  .cf-about-values-grid { grid-template-columns: 1fr; }
  .cf-heritage-closing-media { border-radius: 14px; }
  .cf-heritage-final-cta { border-radius: 14px; }
  .cf-certificate-tab-list { border-radius: 14px; }
}

/* Win the earlier internal-page flat-card declarations without changing site content. */
body:not(.home) .cf-about-values-grid article,
body:not(.home) .cf-about-partner-grid article,
body:not(.home) .cf-advantage-grid article,
body:not(.home) .cf-factory-process-visual article {
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow: none !important;
}
body:not(.home) .cf-about-values-grid article { background: #f1f4f2 !important; color: #26363b !important; }
body:not(.home) .cf-about-partner-grid article,
body:not(.home) .cf-factory-process-visual article { background: #fff !important; }
body:not(.home) .cf-advantage-grid article { background: #f2f5f3 !important; }
@media (min-width: 1025px) {
  #primary .cf-heritage-timeline article {
    border: 0 !important;
    border-radius: 20px !important;
    background: #f2f5f3 !important;
    box-shadow: none !important;
  }
}
@media (max-width: 640px) {
  body:not(.home) .cf-about-values-grid article,
  body:not(.home) .cf-about-partner-grid article,
  body:not(.home) .cf-advantage-grid article,
  body:not(.home) .cf-factory-process-visual article { border-radius: 14px !important; }
}

/* Homepage requested pure-white sections. */
.home .cf-home-certificate-ticker,
.home .cf-home-about-section { background: #fff !important; }
.home .cf-home-certificate-ticker::before { opacity: 0 !important; background-image: none !important; }

/* Homepage section order refinement and accessible certificate drag rail. */
.home .cf-home-certificate-ticker + .cf-home-about-section {
  padding-top: 48px !important;
  border-top: 0;
}
.home .cf-home-about-section + .cf-home-product-categories {
  padding-top: 78px;
  border-top: 0;
}
.cf-home-certificate-window[data-certificate-scroller] {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
  user-select: none;
}
.cf-home-certificate-window[data-certificate-scroller]::-webkit-scrollbar { display: none; }
.cf-home-certificate-window[data-certificate-scroller].is-dragging {
  cursor: grabbing;
  mask-image: none;
}
.cf-home-certificate-window[data-certificate-scroller] .cf-home-certificate-track {
  animation: none !important;
  transform: none !important;
}
.cf-home-certificate-window[data-certificate-scroller] img {
  -webkit-user-drag: none;
  pointer-events: none;
}
@media (max-width: 900px) {
  .home .cf-home-certificate-ticker + .cf-home-about-section { padding-top: 42px !important; }
  .home .cf-home-about-section + .cf-home-product-categories { padding-top: 62px; }
}
@media (max-width: 640px) {
  .home .cf-home-certificate-ticker + .cf-home-about-section { padding-top: 34px !important; }
  .home .cf-home-about-section + .cf-home-product-categories { padding-top: 52px; }
}

/* Blog archive and related-article hover accents use the PANDORA green. */
body.category .cf-blog-grid .cf-news-card:hover,
.single-post .cf-related-articles .cf-news-card:hover {
  border-color: rgba(0,105,55,.42) !important;
  box-shadow: inset 0 -3px 0 var(--cf-primary) !important;
}

/* Blog archives: persistent left category navigation with clean article results. */
.cf-blog-archive-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
}
.cf-blog-archive-layout .cf-blog-category-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 6px 0;
  border-top: 1px solid #d5ded9;
  border-bottom: 1px solid #d5ded9;
}
.cf-blog-archive-layout .cf-blog-category-nav .eyebrow {
  margin: 0;
  padding: 20px 18px 14px;
}
.cf-blog-archive-layout .cf-blog-category-nav a {
  min-height: 54px;
  width: 100%;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border: 0;
  border-top: 1px solid #e1e7e3;
  border-radius: 0;
  background: transparent;
  color: #40514a;
  text-align: left;
}
.cf-blog-archive-layout .cf-blog-category-nav a span {
  color: var(--cf-primary);
  font-family: Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  transition: transform .2s ease;
}
.cf-blog-archive-layout .cf-blog-category-nav a:hover,
.cf-blog-archive-layout .cf-blog-category-nav a.is-active {
  border-color: #e1e7e3;
  background: #eef4f0;
  color: var(--cf-primary);
  box-shadow: inset 3px 0 0 var(--cf-primary);
}
.cf-blog-archive-layout .cf-blog-category-nav a:hover span,
.cf-blog-archive-layout .cf-blog-category-nav a.is-active span { color: currentColor; }
.cf-blog-archive-layout .cf-blog-category-nav a:hover span { transform: translateX(3px); }
.cf-blog-archive-results { min-width: 0; }
.cf-blog-exhibition-banner { display: block; width: 100%; margin-bottom: 28px; }
.cf-blog-exhibition-banner img { display: block; width: 100%; height: auto; }
.cf-blog-exhibition-banner:focus-visible { outline: 2px solid var(--cf-primary); outline-offset: 4px; }

/* Article section actions: visible, compact buttons instead of quiet text links. */
.single-post .cf-article-section-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid var(--cf-primary);
  border-radius: 4px;
  background: #eef5f1;
  color: var(--cf-primary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.single-post .cf-article-section-button .cf-icon { width: 16px; height: 16px; }
.single-post .cf-article-section-button:hover {
  background: var(--cf-primary);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0,105,55,.18);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .cf-blog-archive-layout { grid-template-columns: 1fr; gap: 30px; }
  .cf-blog-archive-layout .cf-blog-category-nav {
    position: static;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 0 8px;
    border: 0;
  }
  .cf-blog-archive-layout .cf-blog-category-nav .eyebrow { display: none; }
  .cf-blog-archive-layout .cf-blog-category-nav a {
    flex: 0 0 auto;
    min-height: 44px;
    width: auto;
    padding: 0 16px;
    border: 1px solid #d4dcde;
    border-radius: 4px;
  }
  .cf-blog-archive-layout .cf-blog-category-nav a span { display: none; }
  .cf-blog-archive-layout .cf-blog-category-nav a:hover,
  .cf-blog-archive-layout .cf-blog-category-nav a.is-active {
    border-color: var(--cf-primary);
    background: var(--cf-primary);
    color: #fff;
    box-shadow: none;
  }
}
@media (max-width: 640px) {
  .single-post .cf-section-head.split-head { align-items: flex-start; }
  .single-post .cf-article-section-button { min-height: 44px; padding: 0 16px; }
}

/* R&D / Quality section: remove the decorative background grid. */
.home .cf-home-rd-quality-section::before { display: none !important; }

/* Composite About icons: keep the overlapping SVG layers transparent. */
.home .cf-home-about-point-icon--tools .cf-icon:last-child,
.home .cf-home-about-point-icon--export .cf-icon:last-child { background: transparent !important; }

/* About values use dark cards, so their headings need a light foreground. */
body:not(.home) .cf-about-values-grid h3 { color: #fff !important; }

/* Factory tour: company image collage in the workshop gallery. */
.cf-gallery-grid .cf-factory-company-collage {
  border: 0;
  background: #eef2f0;
}
.cf-factory-company-collage-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}
.cf-factory-company-collage-bottom {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.cf-gallery-grid .cf-factory-company-collage img {
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}
.cf-gallery-grid .cf-factory-company-collage-top { object-position: center center; }
@media (max-width: 760px) {
  .cf-factory-company-collage-inner,
  .cf-factory-company-collage-bottom { gap: 10px; }
}

/* Homepage R&D / Quality section joins directly to adjacent modules. */
.home .cf-home-rd-quality-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* About client letter: improve reading size without changing the composition. */
.cf-about-client-letter-copy .cf-about-client-letter-lead { font-size: 25px; }
.cf-about-client-letter-copy > p:not(.cf-about-client-letter-lead) { font-size: 15px; }
.cf-about-client-letter-copy .cf-about-client-letter-promises strong { font-size: 14px; }
.cf-about-client-letter-copy .cf-about-client-letter-promises small { font-size: 11px; }
.cf-about-client-letter-copy .cf-about-client-letter-commitment span { font-size: 12px; }
.cf-about-client-letter-copy .cf-about-client-letter-commitment strong { font-size: 16px; }
.cf-about-client-letter-copy footer strong { font-size: 16px; }
.cf-about-client-letter-copy footer span { font-size: 11px; }
.cf-about-client-letter-copy footer button { font-size: 13px; }

/* Editorial FAQ: keep a clear gap between the introduction and action. */
.cf-context-faq--editorial .cf-context-faq-head > button { margin-top: 20px; }

@media (max-width: 640px) {
  .cf-about-client-letter-copy .cf-about-client-letter-lead { font-size: 25px; }
}

/* Advantages capability cards: remove excess empty space below the copy. */
body:not(.home) .cf-advantage-grid article { min-height: 0; }

/* Homepage optimization brief 2026-08-04. */
.home .cf-home-first-screen .max-w-4xl { max-width: 980px; }
.home .cf-home-first-screen h1 { max-width: 940px; font-size: clamp(46px, 5.4vw, 78px); }
.home .cf-home-hero-kicker { letter-spacing: .13em; }

.home .cf-home-product-categories { background: #f1f5f2; border-top: 0; }
.home .cf-home-category-scopes { min-height: 48px; margin: -12px auto 24px; text-align: center; }
.home .cf-home-category-scopes p { max-width: 980px; margin: 0 auto; color: #687872; font-size: 13px; line-height: 1.65; }
.home .cf-home-category-scopes p[hidden] { display: none; }

.home .cf-home-about-section { padding: 96px 0; background: #fff; }
.home .cf-home-about-layout { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(46px, 5vw, 72px); align-items: center; }
.home .cf-home-about-image { border: 0; border-radius: 10px; overflow: hidden; }
.home .cf-home-about-image img { aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.home .cf-home-about-lead { font-size: 15px; line-height: 1.68; }
.home .cf-home-about-points { margin: 24px 0 26px; }
.home .cf-home-about-points > :is(div, a) { min-height: 78px; align-items: flex-start; gap: 14px; padding: 13px 4px; }
.home .cf-home-about-points > :is(div, a) > span:last-child { display: grid; gap: 2px; }
.home .cf-home-about-points > a { text-decoration: none; transition: background-color .2s ease; }
.home .cf-home-about-points > a:hover { background-color: #f0f5f2; }
.home .cf-home-about-points > a:focus-visible { outline: 2px solid var(--cf-primary); outline-offset: 3px; }
.home .cf-home-about-points small { color: var(--cf-primary); font-size: 12px; font-weight: 800; letter-spacing: .1em; line-height: 1.35; text-transform: uppercase; }
.home .cf-home-about-points strong { color: #263832; font-size: 15px; line-height: 1.4; }
.home .cf-home-about-points em { color: #5f706a; font-size: 12px; font-style: normal; line-height: 1.55; }
.home .cf-home-about-points .cf-home-about-point-icon { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; padding: 0; border: 1px solid #d8e0dc; border-radius: 8px; background: #eef2f0; color: var(--cf-primary); }
.home .cf-home-about-points .cf-home-about-point-icon .cf-icon { width: 19px; height: 19px; padding: 0; border: 0; background: transparent; color: inherit; }

.home .cf-home-oem-heading { max-width: 850px; }
.home .cf-home-oem-flow h3 { min-height: 46px; }
.home .cf-home-oem-flow p { min-height: 84px; }
.home .cf-home-partners-grid article { min-height: 200px; }

.home .cf-home-rd-quality-stage > img { object-position: center; }
.home .cf-home-rd-quality-stage-overlay {
  background:
    linear-gradient(90deg,rgba(13,55,43,.22) 0%,rgba(20,62,49,.06) 48%,rgba(13,48,38,.14) 100%),
    linear-gradient(180deg,rgba(255,255,255,.02) 38%,rgba(9,43,34,.22));
}
.home .cf-home-rd-quality-primary {
  width: min(42%, 560px);
  padding: 28px 30px;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 10px;
  color: #173b30;
  background: linear-gradient(135deg,rgba(248,252,250,.82),rgba(231,243,237,.72));
  box-shadow: 0 18px 46px rgba(8,45,34,.18);
  -webkit-backdrop-filter: blur(6px) saturate(115%);
  backdrop-filter: blur(6px) saturate(115%);
}
.home .cf-home-rd-quality-primary > span,
.home .cf-home-rd-quality-panel > span { color: #8a6a1b; }
.home .cf-home-rd-quality-primary h3 { color: #163b2f; text-shadow: 0 1px 0 rgba(255,255,255,.65); }
.home .cf-home-rd-quality-primary > p { color: #3f5c52; }
.home .cf-home-rd-quality-primary li { border-color: rgba(22,83,64,.28); color: #275447; background: rgba(255,255,255,.38); }
.home .cf-home-rd-quality-panel {
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 10px;
  color: #173b30;
  background: linear-gradient(145deg,rgba(234,246,240,.82),rgba(213,236,225,.72));
  box-shadow: 0 20px 50px rgba(8,45,34,.2);
  -webkit-backdrop-filter: blur(6px) saturate(118%);
  backdrop-filter: blur(6px) saturate(118%);
}
.home .cf-home-rd-quality-panel h3 { color: #153a2e; text-shadow: 0 1px 0 rgba(255,255,255,.72); }
.home .cf-home-rd-quality-panel > p { color: #3d5b50; }
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities { gap: 8px; background: transparent; }
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities article {
  min-height: 104px;
  border: 1px solid rgba(33,91,71,.13);
  border-radius: 7px;
  background: rgba(255,255,255,.57);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.65);
}
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities article:nth-child(2),
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities article:nth-child(3) { background: rgba(242,249,245,.48); }
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities i { border: 1px solid rgba(30,104,78,.14); background: rgba(238,247,242,.88); color: var(--cf-primary); }
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities h4 { color: #173d31; }
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities p { color: #567066; }

.home .cf-home-news-slider-section { background: #fff; }
.home .cf-home-news-tabs { display: flex; gap: 8px; padding-bottom: 26px; margin-bottom: 40px; border-bottom: 1px solid #d6dfdb; }
.home .cf-home-news-tabs button { min-height: 44px; padding: 0 20px; border: 1px solid #cad5d0; border-radius: 7px; background: #f6f8f7; color: #334740; font-size: 12px; font-weight: 700; cursor: pointer; transition: .2s ease; }
.home .cf-home-news-tabs button:hover,
.home .cf-home-news-tabs button.is-active { border-color: var(--cf-primary); background: var(--cf-primary); color: #fff; }
.home .cf-home-news-slider-intro h2 b { font: inherit; }
.home .cf-home-news-slide[hidden] { display: none !important; }

@media (max-width: 980px) {
  .home .cf-home-about-layout { grid-template-columns: 1fr; }
  .home .cf-home-about-image img { aspect-ratio: 16 / 9; }
  .home .cf-home-rd-quality-primary { width: auto; }
}
@media (max-width: 640px) {
  .home .cf-home-first-screen h1 { font-size: clamp(39px, 11vw, 52px); }
  .home .cf-home-category-scopes { min-height: 62px; }
  .home .cf-home-about-section { padding: 70px 0; }
  .home .cf-home-about-points > :is(div, a) { min-height: 0; }
  .home .cf-home-oem-flow h3,
  .home .cf-home-oem-flow p { min-height: 0; }
  .home .cf-home-news-tabs { overflow-x: auto; margin-bottom: 28px; }
  .home .cf-home-news-tabs button { flex: 0 0 auto; }
  .home .cf-home-rd-quality-primary { padding: 22px; }
}

/* Solutions overview: bright buyer FAQ followed by the homepage inquiry panel. */
.cf-solutions-faq-wrap .cf-context-faq--field {
  color: #203b32;
  background: radial-gradient(circle at 88% 8%, rgba(0,105,55,.07), transparent 30%), #f4f7f5;
}
.cf-solutions-faq-wrap .cf-context-faq--field::after { color: rgba(0,105,55,.035); }
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-head > span { color: #8f7428; }
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-head h2 { color: #203b32; }
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-head > p { color: #687a73; }
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-head > p strong { color: #203b32; }
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-head > button {
  border-color: var(--cf-primary);
  color: var(--cf-primary);
}
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-head > button:hover {
  background: var(--cf-primary);
  color: #fff;
}
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-list {
  gap: 12px;
  border: 0;
}
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-list details {
  border: 1px solid #d5dfdb;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(24,55,46,.045);
}
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-list details[open] {
  border-color: #b8cec5;
  background: #f9fbfa;
}
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-list summary > span { color: #8f7428; }
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-list summary > strong { color: #29443b; }
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-list summary > i {
  border-color: #c8d7d1;
  color: var(--cf-primary);
}
.cf-solutions-faq-wrap .cf-context-faq--field .cf-context-faq-list details > div > p { color: #687a73; }
.cf-solutions-inline-inquiry { border-top: 1px solid #dce4dd; }

/* Product archive: OEM/ODM editorial split placed immediately before the FAQ. */
.cf-product-oem-spotlight {
  padding: 96px 0;
  border-top: 1px solid #e2e9e5;
  background: #f4f7f5;
}
.cf-product-oem-spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
  align-items: stretch;
  gap: 64px;
}
.cf-product-oem-spotlight-copy {
  align-self: center;
  max-width: 620px;
  padding: 34px 0;
}
.cf-product-oem-spotlight-copy .eyebrow {
  margin: 0 0 16px;
  color: #8f7428;
}
.cf-product-oem-spotlight-copy h2 {
  margin: 0 0 24px;
  color: #173f33;
  font-size: clamp(34px,3.2vw,50px);
  line-height: 1.1;
  letter-spacing: -.025em;
}
.cf-product-oem-spotlight-copy > p:not(.eyebrow) {
  margin: 0;
  color: #667770;
  font-size: 17px;
  line-height: 1.8;
}
.cf-product-oem-spotlight-copy > a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 0 24px;
  border: 1px solid var(--cf-primary);
  border-radius: 4px;
  background: var(--cf-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.cf-product-oem-spotlight-copy > a:hover {
  background: #00572e;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,105,55,.15);
}
.cf-product-oem-spotlight-copy > a .cf-icon { width: 17px; height: 17px; }
.cf-product-oem-spotlight-media {
  min-height: 460px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(20,54,44,.12);
}
.cf-product-oem-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .cf-product-oem-spotlight { padding: 70px 0; }
  .cf-product-oem-spotlight-grid { grid-template-columns: 1fr; gap: 32px; }
  .cf-product-oem-spotlight-copy { max-width: none; padding: 0; }
  .cf-product-oem-spotlight-media { min-height: 360px; }
}
@media (max-width: 640px) {
  .cf-product-oem-spotlight { padding: 54px 0; }
  .cf-product-oem-spotlight-copy h2 { font-size: 32px; }
  .cf-product-oem-spotlight-copy > p:not(.eyebrow) { font-size: 16px; }
  .cf-product-oem-spotlight-media { min-height: 270px; }
}

/* The main About slider matches the standard Support hero height. */
.cf-about-slider.cf-about-slider--support-height {
  height: 500px !important;
  min-height: 500px !important;
}

/* About submenu heroes match the Solutions overview hero height. */
.cf-about-unified-hero,
.cf-gallery-hero {
  height: 500px !important;
  min-height: 500px !important;
  padding: 112px 0 88px !important;
}

@media (max-width: 640px) {
  .cf-about-slider.cf-about-slider--support-height {
    height: 430px !important;
    min-height: 430px !important;
  }

  .cf-about-unified-hero,
  .cf-gallery-hero {
    height: 430px !important;
    min-height: 430px !important;
    padding: 80px 0 58px !important;
  }
}

/* Product imagery is uploaded square: keep every real product card at 1:1. */
.home .cf-home-category-product > div,
.home .cf-home-featured-media,
.cf-product-card .cf-product-media,
.cf-product-clean-grid .cf-product-media,
.cf-vip-product-image {
  aspect-ratio: 1 / 1 !important;
  background: #fff !important;
}

.home .cf-home-category-product > div > img,
.home .cf-home-featured-media > img,
.cf-product-card .cf-product-media > img,
.cf-product-clean-grid .cf-product-media > img,
.cf-vip-product-image > img {
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  object-fit: fill !important;
  object-position: center !important;
}

/* Article detail typography: a clear editorial hierarchy scoped to the post body. */
.single-post .cf-news-detail-entry {
  color: #40534c;
  font-size: 17px;
  line-height: 1.82;
  letter-spacing: .002em;
  text-wrap: pretty;
}
.single-post .cf-news-detail-entry > *:first-child { margin-top: 0 !important; }
.single-post .cf-news-detail-entry > *:last-child { margin-bottom: 0 !important; }
.single-post .cf-news-detail-entry div { font-size: inherit; line-height: inherit; }
.single-post .cf-news-detail-entry > div:not([class]) { margin: 24px 0; }
.single-post .cf-news-detail-entry .wp-block-group,
.single-post .cf-news-detail-entry .wp-block-columns { margin-top: 34px; margin-bottom: 34px; }

.single-post .cf-news-detail-entry h2,
.single-post .cf-news-detail-entry h3,
.single-post .cf-news-detail-entry h4,
.single-post .cf-news-detail-entry h5,
.single-post .cf-news-detail-entry h6 {
  max-width: 820px;
  color: #173d31;
  font-weight: 800;
  text-wrap: balance;
}
.single-post .cf-news-detail-entry h2 {
  position: relative;
  margin: 58px 0 22px;
  padding: 3px 0 3px 20px;
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.17;
  letter-spacing: -.025em;
}
.single-post .cf-news-detail-entry h2::before {
  content: "";
  position: absolute;
  inset: .14em auto .12em 0;
  width: 4px;
  border-radius: 4px;
  background: var(--cf-primary);
}
.single-post .cf-news-detail-entry h3 {
  margin: 44px 0 18px;
  font-size: clamp(24px, 2.3vw, 28px) !important;
  line-height: 1.23;
  letter-spacing: -.018em;
}
.single-post .cf-news-detail-entry h4 {
  margin: 36px 0 14px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -.01em;
}
.single-post .cf-news-detail-entry h5 {
  margin: 30px 0 12px;
  color: #245c49;
  font-size: 19px;
  line-height: 1.38;
}
.single-post .cf-news-detail-entry h6 {
  margin: 26px 0 10px;
  color: var(--cf-primary);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.single-post .cf-news-detail-entry p {
  max-width: 78ch;
  margin: 0 0 26px;
  color: #40534c;
  font-size: 17px;
  line-height: 1.82;
}
.single-post .cf-news-detail-entry p + p { margin-top: -2px; }
.single-post .cf-news-detail-entry a:not(.button):not(.wp-block-button__link) {
  color: #00734c;
  font-weight: 750;
  text-decoration-line: underline;
  text-decoration-color: rgba(0,115,76,.42);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color .18s ease, text-decoration-color .18s ease, background-color .18s ease;
}
.single-post .cf-news-detail-entry a:not(.button):not(.wp-block-button__link):hover {
  color: #004e35;
  text-decoration-color: currentColor;
  background: rgba(0,115,76,.06);
}
.single-post .cf-news-detail-entry a:focus-visible {
  outline: 2px solid var(--cf-primary);
  outline-offset: 3px;
}
.single-post .cf-news-detail-entry strong,
.single-post .cf-news-detail-entry b {
  color: #143c2f;
  font-weight: 850;
  background: linear-gradient(to top, rgba(198,225,211,.68) 0 34%, transparent 34% 100%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.single-post .cf-news-detail-entry ul,
.single-post .cf-news-detail-entry ol {
  display: block;
  max-width: 78ch;
  margin: 22px 0 32px;
  padding-left: 1.5em;
  color: #40534c;
  font-size: 17px;
  line-height: 1.72;
}
.single-post .cf-news-detail-entry li { margin: 10px 0; padding-left: .3em; }
.single-post .cf-news-detail-entry li::marker { color: var(--cf-primary); font-weight: 800; }
.single-post .cf-news-detail-entry li > ul,
.single-post .cf-news-detail-entry li > ol { margin: 10px 0 6px; }

.single-post .cf-news-detail-entry blockquote {
  position: relative;
  margin: 38px 0;
  padding: 28px 34px 28px 38px;
  border: 0;
  border-left: 4px solid var(--cf-primary);
  border-radius: 0 10px 10px 0;
  background: linear-gradient(135deg, #edf6f1 0%, #f7faf8 100%);
  color: #1f493a;
  box-shadow: inset 0 0 0 1px rgba(0,105,55,.08);
}
.single-post .cf-news-detail-entry blockquote p {
  margin: 0;
  color: inherit;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.48;
}
.single-post .cf-news-detail-entry hr {
  height: 1px;
  margin: 46px 0;
  border: 0;
  background: linear-gradient(90deg, rgba(0,105,55,.42), rgba(0,105,55,.05));
}

.single-post .cf-news-detail-entry figure { margin: 34px 0; }
.single-post .cf-news-detail-entry img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 9px;
}
.single-post .cf-news-detail-entry figcaption {
  margin-top: 10px;
  color: #71817a;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.single-post .cf-news-detail-entry .wp-block-table { margin: 34px 0; overflow-x: auto; border-radius: 10px; }
.single-post .cf-news-detail-entry table {
  width: 100%;
  margin: 34px 0;
  border: 1px solid #d3dfd9;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  color: #344b42;
  font-size: 15px;
  line-height: 1.55;
}
.single-post .cf-news-detail-entry .wp-block-table table { margin: 0; }
.single-post .cf-news-detail-entry th,
.single-post .cf-news-detail-entry td {
  padding: 15px 17px;
  border: 0;
  border-right: 1px solid #d9e3de;
  border-bottom: 1px solid #d9e3de;
  text-align: left;
  vertical-align: top;
}
.single-post .cf-news-detail-entry th:last-child,
.single-post .cf-news-detail-entry td:last-child { border-right: 0; }
.single-post .cf-news-detail-entry tr:last-child td { border-bottom: 0; }
.single-post .cf-news-detail-entry th {
  background: #0b674a;
  color: #fff;
  font-weight: 800;
  letter-spacing: .01em;
}
.single-post .cf-news-detail-entry tbody tr:nth-child(even) td { background: #f4f8f6; }
.single-post .cf-news-detail-entry tbody tr:hover td { background: #edf5f1; }

.single-post .cf-news-detail-entry code {
  padding: .15em .38em;
  border-radius: 4px;
  background: #eef3f0;
  color: #15553f;
  font-size: .9em;
}
.single-post .cf-news-detail-entry pre {
  margin: 30px 0;
  padding: 22px 24px;
  overflow-x: auto;
  border-radius: 9px;
  background: #17372f;
  color: #eef8f3;
  font-size: 14px;
  line-height: 1.65;
}
.single-post .cf-news-detail-entry pre code { padding: 0; background: transparent; color: inherit; }

@media (max-width: 640px) {
  .single-post .cf-news-detail-entry { font-size: 16px; line-height: 1.78; }
  .single-post .cf-news-detail-entry h2 { margin-top: 46px; padding-left: 16px; font-size: 29px; }
  .single-post .cf-news-detail-entry h3 { margin-top: 36px; font-size: 24px; }
  .single-post .cf-news-detail-entry h4 { font-size: 20px; }
  .single-post .cf-news-detail-entry h5 { font-size: 18px; }
  .single-post .cf-news-detail-entry h6 { font-size: 15px; }
  .single-post .cf-news-detail-entry p,
  .single-post .cf-news-detail-entry ul,
  .single-post .cf-news-detail-entry ol { font-size: 16px; }
  .single-post .cf-news-detail-entry blockquote { padding: 22px 22px 22px 25px; }
  .single-post .cf-news-detail-entry blockquote p { font-size: 19px; }
  .single-post .cf-news-detail-entry table { min-width: 620px; font-size: 14px; }
  .single-post .cf-news-detail-entry th,
  .single-post .cf-news-detail-entry td { padding: 12px 13px; }
}

/* Product-card consistency: square, complete imagery and green interaction accents. */
.cf-product-card .cf-product-media,
.cf-product-clean-grid .cf-product-card .cf-product-media,
.single-post .cf-article-product-recommendations .cf-product-card .cf-product-media {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  overflow: hidden !important;
  background: #fff !important;
}
.cf-product-card .cf-product-media > img,
.cf-product-clean-grid .cf-product-card .cf-product-media > img,
.single-post .cf-article-product-recommendations .cf-product-card .cf-product-media > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
  object-fit: fill !important;
  object-position: center !important;
  transform: none !important;
}
.cf-product-card:hover,
.cf-product-clean-grid .cf-product-card:hover,
.single-post .cf-article-product-recommendations .cf-product-card:hover,
.cf-home-certificate-item:hover,
.cf-home-category-product:hover,
.cf-home-featured-card:hover,
.cf-home-partners-grid article:hover,
.cf-home-news-section .cf-news-card:hover,
.cf-home-standard-card:hover,
.cf-about-link-stack a:hover {
  border-color: rgba(0,105,55,.42) !important;
  box-shadow: inset 0 -3px 0 var(--cf-primary) !important;
}

/* Homepage R&D capability panel: compact titles and aligned panel bottoms. */
.home .cf-home-rd-quality-panel .cf-home-quality-capabilities h4 {
  font-size: 16px !important;
  line-height: 1.25 !important;
}
@media (min-width: 1025px) {
  .home .cf-home-rd-quality-panel {
    top: auto !important;
    bottom: 46px !important;
  }
}

/* Homepage News & Stories: active tab pointer and simplified intro. */
.home .cf-home-news-tabs button { position: relative; }
.home .cf-home-news-tabs button.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13px;
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-top-color: var(--cf-primary);
  transform: translateX(-50%);
}
.home .cf-home-news-slider-intro h2 { display: block; }

/* Product catalog search and customer-selectable grid density. */
.cf-product-catalog-toolbar {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid #d5dfd8;
  border-radius: 6px;
  background: #f5f8f6;
  box-shadow: 0 10px 26px rgba(28,58,47,.07);
}
.cf-product-catalog-toolbar::before { display: none; }
.cf-product-catalog-search { min-width: 0; display: grid; grid-template-columns: minmax(260px, 1fr) auto auto; gap: 10px; align-items: center; }
.cf-product-catalog-search label { min-width: 0; min-height: 52px; display: flex; align-items: center; gap: 11px; padding: 0 17px; border: 1px solid #cbd7cf; border-radius: 4px; background: #fff; box-shadow: none; }
.cf-product-search-icon { width: 18px; height: 18px; flex: 0 0 18px; display: inline-flex; color: #66786f; }
.cf-product-search-icon .cf-icon { width: 100%; height: 100%; }
.cf-product-catalog-search input[type="search"] { width: 100%; min-width: 0; height: 50px; padding: 0; border: 0; border-radius: 0; outline: 0; background: transparent; color: #26363b; font-size: 15px; font-weight: 600; box-shadow: none; }
.cf-product-catalog-search input[type="search"]::placeholder { color: #879497; opacity: 1; font-weight: 500; }
.cf-product-catalog-search input[type="search"]:focus,
.cf-product-catalog-search input[type="search"]:focus-visible { border: 0 !important; outline: none !important; outline-offset: 0 !important; box-shadow: none !important; }
.cf-product-catalog-search label:focus-within { border-color: var(--cf-primary); box-shadow: 0 0 0 3px rgba(0,105,55,.09); }
.cf-product-catalog-search > button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border: 1px solid var(--cf-primary); border-radius: 4px; background: var(--cf-primary); color: #fff; font-size: 12px; font-weight: 900; letter-spacing: .055em; text-transform: uppercase; cursor: pointer; transition: background .2s ease, border-color .2s ease; }
.cf-product-catalog-search > button:hover { border-color: #095540; background: #095540; }
.cf-product-catalog-search > button .cf-icon { display: none; }
.cf-product-search-clear { display: inline-flex; align-items: center; justify-content: center; min-height: 40px; padding: 0 7px; color: var(--cf-primary); font-size: 12px; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cf-product-search-clear:hover { color: #095540; }
.cf-product-grid-control { display: flex; align-items: center; gap: 7px; padding-left: 16px; border-left: 1px solid #d5dfd8; }
.cf-product-grid-control > span { margin-right: 3px; color: #75837c; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.cf-product-grid-control button { min-width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 0 9px; border: 1px solid #cbd7cf; border-radius: 4px; background: #fff; color: #66786f; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.cf-product-grid-control button:hover { border-color: #8fac9b; background: #edf4f0; color: var(--cf-primary); }
.cf-product-grid-control button.is-active { border-color: var(--cf-primary); background: #e9f3ed; color: var(--cf-primary); box-shadow: none; }
.cf-product-grid-control button strong { display: none; }
.cf-grid-glyph { display: grid; grid-auto-flow: column; gap: 2px; width: 23px; height: 17px; }
.cf-grid-glyph i { display: block; border-radius: 1px; background: currentColor; opacity: .88; }
.cf-grid-glyph--3 { grid-template-columns: repeat(3, 1fr); }
.cf-grid-glyph--4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 1101px) {
  .cf-product-catalog-results [data-product-grid][data-columns="3"] { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cf-product-catalog-results [data-product-grid][data-columns="4"] { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 1260px) {
  .cf-product-catalog-toolbar { grid-template-columns: 1fr; }
  .cf-product-grid-control { justify-self: end; padding: 0; border: 0; }
}
@media (max-width: 1100px) {
  .cf-product-grid-control { display: none; }
}
@media (max-width: 760px) {
  .cf-product-catalog-toolbar { padding: 15px; }
  .cf-product-catalog-search { display: flex; flex-wrap: wrap; }
  .cf-product-catalog-search label { width: 100%; min-height: 50px; }
  .cf-product-catalog-search > button { flex: 1 1 auto; }
  .cf-product-search-clear { min-width: 58px; }
}

/* Category-bound article detail templates. */
.cf-guide-hero { background: linear-gradient(135deg, #f3f8f5 0%, #fff 58%, #edf4ef 100%); }
.cf-product-guide-page .cf-news-detail-hero-copy .eyebrow { color: #bd6f2f; }
.cf-guide-products-section { padding: 82px 0 88px; border-top: 1px solid rgba(190,201,190,.7); border-bottom: 1px solid rgba(190,201,190,.7); background: #f3f7f4; }
.cf-guide-products-section .cf-section-head { margin-bottom: 30px; }
.cf-guide-products-section .cf-section-head p:not(.eyebrow) { max-width: 720px; margin-top: 12px; color: #617075; }
.cf-guide-reading-section { padding: 96px 0 110px; }
.cf-guide-reading-section--top { padding-bottom: 76px; }
.cf-guide-reading-section--bottom { padding-top: 82px; }
.cf-guide-reading-shell { width: min(calc(100% - 40px), 980px); }
.cf-guide-reading-shell .cf-news-detail-content { min-width: 0; }
.cf-guide-entry { padding: 0 38px; }
.cf-guide-entry--after-products > :first-child { margin-top: 0; }
.cf-guide-cta-panel { margin-top: 72px; }

.cf-exhibition-hero { position: relative; min-height: min(760px, 82vh); display: flex; align-items: flex-end; overflow: hidden; background: #102c25; color: #fff; }
.cf-exhibition-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(8,31,25,.12) 10%, rgba(8,31,25,.38) 52%, rgba(8,31,25,.94) 100%); }
.cf-exhibition-hero > figure { position: absolute; inset: 0; margin: 0; }
.cf-exhibition-hero > figure img { width: 100%; height: 100%; object-fit: cover; }
.cf-exhibition-hero-copy { position: relative; z-index: 2; padding-top: 180px; padding-bottom: 64px; }
.cf-exhibition-hero-copy .cf-news-detail-back-row a { color: rgba(255,255,255,.82); }
.cf-exhibition-hero-copy .cf-news-detail-back-row a:hover { color: var(--cf-lime); }
.cf-exhibition-hero-copy > .eyebrow { margin-top: 34px; color: #e1c15f; }
.cf-exhibition-hero-copy h1 { max-width: 1050px; margin: 14px 0 20px; color: #fff; font-size: clamp(42px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.035em; }
.cf-exhibition-lead { max-width: 820px; color: rgba(255,255,255,.82); font-size: 19px; line-height: 1.65; }
.cf-exhibition-event-meta { display: flex; flex-wrap: wrap; gap: 10px 32px; margin-top: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.24); }
.cf-exhibition-event-meta span { min-width: 145px; color: #fff; font-size: 14px; font-weight: 700; }
.cf-exhibition-event-meta small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.cf-exhibition-story-section { padding: 100px 0 112px; background: #fff; }
.cf-exhibition-story-shell { width: min(calc(100% - 40px), 1080px); }
.cf-exhibition-gallery { margin: 0 0 64px; }
.cf-exhibition-gallery-heading { max-width: 760px; margin-bottom: 28px; }
.cf-exhibition-gallery-heading h2 { margin: 8px 0 0; color: #26363b; font-size: clamp(30px, 3.2vw, 44px); line-height: 1.12; }
.cf-exhibition-gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.cf-exhibition-gallery-item { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 4px; background: #e9efeb; aspect-ratio: 4 / 3; }
.cf-exhibition-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cf-exhibition-gallery-item:hover img { transform: scale(1.025); }
.cf-exhibition-gallery-item figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 28px 16px 12px; background: linear-gradient(transparent, rgba(5,24,19,.76)); color: #fff; font-size: 13px; line-height: 1.45; }
.cf-exhibition-entry { width: 100%; padding: 0; }
.cf-exhibition-entry > :first-child { margin-top: 0; }
.cf-exhibition-entry .wp-block-gallery { display: grid !important; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px !important; margin: 54px 0 !important; }
.cf-exhibition-entry .wp-block-gallery > .wp-block-image { width: auto !important; margin: 0 !important; }
.cf-exhibition-entry .wp-block-gallery img { width: 100%; height: 100%; min-height: 310px; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; }
.cf-exhibition-entry .wp-block-gallery figcaption { padding: 10px 12px; background: linear-gradient(transparent, rgba(0,0,0,.72)); color: #fff; font-size: 12px; }
.cf-exhibition-cta-panel { margin-top: 72px; background: linear-gradient(135deg, #133f34, #0b2d25); }
.cf-exhibition-history-section .cf-section-head { margin-bottom: 38px; }
.cf-exhibition-history-list { border-top: 1px solid #cfd8d3; }
.cf-exhibition-history-list article { display: grid; grid-template-columns: 110px 280px minmax(0, 1fr); gap: 30px; align-items: center; padding: 28px 0; border-bottom: 1px solid #cfd8d3; }
.cf-exhibition-history-list time { align-self: start; padding-top: 8px; color: #617075; }
.cf-exhibition-history-list time strong { display: block; color: var(--cf-primary); font-family: "Hanken Grotesk", Inter, sans-serif; font-size: 30px; line-height: 1; }
.cf-exhibition-history-list time span { display: block; margin-top: 7px; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.cf-exhibition-history-media { display: block; overflow: hidden; border-radius: 4px; aspect-ratio: 16 / 10; background: #e9efeb; }
.cf-exhibition-history-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .32s ease; }
.cf-exhibition-history-list article:hover .cf-exhibition-history-media img { transform: scale(1.035); }
.cf-exhibition-history-list h3 { margin: 8px 0 10px; color: #26363b; font-size: clamp(22px, 2vw, 28px); line-height: 1.18; }
.cf-exhibition-history-list h3 a { color: inherit; }
.cf-exhibition-history-list article > div > p:not(.eyebrow) { max-width: 670px; margin-bottom: 14px; color: #617075; }
.cf-exhibition-history-list article > div > a { display: inline-flex; align-items: center; gap: 8px; color: var(--cf-primary); font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.cf-exhibition-history-list article > div > a .cf-icon { width: 15px; height: 15px; }

@media (max-width: 900px) {
  .cf-guide-entry, .cf-exhibition-entry { padding: 0; }
  .cf-exhibition-history-list article { grid-template-columns: 84px 220px minmax(0, 1fr); gap: 20px; }
}
@media (max-width: 680px) {
  .cf-guide-products-section, .cf-guide-reading-section, .cf-exhibition-story-section { padding-top: 64px; padding-bottom: 72px; }
  .cf-guide-reading-section--top { padding-bottom: 56px; }
  .cf-guide-reading-section--bottom { padding-top: 60px; }
  .cf-exhibition-hero { min-height: 660px; }
  .cf-exhibition-hero-copy { padding-top: 130px; padding-bottom: 42px; }
  .cf-exhibition-hero-copy h1 { font-size: clamp(38px, 12vw, 54px); }
  .cf-exhibition-lead { font-size: 16px; }
  .cf-exhibition-event-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .cf-exhibition-gallery { margin-bottom: 48px; }
  .cf-exhibition-gallery-grid,
  .cf-exhibition-entry .wp-block-gallery { grid-template-columns: 1fr; }
  .cf-exhibition-entry .wp-block-gallery img { min-height: 0; aspect-ratio: 4 / 3; }
  .cf-exhibition-history-list article { grid-template-columns: 1fr; gap: 16px; padding: 24px 0 30px; }
  .cf-exhibition-history-list time { display: flex; align-items: baseline; gap: 10px; padding: 0; }
  .cf-exhibition-history-list time span { margin: 0; }
  .cf-exhibition-history-media { aspect-ratio: 16 / 9; }
}

/* Excel 8.17 review: category-led homepage catalog. */
.cf-home-category-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
  border-top: 0;
}
.cf-home-category-card {
  display: block;
  overflow: hidden;
  border: 1px solid #e0e8e2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(15, 67, 48, .06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cf-home-category-card:hover { transform: translateY(-4px); border-color: #86b9a1; box-shadow: 0 16px 34px rgba(15, 67, 48, .12); }
.cf-home-category-card > div { aspect-ratio: 4 / 3; overflow: hidden; background: #f4f7f5; }
.cf-home-category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.cf-home-category-card:hover img { transform: scale(1.035); }
.cf-home-category-card h3 { margin: 0; padding: 20px 22px 22px; color: #153d31; font-size: 20px; line-height: 1.3; text-align: center; }

/* Product catalog search and compact view controls. */
.cf-product-catalog-search--top {
  width: min(720px, 100%);
  margin: 0 0 28px;
  padding: 5px;
  border: 1px solid #dbe5df;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(15, 67, 48, .055);
}
.cf-product-catalog-search--top label { min-height: 46px; }
.cf-product-catalog-search--top button { min-height: 46px; padding: 0 22px; border-radius: 7px; }
.cf-product-catalog-toolbar { min-height: 38px; justify-content: flex-end; padding: 0; border: 0; background: transparent; }
.cf-product-grid-control { gap: 7px; }
.cf-product-grid-control button { width: 34px; height: 32px; padding: 8px; border-radius: 6px; }
.cf-grid-glyph { gap: 2px; }
.cf-grid-glyph i { width: 2px; border-radius: 2px; }
.cf-product-results-heading { margin-top: -38px; padding-right: 92px; }

/* One clean editorial template for all article categories. */
.cf-news-detail-page .cf-news-detail-hero { padding: 0 0 62px; }
.cf-news-detail-hero-banner {
  width: 100%;
  height: 500px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.cf-news-detail-hero-banner img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; object-position: center; }
.cf-news-detail-hero-unified { display: block; }
.cf-news-detail-hero-unified .cf-news-detail-hero-copy { width: min(920px, 100%); margin: 0; padding: 42px 0 10px; }
.cf-news-detail-layout { display: block; max-width: 920px; }
.cf-news-detail-content { width: 100%; }
.cf-news-detail-entry h2 { font-size: clamp(27px, 2.3vw, 34px); line-height: 1.25; }
.cf-news-detail-entry h3 { font-size: clamp(22px, 1.8vw, 28px); }
.cf-news-detail-entry h4 { font-size: 21px; }
.cf-related-articles .cf-section-head .eyebrow { color: var(--cf-primary); }

/* Product detail: lightweight OEM and manufacturing proof sections. */
.cf-product-oem-detail { background: #fff; }
.cf-product-oem-detail-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: stretch; gap: 48px; }
.cf-product-oem-detail-grid > div { display: flex; flex-direction: column; justify-content: center; }
.cf-product-oem-detail-grid h2 { margin: 8px 0 18px; color: #173d31; font-size: clamp(32px, 3.1vw, 48px); line-height: 1.12; }
.cf-product-oem-detail-grid p:not(.eyebrow) { color: #53655d; font-size: 17px; line-height: 1.8; }
.cf-product-oem-detail-grid a { align-self: flex-start; display: inline-flex; align-items: center; gap: 9px; margin-top: 16px; padding: 14px 20px; color: #fff; background: var(--cf-primary); border-radius: 6px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.cf-product-oem-detail-grid img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; border-radius: 12px; }
.cf-product-why-layout { display: block; }
.cf-product-why-intro { max-width: 780px; margin-bottom: 34px; }
.cf-product-why-intro button { display: none; }
.cf-product-advantage-list { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 20px; border: 0; }
.cf-product-advantage-list article { grid-column: span 4; display: block; overflow: hidden; min-height: 0; padding: 0; border: 1px solid #dfe8e2; border-radius: 10px; background: #fff; }
.cf-product-advantage-list article:nth-child(n+4) { grid-column: span 3; }
.cf-product-advantage-list article > img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.cf-product-advantage-list article > div { display: flex; align-items: flex-start; gap: 12px; padding: 18px; }
.cf-product-advantage-list article > div > span { flex: 0 0 30px; display: grid; place-items: center; width: 30px; height: 30px; color: var(--cf-primary); background: #eef7f1; border-radius: 50%; }
.cf-product-advantage-list article > div .cf-icon { width: 17px; height: 17px; }
.cf-product-advantage-list h3 { font-size: 15px; }
.cf-product-configuration-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; margin-top: 32px; }
.cf-product-configuration-grid article { overflow: hidden; border: 1px solid #dfe8e2; border-radius: 10px; background: #fff; }
.cf-product-configuration-grid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.cf-product-configuration-grid h3 { margin: 0; padding: 18px; color: #173d31; font-size: 17px; }
.cf-product-cfew-feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; margin: 22px 0 48px; }
.cf-product-cfew-feature-list span { display: flex; align-items: center; gap: 10px; min-height: 48px; padding: 12px 16px; background: #fff; border: 1px solid #e1e9e5; color: #0a4d3c; font-weight: 600; }
.cf-product-cfew-feature-list svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* Support landing: keep the navigation transition compact and title-led. */
body:not(.home):not(.single-post) .site-main .cf-support-navigation-section { padding-top: 64px; padding-bottom: 96px; }
.cf-support-navigation-heading { display: block; margin-bottom: 32px; }
.cf-support-navigation-heading h2 { max-width: 900px; }

/* Certificate gallery: title-free, edge-to-edge cards with one shared ratio. */
.cf-certificate-tab-panel .cf-certificate-document-grid { align-items: stretch; }
.cf-certificate-tab-panel .cf-certificate-card {
  aspect-ratio: 17 / 23;
  min-height: 0;
  padding: 0;
  border-radius: 14px;
  background: #fff;
}
.cf-certificate-tab-panel .cf-certificate-card-title { display: none; }
.cf-certificate-tab-panel .cf-certificate-card > .cf-certificate-preview,
.cf-certificate-tab-panel .cf-certificate-card > .cf-certificate-preview:hover,
.cf-certificate-tab-panel .cf-certificate-card .cf-certificate-document,
[data-certificate-panel="honors"] .cf-certificate-card .cf-certificate-document,
[data-certificate-panel="honors"] .cf-certificate-card.is-portrait .cf-certificate-document,
[data-certificate-panel="honors"] .cf-certificate-card.is-landscape .cf-certificate-document {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  padding: 0;
  border-radius: 14px;
  background: #fff;
}
.cf-certificate-tab-panel .cf-certificate-card img,
.cf-certificate-tab-panel .cf-certificate-card:first-child img,
[data-certificate-panel="honors"] .cf-certificate-card img,
[data-certificate-panel="honors"] .cf-certificate-card:first-child img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  object-fit: fill;
  object-position: center;
}
[data-certificate-panel="certification"] .cf-certificate-card img,
[data-certificate-panel="certification"] .cf-certificate-card:first-child img,
[data-certificate-panel="certification"] .cf-certificate-card:hover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  transform: translate(var(--cf-cert-shift-x, 0), var(--cf-cert-shift-y, 0)) scale(var(--cf-cert-scale-x, 1), var(--cf-cert-scale-y, 1));
  transform-origin: center;
}
[data-certificate-panel="honors"] .cf-certificate-card {
  aspect-ratio: 4 / 3;
}
[data-certificate-panel="honors"] .cf-certificate-card img,
[data-certificate-panel="honors"] .cf-certificate-card:first-child img,
[data-certificate-panel="honors"] .cf-certificate-card:hover img,
[data-certificate-panel="honors"] .cf-certificate-card.is-honor-02 img,
[data-certificate-panel="honors"] .cf-certificate-card.is-honor-02:hover img {
  object-fit: contain;
  transform: none;
}
[data-certificate-panel="product"] .cf-certificate-card {
  padding: 13px;
  overflow: visible;
  border: 1px solid #24140b;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 20%, rgba(0,0,0,.24) 52%, rgba(255,255,255,.12) 76%, transparent 100%),
    repeating-linear-gradient(90deg, #2a170d 0 7px, #51301a 8px 15px, #382012 16px 23px);
  box-shadow:
    0 14px 28px rgba(31,20,13,.22),
    inset 0 0 0 2px rgba(226,190,116,.34),
    inset 0 0 0 5px rgba(19,10,6,.34);
}
[data-certificate-panel="product"] .cf-certificate-card:hover {
  transform: translateY(-3px);
  border-color: #24140b;
  box-shadow:
    0 20px 36px rgba(31,20,13,.28),
    inset 0 0 0 2px rgba(226,190,116,.4),
    inset 0 0 0 5px rgba(19,10,6,.34);
}
[data-certificate-panel="product"] .cf-certificate-card > .cf-certificate-preview,
[data-certificate-panel="product"] .cf-certificate-card > .cf-certificate-preview:hover {
  height: 100%;
  padding: 7px;
  overflow: hidden;
  border: 1px solid #9b753b;
  border-radius: 2px;
  background: linear-gradient(135deg, #f5dfa1 0%, #ae8240 35%, #f1d488 62%, #967037 100%);
  box-shadow: inset 0 0 0 2px rgba(255,248,211,.68), inset 0 0 8px rgba(70,43,15,.28);
}
[data-certificate-panel="product"] .cf-certificate-card .cf-certificate-document {
  overflow: hidden;
  border: 1px solid #b9a26d;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(37,24,13,.25);
}

@media (max-width: 900px) {
  .cf-home-category-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cf-product-oem-detail-grid { grid-template-columns: 1fr; }
  .cf-product-advantage-list article, .cf-product-advantage-list article:nth-child(n+4) { grid-column: span 6; }
  .cf-product-configuration-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cf-product-cfew-feature-list { grid-template-columns: 1fr; }
  body:not(.home):not(.single-post) .site-main .cf-support-navigation-section { padding-top: 52px; padding-bottom: 76px; }
}
@media (max-width: 600px) {
  .cf-home-category-cards { grid-template-columns: 1fr; gap: 16px; }
  .cf-product-catalog-search--top { margin-top: 16px; }
  .cf-product-results-heading { margin-top: 0; padding-right: 0; }
  .cf-product-catalog-toolbar { margin-bottom: 10px; }
  .cf-news-detail-hero-banner { height: 430px; }
  .cf-news-detail-hero-unified .cf-news-detail-hero-copy { padding-top: 28px; }
  .cf-product-advantage-list article, .cf-product-advantage-list article:nth-child(n+4) { grid-column: 1 / -1; }
  .cf-product-configuration-grid { grid-template-columns: 1fr; }
  .cf-product-oem-detail-grid img { min-height: 260px; }
  body:not(.home):not(.single-post) .site-main .cf-support-navigation-section { padding-top: 42px; padding-bottom: 64px; }
  .cf-support-navigation-heading { margin-bottom: 24px; }
}

/* Product catalog: sidebar search and a polished, aligned density switcher. */
.cf-product-filter-sidebar { display: flex; flex-direction: column; }
.cf-product-sidebar-search {
  order: -2;
  display: block;
  padding: 16px;
  border-bottom: 1px solid #d8e1da;
  background: linear-gradient(180deg, #fff 0%, #f8faf8 100%);
}
.cf-product-sidebar-search-row {
  display: flex;
  width: 100%;
  align-items: center;
}
.cf-product-sidebar-search-row label {
  flex: 1 1 auto;
  width: auto;
  min-height: 44px;
  padding: 0 10px;
  border-color: #c9d6cd;
  border-right: 0;
  border-radius: 8px 0 0 8px;
}
.cf-product-sidebar-search input[type="search"] { height: 42px; font-size: 13px; }
.cf-product-sidebar-search .cf-product-search-icon { width: 16px; height: 16px; flex-basis: 16px; }
.cf-product-sidebar-search-row button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--cf-primary);
  border-radius: 0 8px 8px 0;
  background: var(--cf-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, border-color .2s ease;
}
.cf-product-sidebar-search-row button:hover { border-color: #095540; background: #095540; }
.cf-product-sidebar-search > .cf-product-search-clear {
  min-height: 0;
  margin-top: 8px;
  padding: 0;
  font-size: 11px;
  text-decoration: none;
}
.cf-product-filter-sidebar-head { order: -1; }

.cf-product-results-heading {
  min-height: 52px;
  margin: 0 0 24px;
  padding: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.cf-product-results-count { display: flex; align-items: baseline; gap: 5px; color: #697870; font-size: 13px; }
.cf-product-results-count span { font-size: 23px; line-height: 1; }
.cf-product-results-heading .cf-product-catalog-toolbar {
  min-height: 0;
  margin: 0;
  padding: 0;
  display: block;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.cf-product-results-heading .cf-product-grid-control {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid #d7e1da;
  border-radius: 10px;
  background: #f0f5f2;
}
.cf-product-results-heading .cf-product-grid-control button {
  width: 44px;
  min-width: 44px;
  height: 36px;
  padding: 7px 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: #708078;
  box-shadow: none;
}
.cf-product-results-heading .cf-product-grid-control button:hover { border-color: #c8d9cf; background: rgba(255,255,255,.72); color: var(--cf-primary); }
.cf-product-results-heading .cf-product-grid-control button.is-active {
  border-color: #b9d2c3;
  background: #fff;
  color: var(--cf-primary);
  box-shadow: 0 3px 9px rgba(17,74,48,.11);
}
.cf-product-results-heading .cf-grid-glyph {
  width: 28px;
  height: 19px;
  grid-auto-flow: row;
  grid-template-rows: repeat(2, 1fr);
  gap: 2px;
}
.cf-product-results-heading .cf-grid-glyph i {
  border: 0;
  border-radius: 1.5px;
  background: currentColor;
  opacity: .68;
}
.cf-product-results-heading .cf-product-grid-control button:hover .cf-grid-glyph i { opacity: .82; }
.cf-product-results-heading .cf-product-grid-control button.is-active .cf-grid-glyph i { opacity: 1; }

@media (max-width: 1100px) {
  .cf-product-results-heading { padding-right: 0; }
  .cf-product-results-heading .cf-product-grid-control { display: none; }
}
@media (max-width: 760px) {
  .cf-product-filter-sidebar-head { order: -2; }
  .cf-product-sidebar-search { order: -1; }
  .cf-product-results-heading { min-height: 0; margin-bottom: 20px; padding-bottom: 14px; }
}

/* VIP remains directly accessible but is intentionally absent from navigation. */
.cf-vip-menu-item,
.cf-footer a[href$="/vip/"],
.cf-footer a[href*="/vip/?"] { display: none !important; }

/* Product category hero: hierarchy-aware breadcrumb in place of the eyebrow. */
.cf-product-category-breadcrumb { margin: 0 0 14px; }
.cf-product-category-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .055em;
}
.cf-product-category-breadcrumb a { color: rgba(255,255,255,.76); transition: color .2s ease; }
.cf-product-category-breadcrumb a:hover { color: #fff; }
.cf-product-category-breadcrumb span[aria-current="page"] { color: #e2bf50; font-weight: 900; }
.cf-product-category-breadcrumb-separator { color: rgba(255,255,255,.42); }

@media (max-width: 600px) {
  .cf-product-category-breadcrumb { margin-bottom: 12px; }
  .cf-product-category-breadcrumb ol { gap: 6px; font-size: 10px; letter-spacing: .035em; }
}
