.detail-hero {
  min-height: 470px;
  position: relative;
  color: #fff;
  background: #101923;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.detail-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7, 13, 20, 0.93) 0%, rgba(7, 13, 20, 0.63) 48%, rgba(7, 13, 20, 0.2) 100%),
    url("../img/hero-factory.jpg");
  background-size: cover;
  background-position: var(--hero-pos, center);
}
.detail-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.detail-hero .container {
  position: relative;
  z-index: 1;
  padding-bottom: 65px;
}
.breadcrumb {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #aab2bb;
  margin-bottom: 28px;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb i {
  font-style: normal;
  color: var(--orange);
  padding: 0 10px;
}
.detail-hero h1 {
  font-size: clamp(54px, 6.5vw, 84px);
  max-width: 850px;
}
.detail-hero .lead {
  font-size: 14px;
  line-height: 1.75;
  color: #c3cad1;
  max-width: 620px;
  margin: 24px 0 0;
}
.detail-nav {
  height: 66px;
  background: #fff;
  border-bottom: 1px solid #e5e4df;
  position: sticky;
  top: 0;
  z-index: 12;
}
.detail-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 35px;
}
.detail-nav a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.detail-nav a:hover {
  color: var(--orange);
}
.detail-nav .mini-quote {
  margin-left: auto;
  background: var(--orange);
  color: #fff;
  padding: 12px 16px;
}
.overview {
  background: var(--paper);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}
.overview-copy h2,
.detail-section h2 {
  font-size: clamp(42px, 4.5vw, 61px);
}
.overview-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: #66707a;
  margin: 25px 0;
}
.bullet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bullet-list span {
  font-size: 11px;
  font-weight: 600;
}
.bullet-list span:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: #ffe9d8;
  color: var(--orange);
  margin-right: 8px;
}
.equipment-visual {
  height: 440px;
  background: url("../img/hero-factory.jpg") var(--image-pos, 70% 50%) / 900px auto no-repeat;
  position: relative;
}
.equipment-visual .label {
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--orange);
  color: #fff;
  padding: 20px 24px;
}
.equipment-visual .label strong {
  font: 700 25px var(--display);
  display: block;
}
.equipment-visual .label span {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.benefits {
  background: #101923;
  color: #fff;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #3b444e;
  margin-top: 45px;
}
.benefit {
  background: #101923;
  padding: 34px 27px;
  min-height: 210px;
}
.benefit > span {
  color: var(--orange);
  font: 600 13px var(--display);
}
.benefit h3 {
  font: 600 22px var(--display);
  text-transform: uppercase;
  margin: 25px 0 12px;
}
.benefit p {
  font-size: 11px;
  line-height: 1.7;
  color: #9ea7b0;
  margin: 0;
}
.spec-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}
.spec-intro p {
  font-size: 13px;
  line-height: 1.8;
  color: #68717a;
}
.spec-note {
  border-left: 2px solid var(--orange);
  padding: 10px 0 10px 16px;
  margin-top: 30px;
  font-size: 10px;
  color: #737b83;
}
.spec-table {
  border-top: 2px solid var(--ink);
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 15px 10px;
  border-bottom: 1px solid #dcdad5;
  font-size: 11px;
}
.spec-row b {
  font-weight: 600;
}
.spec-row span {
  color: #616a73;
}
.process {
  background: var(--paper);
}
.process-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 45px;
}
.process-step {
  position: relative;
  padding: 0 25px;
  border-left: 1px solid #cbc9c3;
  min-height: 145px;
}
.process-step:first-child {
  border-left: 2px solid var(--orange);
}
.process-step > span {
  font: 600 14px var(--display);
  color: var(--orange);
}
.process-step h3 {
  font: 600 19px var(--display);
  text-transform: uppercase;
  margin: 18px 0 8px;
}
.process-step p {
  font-size: 10px;
  line-height: 1.6;
  color: #707880;
}
.applications {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  align-items: start;
}
.application-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.application-tags span {
  border: 1px solid #dddcd7;
  padding: 17px;
  font: 600 17px var(--display);
  text-transform: uppercase;
}
.application-tags span:before {
  content: "◆";
  color: var(--orange);
  font-size: 9px;
  margin-right: 10px;
}
.detail-cta {
  background: var(--orange);
  color: #fff;
  padding: 72px 0;
}
.detail-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.detail-cta h2 {
  font-size: clamp(42px, 5vw, 66px);
}
.detail-cta h2 em {
  color: #121b25;
}
.detail-cta p {
  font-size: 12px;
  color: #ffe5d2;
}
.detail-cta .btn {
  background: #111923;
  color: #fff;
}
.product-switcher {
  background: #0b121a;
  color: #fff;
  padding: 24px 0;
}
.switcher-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.switcher-inner a {
  font: 600 16px var(--display);
  text-transform: uppercase;
}
.switcher-inner a span {
  display: block;
  font: 500 8px var(--body);
  color: #7e8994;
  letter-spacing: 0.13em;
  margin-bottom: 5px;
}
.switcher-inner a:last-child {
  text-align: right;
}
@media (max-width: 800px) {
  .detail-nav .container {
    gap: 15px;
    overflow: auto;
  }
  .detail-nav a {
    white-space: nowrap;
  }
  .overview-grid,
  .spec-layout,
  .applications {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-flow {
    grid-template-columns: 1fr;
  }
  .process-step {
    min-height: auto;
    padding: 18px 20px;
    border-left: 2px solid #cbc9c3;
  }
  .detail-cta .container {
    display: block;
  }
  .detail-cta .btn {
    margin-top: 20px;
  }
}
@media (max-width: 520px) {
  .detail-hero {
    min-height: 500px;
  }
  .detail-hero h1 {
    font-size: 47px;
  }
  .detail-nav a:nth-child(4),
  .detail-nav a:nth-child(5) {
    display: none;
  }
  .overview {
    padding-top: 70px;
  }
  .equipment-visual {
    height: 330px;
    background-size: 680px auto;
  }
  .bullet-list,
  .benefit-grid,
  .application-tags {
    grid-template-columns: 1fr;
  }
  .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .switcher-inner a {
    font-size: 13px;
  }
}
