:root {
  --wf-red: #e0393e;
  --wf-red-dark: #c92f34;
  --wf-black: #171819;
  --wf-gray: #eaeced;
  --wf-blue: #7cafd8;
  --wf-white: #ffffff;
  --wf-header-height: 136px;
  --wf-font: "Roboto", Helvetica, Arial, sans-serif;
  --wf-nav-navy: #242c5f;
  --wf-nav-gold: #c9a36a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--wf-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--wf-black);
  background: var(--wf-white);
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */

.site-header {
  background: var(--wf-gray);
  position: relative;
  z-index: 1030;
}

.header-inner {
  display: flex;
  align-items: stretch;
  min-height: var(--wf-header-height);
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 12px 24px 12px 0;
}

.header-logo img {
  display: block;
  width: 188px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.header-nav-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  min-width: 0;
  background: transparent;
  z-index: 1;
}

.header-topbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-height: 42px;
  padding: 10px 0 8px;
  position: relative;
  z-index: 3;
}

.header-linkedin {
  display: flex;
  align-items: center;
  line-height: 0;
}

.header-linkedin img {
  width: 15px;
  height: 15px;
  filter: brightness(0.45);
  transition: filter 0.2s ease;
}

.header-linkedin:hover img {
  filter: none;
}

.navbar-toggler {
  border: 0;
  padding: 4px;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 7.125H4A1.125 1.125 0 1 1 4 4.875h16a1.125 1.125 0 1 1 0 2.25Zm0 6H4a1.125 1.125 0 1 1 0-2.25h16a1.125 1.125 0 1 1 0 2.25Zm0 6H4a1.125 1.125 0 1 1 0-2.25h16a1.125 1.125 0 1 1 0 2.25Z' fill='%23343C54'/%3E%3C/svg%3E");
}

.nav-backdrop,
.mobile-nav-head {
  display: none;
}

.header-menu {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  flex-wrap: nowrap;
      gap: clamp(10px, 1.9vw, 29px);
  margin: 0;
  padding: 0 0 0 90px;
  list-style: none;
  background: var(--wf-white);
  position: relative;
  z-index: 3;
  min-height: 87px;
  width: 100%;
  max-width: 100%;
}

.header-menu::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  aspect-ratio: 1 / 1;
  background: var(--wf-gray);
  clip-path: polygon(100% 0, 0 100%, 0 0);
  z-index: 2;
  pointer-events: none;
}

.header-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: calc((100vw - 100%) / 2);
  height: 100%;
  background: var(--wf-white);
  pointer-events: none;
}

.header-menu .nav-item {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
}

.header-menu .dropdown:hover,
.header-menu .dropdown.show {
  z-index: 10;
}

.header-menu .nav-link {
  color: var(--wf-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 14px;
  padding: 21px 0;
  white-space: nowrap;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-menu .nav-item:hover > .nav-link,
.header-menu .nav-link:hover,
.header-menu .nav-link:focus,
.header-menu .nav-link.active,
.header-menu .dropdown-toggle.show {
  color: var(--wf-red);
}

.header-menu .nav-item:has(> .nav-link):hover::after,
.header-menu .nav-item:has(> .nav-link.active)::after,
.header-menu .nav-item:has(> .dropdown-toggle.show)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  width: calc(100% - 1.5rem);
  height: 4px;
  background: var(--wf-red);
  pointer-events: none;
  z-index: 4;
}

.header-menu .dropdown-toggle::after {
  display: none;
}

.header-menu .dropdown-menu {
  --bs-dropdown-spacer: 0;
  border: 0;
  border-radius: 0;
  background: var(--wf-white);
  box-shadow: 5px 25px 20px 16px rgba(0, 0, 0, 0.02);
  padding: 32px 0 8px;
  margin: 0;
  min-width: 382px;
  width: 382px;
  z-index: 1040;
}

.header-menu .dropdown-menu > li {
  padding: 0 48px 0 25px;
}

.header-menu .dropdown-item {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  padding: 13px 12px 13px 10px;
  white-space: normal;
  width: fit-content;
  max-width: 100%;
  background: transparent;
}

.header-menu .dropdown-item:hover,
.header-menu .dropdown-item:focus,
.header-menu .dropdown-item:active,
.header-menu .dropdown-item.active {
  background: transparent;
  color: var(--wf-red);
}

.header-menu .dropdown-item:hover::after,
.header-menu .dropdown-item:focus::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-color: var(--wf-red);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41L13.17 12Z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41L13.17 12Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.header-menu .dropdown-heading {
  color: var(--wf-red);
  font-size: 21px;
  font-weight: 600;
  line-height: normal;
  padding: 14px 36px 14px 10px;
}

.header-menu .dropdown-heading:hover,
.header-menu .dropdown-heading:focus,
.header-menu .dropdown-heading:active {
  color: var(--wf-red);
  background: transparent;
}

.header-menu .dropdown-heading:hover::after,
.header-menu .dropdown-heading:focus::after {
  right: 10px;
}


.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--wf-black);
  cursor: pointer;
}

.header-search-btn:hover svg path {
  fill: var(--wf-red);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wf-red);
  color: var(--wf-white) !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 14px;
  padding: 21px;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
}

.btn-contact:hover,
.btn-contact:focus {
  background: var(--wf-black);
  color: var(--wf-white) !important;
}

.header-search-panel {
  display: none;
  position: absolute;
  inset: 0 0 0 80px;
  background: var(--wf-white);
  z-index: 20;
  align-items: center;
  gap: 16px;
  padding: 0 22px;
}

.header-search-panel.is-open {
  display: flex;
}

.header-search-panel input[type="search"] {
  flex: 1;
  border: 0;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  box-shadow: none;
}

.header-search-panel .btn-search-submit {
  background: var(--wf-red);
  color: var(--wf-white);
  border: 0;
  border-radius: 0;
  font-weight: 600;
  padding: 10px 18px;
}

.header-search-panel .btn-search-close {
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--wf-black);
  padding: 0 6px;
}

@media (min-width: 992px) {
  .header-nav-wrap .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    width: 100%;
    justify-content: flex-end;
  }

  .header-menu .dropdown:hover > .dropdown-menu,
  .header-menu .dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  .header-menu .dropdown-menu {
    left: -1.5rem;
    top: 100%;
  }
}

@media (max-width: 991.98px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: var(--wf-white);
  }

  .header-inner {
    min-height: 72px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1052;
  }

  .header-logo {
    padding: 8px 12px 8px 0;
  }

  .header-logo img {
    width: 138px;
    max-height: 48px;
  }

  .header-topbar {
    min-height: 72px;
    padding: 0;
    gap: 8px;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(12, 16, 40, 0.55);
    z-index: 1048;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .navbar-collapse {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 100%;
    max-height: 100dvh;
    background: var(--wf-nav-navy);
    padding: 0 20px 24px;
    box-shadow: -12px 0 32px rgba(0, 0, 0, 0.22);
    z-index: 1053;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    overflow: hidden;
  }

  body.nav-open .navbar-collapse {
    transform: translateX(0);
    visibility: visible;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex: 0 0 auto;
    padding: 22px 0 18px;
  }

  .mobile-nav-title {
    margin: 0;
    margin-right: auto;
    color: var(--wf-white);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: left;
  }

  .nav-close {
    width: 36px;
    height: 36px;
    margin-left: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: transparent;
    color: var(--wf-white);
    font-size: 28px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 3px;
    flex: 0 0 auto;
  }

  .header-menu {
    flex: 1 1 auto;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0 0 12px;
    min-height: 0;
    gap: 8px;
    background: transparent;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .header-menu::before,
  .header-menu::after {
    display: none;
  }

  .header-menu .nav-item {
    display: block;
    width: 100%;
    flex: 0 0 auto;
  }

  .header-menu .nav-item:has(> .nav-link)::after {
    display: none;
  }

  .header-menu .nav-link {
    width: 100%;
    height: auto;
    padding: 14px 8px;
    color: var(--wf-white);
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    border-bottom: 1px solid transparent;
  }

  .header-menu .nav-item:hover > .nav-link,
  .header-menu .nav-link:hover,
  .header-menu .nav-link:focus,
  .header-menu .nav-link.active,
  .header-menu .dropdown-toggle.show {
    color: var(--wf-red);
    background: transparent;
  }

  .header-menu .nav-link.active {
    border-bottom-color: var(--wf-red);
  }

  .header-menu .dropdown > .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: var(--wf-white);
  }

  .header-menu .dropdown.is-open > .nav-link {
    border-radius: 18px 18px 0 0;
    border-bottom-color: transparent;
  }

  .header-menu .dropdown > .nav-link::after {
    content: "";
    display: block;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border: 1px solid var(--wf-nav-gold);
    border-radius: 50%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23c9a36a' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
    transition: transform 0.25s ease;
  }

  .header-menu .dropdown.is-open > .nav-link::after {
    transform: rotate(180deg);
  }

  .header-menu .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-top: 0;
    border-radius: 0 0 18px 18px;
    padding: 4px 8px 12px;
    margin: 0 0 4px;
    left: auto;
  }

  .header-menu .dropdown.is-open > .dropdown-menu {
    display: block;
  }

  .header-menu .dropdown-menu > li {
    padding: 0 10px;
  }

  .header-menu .dropdown-item {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px !important;
    padding: 10px 8px;
    width: 100%;
    max-width: none;
  }

  .header-menu .dropdown-item:hover,
  .header-menu .dropdown-item:focus,
  .header-menu .dropdown-item:active,
  .header-menu .dropdown-item.active {
    color: var(--wf-nav-gold);
    background: transparent;
  }

  .header-menu .dropdown-item:hover::after,
  .header-menu .dropdown-item:focus::after {
    display: none;
  }

  .header-menu .dropdown-heading {
    color: var(--wf-nav-gold);
    font-size: 13px !important;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 8px 6px;
  }

  .header-menu .btn-contact {
    width: 100%;
    height: auto;
    margin-top: 0;
    justify-content: flex-start;
    text-align: left;
    background: transparent;
    color: var(--wf-white) !important;
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.3;
    padding: 14px 8px;
    border-radius: 0;
    white-space: normal;
  }

  .header-menu .btn-contact:hover,
  .header-menu .btn-contact:focus {
    background: transparent;
    color: var(--wf-red) !important;
  }

  .header-search-panel {
    display: none;
  }
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 597px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111;
  background-image: url("../images/hero.png");
  background-size: cover;
  background-position: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0 80px;
  max-width: 720px;
}

.hero-title {
  color: var(--wf-white);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.hero-subtitle {
  color: var(--wf-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67;
  margin: 0 0 16px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.875;
  border-radius: 0;
  text-decoration: none;
  border: 2px solid transparent;
  min-height: 61px;
}

.btn-hero-primary {
  background: var(--wf-red);
  color: #f0f0f0;
  padding: 21px 40px 21px 22px;
  position: relative;
}

.btn-hero-primary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn-hero-primary:hover,
.btn-hero-primary:focus {
  background: var(--wf-black);
  color: var(--wf-white);
}

.btn-hero-outline {
  background: transparent;
  color: var(--wf-white);
  border-color: var(--wf-white);
  padding: 21px 22px;
}

.btn-hero-outline:hover,
.btn-hero-outline:focus {
  background: var(--wf-red);
  border-color: var(--wf-red);
  color: var(--wf-white);
}

@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    min-height: 520px;
  }

  .hero-content {
    padding: 72px 0 64px;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 24px;
  }

  .hero-actions .btn-hero {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    font-size: 13px;
    min-height: 48px;
    padding: 12px 8px;
    text-align: center;
  }

  .hero-actions .btn-hero-primary {
    padding: 12px 26px 12px 8px;
  }

  .hero-actions .btn-hero-primary::after {
    right: 8px;
    width: 12px;
    height: 12px;
  }
}

.page-hero {
  position: relative;
  min-height: 453px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111;
  background-image: url("../images/about-hero.png");
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.22;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  max-width: 640px;
}

.page-hero-content h1 {
  color: var(--wf-white);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
}

.page-hero-content p {
  color: var(--wf-white);
  font-size: 18px;
  line-height: 1.67;
  margin: 0 0 16px;
}

.page-hero-content p:last-of-type {
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .page-hero {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
  }
}

@media (max-width: 1199.98px) {
  .page-hero-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 767.98px) {
  .page-hero {
    min-height: 380px;
  }

  .page-hero-content {
    padding: 50px 0;
  }

  .page-hero-content h1 {
    font-size: 34px;
  }
}

.careers-hero .page-hero-content {
  max-width: 760px;
}

.forging-hero {
  min-height: 520px;
  background-image: url("../images/forging-101-hero.jpg");
}

.forging-hero .page-hero-overlay {
  opacity: 0.45;
}

.forging-hero .page-hero-content {
  max-width: 720px;
}

.quality-hero {
  min-height: 495px;
  background-image: url("../images/quality-hero.jpg");
  background-position: 67% 50%;
}

.quality-hero .page-hero-overlay {
  background: #16171a;
  opacity: 0.55;
}

.quality-hero .page-hero-content {
  max-width: 720px;
}

.custom-forging-hero {
  min-height: 525px;
  background-image: url("../images/custom-forging-hero.png");
  background-position: center;
}

.custom-forging-hero .page-hero-overlay {
  background: #16171a;
  opacity: 0.55;
}

.custom-forging-hero .page-hero-content {
  max-width: 640px;
}

.custom-offer {
  padding: 100px 0;
}

.custom-emergency-row {
  margin-top: 64px;
}

.custom-apps .about-apart-intro {
  max-width: none;
  margin-bottom: 32px;
}

.custom-shapes {
  background: var(--wf-white);
  padding: 100px 0;
}

.custom-shape-panel + .custom-shape-panel {
  margin-top: 100px;
}

.custom-shape-tab {
  display: block;
  margin: 0 0 16px;
  color: var(--wf-black);
}

.custom-shape-tab span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.67;
  padding-bottom: 4px;
}

.custom-shape-tab span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 4px solid #7cafd8;
}

.custom-shapes-row {
  --bs-gutter-x: 124px;
  --bs-gutter-y: 40px;
  align-items: flex-start;
}

.custom-shape-intro h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.custom-shape-intro img {
  display: block;
  width: 250px;
  height: auto;
  margin: 28px 0 20px;
}

.custom-shape-size {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0 0 4px;
}

.custom-shape-note {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.custom-shape-box {
  border: 1px solid #989fa5;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.custom-shape-row {
  display: flex;
  gap: 28px;
  padding-bottom: 30px;
  border-bottom: 1px solid #989fa5;
}

.custom-shape-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.custom-shape-row h3 {
  flex: 0 0 34%;
  max-width: 180px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--wf-black);
  margin: 0;
}

.custom-shape-row h3 a {
  color: var(--wf-black);
  text-decoration: none;
}

.custom-shape-row h3 a:hover,
.custom-shape-row h3 a:focus {
  color: var(--wf-red);
}

.custom-shape-body {
  flex: 1;
  min-width: 0;
}

.custom-shape-body ul {
  margin: 0;
  padding: 0 0 0 18px;
}

.custom-shape-body li,
.custom-shape-body p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.custom-shape-body li + li {
  margin-top: 0;
}

.custom-shape-body ul + p {
  margin-top: 16px;
}

@media (max-width: 991.98px) {
  .custom-shapes-tabs-row,
  .custom-shapes-row {
    --bs-gutter-x: 24px;
  }

  .custom-shape-box {
    padding: 36px 24px;
  }

  .custom-shape-row {
    flex-direction: column;
    gap: 16px;
  }

  .custom-shape-row h3 {
    flex-basis: auto;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .custom-shapes {
    padding: 56px 0;
  }

  .custom-shape-intro h2 {
    font-size: 32px;
  }

  .custom-shape-intro img {
    width: 180px;
  }
}

.custom-materials .about-journey-copy h2 {
  font-size: 48px;
  letter-spacing: 0.02em;
}

.custom-materials .about-journey-copy a {
  color: var(--wf-white);
  text-decoration: underline;
}

.custom-materials .about-journey-copy a:hover,
.custom-materials .about-journey-copy a:focus {
  color: var(--wf-red);
}

.custom-materials .about-journey-media {
  min-height: 515px;
}

@media (max-width: 767.98px) {
  .custom-materials .about-journey-copy h2 {
    font-size: 32px;
  }
}

.custom-grades {
  padding: 100px 0;
}

.custom-grades h2 {
  font-size: 48px;
  letter-spacing: 0.02em;
  margin: 0 0 40px;
}

@media (min-width: 768px) {
  .custom-grades {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
  }
}

@media (max-width: 767.98px) {
  .custom-grades {
    padding: 56px 0;
  }

  .custom-grades h2 {
    font-size: 32px;
    margin-bottom: 28px;
  }
}

.custom-why {
  background: var(--wf-gray);
  padding: 100px 0;
}

.custom-why .about-who-copy p {
  margin-bottom: 28px;
}

.custom-why .about-compliance-list {
  column-count: 1;
}

@media (max-width: 767.98px) {
  .custom-why {
    padding: 56px 0;
  }
}

.custom-resources {
  background: var(--wf-white);
  padding: 100px 0;
}

.custom-resources-row {
  --bs-gutter-x: 81px;
  --bs-gutter-y: 32px;
}

.custom-resources h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.custom-resources p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.btn-long-outline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 127px;
  padding: 30px 52px 30px 30px;
  background: transparent;
  color: var(--wf-black);
  border: 2px solid var(--wf-red);
  position: relative;
}

.btn-long-outline::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23171819' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.btn-long-outline:hover,
.btn-long-outline:focus {
  background: var(--wf-red);
  border-color: var(--wf-red);
  color: var(--wf-white);
}

.btn-long-outline:hover::after,
.btn-long-outline:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@media (max-width: 767.98px) {
  .custom-resources {
    padding: 56px 0;
  }

  .custom-resources h2 {
    font-size: 32px;
  }

  .btn-long-outline {
    min-height: 80px;
    padding: 21px 48px 21px 22px;
  }
}

@media (max-width: 767.98px) {
  .custom-offer {
    padding: 56px 0;
  }
}

.quality-intro {
  padding: 100px 0;
}

@media (max-width: 767.98px) {
  .quality-intro {
    padding: 56px 0;
  }
}

.quality-standards {
  background: var(--wf-black);
  padding: 100px 0;
}

.quality-standards h2 {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.67;
  color: var(--wf-white);
  text-transform: uppercase;
  margin: 0 0 32px;
}

.quality-standards-list {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 3;
  column-gap: 41px;
}

.quality-standards-list li {
  position: relative;
  padding: 0 0 18px 45px;
  font-size: 18px;
  line-height: 1.875;
  color: var(--wf-white);
  break-inside: avoid;
}

.quality-standards-list li:last-child {
  padding-bottom: 0;
}

.quality-standards-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  background: var(--wf-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 9.5 17 19 7' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.quality-standards-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .quality-standards-list {
    column-count: 2;
  }
}

@media (max-width: 767.98px) {
  .quality-standards {
    padding: 56px 0;
  }

  .quality-standards h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .quality-standards-list {
    column-count: 1;
  }
}

.quality-certs {
  background: var(--wf-gray);
  padding: 100px 0;
}

.quality-certs h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 40px;
}

.quality-certs-grid {
  --bs-gutter-x: 27px;
  --bs-gutter-y: 27px;
}

.quality-cert-card {
  background: var(--wf-white);
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.quality-cert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  background: var(--wf-red);
  flex-shrink: 0;
}

.quality-cert-card h3 {
  font-size: 27px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.4;
  margin: 0;
}

.quality-cert-download {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding: 8px 28px 8px 0;
  color: var(--wf-red);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  position: relative;
}

.quality-cert-download::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23e0393e' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.quality-cert-download:hover,
.quality-cert-download:focus {
  color: var(--wf-black);
}

.quality-cert-download:hover::after,
.quality-cert-download:focus::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6' stroke='%23171819' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.quality-cert-card-cta {
  justify-content: center;
  align-items: center;
}

.btn-hero-ne::after {
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 767.98px) {
  .quality-certs {
    padding: 56px 0;
  }

  .quality-certs h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .quality-cert-card h3 {
    font-size: 22px;
  }
}

.qc-inspections {
  background: var(--wf-white);
  padding: 100px 0;
}

.qc-inspections h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 48px;
}

.qc-inspections-grid {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}

.qc-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.qc-item img {
  width: 42%;
  max-width: 257px;
  aspect-ratio: 1;
  object-fit: cover;
  flex-shrink: 0;
}

.qc-item-copy h3 {
  font-size: 27px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.4;
  margin: 0;
}

.qc-item-copy p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

@media (max-width: 767.98px) {
  .qc-inspections {
    padding: 56px 0;
  }

  .qc-inspections h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .qc-item-copy h3 {
    font-size: 22px;
  }
}

.qc-testing {
  position: relative;
  background: #16171a url("../images/quality-testing-bg.jpg") 58% 51% / cover no-repeat;
  padding: 100px 0 120px;
  overflow: hidden;
}

.qc-testing-overlay {
  position: absolute;
  inset: 0;
  background: #16171a;
  opacity: 0.72;
}

@media (min-width: 768px) {
  .qc-testing {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
  }
}

.qc-testing .container {
  position: relative;
  z-index: 1;
}

.qc-testing-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 48px;
}

.qc-testing-intro h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-white);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.qc-testing-intro p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-white);
  margin: 0;
}

.qc-testing h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-white);
  line-height: 1.2;
  margin: 0 0 20px;
}

.qc-testing h3:not(:first-child) {
  margin-top: 36px;
}

.qc-testing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.qc-testing-list li {
  position: relative;
  padding: 0 0 18px 45px;
  font-size: 18px;
  line-height: 1.875;
  color: var(--wf-white);
}

.qc-testing-list li:last-child {
  padding-bottom: 0;
}

.qc-testing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  background: var(--wf-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 9.5 17 19 7' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.qc-testing-cta {
  text-align: center;
  margin-top: 50px;
}

@media (max-width: 767.98px) {
  .qc-testing {
    padding: 56px 0 72px;
  }

  .qc-testing-intro h2 {
    font-size: 30px;
  }

  .qc-testing h3 {
    font-size: 24px;
  }
}

.conflict-minerals {
  background: var(--wf-white);
  padding: 100px 0;
}

.conflict-minerals-row {
  margin-top: 80px;
}

.conflict-minerals .about-who-copy h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 20px;
}

.conflict-minerals-list {
  margin: 0 0 24px;
  padding: 0 0 0 24px;
}

.conflict-minerals-list li {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  padding-bottom: 12px;
}

.conflict-minerals-list li:last-child {
  padding-bottom: 0;
}

.conflict-minerals .about-who-copy a {
  color: var(--wf-red);
  font-weight: 700;
}

.conflict-minerals .about-who-copy a:hover,
.conflict-minerals .about-who-copy a:focus {
  color: var(--wf-black);
}

.conflict-minerals-logo {
  text-align: center;
}

.conflict-minerals-logo img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .conflict-minerals {
    padding: 56px 0;
  }

  .conflict-minerals-row {
    margin-top: 40px;
  }

  .conflict-minerals .about-who-copy h3 {
    font-size: 26px;
  }
}

.mfr-list {
  background: var(--wf-white);
  padding: 100px 0;
  overflow: hidden;
}

.mfr-list-kicker {
  font-size: 27px;
  font-weight: 700;
  color: var(--wf-red);
  text-align: center;
  margin: 0 0 8px;
}

.mfr-list h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 40px;
}

.mfr-slider {
  overflow: hidden;
  width: 100%;
}

.mfr-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: mfr-scroll 45s linear infinite;
}

.mfr-slider:hover .mfr-track {
  animation-play-state: paused;
}

.mfr-slide {
  flex: 0 0 168px;
  width: 168px;
  height: 140px;
  margin: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfr-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

@keyframes mfr-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .mfr-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .mfr-list {
    padding: 56px 0;
  }

  .mfr-list-kicker {
    font-size: 20px;
  }

  .mfr-list h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .mfr-slide {
    flex-basis: 120px;
    width: 120px;
    height: 100px;
    margin: 0 10px;
  }
}

.philosophy {
  background: var(--wf-white);
  padding: 100px 0;
}

.philosophy h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 40px;
}

.philosophy-grid {
  --bs-gutter-x: 27px;
  --bs-gutter-y: 27px;
}

.philosophy-card {
  position: relative;
  height: 100%;
}

.philosophy-card-arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.philosophy-card-inner {
  background: var(--wf-gray);
  clip-path: polygon(0 0, calc(100% - 85px) 0, 100% 85px, 100% 100%, 0 100%);
  min-height: 300px;
  height: 100%;
  padding: 72px 30px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.philosophy-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  padding: 15px;
  background: var(--wf-red);
  flex-shrink: 0;
}

.philosophy-icon svg {
  width: 39px;
  height: 39px;
  display: block;
}

.philosophy-card h3 {
  font-size: 32px;
  font-weight: 500;
  color: var(--wf-black);
  line-height: 1.4;
  text-align: center;
  margin: 27px 0 0;
}

.philosophy-card p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67;
  color: var(--wf-black);
  text-align: center;
  margin: 0;
}

@media (max-width: 767.98px) {
  .philosophy {
    padding: 56px 0;
  }

  .philosophy h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .philosophy-card h3 {
    font-size: 26px;
  }

  .philosophy-card-inner {
    min-height: 260px;
    padding-top: 56px;
    clip-path: polygon(0 0, calc(100% - 64px) 0, 100% 64px, 100% 100%, 0 100%);
  }
}

.forging-flange {
  background: var(--wf-white);
  padding: 72px 0 96px;
}

.forging-flange-copy h2 {
  font-size: 48px;
}

.forging-flange-media img {
  aspect-ratio: auto;
}

@media (max-width: 767.98px) {
  .forging-flange {
    padding: 48px 0 64px;
  }

  .forging-flange-copy h2 {
    font-size: 32px;
  }
}

.forging-quote {
  background: var(--wf-gray);
  padding: 100px 0;
}

.forging-quote-intro {
  text-align: center;
}

.forging-quote-intro h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin: 0 0 20px;
}

.forging-quote-intro h3 {
  font-size: 27px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.5;
  margin: 27px 0 0;
}

.forging-quote-example {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.67;
  color: var(--wf-red);
  margin: 16px 0 0;
}

.forging-quote-grid {
  --bs-gutter-x: 27px;
  --bs-gutter-y: 27px;
  margin-top: 27px;
}

.forging-quote-card {
  background: var(--wf-white);
  padding: 30px;
  height: 100%;
}

.forging-quote-card h3 {
  font-size: 27px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.4;
  margin: 0 0 8px;
}

.forging-quote-card p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.forging-quote-lead {
  display: flex;
  align-items: center;
}

.forging-quote-lead p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.forging-quote-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 140px;
}

@media (max-width: 767.98px) {
  .forging-quote {
    padding: 56px 0;
  }

  .forging-quote-intro h2 {
    font-size: 30px;
  }

  .forging-quote-intro h3,
  .forging-quote-card h3 {
    font-size: 22px;
  }

  .forging-quote-lead p {
    font-size: 20px;
  }
}

.forging-benefits {
  background: var(--wf-gray);
  padding: 100px 0;
}

.forging-benefits h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 40px;
}

.forging-benefits-copy {
  --bs-gutter-x: 27px;
  --bs-gutter-y: 24px;
}

.forging-benefits-copy p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.forging-benefits-diagrams {
  --bs-gutter-x: 27px;
  --bs-gutter-y: 32px;
  margin-top: 80px;
}

.forging-benefits-item {
  text-align: center;
}

.forging-benefits-item img {
  display: block;
  width: 234px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  margin: 0 auto;
}

.forging-benefits-item h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.4;
  margin: 27px 0 0;
}

.forging-benefits-item p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

@media (max-width: 767.98px) {
  .forging-benefits {
    padding: 56px 0;
  }

  .forging-benefits h2 {
    font-size: 30px;
    margin-bottom: 28px;
  }

  .forging-benefits-diagrams {
    margin-top: 48px;
  }

  .forging-benefits-item h3 {
    font-size: 26px;
    margin-top: 16px;
  }
}

.forging-rough {
  background: var(--wf-white);
  padding: 100px 0 120px;
}

@media (min-width: 768px) {
  .forging-rough {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
  }
}

.forging-rough h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0;
}

.forging-rough-row {
  margin-top: 80px;
}

.forging-rough .about-who-copy h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.4;
  margin: 0 0 20px;
}

@media (max-width: 767.98px) {
  .forging-rough {
    padding: 56px 0 72px;
  }

  .forging-rough h2 {
    font-size: 30px;
  }

  .forging-rough-row {
    margin-top: 40px;
  }

  .forging-rough .about-who-copy h3 {
    font-size: 26px;
  }
}

.careers-who {
  padding-bottom: 48px;
}

.careers-culture {
  background: var(--wf-white);
  padding: 24px 0 96px;
}

@media (max-width: 767.98px) {
  .careers-culture {
    padding: 8px 0 64px;
  }
}

.about-who {
  background: var(--wf-white);
  padding: 72px 0 96px;
}

.about-who-media {
  position: relative;
  margin: 32px 0 0 32px;
}

.about-who-media-accent {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 82%;
  height: 82%;
  background: rgba(224, 57, 62, 0.2);
  clip-path: polygon(100% 0, 0 0, 0 100%);
  z-index: 0;
}

.about-who-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 73%, 78% 100%, 0 100%);
}

.about-who-copy h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 20px;
}

.about-who-copy p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.about-who-copy p + p {
  margin-top: 18px;
}

@media (max-width: 767.98px) {
  .about-who {
    padding: 48px 0 64px;
  }

  .about-who-media {
    margin: 20px 0 0 20px;
  }

  .about-who-media-accent {
    top: -20px;
    left: -20px;
  }

  .about-who-copy h2 {
    font-size: 28px;
  }
}

.about-apart {
  background: var(--wf-gray);
  padding: 100px 0;
}

.about-apart-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.about-apart-intro h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 20px;
}

.about-apart-intro p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.about-apart-card {
  background: #f7f7f8;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

.about-apart-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 69px;
  padding: 15px;
  background: var(--wf-red);
  flex-shrink: 0;
}

.about-apart-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.about-apart-card p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0;
}

.about-compliance {
  margin-top: 100px;
}

.about-compliance h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 60px;
}

.about-compliance-list {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 41px;
}

.about-compliance-list li {
  position: relative;
  padding: 0 0 18px 45px;
  font-size: 18px;
  line-height: 1.875;
  color: var(--wf-black);
  break-inside: avoid;
}

.about-compliance-list li:last-child {
  padding-bottom: 0;
}

.about-compliance-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  background: var(--wf-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 9.5 17 19 7' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

@media (max-width: 767.98px) {
  .about-apart {
    padding: 56px 0;
  }

  .about-apart-intro h2 {
    font-size: 30px;
  }

  .about-compliance {
    margin-top: 56px;
  }

  .about-compliance h3 {
    font-size: 26px;
    margin-bottom: 28px;
  }

  .about-compliance-list {
    column-count: 1;
  }
}

.about-journey {
  background: var(--wf-black);
  overflow: hidden;
}

.about-journey-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 88px 8% 88px max(32px, calc((100vw - 1140px) / 2 + 12px));
}

.about-journey-copy h2 {
  color: var(--wf-white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.about-journey-copy p {
  color: var(--wf-white);
  font-size: 18px;
  line-height: 1.67;
  margin: 0;
  max-width: 560px;
}

.about-journey-media {
  height: 100%;
  min-height: 420px;
}

.about-journey-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}

@media (max-width: 991.98px) {
  .about-journey-copy {
    padding: 64px 24px;
  }

  .about-journey-media {
    min-height: 280px;
  }
}

.about-community {
  background: #f0f0f0;
  padding: 100px 0;
}

@media (max-width: 767.98px) {
  .about-community {
    padding: 56px 0;
  }
}

/* -------------------------------------------------------------------------
   LPW Family of Brands
   ------------------------------------------------------------------------- */

.lpw-brands {
  background: var(--wf-white);
  padding: 100px 0;
}

.lpw-brands h2 {
  color: var(--wf-black);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  margin: 0 0 20px;
}

.lpw-brands-intro {
  color: var(--wf-black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.67;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}

.lpw-brands-tablist {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #989fa5 #d3d3d3;
  padding: 32px 0 8px;
  margin: 0 0 16px;
}

.lpw-brands-tablist::-webkit-scrollbar {
  height: 7px;
}

.lpw-brands-tablist::-webkit-scrollbar-track {
  background: #d3d3d3;
  border-radius: 10px;
}

.lpw-brands-tablist::-webkit-scrollbar-thumb {
  background: #989fa5;
  border-radius: 10px;
}

.lpw-brands-tablist button {
  flex: 1 0 auto;
  min-width: 157px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}

.lpw-brands-tablist button span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.67;
}

.lpw-brands-tablist button span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 0;
  border-bottom: 4px solid var(--wf-blue);
  transition: width 0.5s ease-in-out;
}

.lpw-brands-tablist button:hover span::after,
.lpw-brands-tablist button.is-active span::after {
  width: 100%;
}

.lpw-brands-viewport {
  overflow: hidden;
  width: 100%;
}

.lpw-brands-track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.55s ease-in-out;
  will-change: transform;
}

.lpw-brands-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  padding: 24px 0 8px;
}

.lpw-brands-copy p {
  color: var(--wf-black);
  font-size: 18px;
  line-height: 1.67;
  margin: 0 0 28px;
  max-width: 560px;
}

.lpw-brands-logo {
  margin-bottom: 36px;
}

.lpw-brands-logo img {
  display: block;
  width: auto;
  max-width: 340px;
  max-height: 88px;
  object-fit: contain;
}

.lpw-brands-logo-smith img {
  max-width: 283px;
}

.lpw-brands-logo-penn img {
  max-width: 313px;
  max-height: 96px;
}

.lpw-brands-logo-ait img {
  max-width: 336px;
}

.lpw-brands-logo-diamond img {
  max-width: 200px;
}

.lpw-brands-logo-usdf img {
  max-width: 280px;
}

.lpw-brands-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lpw-brands-media img {
  display: block;
  width: 100%;
  max-width: 493px;
  height: auto;
  margin-inline: auto;
}

.lpw-brands-dots {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
  margin-top: 35px;
}

.lpw-brands-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: #989fa5;
  cursor: pointer;
  transition: width 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.lpw-brands-dots button.is-active {
  width: 20px;
  background: var(--wf-blue);
}

@media (max-width: 991.98px) {
  .lpw-brands {
    padding: 64px 0;
  }

  .lpw-brands h2 {
    font-size: 32px;
  }

  .lpw-brands-tablist button {
    flex: 0 0 auto;
    min-width: max-content;
    height: 56px;
  }

  .lpw-brands-logo img {
    max-height: 72px;
  }
}

@media (max-width: 767.98px) {
  .lpw-brands {
    padding: 56px 0;
  }

  .lpw-brands-dots {
    margin-top: 24px;
  }
}

.flange-types .lpw-brands-tablist button span::after {
  border-bottom-color: var(--wf-red);
}

.flange-types .lpw-brands-media img {
  width: auto;
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.flange-types-copy h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
  color: var(--wf-black);
}

.flange-types-copy .trust-list {
  margin: 0 0 28px;
}

.flange-types-copy .trust-list li {
  font-size: 18px;
  padding-bottom: 14px;
}

.flange-types-btn {
  position: relative;
  width: auto;
  min-width: 167px;
  padding: 21px 40px 21px 22px;
}

.flange-types-btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 767.98px) {
  .flange-types-copy h3 {
    font-size: 26px;
  }

  .flange-types .lpw-brands-media img {
    max-height: 220px;
  }
}

.contact-hero {
  background: var(--wf-black);
  padding: 100px 0;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-hero {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
  }
}

.contact-hero h1 {
  color: var(--wf-white);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.contact-page {
  background: var(--wf-white);
  padding: 100px 0;
}

.contact-info h2,
.contact-form-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 20px;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.67;
  color: var(--wf-black);
  margin: 0 0 32px;
  max-width: 520px;
}

.contact-details {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.contact-details li:last-child {
  margin-bottom: 0;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 69px;
  width: 69px;
  height: 69px;
  padding: 15px;
  background: var(--wf-red);
}

.contact-detail-icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.contact-details a {
  color: var(--wf-black);
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.5;
}

.contact-details a:hover {
  color: var(--wf-red);
}

.contact-details span a {
  display: block;
}

.contact-form-box {
  background: #f0f0f0;
  padding: 40px;
}

.contact-form-success {
  background: #e7f4ea;
  color: #1e4620;
  padding: 12px 14px;
  margin: 0 0 20px;
  font-size: 15px;
}

.contact-form-errors {
  background: #fdecea;
  color: #8a1f1c;
  padding: 12px 14px;
  margin: 0 0 20px;
}

.contact-form-errors p {
  margin: 0 0 6px;
  font-size: 15px;
}

.contact-form-errors p:last-child {
  margin-bottom: 0;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  height: 48px;
  background: var(--wf-white);
  border: 1px solid #d7d9db;
  border-radius: 0;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--wf-black);
  appearance: none;
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%23171819' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form textarea {
  height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--wf-red);
  outline-offset: -1px;
}

.contact-field-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--wf-black);
  margin: 8px 0 8px;
}

.contact-file-hint {
  font-size: 13px;
  color: #5b5e61;
  margin: 8px 0 0;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--wf-black);
}

.contact-consent input,
.contact-captcha input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.contact-captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 304px;
  min-height: 74px;
  padding: 12px 14px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  color: #222;
}

.contact-captcha-badge {
  margin-left: auto;
  width: 32px;
  height: 32px;
  color: #1a73e8;
}

.contact-captcha-badge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-form .btn-view-products {
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1199.98px) {
  .contact-hero h1,
  .contact-info h2,
  .contact-form-box h2 {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .contact-hero {
    padding: 56px 0;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-page {
    padding: 56px 0;
  }

  .contact-info h2,
  .contact-form-box h2 {
    font-size: 30px;
  }

  .contact-form-box {
    padding: 24px;
  }
}

.directory-page {
  background: var(--wf-white);
  padding: 80px 0 100px;
}

.directory-nav {
  gap: 20px;
}

.directory-nav-link {
  display: block;
  width: 100%;
  background: none;
  border: 0;
  padding: 0 0 0 22px;
  text-align: left;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--wf-black);
  position: relative;
}

.directory-nav-link:hover,
.directory-nav-link:focus,
.directory-nav-link.active {
  color: var(--wf-red);
}

.directory-nav-link.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wf-red);
}

.directory-card h2 {
  font-size: 27px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 6px;
}

.directory-title {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--wf-red);
  margin: 0 0 14px;
  line-height: 1.4;
}

.directory-meta {
  font-size: 16px;
  line-height: 1.7;
  color: var(--wf-black);
  margin: 0;
}

.directory-meta a {
  color: var(--wf-black);
  text-decoration: underline;
}

.directory-meta a:hover {
  color: var(--wf-red);
}

@media (max-width: 991.98px) {
  .directory-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 12px;
  }

  .directory-nav-link {
    width: auto;
    font-size: 22px;
    padding-left: 18px;
  }
}

@media (max-width: 767.98px) {
  .directory-page {
    padding: 48px 0 64px;
  }

  .directory-nav-link {
    font-size: 18px;
  }

  .directory-card h2 {
    font-size: 22px;
  }
}

/* -------------------------------------------------------------------------
   Product slider
   ------------------------------------------------------------------------- */

.product-slider {
  background: var(--wf-gray);
  position: relative;
  overflow: visible;
  padding-bottom: 56px;
  margin-top: -90px;
  z-index: 4;
}

.product-slider-stage {
  position: relative;
  height: 420px;
  max-width: 1200px;
  margin: 0 auto;
}

.slider-viewport {
  position: relative;
  height: 100%;
  overflow: visible;
}

.slider-item {
  position: absolute;
  left: 50%;
  top: 58%;
  width: min(520px, 70%);
  transform: translate(-50%, -50%) scale(0.18);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.55s ease, opacity 0.45s ease;
}

.slider-item img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.slider-item.is-active {
  transform: translate(-50%, -62%) scale(0.92);
  opacity: 1;
  z-index: 5;
  pointer-events: auto;
}

.slider-item.is-prev {
  transform: translate(-132%, -48%) scale(0.38);
  opacity: 0.42;
  z-index: 3;
}

.slider-item.is-next {
  transform: translate(32%, -48%) scale(0.38);
  opacity: 0.42;
  z-index: 3;
}

.slider-item.is-prev-2 {
  transform: translate(-175%, -42%) scale(0.22);
  opacity: 0.18;
  z-index: 2;
}

.slider-item.is-next-2 {
  transform: translate(75%, -42%) scale(0.22);
  opacity: 0.18;
  z-index: 2;
}

.slider-item.is-far {
  transform: translate(-50%, -50%) scale(0.12);
  opacity: 0;
  z-index: 1;
}

.slider-arrow {
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.slider-arrow-prev {
  left: 0;
}

.slider-arrow-next {
  right: 0;
}

.slider-arrow:hover {
  background: var(--wf-white);
}

.slider-arrow:hover svg path {
  stroke: var(--wf-red);
}

.product-slider-copy {
  position: relative;
  z-index: 6;
  padding-top: 8px;
}

.slider-title {
  margin: 0 0 18px;
  font-size: 44px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.15;
}

.slider-cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 0;
  list-style: none;
  margin: 0;
  padding: 0 0 12px;
}

.slider-cats li {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.slider-cats a {
  color: var(--wf-black);
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.slider-cats span {
  padding: 0 8px;
  color: var(--wf-black);
}

.slider-cats li.is-active a,
.slider-cats a:hover {
  color: var(--wf-red);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .product-slider-stage {
    height: 340px;
  }

  .slider-item.is-active {
    transform: translate(-50%, -55%) scale(0.82);
  }

  .slider-title {
    font-size: 34px;
  }
}

@media (max-width: 767.98px) {
  .product-slider-stage {
    height: 280px;
  }

  .slider-item.is-prev,
  .slider-item.is-next,
  .slider-item.is-prev-2,
  .slider-item.is-next-2 {
    opacity: 0;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    top: 46%;
  }

  .slider-title {
    font-size: 28px;
  }

  .slider-cats a {
    font-size: 14px;
  }
}

/* -------------------------------------------------------------------------
   Products explore grid
   ------------------------------------------------------------------------- */

.products-explore {
  background: var(--wf-white);
  padding: 88px 0 100px;
}

.products-explore-intro {
  max-width: 920px;
  margin: 0 auto 40px;
  text-align: center;
}

.products-explore-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 24px;
}

.products-explore-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0 0 18px;
}

.products-explore-intro h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  margin: 36px 0 8px;
}

.product-card-grid {
  margin-bottom: 48px;
}

.product-card {
  position: relative;
  display: block;
  height: 100%;
  color: var(--wf-black);
  text-decoration: none;
}

.product-card-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.product-card-inner {
  background: #eaeced;
  clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 56px, 100% 100%, 0 100%);
  min-height: 320px;
  height: 100%;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  transition: background-color 0.2s ease;
}

.product-card-inner img {
  width: 72%;
  max-width: 240px;
  margin: 8px auto 20px;
  display: block;
}

.product-card-inner h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}

.product-card:hover .product-card-inner {
  background: #e2e4e6;
}

.product-card:hover h4 {
  color: var(--wf-red);
}

.btn-view-products {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--wf-red);
  color: var(--wf-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 216px;
  padding: 21px 28px;
  border: 0;
  border-radius: 0;
  text-decoration: none;
}

.btn-view-products:hover,
.btn-view-products:focus {
  background: var(--wf-black);
  color: var(--wf-white);
}

@media (max-width: 767.98px) {
  .products-explore {
    padding: 56px 0 72px;
  }

  .products-explore-intro h2 {
    font-size: 30px;
  }

  .products-explore-intro h3 {
    font-size: 26px;
  }

  .product-card-inner {
    min-height: 280px;
  }
}

/* -------------------------------------------------------------------------
   Trust / why customers
   ------------------------------------------------------------------------- */

.trust-section {
  background: var(--wf-gray);
  padding: 88px 0;
}

.trust-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 20px;
}

.trust-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0 0 22px;
}

.trust-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--wf-black);
  margin: 0 0 18px;
}

.trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust-list li {
  position: relative;
  padding: 0 0 18px 44px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--wf-black);
}

.trust-list li:last-child {
  padding-bottom: 0;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: var(--wf-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 9.5 17 19 7' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.trust-video {
  background: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.trust-video iframe {
  border: 0;
}

@media (max-width: 767.98px) {
  .trust-section {
    padding: 56px 0;
  }

  .trust-section h2 {
    font-size: 30px;
  }
}

/* -------------------------------------------------------------------------
   Custom forging solutions
   ------------------------------------------------------------------------- */

.forging-section {
  background: var(--wf-white);
  padding: 88px 0 100px;
}

.forging-intro {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.forging-intro h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 22px;
}

.forging-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0;
}

.forging-card {
  position: relative;
  display: block;
  height: 100%;
  color: var(--wf-black);
  text-decoration: none;
}

.forging-card-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  line-height: 0;
  pointer-events: none;
}

.forging-card-inner {
  background: #eaeced;
  clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 56px, 100% 100%, 0 100%);
  min-height: 280px;
  height: 100%;
  padding: 40px 28px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: background-color 0.25s ease;
}

.forging-card-default {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.forging-card-default img {
  display: block;
  width: auto;
  height: 88px;
  max-width: 160px;
  object-fit: contain;
}

.forging-card-default h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: var(--wf-black);
}

.forging-card-hover {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--wf-white);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 240px;
}

.forging-card:hover .forging-card-inner,
.forging-card:focus .forging-card-inner {
  background: var(--wf-red);
}

.forging-card:hover .forging-card-default,
.forging-card:focus .forging-card-default {
  display: none;
}

.forging-card:hover .forging-card-hover,
.forging-card:focus .forging-card-hover {
  display: flex;
}

.forging-card:hover .forging-card-arrow path,
.forging-card:focus .forging-card-arrow path {
  stroke: #fff;
}

.forging-cta {
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12px;
}

.forging-cta h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  margin: 0 0 24px;
  line-height: 1.25;
}

@media (max-width: 767.98px) {
  .forging-section {
    padding: 56px 0 72px;
  }

  .forging-intro h2 {
    font-size: 30px;
  }

  .forging-card-inner,
  .forging-cta {
    min-height: 240px;
  }

  .forging-cta h3 {
    font-size: 26px;
  }
}

/* -------------------------------------------------------------------------
   Material grades
   ------------------------------------------------------------------------- */

.materials-section {
  position: relative;
  padding: 96px 0;
  background-color: #f4f4f4;
  background-image: url("../images/bg-flanges.jpg");
  background-size: cover;
  background-position: center;
}


.materials-section .container {
  position: relative;
  z-index: 1;
}

.materials-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.15;
  margin: 0 0 40px;
}

.materials-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--wf-black);
  margin: 0 0 16px;
}

.materials-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0;
  max-width: 380px;
}

.materials-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.materials-list li {
  position: relative;
  padding: 0 0 16px 44px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--wf-black);
}

.materials-list li:last-child {
  padding-bottom: 0;
}

.materials-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 26px;
  height: 26px;
  background: var(--wf-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 9.5 17 19 7' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.materials-list strong {
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .materials-section {
    padding: 56px 0;
  }

  .materials-section h2 {
    font-size: 30px;
  }

  .materials-section h3 {
    font-size: 22px;
  }
}

/* -------------------------------------------------------------------------
   Industries
   ------------------------------------------------------------------------- */

.industries-section {
  background: #1a1a1a;
  padding: 88px 0 96px;
  color: var(--wf-white);
}

.industries-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-white);
  line-height: 1.2;
  margin: 0 0 20px;
}

.industries-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--wf-white);
  max-width: 920px;
  margin: 0 0 36px;
}

.industries-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 18px;
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  max-width: 860px;
}

.industries-list li {
  position: relative;
  padding-left: 44px;
}

.industries-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  background: var(--wf-red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5 9.5 17 19 7' stroke='%23fff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 14px 14px no-repeat;
}

.industries-list a {
  color: var(--wf-white);
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.industries-list a:hover {
  color: var(--wf-red);
}

.industries-section .btn-view-products {
  color: var(--wf-white);
}

@media (max-width: 767.98px) {
  .industries-section {
    padding: 56px 0 64px;
  }

  .industries-section h2 {
    font-size: 30px;
  }

  .industries-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

/* -------------------------------------------------------------------------
   Quality
   ------------------------------------------------------------------------- */

.quality-section {
  background: var(--wf-white);
  padding: 96px 0;
}

.quality-media {
  position: relative;
  margin: 28px 0 0 28px;
}

.quality-media-accent {
  position: absolute;
  top: -28px;
  left: -28px;
  width: 82%;
  height: 82%;
  background: rgba(224, 57, 62, 0.16);
  clip-path: polygon(0 0, calc(100% - 70px) 0, 100% 70px, 100% 100%, 0 100%);
  z-index: 0;
}

.quality-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 90px), calc(100% - 90px) 100%, 0 100%);
}

.quality-copy h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 20px;
}

.quality-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0 0 28px;
}

@media (max-width: 767.98px) {
  .quality-section {
    padding: 56px 0;
  }

  .quality-media {
    margin: 20px 0 0 20px;
  }

  .quality-copy h2 {
    font-size: 30px;
  }
}

/* -------------------------------------------------------------------------
   Helpful resources
   ------------------------------------------------------------------------- */

.resources-section {
  background: var(--wf-white);
  padding: 88px 0 100px;
}

.resources-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 20px;
}

.resources-section p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0;
  max-width: 520px;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border: 1px solid var(--wf-red);
  color: var(--wf-black);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.resource-links a span {
  font-weight: 400;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.resource-links a:hover,
.resource-links a:focus {
  background: var(--wf-red);
  color: var(--wf-white);
}

.resource-links a:hover span,
.resource-links a:focus span {
  transform: translateX(6px);
}

@media (max-width: 767.98px) {
  .resources-section {
    padding: 56px 0 64px;
  }

  .resources-section h2 {
    font-size: 30px;
  }
}

/* -------------------------------------------------------------------------
   Ready to get started CTA
   ------------------------------------------------------------------------- */

.cta-section {
  position: relative;
  padding: 110px 0;
  background-color: #1a1a1a;
  background-image: url("../images/20250515_151112-1.webp");
  background-size: cover;
  background-position: center;
}


.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-box {
  background: var(--wf-white);
  padding: 56px 48px;
}

.cta-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 18px;
}

.cta-box p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0 0 28px;
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 64px 0;
  }

  .cta-box {
    padding: 36px 24px;
  }

  .cta-box h2 {
    font-size: 30px;
  }
}

/* -------------------------------------------------------------------------
   Industry pages
   ------------------------------------------------------------------------- */

.industry-hero {
  position: relative;
  min-height: 453px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #111;
  background-image: url("../images/industry-hero.jpg");
  background-size: cover;
  background-position: center;
}

.industry-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.48;
}

.industry-hero .container {
  position: relative;
  z-index: 2;
}

.industry-hero-copy {
  max-width: 720px;
  padding: 100px 0 90px;
}

.industry-hero-copy h1 {
  color: var(--wf-white);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
}

.industry-hero-copy p {
  color: var(--wf-white);
  font-size: 18px;
  line-height: 1.67;
  margin: 0 0 32px;
}

.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 768px) {
  .industry-hero {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
  }
}

.industry-split {
  background: var(--wf-white);
  padding: 72px 0;
}

.industry-split.is-alt {
  background: var(--wf-gray);
}

.industry-split .about-who-media {
  margin-top: 24px;
}

.industry-split .about-who-media img {
  aspect-ratio: 4 / 3;
}

.industry-split-copy h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
  line-height: 1.2;
  margin: 0 0 18px;
}

.industry-split-copy p {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0 0 18px;
}

.industry-related {
  padding-bottom: 80px;
}

.industry-cta .cta-box .btn-view-products {
  font-size: 14px;
  padding: 12px 18px;
}

.industry-cta .cta-box .btn-view-products:hover,
.industry-cta .cta-box .btn-view-products:focus {
  background: var(--wf-white);
  color: var(--wf-red);
  box-shadow: inset 0 0 0 2px var(--wf-red);
}

.industries-listing {
  padding: 80px 0 64px;
}

.industries-listing-intro {
  max-width: 920px;
  margin: 0 0 40px;
}

.industries-listing-intro h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 18px;
}

.industries-listing-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0 0 16px;
}

.industries-listing-sub {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 28px;
}

.industry-card {
  display: block;
  height: 100%;
  background: var(--wf-gray);
  padding: 32px 28px;
  color: var(--wf-black);
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 40px, 100% 100%, 0 100%);
}

.industry-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
}

.industry-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #3a3d40;
}

.industry-card:hover h4 {
  color: var(--wf-red);
}

@media (max-width: 1199.98px) {
  .industry-hero-copy h1 {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .industry-hero-copy {
    padding: 48px 0 56px;
  }

  .industry-hero-copy h1 {
    font-size: 32px;
  }

  .industry-hero-actions {
    flex-wrap: nowrap;
    gap: 8px;
  }

  .industry-hero-actions .btn-hero {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    font-size: 12px;
    min-height: 48px;
    padding: 12px 8px;
    text-align: center;
  }

  .industry-split,
  .industries-listing {
    padding: 48px 0 32px;
  }

  .industry-split-copy h2,
  .industries-listing-intro h2 {
    font-size: 26px;
  }
}

/* -------------------------------------------------------------------------
   Products listing
   ------------------------------------------------------------------------- */

.products-hero {
  position: relative;
  min-height: 453px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #111;
  background-image: url("../images/20250515_151112-1.webp");
  background-size: cover;
  background-position: center;
}

.products-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.42;
}

.products-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.products-hero-row {
  min-height: 453px;
}

.products-hero-copy {
  padding: 90px 0 80px;
  max-width: 560px;
}

.products-hero-copy h1 {
  color: var(--wf-white);
  font-size: 54px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
}

.products-hero-copy p {
  color: var(--wf-white);
  font-size: 18px;
  line-height: 1.67;
  margin: 0 0 32px;
}

.products-hero-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  min-height: 320px;
  padding: 24px 0 0;
}

.products-hero-media img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .products-hero {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
  }

  .products-hero-media {
    padding-bottom: 24px;
  }
}

.products-listing {
  padding: 80px 0 40px;
}

.products-listing-intro {
  max-width: 920px;
  margin: 0 0 48px;
}

.products-listing-intro h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 18px;
}

.products-listing-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #3a3d40;
  margin: 0;
}

.products-standout {
  background: var(--wf-gray);
}

.split-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.split-cta-media {
  position: relative;
  min-height: 360px;
  background: #111;
}

.split-cta-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-cta-copy {
  background: #181818;
  color: var(--wf-white);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.split-cta-copy h2 {
  margin: 0 0 20px;
  color: var(--wf-white);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.split-cta-copy p {
  margin: 0 0 28px;
  color: var(--wf-white);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
}

.split-cta-copy .btn-view-products {
  width: auto;
  font-size: 14px;
  padding: 12px 18px;
}

.split-cta-copy .btn-view-products:hover,
.split-cta-copy .btn-view-products:focus {
  background: var(--wf-white);
  color: var(--wf-red);
}

@media (max-width: 991.98px) {
  .split-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .split-cta-media {
    min-height: 280px;
  }

  .split-cta-copy {
    padding: 48px 24px;
  }

  .split-cta-copy h2 {
    font-size: 32px;
  }
}

.products-quality-lead,
.products-quality-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.7;
  max-width: 920px;
  margin: 0 0 18px;
}

.products-quality-sub {
  margin-bottom: 28px;
  font-weight: 600;
}

@media (max-width: 1199.98px) {
  .products-hero-copy h1 {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .products-hero {
    min-height: 0;
  }

  .products-hero-row {
    min-height: 0;
  }

  .products-hero-copy {
    padding: 48px 0 12px;
  }

  .products-hero-copy h1 {
    font-size: 32px;
  }

  .products-hero-media {
    min-height: 220px;
    padding-bottom: 28px;
  }

  .products-hero-media img {
    max-height: 240px;
  }

  .products-listing {
    padding: 48px 0 24px;
  }

  .products-listing-intro h2 {
    font-size: 28px;
  }
}

/* -------------------------------------------------------------------------
   Product detail
   ------------------------------------------------------------------------- */

.product-hero {
  position: relative;
  background: var(--wf-black);
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 380px;
  padding: 48px 0 56px;
}

@media (min-width: 768px) {
  .product-hero {
    clip-path: polygon(0 0, 100% 0, 100% 76%, 89.5% 100%, 0 100%);
    min-height: 453px;
    padding: 72px 0 120px;
  }
}

.product-hero-row {
  min-height: 280px;
}

.product-hero-label {
  margin: 0 0 10px;
  color: var(--wf-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-hero h1 {
  margin: 0;
  color: var(--wf-white);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.product-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.product-hero-media img {
  max-width: 100%;
  max-height: 340px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-detail {
  padding: 72px 0 80px;
  background: var(--wf-white);
}

.product-copy h2 {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 700;
  color: var(--wf-black);
}

.product-copy p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3d40;
}

.product-groups {
  margin-top: 28px;
}

.product-group {
  margin-bottom: 24px;
}

.product-group h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.product-group ul {
  margin: 0;
  padding-left: 1.2rem;
}

.product-group li {
  margin-bottom: 8px;
}

.product-spec-title {
  display: inline-block;
  margin: 0 0 16px;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--wf-black);
  border-bottom: 2px solid var(--wf-red);
}

.product-spec {
  border: 1px solid #d5d8db;
}

.product-spec-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px 28px;
  padding: 22px 24px;
  border-top: 1px solid #e6e8ea;
}

.product-spec-row:first-child {
  border-top: 0;
}

.product-spec-row h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wf-black);
  line-height: 1.4;
}

.product-spec-row ul {
  margin: 0;
  padding-left: 1.15rem;
}

.product-spec-row li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #2b2e31;
}

.product-spec-note {
  margin: 10px 0 0;
  font-size: 14px;
  color: #5b5f63;
}

.product-missing {
  padding: 80px 0;
}

.product-missing h1 {
  margin-bottom: 12px;
}

@media (max-width: 991.98px) {
  .product-hero h1 {
    font-size: 42px;
  }

  .product-hero-media {
    min-height: 220px;
  }

  .product-hero-media img {
    max-height: 260px;
  }

  .product-spec-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 767.98px) {
  .product-hero {
    min-height: 0;
    padding: 36px 0 40px;
  }

  .product-hero h1 {
    font-size: 34px;
  }

  .product-hero-row {
    min-height: 0;
  }

  .product-detail {
    padding: 48px 0 56px;
  }

  .product-copy h2 {
    font-size: 26px;
  }
}

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

.site-footer {
  background: #1a1a1a;
  color: var(--wf-white);
  padding: 72px 0 28px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 28px;
}

.footer-logo img {
  display: block;
  width: 220px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.footer-icon {
  flex: 0 0 16px;
  margin-top: 3px;
}

.footer-contact a {
  color: var(--wf-white);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--wf-red);
}

.footer-links {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--wf-white);
  text-decoration: none;
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--wf-red);
}

.footer-brands-title {
  color: var(--wf-white);
  font-size: 16px;
  font-weight: 700;
  margin: 8px 0 14px;
}

.footer-social {
  display: flex;
  justify-content: center;
  margin: 36px 0 20px;
}

.footer-social a {
  display: flex;
  line-height: 0;
}

.footer-social img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.footer-rule {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.85);
  margin: 0 0 18px;
  opacity: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a,
.footer-bottom p {
  color: var(--wf-white);
  font-size: 14px;
  margin: 0;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--wf-red);
}

@media (max-width: 767.98px) {
  .site-footer {
    padding: 36px 0 20px;
  }

  .footer-logo img {
    width: 160px;
  }

  .footer-social {
    margin: 24px 0 16px;
  }
}

/* -------------------------------------------------------------------------
   Global tablet + mobile: tighter type, spacing, and layout
   ------------------------------------------------------------------------- */

@media (max-width: 991.98px) {
  section[class] {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .hero-title,
  .page-hero-content h1,
  .product-hero h1,
  .contact-hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  h2,
  .cta-box h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  h3 {
    font-size: 22px;
    line-height: 1.3;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 14px;
  }

  section[class] {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .hero {
    min-height: 0;
  }

  .hero-content,
  .page-hero-content {
    padding: 36px 0 28px;
  }

  .page-hero,
  .forging-hero,
  .contact-hero,
  .product-hero {
    min-height: 0;
  }

  .hero-title,
  .page-hero-content h1,
  .product-hero h1,
  .contact-hero h1,
  .cta-box h2,
  .lpw-brands h2,
  .product-copy h2,
  h1,
  h2 {
    font-size: 24px !important;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  h3,
  h4,
  .forging-quote-card h3,
  .forging-quote-intro h3,
  .forging-benefits-item h3,
  .flange-types-copy h3 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  p,
  .hero-subtitle,
  .page-hero-content p,
  .cta-box p,
  .lpw-brands-intro,
  .lpw-brands-copy p,
  .product-copy p,
  .forging-quote-card p,
  .forging-benefits-copy p,
  .about-who-copy p, li {
    font-size: 14px !important;
    line-height: 2;
  }

  .mobile-nav-title {
    font-size: 22px !important;
    line-height: 1 !important;
  }

  .page-hero-content p:last-of-type {
    margin-bottom: 20px;
  }

  .trust-list li,
  .flange-types-copy .trust-list li {
    font-size: 14px;
    padding: 0 0 12px 36px;
  }

  .trust-list li::before {
    width: 22px;
    height: 22px;
    background-size: 12px 12px;
  }

  .cta-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .cta-box {
    padding: 28px 20px;
  }

  .btn-hero,
  .btn-view-products,
  .flange-types-btn {
    font-size: 15px;
    padding: 14px 18px;
    width: auto;
    max-width: 100%;
  }

  .hero-actions .btn-hero,
  .industry-hero-actions .btn-hero {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    font-size: 13px;
    padding: 12px 8px;
  }

  .hero-actions .btn-hero-primary,
  .industry-hero-actions .btn-hero-primary {
    padding: 12px 26px 12px 8px;
  }

  .flange-types-btn {
    padding: 14px 36px 14px 18px;
  }

  .lpw-brands-tablist {
    padding: 12px 0 4px;
    margin-bottom: 8px;
    gap: 12px;
  }

  .lpw-brands-tablist button {
    height: 48px;
    min-width: max-content;
  }

  .lpw-brands-slide {
    padding: 12px 0 4px;
  }

  .lpw-brands-dots {
    margin-top: 20px;
  }

  .forging-quote-card,
  .forging-quote-lead {
    padding: 20px;
  }

  .forging-quote-intro h2,
  .forging-benefits h2 {
    margin-bottom: 16px;
  }

  .about-who-media,
  .forging-flange-media {
    margin-top: 8px;
  }

  .product-hero-media {
    min-height: 160px;
  }

  .product-hero-media img,
  .flange-types .lpw-brands-media img {
    max-height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  section.hero {
    padding-bottom: 100px;
    padding-top: 0px;
}
.btn-hero {
    min-height: 40px;
}

.header-menu .nav-item:has(> .nav-link):hover::after, .header-menu .nav-item:has(> .nav-link.active)::after, .header-menu .nav-item:has(> .dropdown-toggle.show)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    width: calc(100% - 1.5rem);
    height: 4px;
    background: transparent !important;
    pointer-events: none;
    z-index: 4;
}
}
