body.product-page-body {
  --product-accent: var(--warning);
  background: var(--bg);
}

body.page-product-afss { --product-accent: var(--brand); }
body.page-product-hose { --product-accent: var(--brand-2); }
body.page-product-safety { --product-accent: var(--warning); }

.product-page {
  background:
    var(--bg);
}

.product-hero {
  position: relative;
  height: calc(100svh - 68px - 10px);
  min-height: 0;
  max-height: none;
  margin-top: 0;
  display: grid;
  align-items: center;
  overflow: clip;
  isolation: isolate;
  background: #070b12;
}

.product-hero__media,
.product-hero__media::after,
.product-hero__media img,
.product-hero__media video,
.product-hero__shade {
  position: absolute;
  inset: 0;
}

.product-hero__media {
  z-index: -3;
  overflow: hidden;
}

.product-hero__media img,
.product-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(1.05) contrast(1.04);
}

.product-hero__media video {
  display: block;
  background: #070b12;
}

.product-hero__media::after {
  content: "";
  z-index: 1;
  background:
    rgba(3, 7, 13, .58);
}

.product-hero__shade {
  z-index: -2;
  background: transparent;
}

.product-hero__container {
  display: flex;
  align-items: center;
  width: var(--desktop-frame);
  max-width: none;
  height: 100%;
  margin-inline: auto;
  padding-block: 0;
}

.product-hero__copy {
  width: 39vw;
  min-width: 0;
  color: #ffffff;
  text-align: left;
}

.product-hero__kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--hero-text-on-media);
  font-family: var(--font-title);
  font-size: var(--type-kicker);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .40);
}

.product-hero h1 {
  max-width: none;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: var(--hero-title-size);
  line-height: 1.06;
  letter-spacing: normal;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, .36);
}

.product-breadcrumb {
  margin-bottom: 18px;
  color: var(--hero-muted-on-media);
  font-size: clamp(13px, .82vw, 15px);
  line-height: 1.6;
}

.product-breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.product-breadcrumb li:not(:last-child)::after {
  content: "/";
  color: var(--hero-separator-on-media);
}

.product-breadcrumb a { transition: color .2s ease; }
.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible { color: #ffffff; }
.product-breadcrumb [aria-current="page"] { color: var(--hero-text-on-media); }

.product-hero__description {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(238, 244, 252, .88);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.7;
  text-wrap: pretty;
  text-shadow: 0 12px 32px rgba(0, 0, 0, .34);
}

.product-hero__cta {
  min-width: 166px;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(255, 255, 255, .10);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.product-hero__cta:hover {
  border-color: rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.product-hero__cta span { transition: transform .22s ease; }
.product-hero__cta:hover span:last-child { transform: translateX(4px); }

.product-section {
  position: relative;
  padding: clamp(82px, 7vw, 118px) 0;
  overflow: clip;
}

.product-section--soft {
  background:
    var(--bg-soft);
}

.product-section--services {
  background:
    var(--bg-soft);
}

.product-section__head {
  max-width: 820px;
  margin-bottom: clamp(38px, 4.5vw, 60px);
}

.product-section__head--center {
  margin-inline: auto;
  text-align: center;
}

.product-section__head .kicker {
  justify-content: flex-start;
  margin: 0 0 16px;
}

.product-section__head--center .kicker {
  justify-content: center;
  margin-inline: auto;
}

.product-section__head h2,
.product-overview__copy h2 {
  margin: 0 0 var(--space-title-copy);
  font-size: var(--type-section-title);
  line-height: var(--type-section-title-line);
  text-wrap: var(--type-section-wrap);
}

.product-section__head p,
.product-overview__copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--type-section-lead);
  line-height: 1.68;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.product-overview__copy .kicker {
  justify-content: flex-start;
  margin: 0 0 16px;
}

.product-overview__copy p + p { margin-top: 17px; }

.product-overview-card,
.product-link-card,
.product-flow-card {
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-solid) 94%, transparent);
  box-shadow: var(--shadow-soft);
}

.product-overview-card {
  overflow: hidden;
  border-radius: 24px;
}

.product-overview-card__media {
  min-height: 260px;
  overflow: hidden;
  background: color-mix(in oklab, var(--bg-soft) 95%, transparent);
  content-visibility: auto;
  contain-intrinsic-size: auto 280px;
}

.product-overview-card__media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.product-overview-card__body { padding: 28px 30px 30px; }
.product-overview-card__body h3 {
  margin: 0 0 18px;
  font-size: var(--type-subsection-title);
  line-height: var(--type-subsection-title-line);
}

.product-highlight-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-highlight-list li {
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

.product-highlight-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-title);
  font-weight: 400;
  color: var(--text);
}

.product-highlight-list p,
.product-link-card p,
.product-flow-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.product-card-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 420px));
}

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

.product-link-card,
.product-flow-card {
  border-radius: 22px;
  padding: 28px;
}

.product-link-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.product-link-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in oklab, var(--product-accent) 42%, var(--border));
  box-shadow: var(--shadow);
}

.product-link-card h3,
.product-flow-card h3 {
  margin: 0 0 12px;
  font-size: var(--type-subsection-title);
  line-height: var(--type-subsection-title-line);
}

.product-link-card__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--text);
  font-family: var(--font-title);
  font-size: 14px;
}

.product-link-card__action span:last-child { transition: transform .2s ease; }
.product-link-card:hover .product-link-card__action span:last-child { transform: translateX(4px); }

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

.product-flow-card {
  min-height: 100%;
}

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

@media (max-width: 980px) {
  .product-hero__copy { width: min(640px, 68vw); }
  .product-overview-card { max-width: 720px; }
}

@media (max-width: 760px) {
  .product-hero {
    height: auto;
    min-height: 650px;
  }

  .product-hero__container {
    align-items: flex-end;
    width: min(100% - 40px, var(--container));
    padding-block: 92px 42px;
  }

  .product-hero__copy { width: 100%; }
  .product-hero__description { font-size: 16px; }

  .product-hero__media::after {
    background:
      rgba(3, 7, 13, .58);
  }

  .product-card-grid,
  .product-card-grid--compact,
  .product-card-grid--four,
  .product-flow-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero__cta,
  .product-hero__cta span,
  .product-link-card,
  .product-link-card__action span:last-child { transition: none; }
}

/* Product overview: simple editorial layout (text left, image right) */
.product-hero__kicker {
  font-size: var(--type-kicker);
  line-height: 1.15;
  letter-spacing: .32em;
}

.product-overview {
  grid-template-columns: minmax(0, .94fr) minmax(420px, 1.06fr);
  gap: clamp(56px, 7.5vw, 112px);
}

.product-overview__copy .kicker,
.product-section__head .kicker {
  font-size: var(--type-kicker);
  line-height: 1.15;
  letter-spacing: .32em;
}

.product-overview__visual {
  display: block;
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

.product-overview__visual img {
  display: block;
  width: min(100%, 680px);
  height: auto;
  margin-inline: auto 0;
  object-fit: contain;
  filter: drop-shadow(0 28px 52px rgba(10, 18, 32, .12));
}

:root[data-theme="dark"] .product-overview__visual img {
  filter: drop-shadow(0 30px 56px rgba(0, 0, 0, .28));
}

@media (max-width: 980px) {
  .product-overview {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(30px, 6vw, 48px);
  }

  .product-overview__copy,
  .product-overview__visual {
    width: 100%;
    min-width: 0;
  }

  .product-overview__visual {
    overflow: hidden;
  }

  .product-overview__visual img {
    width: min(100%, 640px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .product-overview {
    gap: 26px;
  }

  .product-overview__copy h2 {
    margin-bottom: var(--space-title-copy);
    font-size: var(--type-section-title);
    line-height: var(--type-section-title-line);
  }

  .product-overview__copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .product-overview__copy p + p {
    margin-top: 13px;
  }

  .product-overview__visual img {
    width: 100%;
  }
}

/* Desktop product hero polish: wider copy, one-line headline, no redundant hero CTA */
@media (min-width: 1101px) {
  .product-hero__container {
    width: min(88vw, var(--desktop-frame));
  }

  .product-hero__copy {
    width: min(68vw, 1040px);
  }

  .product-hero h1 {
    max-width: none;
    white-space: nowrap;
    text-wrap: normal;
  }

  .product-hero__description {
    max-width: min(58vw, 720px);
    margin-bottom: 0;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.68;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .product-hero__copy {
    width: 72vw;
  }
}

/* ALS system component directory */
.product-section--components {
  background:
    var(--bg-soft);
}

.product-section__head--components {
  max-width: 980px;
}

.product-component-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.product-component-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in oklab, var(--surface-solid) 96%, transparent);
  box-shadow: var(--shadow-soft);
  flex-direction: column;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.product-component-card:hover,
.product-component-card:focus-visible {
  transform: translateY(-5px);
  border-color: color-mix(in oklab, var(--brand-2) 44%, var(--border));
  box-shadow: var(--shadow);
}

.product-component-card:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand-2) 58%, transparent);
  outline-offset: 4px;
}

.product-component-card__media {
  display: block;
  height: clamp(210px, 18vw, 280px);
  overflow: hidden;
  background: color-mix(in oklab, var(--bg-soft) 94%, var(--surface-solid));
  content-visibility: auto;
  contain-intrinsic-size: auto 260px;
}

.product-component-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .28s ease;
}

.product-component-card:hover .product-component-card__media img,
.product-component-card:focus-visible .product-component-card__media img {
  transform: translateY(-3px) scale(1.025);
}

.product-component-card__body {
  display: flex;
  min-height: 240px;
  padding: 24px;
  flex: 1;
  flex-direction: column;
  gap: 8px;
}

.product-component-card h3 {
  margin: 0;
  color: var(--text);
  font-size: var(--type-card-title);
  line-height: 1.16;
  text-wrap: balance;
}

.product-component-card__description {
  display: block;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.product-component-card__action {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  background: var(--brand-2);
  color: #ffffff;
  font-family: var(--font-title);
  font-size: 14px;
  line-height: 1;
  box-shadow: 0 14px 28px color-mix(in oklab, var(--brand-2) 20%, transparent);
}

.product-component-card__action span:last-child {
  transition: transform .2s ease;
}

.product-component-card:hover .product-component-card__action span:last-child,
.product-component-card:focus-visible .product-component-card__action span:last-child {
  transform: translateX(4px);
}

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

  .product-component-card__media {
    height: 250px;
  }
}

@media (max-width: 760px) {
  .product-component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-component-card {
    border-radius: 16px;
  }

  .product-component-card__media {
    height: 154px;
    contain-intrinsic-size: auto 170px;
  }

  .product-component-card__body {
    min-height: 224px;
    padding: 16px 14px 14px;
  }

  .product-component-card h3 {
    font-size: var(--type-card-title);
  }

  .product-component-card__description {
    font-size: 13px;
    line-height: 1.52;
  }

  .product-component-card__action {
    min-height: 42px;
    padding: 10px 8px;
    font-size: 12px;
  }
}


/* Multiline System: use the same flow presentation as Progressive, but keep the animation simpler and lighter */
body.page-product-als-multi-line #ringkasan {
  padding: clamp(64px, 5.2vw, 82px) 0 clamp(50px, 4vw, 66px);
}

body.page-product-als-multi-line .product-section--progressive-flow {
  padding-top: clamp(44px, 3.6vw, 58px);
  padding-bottom: clamp(58px, 4.6vw, 74px);
}

body.page-product-als-multi-line .product-section--progressive-flow,
body.page-product-als-multi-line .product-section--components,
body.page-product-als-multi-line .product-industry-coverage,
body.page-product-als-multi-line .section--services,
body.page-product-als-multi-line .section--faq {
  background: var(--bg-soft);
}

body.page-product-als-multi-line .product-section--components,
body.page-product-als-multi-line .product-industry-coverage,
body.page-product-als-multi-line .section--services,
body.page-product-als-multi-line .section--faq {
  padding-top: clamp(58px, 4.6vw, 72px);
  padding-bottom: clamp(62px, 4.8vw, 78px);
}

body.page-product-als-multi-line .progressive-route-flow {
  stroke-width: 3.2;
  stroke-dasharray: 8 12;
  opacity: .96;
  filter: none;
}

body.page-product-als-multi-line .progressive-route-flow--main {
  stroke-width: 3.2;
  opacity: .96;
  animation-duration: 2.2s;
}

body.page-product-als-multi-line .progressive-flow__point {
  display: none;
}

@media (max-width: 760px) {
  body.page-product-als-multi-line #ringkasan {
    padding: 54px 0 42px;
  }

  body.page-product-als-multi-line .product-section--progressive-flow {
    padding: 44px 0 54px;
  }

  body.page-product-als-multi-line .product-flow-grid--progressive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  body.page-product-als-multi-line .product-flow-grid--progressive .product-flow-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  body.page-product-als-multi-line .product-flow-grid--progressive .product-flow-card h3 {
    margin-bottom: 8px;
    font-size: var(--type-card-title);
    line-height: 1.12;
  }

  body.page-product-als-multi-line .product-flow-grid--progressive .product-flow-card p {
    font-size: 13px;
    line-height: 1.52;
  }

  body.page-product-als-multi-line .product-section--components,
  body.page-product-als-multi-line .product-industry-coverage,
  body.page-product-als-multi-line .section--services,
  body.page-product-als-multi-line .section--faq {
    padding: 56px 0 62px;
  }
}

@media (max-width: 390px) {
  .product-component-grid {
    gap: 10px;
  }

  .product-component-card__media {
    height: 142px;
  }

  .product-component-card__body {
    min-height: 215px;
    padding-inline: 12px;
  }

  .product-component-card__description {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-component-card,
  .product-component-card__media img,
  .product-component-card__action span:last-child {
    transition: none;
  }
}

/* Dual Line System: static diagram with markers and phased explanation */
.product-section--dual-line-diagram {
  overflow: hidden;
  padding-top: clamp(44px, 3.6vw, 58px);
  padding-bottom: clamp(58px, 4.6vw, 74px);
  background:
    var(--bg-soft);
}

.product-section__head--dual-line {
  max-width: 980px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.dual-line-diagram {
  display: grid;
  gap: clamp(28px, 3.2vw, 42px);
}

.dual-line-diagram__figure {
  margin: 0;
}

.dual-line-diagram__media {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--brand-2) 18%, var(--border));
  border-radius: 24px;
  background:
    var(--surface-solid);
  box-shadow: var(--shadow-soft);
  content-visibility: auto;
  contain-intrinsic-size: auto 680px;
}

.dual-line-diagram__media img {
  display: block;
  width: 100%;
  height: auto;
}

.dual-line-diagram__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.dual-line-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(260px, 30vw);
  padding: 7px 12px 7px 7px;
  border: 1px solid color-mix(in oklab, var(--brand-2) 22%, var(--border));
  border-radius: 999px;
  background: color-mix(in oklab, var(--surface-solid) 97%, transparent);
  box-shadow: var(--shadow-soft);
  transform: translate(-50%, -50%);
}

.dual-line-chip__index,
.dual-line-legend-card__number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  min-width: 30px;
  height: 30px;
  border-radius: 999px;
  color: #17120a;
  background: var(--warning);
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .14em;
}

.dual-line-chip__text {
  color: var(--text);
  font-family: var(--font-title);
  font-size: 12px;
  line-height: 1.12;
  white-space: normal;
  text-wrap: balance;
}

.dual-line-diagram__panel {
  display: grid;
  gap: 20px;
}

.dual-line-diagram__note {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid color-mix(in oklab, var(--brand-2) 16%, var(--border));
  border-radius: 18px;
  background: color-mix(in oklab, var(--surface-solid) 95%, transparent);
  color: var(--text);
  font-family: var(--font-title);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.5;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.dual-line-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dual-line-legend-card,
.dual-line-phase-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: color-mix(in oklab, var(--surface-solid) 95%, transparent);
  box-shadow: var(--shadow-soft);
}

.dual-line-legend-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.dual-line-legend-card h3,
.dual-line-phases__head h3 {
  margin: 0;
  color: var(--text);
  font-size: var(--type-subsection-title);
  line-height: var(--type-subsection-title-line);
}

.dual-line-legend-card p,
.dual-line-phases__head p,
.dual-line-phase-card__intro,
.dual-line-phase-list li {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.62;
}

.dual-line-phases {
  display: grid;
  gap: 20px;
}

.dual-line-phases__head {
  max-width: 860px;
}

.dual-line-phases__head .kicker {
  justify-content: flex-start;
  margin: 0 0 14px;
}

.dual-line-phases__head p:last-child {
  margin-top: 12px;
}

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

.dual-line-phase-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.dual-line-phase-card__intro {
  font-size: 15px;
}

.dual-line-phase-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 0 0 20px;
}

.dual-line-phase-list li {
  padding-left: 4px;
}

body.page-product-als-dual-line #ringkasan {
  padding: clamp(64px, 5.2vw, 82px) 0 clamp(50px, 4vw, 66px);
}

body.page-product-als-dual-line .product-section--components {
  padding-top: clamp(58px, 4.6vw, 72px);
  padding-bottom: clamp(62px, 4.8vw, 78px);
}

body.page-product-als-dual-line .product-industry-coverage,
body.page-product-als-dual-line .section--services,
body.page-product-als-dual-line .section--faq {
  padding-top: clamp(60px, 4.8vw, 76px);
  padding-bottom: clamp(64px, 5vw, 80px);
}

@media (max-width: 1180px) {
  .dual-line-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dual-line-chip {
    max-width: min(220px, 32vw);
  }
}

@media (max-width: 980px) {
  .dual-line-diagram__overlay {
    display: none;
  }
}

@media (max-width: 760px) {
  .dual-line-legend,
  .dual-line-phase-grid {
    grid-template-columns: 1fr;
  }

  .dual-line-diagram__media {
    border-radius: 18px;
  }

  .dual-line-diagram__note {
    padding: 16px 18px;
    font-size: 16px;
    text-align: left;
  }

  .dual-line-legend-card,
  .dual-line-phase-card {
    padding: 18px;
    border-radius: 18px;
  }

  body.page-product-als-dual-line #ringkasan {
    padding: 54px 0 42px;
  }

  body.page-product-als-dual-line .product-section--dual-line-diagram,
  body.page-product-als-dual-line .product-section--components,
  body.page-product-als-dual-line .product-industry-coverage,
  body.page-product-als-dual-line .section--services,
  body.page-product-als-dual-line .section--faq {
    padding: 54px 0 60px;
  }
}

/* Progressive ALS animated flow diagram */
.product-section--progressive-flow {
  overflow: hidden;
  padding-top: clamp(44px, 4.1vw, 64px);
  padding-bottom: clamp(74px, 6vw, 100px);
  background:
    var(--bg-soft);
}

.product-section__head--progressive-flow {
  max-width: 980px;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.progressive-flow-figure {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.progressive-flow__viewport {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--brand-2) 18%, var(--border));
  border-radius: 24px;
  background:
    var(--surface-solid);
  box-shadow: var(--shadow-soft);
  overscroll-behavior-inline: contain;
}

.progressive-flow__viewport:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand-2) 55%, transparent);
  outline-offset: 4px;
}

.progressive-flow__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 1465 / 614;
  isolation: isolate;
}

.progressive-flow__background,
.progressive-flow__overlay,
.progressive-flow__overlay > svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.progressive-flow__background {
  z-index: 1;
  object-fit: contain;
}

.progressive-flow__overlay {
  z-index: 2;
  pointer-events: none;
}

.progressive-flow__overlay > svg {
  overflow: visible;
}

.progressive-route-flow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.progressive-route-flow {
  stroke: #ffca0a;
  stroke-width: 3;
  stroke-dasharray: 9 13;
  stroke-dashoffset: 44;
  opacity: 0;
  filter: drop-shadow(0 0 3px rgba(255, 202, 10, .55));
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}

.progressive-route-flow--main {
  stroke-width: 3.8;
  opacity: .98;
  animation-name: progressive-main-flow-loop;
  animation-duration: 1.9s;
}

.progressive-route-flow--branch {
  animation-name: progressive-branch-flow;
  animation-duration: 8s;
}

.progressive-route-flow--1,
.progressive-flow__point--1 { animation-delay: 0s; }
.progressive-route-flow--2,
.progressive-flow__point--2 { animation-delay: 1s; }
.progressive-route-flow--3,
.progressive-flow__point--3 { animation-delay: 2s; }
.progressive-route-flow--4,
.progressive-flow__point--4 { animation-delay: 3s; }
.progressive-route-flow--5,
.progressive-flow__point--5 { animation-delay: 4s; }
.progressive-route-flow--6,
.progressive-flow__point--6 { animation-delay: 5s; }
.progressive-route-flow--7,
.progressive-flow__point--7 { animation-delay: 6s; }
.progressive-route-flow--8,
.progressive-flow__point--8 { animation-delay: 7s; }

.progressive-flow__point {
  fill: transparent;
  stroke: #ffca0a;
  stroke-width: 2.2;
  vector-effect: non-scaling-stroke;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation-name: progressive-point-pulse;
  animation-duration: 8s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-play-state: paused;
}

.progressive-flow-figure.is-running .progressive-route-flow,
.progressive-flow-figure.is-running .progressive-flow__point {
  animation-play-state: running;
}

.progressive-flow__swipe-hint {
  display: none;
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 12px;
  text-align: center;
}

.progressive-flow__swipe-hint span {
  margin-left: 4px;
  color: var(--link-text);
}

.product-flow-grid--progressive {
  margin-top: clamp(28px, 3.2vw, 40px);
}

@keyframes progressive-main-flow-loop {
  0% {
    stroke-dashoffset: 44;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes progressive-branch-flow {
  0% {
    opacity: 0;
    stroke-dashoffset: 38;
  }
  3% {
    opacity: 1;
  }
  12% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  13%, 100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes progressive-point-pulse {
  0%, 5%, 100% {
    opacity: 0;
    transform: scale(.68);
  }
  8% {
    opacity: 1;
    transform: scale(1);
  }
  12% {
    opacity: 0;
    transform: scale(1.78);
  }
}

@media (max-width: 760px) {
  .progressive-flow__viewport {
    overflow-x: auto;
    border-radius: 18px;
    scrollbar-width: thin;
    scrollbar-color: color-mix(in oklab, var(--brand-2) 55%, transparent) transparent;
  }

  .progressive-flow__canvas {
    width: 820px;
    min-width: 820px;
  }

  .progressive-flow__swipe-hint {
    display: block;
  }
}

@media (max-width: 390px) {
  .progressive-flow__canvas {
    width: 760px;
    min-width: 760px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progressive-route-flow,
  .progressive-flow__point {
    animation: none !important;
  }

  .progressive-route-flow {
    opacity: .62;
    stroke-dasharray: 5 10;
  }

  .progressive-route-flow--main {
    opacity: .75;
  }

  .progressive-flow__point {
    opacity: .55;
  }
}

/* Progressive System: final vertical rhythm */
body.page-product-als-progressive #ringkasan,
body.page-product-als-single-line #ringkasan {
  padding: clamp(64px, 5.2vw, 82px) 0 clamp(50px, 4vw, 66px);
}

body.page-product-als-progressive .product-section--progressive-flow,
body.page-product-als-single-line .product-section--progressive-flow {
  padding-top: clamp(44px, 3.6vw, 58px);
  padding-bottom: clamp(58px, 4.6vw, 74px);
}

body.page-product-als-progressive .product-section--components,
body.page-product-als-single-line .product-section--components {
  padding-top: clamp(58px, 4.6vw, 72px);
  padding-bottom: clamp(62px, 4.8vw, 78px);
}

body.page-product-als-progressive .product-section__head--components,
body.page-product-als-single-line .product-section__head--components {
  margin-bottom: clamp(28px, 3vw, 40px);
}

body.page-product-als-progressive .product-industry-coverage,
body.page-product-als-single-line .product-industry-coverage {
  padding-top: clamp(60px, 4.8vw, 76px);
  padding-bottom: clamp(64px, 5vw, 80px);
}

body.page-product-als-progressive .product-industry-coverage .section-head,
body.page-product-als-single-line .product-industry-coverage .section-head {
  margin-bottom: clamp(30px, 3vw, 38px);
}

body.page-product-als-progressive .section--services,
body.page-product-als-single-line .section--services {
  padding-top: clamp(66px, 5.2vw, 82px);
  padding-bottom: clamp(68px, 5.4vw, 86px);
}

body.page-product-als-progressive .services-head,
body.page-product-als-single-line .services-head {
  margin-bottom: clamp(30px, 3vw, 36px);
}

body.page-product-als-progressive .section--faq,
body.page-product-als-single-line .section--faq {
  padding-top: clamp(66px, 5.2vw, 82px);
  padding-bottom: clamp(58px, 4.6vw, 72px);
}

body.page-product-als-progressive .section--faq .section-head,
body.page-product-als-single-line .section--faq .section-head {
  margin-bottom: clamp(30px, 3vw, 36px);
}

@media (max-width: 760px) {
  body.page-product-als-progressive #ringkasan,
body.page-product-als-single-line #ringkasan {
    padding: 54px 0 42px;
  }

  body.page-product-als-progressive .product-section--progressive-flow,
body.page-product-als-single-line .product-section--progressive-flow {
    padding: 44px 0 54px;
  }

  body.page-product-als-progressive .product-flow-grid--progressive,
  body.page-product-als-single-line .product-flow-grid--progressive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
  }

  body.page-product-als-progressive .product-flow-grid--progressive .product-flow-card,
  body.page-product-als-single-line .product-flow-grid--progressive .product-flow-card {
    padding: 18px 14px;
    border-radius: 16px;
  }

  body.page-product-als-progressive .product-flow-grid--progressive .product-flow-card h3,
  body.page-product-als-single-line .product-flow-grid--progressive .product-flow-card h3 {
    margin-bottom: 8px;
    font-size: var(--type-card-title);
    line-height: 1.12;
  }

  body.page-product-als-progressive .product-flow-grid--progressive .product-flow-card p,
  body.page-product-als-single-line .product-flow-grid--progressive .product-flow-card p {
    font-size: 13px;
    line-height: 1.52;
  }

  body.page-product-als-progressive .product-section--components,
body.page-product-als-single-line .product-section--components {
    padding: 50px 0 56px;
  }

  body.page-product-als-progressive .product-industry-coverage,
body.page-product-als-single-line .product-industry-coverage {
    padding: 54px 0 60px;
  }

  body.page-product-als-progressive .section--services,
body.page-product-als-single-line .section--services {
    padding: 56px 0 62px;
  }

  body.page-product-als-progressive .section--faq,
body.page-product-als-single-line .section--faq {
    padding: 56px 0 52px;
  }
}

@media (max-width: 390px) {
  body.page-product-als-progressive .product-flow-grid--progressive,
  body.page-product-als-single-line .product-flow-grid--progressive {
    gap: 10px;
  }

  body.page-product-als-progressive .product-flow-grid--progressive .product-flow-card,
  body.page-product-als-single-line .product-flow-grid--progressive .product-flow-card {
    padding: 16px 12px;
  }

  body.page-product-als-progressive .product-flow-grid--progressive .product-flow-card h3,
  body.page-product-als-single-line .product-flow-grid--progressive .product-flow-card h3 {
    font-size: var(--type-card-title);
  }

  body.page-product-als-progressive .product-flow-grid--progressive .product-flow-card p,
  body.page-product-als-single-line .product-flow-grid--progressive .product-flow-card p {
    font-size: 12px;
  }
}



/* Portfolio detail: compact case-study rhythm and result treatment */
body.portfolio-detail-body .product-section {
  padding-block: clamp(58px, 4.8vw, 76px);
}

body.portfolio-detail-body .product-section__head {
  margin-bottom: clamp(26px, 2.7vw, 38px);
}

body.portfolio-detail-body .product-overview {
  gap: clamp(38px, 5.4vw, 76px);
}

body.portfolio-detail-body .portfolio-workflow-card {
  padding: 24px;
}

body.portfolio-detail-body .portfolio-workflow-card h3 {
  margin-bottom: 10px;
}

body.portfolio-detail-body .portfolio-results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 4vw, 58px);
  row-gap: 0;
  max-width: 1080px;
  margin-inline: auto;
  border-bottom: 1px solid var(--border);
}

body.portfolio-detail-body .portfolio-result-item {
  min-width: 0;
  padding: clamp(20px, 2vw, 28px) 0;
  border-top: 1px solid var(--border);
}

body.portfolio-detail-body .portfolio-result-item h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: var(--type-subsection-title);
  line-height: var(--type-subsection-title-line);
  text-wrap: var(--type-subsection-wrap);
}

body.portfolio-detail-body .portfolio-result-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.62;
}

body.portfolio-detail-body .product-section--components {
  padding-top: clamp(54px, 4.4vw, 70px);
  padding-bottom: clamp(58px, 4.7vw, 74px);
}

body.portfolio-detail-body .product-section__head--components {
  margin-bottom: clamp(24px, 2.5vw, 34px);
}

body.portfolio-detail-body .product-component-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.3vw, 20px);
}

body.portfolio-detail-body .product-component-card__media {
  height: clamp(190px, 15vw, 240px);
}

body.portfolio-detail-body .product-component-card__body {
  min-height: 224px;
  padding: 20px;
}

body.portfolio-detail-body .product-component-card h3 {
  font-size: var(--type-card-title);
}

body.portfolio-detail-body .product-component-card__description {
  font-size: 14px;
  line-height: 1.56;
}

body.portfolio-detail-body .footer-cta {
  padding-block: clamp(24px, 2.5vw, 34px);
}

body.portfolio-detail-body .footer-cta__eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
  line-height: 1.15;
  letter-spacing: .32em;
}

@media (max-width: 1100px) {
  body.portfolio-detail-body .product-component-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.portfolio-detail-body .product-section {
    padding-block: 46px;
  }

  body.portfolio-detail-body .product-section__head {
    margin-bottom: 26px;
  }

  body.portfolio-detail-body .product-overview {
    gap: 24px;
  }

  body.portfolio-detail-body .portfolio-workflow-card {
    padding: 20px 18px;
  }

  body.portfolio-detail-body .portfolio-results-grid {
    grid-template-columns: 1fr;
  }

  body.portfolio-detail-body .portfolio-result-item {
    padding: 18px 0;
  }

  body.portfolio-detail-body .portfolio-result-item h3 {
    font-size: var(--type-subsection-title);
  }

  body.portfolio-detail-body .portfolio-result-item p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  body.portfolio-detail-body .product-section--components {
    padding-block: 46px 50px;
  }

  body.portfolio-detail-body .product-component-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.portfolio-detail-body .product-component-card__media {
    height: 154px;
  }

  body.portfolio-detail-body .product-component-card__body {
    min-height: 216px;
    padding: 15px 13px 13px;
  }

  body.portfolio-detail-body .product-component-card h3 {
    font-size: var(--type-card-title);
  }

  body.portfolio-detail-body .product-component-card__description {
    font-size: 12.5px;
    line-height: 1.5;
  }
}

/* Product family hero: centered cinematic composition across overview and detail pages */
.product-hero {
  height: clamp(520px, 68svh, 700px);
  min-height: 520px;
  max-height: 700px;
}

.product-hero__container {
  justify-content: center;
  width: min(100% - 56px, 1180px);
  max-width: 1180px;
  padding-block: clamp(54px, 7svh, 82px);
}

.product-hero__copy {
  width: min(100%, 920px);
  margin-inline: auto;
  text-align: center;
}

.product-hero__kicker {
  margin-inline: auto;
  text-align: center;
}

.product-hero h1 {
  width: 100%;
  max-width: 1050px;
  margin-inline: auto;
  white-space: normal;
  text-align: center;
  text-wrap: balance;
}

.product-breadcrumb {
  width: 100%;
  margin-inline: auto;
}

.product-breadcrumb ol {
  justify-content: center;
}

.product-hero__description {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  text-align: center;
}

@media (min-width: 1101px) {
  .product-hero__container {
    width: min(100% - 72px, 1180px);
  }

  .product-hero__copy {
    width: min(100%, 980px);
  }

  .product-hero h1 {
    max-width: 1050px;
    white-space: normal;
    text-wrap: balance;
  }

  .product-hero__description {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .product-hero__copy {
    width: min(100%, 900px);
  }
}

@media (max-width: 760px) {
  .product-hero {
    height: auto;
    min-height: clamp(420px, 62svh, 500px);
    max-height: none;
    align-items: center;
  }

  .product-hero__container {
    align-items: center;
    justify-content: center;
    width: min(100% - 32px, 430px);
    height: auto;
    min-height: inherit;
    padding-block: 54px 48px;
  }

  .product-hero__copy {
    width: min(100%, 390px);
    margin-inline: auto;
    text-align: center;
  }

  .product-hero__kicker {
    margin-bottom: 11px;
    font-size: 9.5px;
    letter-spacing: .28em;
  }

  .product-hero h1 {
    max-width: 100%;
    margin-bottom: 14px;
    font-size: var(--hero-title-size);
    line-height: 1.06;
    text-align: center;
    text-wrap: balance;
  }

  .product-breadcrumb {
    margin-bottom: 14px;
    font-size: clamp(11px, 3vw, 12.5px);
    line-height: 1.45;
  }

  .product-breadcrumb ol {
    justify-content: center;
    gap: 5px 7px;
  }

  .product-breadcrumb li {
    gap: 7px;
  }

  .product-hero__description {
    max-width: 34ch;
    margin-inline: auto;
    font-size: clamp(13px, 3.55vw, 14.5px);
    line-height: 1.58;
    text-align: center;
    text-wrap: pretty;
  }
}

@media (max-width: 380px) {
  .product-hero {
    min-height: clamp(400px, 60svh, 460px);
  }

  .product-hero__container {
    width: min(100% - 28px, 390px);
    padding-block: 46px 42px;
  }

  .product-hero__copy {
    max-width: 350px;
  }

  .product-hero__description {
    max-width: 32ch;
    font-size: 12.75px;
  }
}

/* 2026-07-29: Desktop product hero sync with landing layout (left copy + directional shade) */
@media (min-width: 1101px) {
  .product-hero__media::after {
    background: linear-gradient(
      90deg,
      rgba(3, 7, 13, .74) 0%,
      rgba(3, 7, 13, .68) 18%,
      rgba(3, 7, 13, .50) 36%,
      rgba(3, 7, 13, .24) 54%,
      rgba(3, 7, 13, .08) 64%,
      rgba(3, 7, 13, 0) 74%
    );
  }

  .product-hero__container {
    justify-content: flex-start;
    width: min(100% - 72px, 1320px);
  }

  .product-hero__copy {
    width: min(52vw, 760px);
    margin-inline: 0 auto;
    text-align: left;
  }

  .product-hero__kicker,
  .product-hero h1,
  .product-hero__description,
  .product-breadcrumb {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .product-hero__kicker {
    margin-inline: 0;
  }

  .product-hero h1 {
    max-width: 860px;
    margin-inline: 0;
    text-wrap: pretty;
  }

  .product-breadcrumb {
    width: auto;
  }

  .product-breadcrumb ol {
    justify-content: flex-start;
  }

  .product-hero__description {
    max-width: 640px;
    margin-inline: 0;
  }
}

/* Centralube Hose & Fittings — REV1 editorial refinement */
body.page-product-hose .product-hero__media::after {
  background: linear-gradient(
    90deg,
    rgba(3, 7, 13, .82) 0%,
    rgba(3, 7, 13, .70) 24%,
    rgba(3, 7, 13, .44) 44%,
    rgba(3, 7, 13, .14) 64%,
    rgba(3, 7, 13, 0) 78%
  );
}

body.page-product-hose .product-hero__description {
  max-width: 570px;
  color: rgba(245, 248, 252, .94);
}

body.page-product-hose .product-overview {
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
  gap: clamp(38px, 5.5vw, 78px);
}

body.page-product-hose .product-overview__copy h2 + p {
  color: color-mix(in oklab, var(--text) 88%, var(--text-muted));
  font-size: clamp(17px, 1.08vw, 19px);
  font-weight: 620;
  line-height: 1.65;
}

body.page-product-hose .product-overview__visual {
  min-width: 0;
}

body.page-product-hose .product-overview__visual img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
}

.product-section--featured-catalogue .product-section__head {
  max-width: 760px;
}

.product-catalogue-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: 340px;
  overflow: hidden;
  border-block: 1px solid var(--border);
  color: var(--text);
  transition: border-color .24s ease;
}

.product-catalogue-feature:hover,
.product-catalogue-feature:focus-visible {
  border-color: color-mix(in oklab, var(--product-accent) 42%, var(--border));
}

.product-catalogue-feature__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(32px, 4.2vw, 58px) clamp(28px, 4.5vw, 64px) clamp(32px, 4.2vw, 58px) 0;
}

.product-catalogue-feature__eyebrow {
  font-family: var(--font-title);
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 10px;
  letter-spacing: .22em;
}

.product-catalogue-feature h3 {
  margin: 0 0 14px;
  font-size: var(--type-subsection-title);
  line-height: 1.05;
}

.product-catalogue-feature p {
  max-width: 650px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.68;
}

.product-catalogue-feature__action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 30px;
  color: var(--link-text);
  font-family: var(--font-title);
  font-size: 14px;
}

.product-catalogue-feature__action span:last-child {
  transition: transform .2s ease;
}

.product-catalogue-feature:hover .product-catalogue-feature__action span:last-child,
.product-catalogue-feature:focus-visible .product-catalogue-feature__action span:last-child {
  transform: translateX(5px);
}

.product-catalogue-feature__groups {
  display: grid;
  align-content: center;
  margin: 0;
  padding: clamp(28px, 4vw, 54px);
  border-left: 1px solid var(--border);
  background: color-mix(in oklab, var(--surface-solid) 58%, transparent);
  list-style: none;
}

.product-catalogue-feature__groups li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
}

.product-catalogue-feature__groups li:last-child {
  border-bottom: 0;
}

.product-catalogue-feature__groups span {
  color: var(--product-accent);
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: .12em;
}

.product-catalogue-feature__groups strong {
  font-family: var(--font-title);
  font-size: clamp(17px, 1.25vw, 21px);
  font-weight: 400;
  line-height: 1.2;
}

body.page-product-hose .product-flow-grid {
  gap: 0;
  border-block: 1px solid var(--border);
}

body.page-product-hose .product-flow-card {
  min-height: 260px;
  padding: clamp(28px, 3vw, 42px);
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.page-product-hose .product-flow-card:last-child {
  border-right: 0;
}

body.page-product-hose .product-flow-card p {
  color: color-mix(in oklab, var(--text-muted) 86%, var(--text));
}

body.page-product-hose .footer-cta {
  width: min(100% - 72px, 1180px);
  grid-template-columns: minmax(0, 680px) auto;
  gap: clamp(30px, 4vw, 56px);
  padding-block: clamp(34px, 4vw, 50px);
}

body.page-product-hose .footer-cta__copy {
  max-width: 680px;
}

body.page-product-hose .footer-cta__eyebrow {
  width: max-content;
  margin: 0 0 10px;
  color: var(--text-soft);
  font-family: var(--font-title);
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: .2em;
  text-transform: uppercase;
}

body.page-product-hose .footer-cta__copy p:not(.footer-cta__eyebrow) {
  max-width: 640px;
  font-size: clamp(15px, 1vw, 17px);
}

@media (max-width: 1100px) {
  body.page-product-hose .product-overview {
    grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
    gap: 36px;
  }

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

  .product-catalogue-feature__copy {
    padding-right: 0;
  }

  .product-catalogue-feature__groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .product-catalogue-feature__groups li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  body.page-product-hose .product-flow-card:nth-child(2) {
    border-right: 0;
  }

  body.page-product-hose .product-flow-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  body.page-product-hose .footer-cta {
    width: min(100% - 48px, var(--container));
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.page-product-hose .product-overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  body.page-product-hose .product-overview__visual {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  body.page-product-hose .product-hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(3, 7, 13, .18) 0%,
      rgba(3, 7, 13, .38) 42%,
      rgba(3, 7, 13, .82) 100%
    );
  }

  .product-catalogue-feature {
    min-height: 0;
  }

  .product-catalogue-feature__copy {
    padding: 30px 0;
  }

  .product-catalogue-feature__groups {
    grid-template-columns: 1fr;
    padding: 20px 0;
    background: transparent;
  }

  .product-catalogue-feature__groups li,
  .product-catalogue-feature__groups li:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .product-catalogue-feature__groups li:last-child {
    border-bottom: 0;
  }

  body.page-product-hose .product-flow-card,
  body.page-product-hose .product-flow-card:nth-child(2) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  body.page-product-hose .product-flow-card:last-child {
    border-bottom: 0;
  }

  body.page-product-hose .footer-cta {
    width: min(100% - 32px, var(--container));
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-catalogue-feature,
  .product-catalogue-feature__action span:last-child {
    transition: none;
  }
}


/* Hose & Fittings: application coverage replaces generic industry cards */
.product-application-coverage {
  background: var(--bg-soft);
  border-block: 1px solid var(--border);
}

.product-application-coverage__head {
  max-width: 980px;
}

.product-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.product-application-item {
  min-width: 0;
  padding: clamp(28px, 3vw, 42px);
  border-right: 1px solid var(--border);
}

.product-application-item:last-child {
  border-right: 0;
}

.product-application-item h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: var(--type-card-title);
  line-height: 1.15;
}

.product-application-item p {
  margin: 0;
  color: color-mix(in oklab, var(--text-muted) 86%, var(--text));
  font-size: 15px;
  line-height: 1.66;
}

@media (max-width: 1040px) {
  .product-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-application-item:nth-child(2) {
    border-right: 0;
  }

  .product-application-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 680px) {
  .product-application-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .product-application-item,
  .product-application-item:nth-child(2) {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .product-application-item:first-child {
    padding-top: 0;
  }


  .product-application-item:last-child {
    border-bottom: 0;
  }

  .product-application-item p {
    font-size: 16px;
    line-height: 1.68;
  }
}

/* Centralube Hose & Fittings — visual catalogue categories */
.product-section--catalogue-cards .product-section__head {
  max-width: 820px;
}

.product-catalogue-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-catalogue-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in oklab, var(--surface-solid) 86%, transparent);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.product-catalogue-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(18px, 2.2vw, 30px);
  border-bottom: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg-soft) 94%, transparent);
  content-visibility: auto;
  contain-intrinsic-size: auto 300px;
}

.product-catalogue-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .28s ease;
}

.product-catalogue-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.product-catalogue-card h3 {
  margin: 0 0 10px;
  font-size: var(--type-card-title);
  line-height: 1.1;
}

.product-catalogue-card p {
  margin: 0;
  color: color-mix(in oklab, var(--text-muted) 86%, var(--text));
  font-size: 15px;
  line-height: 1.62;
}

.product-catalogue-card__action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--link-text);
  font-family: var(--font-title);
  font-size: 13px;
}

.product-catalogue-card__action span:last-child {
  transition: transform .2s ease;
}

.product-catalogue-card--interactive {
  cursor: pointer;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.product-catalogue-card--interactive:hover,
.product-catalogue-card--interactive:focus-visible {
  transform: translateY(-5px);
  border-color: color-mix(in oklab, var(--product-accent) 42%, var(--border));
  box-shadow: var(--shadow);
}

.product-catalogue-card--interactive:hover .product-catalogue-card__media img,
.product-catalogue-card--interactive:focus-visible .product-catalogue-card__media img {
  transform: scale(1.035);
}

.product-catalogue-card--interactive:hover .product-catalogue-card__action span:last-child,
.product-catalogue-card--interactive:focus-visible .product-catalogue-card__action span:last-child {
  transform: translateX(4px);
}

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

@media (max-width: 680px) {
  .product-catalogue-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-catalogue-card {
    border-radius: 18px;
  }

  .product-catalogue-card__media {
    padding: 14px;
    contain-intrinsic-size: auto 170px;
  }

  .product-catalogue-card__body {
    padding: 16px;
  }

  .product-catalogue-card h3 {
    margin-bottom: 8px;
    font-size: var(--type-card-title);
  }

  .product-catalogue-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .product-catalogue-card__action {
    align-items: flex-start;
    padding-top: 16px;
    font-size: 12px;
  }
}

/* Safety Device catalogue cards: balanced 3-up desktop and clean single-column mobile. */
body.page-product-safety .product-catalogue-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  body.page-product-safety .product-catalogue-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-product-safety .product-catalogue-card-grid > :last-child:nth-child(odd) {
    width: calc(50% - 9px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  body.page-product-safety .product-catalogue-card-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  body.page-product-safety .product-catalogue-card-grid > :last-child:nth-child(odd) {
    width: 100%;
    grid-column: auto;
  }

  body.page-product-safety .product-catalogue-card__media {
    aspect-ratio: 16 / 10;
    padding: 16px;
    contain-intrinsic-size: auto 220px;
  }

  body.page-product-safety .product-catalogue-card__body {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-catalogue-card--interactive,
  .product-catalogue-card__media img,
  .product-catalogue-card__action span:last-child {
    transition: none;
  }
}

/* Safety Device landing hierarchy: primary solution and supporting need. */
.product-card-grid--hierarchy {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-card-grid--hierarchy .product-link-card {
  min-height: 0;
}

.product-card-grid--hierarchy .product-link-card--primary {
  grid-row: 1 / span 2;
  min-height: 100%;
  border-color: color-mix(in oklab, var(--product-accent) 34%, var(--border));
  background: linear-gradient(145deg, color-mix(in oklab, var(--product-accent) 7%, var(--surface)), var(--surface));
  box-shadow: 0 18px 42px color-mix(in oklab, var(--product-accent) 10%, transparent);
}

.product-link-card--supporting {
  border-color: color-mix(in oklab, var(--border) 88%, transparent);
  background: color-mix(in oklab, var(--bg-soft) 72%, var(--surface));
}

.product-link-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  border: 1px solid color-mix(in oklab, var(--product-accent) 25%, var(--border));
  border-radius: 999px;
  background: color-mix(in oklab, var(--product-accent) 7%, transparent);
  color: var(--product-accent);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-link-card--supporting .product-link-card__eyebrow {
  border-color: color-mix(in oklab, var(--text-muted) 22%, var(--border));
  background: color-mix(in oklab, var(--text-muted) 6%, transparent);
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .product-card-grid--hierarchy {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .product-card-grid--hierarchy .product-link-card--primary {
    grid-row: auto;
    min-height: 230px;
  }
}
