.products-v2 {
  --products-dark: #001314;
  --products-card: #020b0d;
  --products-teal: #08a59a;
  --products-light: #f7f7f7;
  --products-frame: 1600px;
  --products-header-height: 76px;
  padding-top: var(--products-header-height);
  color: #0a0f0c;
  background: var(--products-light);
}
.products-v2-page .site-header-subpage:not(.is-scrolled) { background: var(--products-dark); }

.products-v2 *,
.products-v2 *::before,
.products-v2 *::after { box-sizing: border-box; }
.products-v2 h1,
.products-v2 h2,
.products-v2 h3,
.products-v2 p { margin-top: 0; }

.products-v2-hero {
  position: relative;
  min-height: clamp(448px, 31.2vw, 600px);
  overflow: hidden;
  background: var(--products-dark);
  color: #fff;
}
.products-v2-hero-media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 38%;
  overflow: hidden;
}
.products-v2-hero-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 24%;
}
.products-v2-hero-shade {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 38%;
  z-index: 1;
  width: 12%;
  background: linear-gradient(90deg, var(--products-dark) 0%, rgba(0,19,20,.82) 22%, rgba(0,19,20,.34) 58%, transparent 100%);
  pointer-events: none;
}
.products-v2-hero-copy {
  position: relative;
  z-index: 2;
  width: min(calc(100% - clamp(96px, 14vw, 252px)), var(--products-frame));
  margin: 0 auto;
  padding-top: clamp(48px, 4vw, 72px);
  padding-bottom: 28px;
}
.products-v2-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 2vw, 34px);
  color: rgba(255,255,255,.76);
  font-family: var(--font-technical);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.products-v2-breadcrumbs a { color: var(--products-teal); }
.products-v2-hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(56.3px, 6.4vw, 96px);
  font-weight: 400;
  line-height: .95;
}
.products-v2-hero-copy > p {
  max-width: 510px;
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.55;
}
.products-v2-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.products-v2-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 2px 24px 0;
  border: 1px solid var(--products-teal);
  border-radius: 4px;
  background: var(--products-teal);
  color: #fff;
  font-family: var(--font-technical);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.products-v2-button .arrow-icon { width: 16px; height: 16px; }
.products-v2-button:hover,
.products-v2-button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--products-teal);
  outline: 0;
  transform: translateY(-1px);
}
.products-v2-button.is-outline { border-color: rgba(255,255,255,.72); background: rgba(0,19,20,.24); }
.products-v2-button.is-outline:hover,
.products-v2-button.is-outline:focus-visible { border-color: var(--products-teal); background: var(--products-teal); color: #fff; }

.products-v2-lines { padding: clamp(30px, 3.3vw, 54px) clamp(28px, 4.2vw, 80px) clamp(42px, 4.5vw, 72px); background: #fff; }
.products-v2-section-heading { text-align: center; }
.products-v2-section-heading h2,
.products-v2-proof-heading h2 {
  margin-bottom: 0;
  font-size: clamp(33.8px, 2.65vw, 46px);
  font-weight: 400;
  line-height: .95;
}
.products-v2-section-heading > span {
  display: block;
  width: 54px;
  height: 3px;
  margin: 14px auto 0;
  background: var(--products-teal);
}
.products-v2-section-heading > p { margin: 10px 0 0; color: #50605d; font-size: 13px; line-height: 1.45; }
.products-v2-line-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, var(--products-frame));
  margin: 24px auto 0;
}
.products-v2-line-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  border: 3px solid transparent;
  border-radius: 4px;
  background: var(--products-card);
  color: #fff;
  text-decoration: none!important;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.products-v2-line-card:hover,
.products-v2-line-card:focus-visible { border-color: var(--products-teal); box-shadow: 0 12px 24px rgba(0,19,20,.18); transform: translateY(-3px); outline: 0; }
.products-v2-line-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--products-card);
}
.products-v2-line-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.products-v2-line-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, var(--products-card) 0%, rgba(2,11,13,.72) 12%, rgba(2,11,13,.18) 28%, transparent 44%);
  pointer-events: none;
}
.products-v2-line-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: clamp(230px, 17vw, 280px);
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(25px, 2vw, 34px);
}
.products-v2-line-card.is-reversed .products-v2-line-copy { margin-left: 0; }
.products-v2-line-copy h3 { margin-bottom: 13px; color: #fff; font-size: clamp(30px, 2.2vw, 42px); font-weight: 400; line-height: .95; }
.products-v2-line-copy p { max-width: 480px; margin-bottom: 20px; color: rgba(255,255,255,.9); font-size: clamp(13px, .96vw, 16px); line-height: 1.48; }
.products-v2-line-copy .products-v2-text-link { margin-top: auto; }
.products-v2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--products-teal);
  font-family: var(--font-technical);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}
.products-v2-text-link span { transition: transform 180ms ease; }
.products-v2-text-link:hover,
.products-v2-text-link:focus-visible { color: var(--products-dark); text-decoration: underline!important; text-underline-offset: 5px; outline: 0; }
.products-v2-text-link.is-dark:hover,
.products-v2-text-link.is-dark:focus-visible { color: #fff; }
.products-v2-text-link:hover span,
.products-v2-text-link:focus-visible span { transform: translateX(4px); }
.products-v2-line-card:hover .products-v2-text-link,
.products-v2-line-card:focus-visible .products-v2-text-link { color: #fff; text-decoration: none!important; }
.products-v2-line-card:hover .products-v2-text-link span,
.products-v2-line-card:focus-visible .products-v2-text-link span { transform: translateX(4px); }

.products-v2-icon-placeholder {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 12px;
  border: 2px dashed var(--products-teal);
  border-radius: 6px;
  color: var(--products-teal);
  background: rgba(8,165,154,.04);
}
.products-v2-icon-placeholder span {
  font-family: var(--font-technical);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}
.products-v2-icon-placeholder.is-proof {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-color: rgba(8,165,154,.85);
  background: rgba(8,165,154,.08);
}
.products-v2-icon-placeholder.is-process {
  width: 62px;
  height: 62px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #fff;
}

.products-v2-solutions { padding: clamp(34px, 3vw, 50px) clamp(34px, 6vw, 112px) clamp(42px, 3.8vw, 64px); background: var(--products-light); }
.products-v2-solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(100%, var(--products-frame));
  margin: 26px auto 0;
}
.products-v2-solution-grid article { min-height: 168px; padding: 4px clamp(22px, 2.2vw, 42px); border-left: 1px solid #d4ddda; text-align: center; }
.products-v2-solution-grid article:first-child { border-left: 0; }
.products-v2-solution-icon { display: block; width: 58px; height: 54px; margin: 0 auto 12px; object-fit: contain; }
.products-v2-icon { height: 52px; color: var(--products-teal); }
.products-v2-icon-svg { width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.products-v2-solution-grid h3 { max-width: 190px; margin: 2px auto 10px; color: #075b55; font-family: var(--font-technical); font-size: 13px; font-weight: 800; line-height: 1.2; }
.products-v2-solution-grid p { max-width: 230px; min-height: 50px; margin: 0 auto 12px; color: #3e4c49; font-size: 12px; line-height: 1.4; }

.products-v2-proof { padding: 22px clamp(34px, 5vw, 96px) 32px; background: var(--products-dark); color: #fff; }
.products-v2-proof-heading { text-align: center; }
.products-v2-proof-heading h2 { color: #fff; font-size: clamp(28px, 2.15vw, 38px); }
.products-v2-proof-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); width: min(100%, var(--products-frame)); margin: 22px auto 0; }
.products-v2-proof-grid article { display: grid; grid-template-columns: minmax(0, 1fr); min-height: 92px; align-items: center; padding: 8px clamp(18px, 1.7vw, 32px); border-left: 1px solid rgba(8,165,154,.3); text-align: center; }
.products-v2-proof-grid article:first-child { border-left: 0; }
.products-v2-proof-icon { color: var(--products-teal); }
.products-v2-proof-icon-image { display: block; width: 54px; height: 54px; margin: 0 auto 10px; object-fit: contain; filter: brightness(0) saturate(100%) invert(51%) sepia(94%) saturate(578%) hue-rotate(127deg) brightness(86%) contrast(101%); }
.products-v2-proof-icon-svg { width: 54px; height: 54px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.products-v2-proof-grid h3 { margin-bottom: 7px; color: #fff; font-family: var(--font-technical); font-size: 13px; font-weight: 800; line-height: 1.15; }
.products-v2-proof-grid p { margin-bottom: 0; color: rgba(255,255,255,.82); font-size: 11.5px; line-height: 1.38; }

.products-v2-process { padding: clamp(38px, 3.6vw, 60px) clamp(34px, 6vw, 112px) clamp(44px, 4vw, 68px); background: #fff; }
.products-v2-process ol { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); width: min(100%, var(--products-frame)); margin: 28px auto 0; padding: 0; list-style: none; }
.products-v2-process li { position: relative; padding: 0 clamp(14px, 1.7vw, 32px); text-align: center; }
.products-v2-process li:not(:last-child)::after { display: none; }
.products-v2-process-icon { position: relative; z-index: 1; display: grid; width: 68px; height: 68px; margin: 0 auto 14px; place-items: center; border: 2px solid var(--products-teal); border-radius: 50%; background: #fff; color: var(--products-teal); }
.products-v2-process-icon-image { display: block; width: 38px; height: 38px; object-fit: contain; filter: brightness(0) saturate(100%) invert(51%) sepia(94%) saturate(578%) hue-rotate(127deg) brightness(86%) contrast(101%); }
.products-v2-process-icon-svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.products-v2-process h3 { margin-bottom: 8px; color: #172320; font-family: var(--font-technical); font-size: 12px; font-weight: 800; line-height: 1.2; }
.products-v2-process p { max-width: 210px; margin: 0 auto; color: #4c5956; font-size: 11.5px; line-height: 1.38; }

.products-v2-contact-band { background: var(--products-teal); color: #fff; }
.products-v2-contact-inner {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(220px, 300px);
  gap: 24px;
  width: min(calc(100% - clamp(68px, 10vw, 180px)), var(--products-frame));
  min-height: 118px;
  align-items: center;
  margin: 0 auto;
}
.products-v2-contact-icon { width: 76px; height: 76px; padding: 15px; border: 2px solid #fff; border-radius: 50%; filter: brightness(0) invert(1); }
.products-v2-contact-inner h2 { margin-bottom: 3px; color: #fff; font-size: clamp(31.5px, 3vw, 48px); font-weight: 400; line-height: .95; }
.products-v2-contact-inner p { margin-bottom: 0; color: #fff; font-size: 14px; line-height: 1.35; }
.products-v2-button.is-light { border-color: #fff; background: #fff; color: var(--products-dark); }
.products-v2-button.is-light:hover,
.products-v2-button.is-light:focus-visible { border-color: var(--products-dark); background: var(--products-dark); color: #fff; }

@media (min-width: 1600px) {
  .products-v2-solution-grid h3 { font-size: 14px; }
  .products-v2-solution-grid p,
  .products-v2-proof-grid p,
  .products-v2-process p { font-size: 13px; }
}

@media (min-width: 1101px) {
  .products-v2 { --products-header-height: 74px; }
}

@media (min-width: 1500px) {
  .products-v2 { --products-header-height: 80px; }
}

@media (max-width: 1100px) {
  .products-v2-hero { min-height: 496px; }
  .products-v2-hero-media { left: 42%; }
  .products-v2-hero-shade { left: 42%; }
  .products-v2-hero-copy { width: calc(100% - 72px); padding-top: 50px; }
  .products-v2-solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 0; }
  .products-v2-solution-grid article:nth-child(odd) { border-left: 0; }
  .products-v2-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-v2-proof-grid article { border-top: 1px solid rgba(8,165,154,.3); }
  .products-v2-proof-grid article:nth-child(odd) { border-left: 0; }
  .products-v2-proof-grid article:nth-child(-n+2) { border-top: 0; }
  .products-v2-proof-grid article:last-child { grid-column: 1 / -1; width: 50%; justify-self: center; border-left: 0; }
  .products-v2-process ol { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 0; }
  .products-v2-process li::after { display: none; }
  .products-v2-process li:nth-child(n+4) { transform: translateX(50%); }
  .products-v2-contact-inner { grid-template-columns: 72px minmax(0, 1fr); padding: 22px 0; }
  .products-v2-contact-icon { width: 68px; height: 68px; padding: 13px; }
  .products-v2-contact-inner .products-v2-button { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 900px) {
  .products-v2-hero-media { left: 44%; }
  .products-v2-hero-shade { left: 44%; }
  .products-v2-line-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-v2-line-card:last-child { grid-column: 1 / -1; width: calc(50% - 8px); justify-self: center; }
  .products-v2-line-copy { min-height: 230px; }
}

@media (max-width: 760px) {
  .products-v2-hero { display: flex; min-height: 0; flex-direction: column; padding-top: 0; }
  .products-v2-hero-shade { display: none; }
  .products-v2-hero-copy { order: 1; width: 100%; padding: 44px 20px 37px; }
  .products-v2-hero-media { position: relative; inset: auto; order: 2; width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .products-v2-hero-media::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, var(--products-dark) 0%, rgba(0,19,20,.72) 12%, rgba(0,19,20,.24) 24%, transparent 38%); }
  .products-v2-hero-media img { object-fit: cover; object-position: center; }
}

@media (max-width: 700px) {
  .products-v2-hero { display: flex; min-height: 0; flex-direction: column; padding-top: 0; }
  .products-v2-hero-media { position: relative; inset: auto; order: 2; width: 100%; height: auto; aspect-ratio: 4 / 3; }
  .products-v2-hero-media img { width: 100%; max-width: 100%; object-fit: cover; object-position: center; }
  .products-v2-hero-shade { display: none; }
  .products-v2-hero-copy { order: 1; width: 100%; padding: 34px 20px 26px; }
  .products-v2-breadcrumbs { margin-bottom: 22px; }
  .products-v2-hero h1 { margin-bottom: 18px; }
  .products-v2-actions { display: grid; gap: 10px; }
  .products-v2-button { width: 100%; }
  .products-v2-lines { padding: 34px 16px 42px; }
  .products-v2-line-list { grid-template-columns: 1fr; gap: 14px; }
  .products-v2-line-card:last-child { grid-column: auto; width: 100%; }
  .products-v2-line-card { display: grid; min-height: 0; }
  .products-v2-line-media { position: relative; inset: auto!important; width: 100%; height: auto; max-height: none; }
  .products-v2-line-media::after { background: linear-gradient(0deg, var(--products-card) 0%, rgba(2,11,13,.72) 12%, rgba(2,11,13,.18) 28%, transparent 44%)!important; }
  .products-v2-line-media img,
  .products-v2-line-card.is-reversed .products-v2-line-media img,
  .products-v2-line-card.is-choke-valves .products-v2-line-media img,
  .products-v2-line-card.is-choke-parts .products-v2-line-media img,
  .products-v2-line-card.is-pig-valves .products-v2-line-media img { object-fit: cover; object-position: center; transform: none; }
  .products-v2-line-copy,
  .products-v2-line-card.is-reversed .products-v2-line-copy { width: 100%; min-height: 0; margin: 0; padding: 24px 22px 28px; }
  .products-v2-line-copy h3 { font-size: 38px; }
  .products-v2-solutions { padding: 38px 20px 44px; }
  .products-v2-solution-grid { grid-template-columns: 1fr; gap: 0; }
  .products-v2-solution-grid article { min-height: 0; padding: 24px 14px; border-top: 1px solid #d4ddda; border-left: 0; }
  .products-v2-solution-grid article:first-child { border-top: 0; }
  .products-v2-solution-grid p { min-height: 0; }
  .products-v2-solution-icon { margin-bottom: 18px; }
  .products-v2-proof { padding: 28px 18px 34px; }
  .products-v2-proof-grid { grid-template-columns: 1fr; }
  .products-v2-proof-grid article,
  .products-v2-proof-grid article:nth-child(-n+2),
  .products-v2-proof-grid article:last-child { grid-column: auto; width: 100%; min-height: 104px; padding: 18px 10px; border-top: 1px solid rgba(8,165,154,.3); border-left: 0; }
  .products-v2-proof-grid article:first-child { border-top: 0; }
  .products-v2-proof-icon-image { margin-bottom: 18px; }
  .products-v2-process { padding: 38px 18px 46px; }
  .products-v2-process ol { grid-template-columns: 1fr; gap: 0; }
  .products-v2-process li,
  .products-v2-process li:nth-child(n+4) { display: block; padding: 22px 4px; border-top: 1px solid #d4ddda; text-align: left; transform: none; }
  .products-v2-process li:first-child { border-top: 0; }
  .products-v2-process-icon { grid-row: 1 / 3; width: 60px; height: 60px; margin: 0 0 18px; }
  .products-v2-process h3 { max-width: none; margin: 0 0 8px; text-align: left; }
  .products-v2-process p { max-width: none; margin: 0; text-align: left; }
  .products-v2-icon-placeholder.is-process { width: 54px; height: 54px; margin: 0 0 12px; }
  .products-v2-contact-inner { grid-template-columns: 64px minmax(0, 1fr); width: calc(100% - 36px); gap: 14px; padding: 24px 0 26px; }
  .products-v2-contact-icon { width: 60px; height: 60px; padding: 12px; }
  .products-v2-contact-inner h2 { font-size: clamp(28px, 8vw, 36px); }
  .products-v2-contact-inner p { font-size: 13px; }
}

@media (max-width: 380px) {
  .products-v2-hero-copy { width: calc(100% - 32px); }
  .products-v2-hero h1 { font-size: 50px; }
  .products-v2-contact-inner { grid-template-columns: 52px minmax(0, 1fr); }
  .products-v2-contact-icon { width: 50px; height: 50px; padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  .products-v2-line-card,
  .products-v2-button,
  .products-v2-text-link span { transition: none; }
  .products-v2-line-card:hover,
  .products-v2-line-card:focus-visible { transform: none; }
}
