:root {
  --navy: #001a37;
  --navy-2: #002e5b;
  --blue: #005fa0;
  --blue-bright: #0874c8;
  --red: #d4001f;
  --red-dark: #b0001a;
  --white: #ffffff;
  --ink: #0f1721;
  --muted: #5e6b7a;
  --line: #d9e1ea;
  --soft: #f2f5f8;
  --steel: #e7edf2;
  --footer: #202226;
  --shadow: 0 22px 70px rgba(0, 46, 91, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.5;
}

body,
.site-wrap,
.site-main,
main,
section,
article,
div {
  min-width: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, li, a, span, strong, em, button) {
  max-width: 100%;
  overflow-wrap: break-word;
}

:where(h1, h2, h3, h4, h5, h6) {
  text-wrap: balance;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr) auto auto;
  align-items: stretch;
  width: 100%;
  height: 86px;
  min-height: 86px;
  background: linear-gradient(90deg, #001a37 0%, #001e40 72%, #002e5b 100%);
  color: var(--white);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-logo {
  display: flex;
  align-items: center;
  height: 86px;
  min-width: 0;
  padding: 0 24px 0 52px;
}

.site-logo img {
  width: 174px;
  height: auto;
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.36));
  transform: translateY(8px);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 86px;
  white-space: nowrap;
}

.primary-nav span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.preview-primary-nav {
  align-items: stretch;
  gap: 10px;
}

.preview-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 86px;
}

.preview-nav-link {
  padding: 0 4px;
  transition: color 140ms ease;
}

.preview-dropdown-toggle {
  appearance: none;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 24px;
  min-height: 24px;
  align-self: center;
  margin-left: -4px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  outline: 0;
  padding: 0;
  transition: color 140ms ease;
}

.preview-header .preview-nav-item:hover > .preview-nav-link,
.preview-header .preview-nav-item:focus-within > .preview-nav-link,
.preview-header .preview-nav-link:hover,
.preview-header .preview-nav-link:focus,
.preview-header .preview-nav-item:hover > .preview-dropdown-toggle,
.preview-header .preview-nav-item:focus-within > .preview-dropdown-toggle {
  color: var(--red);
}

.preview-dropdown-toggle:hover,
.preview-dropdown-toggle:focus,
.preview-dropdown-toggle:active {
  background: transparent !important;
  box-shadow: none !important;
}

.preview-dropdown-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: -12px;
}

.preview-chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.preview-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 292px;
  padding: 10px;
  border-top: 4px solid var(--red);
  background: var(--white);
  box-shadow: 0 22px 48px rgba(0, 21, 48, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.preview-dropdown a {
  display: block;
  min-height: 0;
  padding: 11px 12px;
  color: var(--navy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  white-space: normal;
}

.preview-dropdown a:hover,
.preview-dropdown a:focus {
  background: var(--soft);
  color: var(--red-dark);
}

.preview-nav-item:hover .preview-dropdown,
.preview-nav-item:focus-within .preview-dropdown,
.preview-nav-item.is-open .preview-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 86px;
  padding: 0 28px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  transition: color 140ms ease;
  white-space: nowrap;
}

.header-phone:hover,
.header-phone:focus {
  color: var(--red);
}

.header-phone svg,
.quote-contact svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 86px;
  min-width: 220px;
  padding: 0 34px;
  background: linear-gradient(135deg, #e00022 0%, #bd001c 100%);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  min-height: auto;
  padding: 40px 0;
  background: url("assets/extramet-latrobe-pa-carbide-manufacturing-floor-logo-left-original-flag-right.webp") center 30% / cover no-repeat;
  color: var(--white);
  isolation: isolate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 16, 35, 0.62) 0%, rgba(0, 24, 52, 0.45) 34%, rgba(0, 46, 91, 0.08) 72%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02));
}

.hero-content {
  width: min(860px, calc(100% - 72px));
  margin: 0 0 0 58px;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: clamp(38px, 4.4vw, 57px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.hero p {
  max-width: 570px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 28px;
  border: 2px solid transparent;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  background: transparent !important;
  min-height: 44px;
  padding: 0 0 7px;
  border-width: 0 0 2px;
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus {
  background: transparent !important;
  border-color: var(--white);
  color: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
}

.hero-proof span:not(.pin-icon):not(.proof-divider) {
  white-space: nowrap;
}

.pin-icon {
  position: relative;
  width: 24px;
  height: 32px;
}

.pin-icon::before {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  background: var(--blue-bright);
  content: "";
  transform: rotate(-45deg);
}

.pin-icon::after {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  content: "";
}

.proof-divider {
  width: 2px;
  height: 22px;
  background: var(--red);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-band article {
  min-height: 126px;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(0, 95, 160, 0.04), rgba(0, 95, 160, 0)),
    var(--white);
}

.proof-band article:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;
}

.proof-band span {
  display: block;
  max-width: 250px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.services-rail {
  display: grid;
  grid-template-columns: 285px repeat(5, minmax(160px, 1fr));
  min-height: 112px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
}

.rail-label {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 58px;
  background: linear-gradient(135deg, #006bc0 0%, #003f7d 100%);
  color: var(--white);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%);
}

.rail-label h2 {
  max-width: 150px;
  margin: 0;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.rail-service {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 13px;
  align-content: center;
  min-width: 0;
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.rail-service .service-icon {
  grid-row: 1 / span 2;
}

.rail-service strong,
.rail-service span:last-child {
  grid-column: 2;
}

.rail-service strong {
  display: block;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.rail-service span:last-child {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 12px;
}

.service-icon {
  position: relative;
  width: 50px;
  height: 50px;
  color: var(--blue);
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.target-icon {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.target-icon::before {
  inset: 13px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.target-icon::after {
  top: 25px;
  left: -8px;
  width: 70px;
  height: 3px;
  background: currentColor;
  box-shadow: 0 -25px 0 -1px transparent;
}

.laser-icon::before {
  left: 24px;
  top: 2px;
  width: 6px;
  height: 28px;
  background: currentColor;
}

.laser-icon::after {
  left: 7px;
  bottom: 6px;
  width: 40px;
  height: 20px;
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 50%;
}

.diamond-icon::before {
  inset: 7px 4px 12px;
  border: 3px solid currentColor;
  transform: rotate(45deg);
}

.inspection-icon::before {
  inset: 5px 14px;
  border: 3px solid currentColor;
  border-radius: 16px;
}

.inspection-icon::after {
  right: 2px;
  bottom: 3px;
  width: 22px;
  height: 22px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.gear-icon::before {
  inset: 6px;
  border: 5px solid currentColor;
  border-radius: 50%;
}

.gear-icon::after {
  top: 25px;
  left: 0;
  width: 54px;
  height: 4px;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  transform: rotate(45deg);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.92fr 1.05fr;
  min-height: 340px;
  border-bottom: 1px solid #c9d3df;
}

.overview-card,
.quote-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.overview-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 34px 36px 10px;
}

.card-copy h2,
.quote-panel h2,
.section-heading h2,
.capability-copy h2,
.quality-copy h2,
.rfq-copy h2 {
  margin: 0;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.card-copy h2 {
  font-size: 21px;
  text-transform: uppercase;
}

.card-copy h2::after,
.quote-panel h2::after {
  display: block;
  width: 30px;
  height: 3px;
  margin: 16px 0 0;
  background: var(--red);
  content: "";
}

.card-copy p,
.quote-panel p {
  max-width: 300px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 15px;
}

.card-copy a,
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.card-copy a {
  margin-top: auto;
}

.overview-card > img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.quality-card {
  background: linear-gradient(180deg, #ffffff 0%, #e7edf2 100%);
}

.quote-panel {
  padding: 34px 52px;
  background: linear-gradient(135deg, #003b79 0%, #001d43 100%);
  color: var(--white);
}

.quote-panel h2 {
  color: var(--white);
  font-size: 25px;
  text-transform: uppercase;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.quote-panel .btn {
  margin-top: 28px;
}

.quote-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--white);
  font-size: 21px;
}

.product-pathways,
.tools-pathways,
.capabilities,
.manufacturer-supplier,
.industries,
.quality,
.faq-section,
.rfq-section {
  padding: 96px 58px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading span,
.capability-copy span,
.quality-copy span,
.rfq-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-heading h2,
.capability-copy h2,
.quality-copy h2,
.rfq-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.section-heading p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 18px;
}

.pathway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.pathway-card {
  display: grid;
  grid-template-rows: 176px 1fr;
  height: 100%;
  min-height: 292px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 46, 91, 0.08);
}

.pathway-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.pathway-card div {
  padding: 22px 22px 24px;
}

.pathway-card strong {
  display: block;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 800;
}

.pathway-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.tools-pathways {
  background:
    linear-gradient(90deg, rgba(0, 95, 160, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 95, 160, 0.06) 1px, transparent 1px),
    #f8fafc;
  background-size: 50px 50px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.tools-grid a {
  display: block;
  min-height: 210px;
  padding: 28px;
  border-top: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 46, 91, 0.08);
}

.tools-grid strong {
  display: block;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.16;
}

.tools-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.capabilities {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.35fr);
  gap: 64px;
  align-items: start;
  background: var(--soft);
}

.capability-copy {
  position: sticky;
  top: 28px;
}

.capability-copy p,
.quality-copy p,
.rfq-copy p {
  color: var(--muted);
  font-size: 18px;
}

.capability-list {
  display: grid;
  gap: 18px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 188px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 46, 91, 0.08);
}

.capability-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capability-list div {
  padding: 28px 32px;
}

.capability-list h3 {
  margin: 0;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
}

.capability-list p {
  margin: 10px 0 0;
  color: var(--muted);
}

.text-link,
.supplier-grid a,
.faq-accordion a,
.rfq-checklist a {
  display: inline;
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.manufacturer-supplier {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 95, 160, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 95, 160, 0.07) 1px, transparent 1px),
    #f8fafc;
  background-size: 54px 54px;
}

.supplier-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.supplier-copy h2 {
  margin: 0;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.supplier-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.supplier-grid {
  display: grid;
  gap: 18px;
}

.supplier-grid article {
  padding: 28px 32px;
  border-left: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 46, 91, 0.08);
}

.supplier-grid strong {
  display: block;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.supplier-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.industries {
  background: var(--navy);
  color: var(--white);
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

.section-heading.light span {
  color: var(--white);
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.76);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 260px;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.industry-tile {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: var(--bg) center / cover;
  color: var(--white);
  isolation: isolate;
}

.industry-tile::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 26, 55, 0.9), rgba(0, 55, 110, 0.2));
  content: "";
}

.industry-tile.featured {
  grid-row: auto;
}

.industry-tile strong {
  display: block;
  max-width: 360px;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.08;
}

.industry-tile span {
  display: block;
  max-width: 300px;
  min-height: 58px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.industry-tile:hover,
.industry-tile:focus {
  color: var(--red);
}

.industry-tile:hover strong,
.industry-tile:focus strong {
  color: var(--red);
}

.industry-tile:hover span,
.industry-tile:focus span {
  color: rgba(255, 255, 255, 0.92);
}

.quality {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 70px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 95, 160, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 95, 160, 0.08) 1px, transparent 1px),
    var(--white);
  background-size: 48px 48px;
}

.quality-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quality-steps {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.quality-steps article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 46, 91, 0.08);
}

.quality-steps strong {
  color: var(--blue);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
}

.quality-steps span {
  color: var(--ink);
}

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

.faq-accordion {
  display: grid;
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-accordion-item {
  border: 1px solid rgba(0, 46, 91, 0.14);
  border-left: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 16px 46px rgba(0, 46, 91, 0.08);
}

.faq-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 22px 28px;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  list-style: none;
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-item summary::after {
  content: "+";
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(0, 95, 160, 0.3);
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.faq-accordion-item[open] summary {
  color: var(--blue);
}

.faq-accordion-item[open] summary::after {
  content: "-";
  border-color: var(--red);
  color: var(--red);
}

.faq-accordion-panel {
  padding: 0 28px 26px 28px;
}

.faq-accordion-panel p,
.faq-accordion-panel address {
  max-width: 940px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.faq-accordion-panel address {
  font-style: normal;
}

.faq-accordion-panel strong {
  color: var(--navy-2);
}

.rfq-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  column-gap: 70px;
  row-gap: 52px;
  align-items: start;
  padding-bottom: 56px;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--blue) 100%);
  color: var(--white);
}

.rfq-copy h2,
.rfq-copy p {
  color: var(--white);
}

.rfq-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.rfq-copy .btn {
  margin-top: 24px;
}

.rfq-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rfq-checklist article {
  min-height: 148px;
  padding: 26px;
  border-left: 5px solid var(--red);
  background: var(--white);
  color: var(--navy-2);
  box-shadow: var(--shadow);
}

.rfq-checklist strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.rfq-checklist span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.rfq-location {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  margin-top: 8px;
  border-left: 5px solid var(--red);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 18, 40, 0.22);
}

.rfq-location-copy {
  padding: 34px 36px;
  color: var(--navy-2);
}

.rfq-location-copy span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--red);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rfq-location-copy h2 {
  max-width: 420px;
  margin: 0;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.12;
}

.rfq-location-copy p {
  max-width: 440px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.rfq-location-copy address {
  margin: 22px 0 0;
  color: var(--ink);
  font-style: normal;
  line-height: 1.55;
}

.rfq-location-copy address strong {
  display: block;
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.rfq-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.rfq-location-actions a {
  color: var(--navy-2);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.rfq-location-actions a:hover,
.rfq-location-actions a:focus {
  color: var(--red);
}

.rfq-map-frame {
  min-height: 360px;
  border-left: 1px solid var(--line);
  background: var(--steel);
}

.rfq-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.rfq-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  background: var(--white);
  color: var(--navy-2);
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rfq-form label {
  display: grid;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--ink);
  font: 600 15px "Open Sans", Arial, sans-serif;
}

.rfq-form input,
.rfq-form select {
  height: 46px;
  padding: 0 13px;
}

.rfq-form textarea {
  padding: 13px;
  resize: vertical;
}

.rfq-form button {
  min-height: 52px;
  border: 0;
  background: var(--red);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 58px;
  background: var(--footer);
  color: var(--white);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.site-footer strong {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer strong::after {
  display: inline-block;
  width: 2px;
  height: 18px;
  margin-left: 26px;
  background: var(--red);
  content: "";
  vertical-align: middle;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.86);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .primary-nav {
    gap: 18px;
    font-size: 13px;
  }

  .header-phone {
    display: none;
  }

  .services-rail,
  .proof-band,
  .overview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pathway-grid,
  .tools-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-label {
    clip-path: none;
  }

  .quote-panel {
    grid-column: span 2;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    height: 78px;
    min-height: 78px;
  }

  .site-logo {
    padding: 0 18px;
  }

  .site-logo img {
    width: 158px;
  }

  .mobile-menu {
    display: grid;
    gap: 5px;
    align-content: center;
    width: 62px;
    border: 0;
    background: var(--red);
  }

  .mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
  }

  .primary-nav,
  .header-cta {
    display: none;
  }

  .site-header.nav-open {
    background: var(--navy);
    height: auto;
  }

  .site-header.nav-open .primary-nav {
    display: flex;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--navy);
  }

  .site-header.nav-open .primary-nav a {
    justify-content: space-between;
    min-height: 0;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .site-header.nav-open .preview-nav-item {
    display: grid;
    grid-template-columns: 1fr 52px;
    min-height: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .site-header.nav-open .preview-nav-link {
    padding: 15px 22px;
    border-bottom: 0;
  }

  .site-header.nav-open .preview-dropdown-toggle {
    width: 52px;
    height: auto;
    min-height: 52px;
    margin: 0;
  }

  .site-header.nav-open .preview-dropdown {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    max-height: 0;
    padding: 0 22px;
    border-top: 0;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 180ms ease, padding 180ms ease;
    visibility: visible;
  }

  .site-header.nav-open .preview-nav-item.is-open .preview-dropdown {
    max-height: 520px;
    padding: 0 22px 12px;
    pointer-events: auto;
  }

  .site-header.nav-open .preview-dropdown a {
    display: block;
    padding: 11px 0;
    border-bottom: 0;
    color: rgba(255, 255, 255, 0.88);
  }

  .site-header.nav-open .preview-dropdown a:hover,
  .site-header.nav-open .preview-dropdown a:focus {
    background: transparent;
    color: var(--white);
  }

  .site-header.nav-open .header-cta {
    display: flex;
    grid-column: 1 / -1;
    min-width: 0;
    min-height: 56px;
    width: 100%;
  }

  .hero {
    align-items: flex-start;
    min-height: auto;
    padding: 28px 0;
  }

  .hero-shade {
    inset: 0;
  }

  .hero-content {
    width: min(100% - 28px, 620px);
    margin: 0 auto;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.08;
  }

  .services-rail,
  .overview-grid,
  .pathway-grid,
  .tools-grid,
  .capabilities,
  .manufacturer-supplier,
  .industry-grid,
  .quality,
  .rfq-checklist,
  .rfq-location,
  .rfq-section {
    grid-template-columns: 1fr;
  }

  .rail-label,
  .rail-service,
  .product-pathways,
  .tools-pathways,
  .capabilities,
  .manufacturer-supplier,
  .industries,
  .quality,
  .faq-section,
  .rfq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .quote-panel {
    grid-column: auto;
  }

  .capability-copy {
    position: static;
  }

  .capability-list article {
    grid-template-columns: 1fr;
  }

  .capability-list img {
    height: 220px;
  }

  .industry-tile.featured {
    grid-row: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 24px;
  }

  .rfq-section {
    row-gap: 36px;
    padding-bottom: 40px;
  }

  .rfq-map-frame {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 660px;
    background-position: 58% 30%;
  }

  .hero p {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(34px, 9.2vw, 44px);
  }

  .hero-proof {
    align-items: flex-start;
    gap: 12px;
  }

  .hero-proof .proof-divider {
    display: none;
  }

  .hero-proof span:not(.pin-icon):not(.proof-divider) {
    width: calc(100% - 48px);
    white-space: normal;
  }

  .hero-actions {
    gap: 14px;
  }

  .btn {
    width: 100%;
  }

  .services-rail {
    display: block;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band article {
    min-height: 0;
    padding: 22px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .rail-label {
    min-height: 92px;
  }

  .rail-service {
    grid-template-columns: 48px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .overview-card,
  .quote-panel {
    min-height: 0;
  }

  .industry-slices {
    height: 120px;
    padding: 0 24px 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .rfq-form {
    padding: 22px;
  }

  .rfq-location-copy {
    padding: 28px 24px;
  }

  .rfq-location-copy h2 {
    font-size: 24px;
  }

  .rfq-map-frame,
  .rfq-map-frame iframe {
    min-height: 300px;
  }
}
