/* ==========================================================================
   /wiper-products/ — Industrial Spec Sheet Layout
   --------------------------------------------------------------------------
   Standalone stylesheet, enqueued only when the Wiper Products template is
   active. Mirrors src/sass/assets/_wiper-products.scss exactly; this file
   exists so visual changes are immediate without re-running the SCSS build.
   ========================================================================== */

/* --------------------------------------------------------------------------
   01 — PAGE WRAPPER
   -------------------------------------------------------------------------- */
.wiper-products {
  background: #ffffff;
  color: #000000;
  position: relative;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   02 — HERO ( extends existing .page-hero )
   -------------------------------------------------------------------------- */
.wiper-products .wiper-hero {
  background-color: #364A39;
  position: relative;
}

/* Grid texture behind hero copy — only visible until a real bg image lands */
.wiper-products .wiper-hero .hero-image img {
  filter: grayscale(100%) brightness(1.2) contrast(105%);
}
.wiper-products .wiper-hero .hero-image::after {
  content: ""; position: absolute; inset: 0;
  background: #364A39; mix-blend-mode: multiply; opacity: 0.8; pointer-events: none;
}

.wiper-products .wiper-hero .hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(242, 241, 237, 0.05) 1px, transparent 0);
  background-size: 28px 28px;
}

.wiper-products .wiper-hero .overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.45) 100%);
  z-index: 3;
}

.wiper-products .wiper-hero .hero-content {
  z-index: 3;
  max-width: 920px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.wiper-products .wiper-hero .hero-eyebrow {
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #F2F1ED;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.wiper-products .wiper-hero .hero-eyebrow::before,
.wiper-products .wiper-hero .hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: rgba(155, 145, 133, 0.7);
}

.wiper-products .wiper-hero .hero-content h1 {
  font-size: 78px;
  line-height: 82px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #F2F1ED;
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .wiper-products .wiper-hero .hero-content h1 {
    font-size: 64px;
    line-height: 70px;
  }
}
@media (max-width: 540px) {
  .wiper-products .wiper-hero .hero-content h1 {
    font-size: 44px;
    line-height: 50px;
  }
}

.wiper-products .wiper-hero .hero-subhead {
  font-family: "courier-std", monospace;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  color: #F2F1ED;
  text-align: center;
  max-width: 620px;
  margin: 0;
}
@media (max-width: 540px) {
  .wiper-products .wiper-hero .hero-subhead {
    font-size: 14px;
  }
}

.wiper-products .wiper-hero .btns-wrapper {
  margin-top: 12px;
}

.wiper-products .wiper-hero .hero-doc-id {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 3;
  font-family: "courier-std", monospace;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242, 241, 237, 0.8);
}
@media (max-width: 540px) {
  .wiper-products .wiper-hero .hero-doc-id {
    top: 20px;
    left: 20px;
    font-size: 9px;
    letter-spacing: 0.3em;
  }
}

.wiper-products .wiper-hero .hero-spec-line {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: "courier-std", monospace;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: rgba(242, 241, 237, 0.7);
  text-transform: uppercase;
  white-space: nowrap;
}
.wiper-products .wiper-hero .hero-spec-line .dot {
  width: 3px;
  height: 3px;
  background: rgba(242, 241, 237, 0.5);
  border-radius: 50%;
}
@media (max-width: 540px) {
  .wiper-products .wiper-hero .hero-spec-line {
    font-size: 9px;
    gap: 14px;
    bottom: 24px;
  }
}

/* --------------------------------------------------------------------------
   03 — SECTION SCAFFOLDING (markers, headings, rules)
   -------------------------------------------------------------------------- */
.wiper-products .wp-section {
  position: relative;
}

.wiper-products .section-marker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #000;
}
.wiper-products .section-marker .sec-num {
  color: inherit;
  font-weight: 700;
}
.wiper-products .section-marker .sec-divider {
  color: #9B9185;
  font-weight: 400;
}
.wiper-products .section-marker .sec-label {
  color: #9B9185;
}
.wiper-products .section-marker .sec-rule {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.12);
  margin-left: 10px;
}
.wiper-products .section-marker.light {
  color: #F2F1ED;
}
.wiper-products .section-marker.light .sec-divider,
.wiper-products .section-marker.light .sec-label {
  color: #9B9185;
}
.wiper-products .section-marker.light .sec-rule {
  background: rgba(242, 241, 237, 0.18);
}

@media (max-width: 540px) {
  .wiper-products .section-marker {
    font-size: 10px;
    gap: 10px;
    margin-bottom: 24px;
  }
}

/* Reusable thin heading rule used under centered H2s */
.wiper-products .heading-rule {
  width: 60px;
  height: 1px;
  background: #9B9185;
  margin: 0 0 40px;
}

/* --------------------------------------------------------------------------
   04 — INTRO ( SEC. 01 )
   -------------------------------------------------------------------------- */
.wiper-products .wp-intro {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.wiper-products .wp-intro h2 {
  font-size: 56px;
  line-height: 1.08;
  text-align: left;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  color: #000;
}
@media (max-width: 768px) {
  .wiper-products .wp-intro h2 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 480px) {
  .wiper-products .wp-intro h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

.wiper-products .wp-intro .intro-body {
  max-width: 720px;
  margin: 0;
}
.wiper-products .wp-intro .intro-body p {
  text-align: left;
  font-family: "courier-std", monospace;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.015em;
  color: #000;
  margin-bottom: 20px;
}
.wiper-products .wp-intro .intro-body p:last-child {
  margin-bottom: 0;
}

.wiper-products .wp-intro .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 640px) {
  .wiper-products .wp-intro .stat-row {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }
}

.wiper-products .wp-intro .stat {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.wiper-products .wp-intro .stat:last-child {
  border-right: none;
}
@media (max-width: 640px) {
  .wiper-products .wp-intro .stat {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 28px 24px;
  }
  .wiper-products .wp-intro .stat:last-child {
    border-bottom: none;
  }
}
.wiper-products .wp-intro .stat-label {
  font-family: "courier-std", monospace;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #9B9185;
}
.wiper-products .wp-intro .stat-value {
  font-family: "din-condensed", sans-serif;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  color: #364A39;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   05 — PRODUCTS ( SEC. 02 )
   -------------------------------------------------------------------------- */
.wiper-products .wp-products {
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.wiper-products .wp-products > .container > h2 {
  font-size: 56px;
  line-height: 1.08;
  text-align: left;
  letter-spacing: 0.005em;
  margin: 0 0 16px;
  color: #000;
}
@media (max-width: 768px) {
  .wiper-products .wp-products > .container > h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 480px) {
  .wiper-products .wp-products > .container > h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

.wiper-products .wp-products .catalog-intro {
  font-family: "courier-std", monospace;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 80px;
  max-width: 520px;
}
@media (max-width: 768px) {
  .wiper-products .wp-products .catalog-intro {
    margin-bottom: 56px;
  }
}

.wiper-products .products-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (max-width: 900px) {
  .wiper-products .products-list {
    gap: 64px;
  }
}

.wiper-products .product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1024px) {
  .wiper-products .product-item {
    gap: 56px;
  }
}
@media (max-width: 900px) {
  .wiper-products .product-item {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Reverse layout (every other product flips sides) */
.wiper-products .product-item.reverse .product-visual {
  order: 2;
}
.wiper-products .product-item.reverse .product-content {
  order: 1;
}
@media (max-width: 900px) {
  .wiper-products .product-item.reverse .product-visual {
    order: 0;
  }
  .wiper-products .product-item.reverse .product-content {
    order: 0;
  }
}

/* Product visual / specimen block */
.wiper-products .product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #364A39;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(242, 241, 237, 0.07) 1px, transparent 0);
  background-size: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* corner registration brackets */
.wiper-products .product-visual .visual-corners {
  position: absolute;
  inset: 20px;
  pointer-events: none;
}
.wiper-products .product-visual .visual-corners span {
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: #F2F1ED;
  border-style: solid;
  border-width: 0;
}
.wiper-products .product-visual .visual-corners span:nth-child(1) {
  top: 0;
  left: 0;
  border-top-width: 1px;
  border-left-width: 1px;
}
.wiper-products .product-visual .visual-corners span:nth-child(2) {
  top: 0;
  right: 0;
  border-top-width: 1px;
  border-right-width: 1px;
}
.wiper-products .product-visual .visual-corners span:nth-child(3) {
  bottom: 0;
  left: 0;
  border-bottom-width: 1px;
  border-left-width: 1px;
}
.wiper-products .product-visual .visual-corners span:nth-child(4) {
  bottom: 0;
  right: 0;
  border-bottom-width: 1px;
  border-right-width: 1px;
}

.wiper-products .product-visual .visual-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  text-align: center;
}
.wiper-products .product-visual .visual-id {
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #9B9185;
}
.wiper-products .product-visual .visual-name {
  font-family: "din-condensed", sans-serif;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #F2F1ED;
  max-width: 90%;
}
@media (max-width: 540px) {
  .wiper-products .product-visual .visual-name {
    font-size: 24px;
  }
}
.wiper-products .product-visual .visual-stamp {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: "courier-std", monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(242, 241, 237, 0.4);
}

/* Product content column */
.wiper-products .product-content {
  display: flex;
  flex-direction: column;
}

.wiper-products .product-tag {
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #9B9185;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.wiper-products .product-tag .tag-rule {
  width: 28px;
  height: 1px;
  background: #9B9185;
}

.wiper-products .product-content h3 {
  font-family: "din-condensed", sans-serif;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-align: left;
  color: #000;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .wiper-products .product-content h3 {
    font-size: 36px;
  }
}

.wiper-products .product-content .product-desc {
  font-family: "courier-std", monospace;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  color: #000;
  margin: 0 0 36px;
  max-width: 480px;
}

.wiper-products .product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.wiper-products .product-specs.single-spec {
  grid-template-columns: 1fr;
  max-width: 320px;
}
@media (max-width: 480px) {
  .wiper-products .product-specs {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.wiper-products .spec-block .spec-label {
  display: block;
  font-family: "courier-std", monospace;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #364A39;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #364A39;
}

.wiper-products .spec-block .spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.wiper-products .spec-block .spec-list li {
  font-family: "courier-std", monospace;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: -0.015em;
  color: #000;
  position: relative;
  padding-left: 18px;
}
.wiper-products .spec-block .spec-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #9B9185;
  font-weight: 700;
}

.wiper-products .product-content .product-note {
  font-family: "courier-std", monospace;
  font-size: 12px;
  font-style: italic;
  color: #9B9185;
  margin: 20px 0 0;
  letter-spacing: -0.01em;
}

/* --------------------------------------------------------------------------
   06 — PACKAGING ( SEC. 03 )
   -------------------------------------------------------------------------- */
.wiper-products .wp-packaging {
  background: #364A39;
  color: #F2F1ED;
  position: relative;
}

.wiper-products .wp-packaging h2 {
  font-size: 56px;
  line-height: 1.08;
  text-align: left;
  letter-spacing: 0.005em;
  margin: 0 0 16px;
  color: #F2F1ED;
}
@media (max-width: 768px) {
  .wiper-products .wp-packaging h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 480px) {
  .wiper-products .wp-packaging h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

.wiper-products .wp-packaging .packaging-intro {
  font-family: "courier-std", monospace;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: -0.015em;
  color: #F2F1ED;
  max-width: 620px;
  margin: 0 0 64px;
}

.wiper-products .packaging-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(242, 241, 237, 0.22);
  border-left: 1px solid rgba(242, 241, 237, 0.22);
}
@media (max-width: 900px) {
  .wiper-products .packaging-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .wiper-products .packaging-grid {
    grid-template-columns: 1fr;
  }
}

.wiper-products .pkg-tile {
  position: relative;
  padding: 40px 36px 36px;
  border-right: 1px solid rgba(242, 241, 237, 0.22);
  border-bottom: 1px solid rgba(242, 241, 237, 0.22);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: background-color 0.3s ease;
}
.wiper-products .pkg-tile:hover {
  background-color: rgba(155, 145, 133, 0.08);
}

.wiper-products .pkg-tile .pkg-num {
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #9B9185;
}

.wiper-products .pkg-tile .pkg-display {
  display: flex;
  flex-direction: column;
}
.wiper-products .pkg-tile .pkg-weight {
  font-family: "din-condensed", sans-serif;
  font-size: 88px;
  line-height: 0.9;
  letter-spacing: 0.005em;
  color: #F2F1ED;
  text-transform: uppercase;
}
.wiper-products .pkg-tile .pkg-weight-word {
  font-size: 64px;
}
@media (max-width: 1024px) {
  .wiper-products .pkg-tile .pkg-weight {
    font-size: 72px;
  }
  .wiper-products .pkg-tile .pkg-weight-word {
    font-size: 56px;
  }
}
@media (max-width: 540px) {
  .wiper-products .pkg-tile .pkg-weight {
    font-size: 64px;
  }
  .wiper-products .pkg-tile .pkg-weight-word {
    font-size: 48px;
  }
}
.wiper-products .pkg-tile .pkg-unit {
  font-family: "courier-std", monospace;
  font-size: 12px;
  letter-spacing: 0.25em;
  color: #9B9185;
  text-transform: uppercase;
  margin-top: 12px;
}

.wiper-products .wp-packaging .custom-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 241, 237, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: baseline;
  font-family: "courier-std", monospace;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: #F2F1ED;
}
.wiper-products .wp-packaging .custom-note .note-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: #9B9185;
  text-transform: uppercase;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   07 — INDUSTRIES ( SEC. 04 )
   -------------------------------------------------------------------------- */
.wiper-products .wp-industries {
  background: #ffffff;
  color: #000;
}

.wiper-products .wp-industries h2 {
  font-size: 56px;
  line-height: 1.08;
  text-align: left;
  letter-spacing: 0.005em;
  margin: 0 0 16px;
  color: #000;
}
@media (max-width: 768px) {
  .wiper-products .wp-industries h2 {
    font-size: 40px;
    line-height: 46px;
  }
}
@media (max-width: 480px) {
  .wiper-products .wp-industries h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

.wiper-products .wp-industries .industries-intro {
  font-family: "courier-std", monospace;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  color: #000;
  max-width: 540px;
  margin: 0 0 64px;
}

.wiper-products .industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-left: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .wiper-products .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .wiper-products .industries-grid {
    grid-template-columns: 1fr;
  }
}

.wiper-products .industry {
  position: relative;
  padding: 36px 28px;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.wiper-products .industry:hover {
  background-color: rgba(155, 145, 133, 0.08);
}
.wiper-products .industry .ind-num {
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #9B9185;
}
.wiper-products .industry .ind-name {
  font-family: "din-condensed", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #364A39;
}

/* --------------------------------------------------------------------------
   08 — WHY ( SEC. 05 ) — DARK
   -------------------------------------------------------------------------- */
.wiper-products .wp-why {
  background: #364A39;
  color: #F2F1ED;
}

.wiper-products .wp-why h2 {
  font-size: 56px;
  line-height: 1.08;
  text-align: left;
  letter-spacing: 0.005em;
  margin: 0 0 80px;
  color: #F2F1ED;
}
@media (max-width: 768px) {
  .wiper-products .wp-why h2 {
    font-size: 40px;
    line-height: 46px;
    margin-bottom: 56px;
  }
}
@media (max-width: 480px) {
  .wiper-products .wp-why h2 {
    font-size: 32px;
    line-height: 38px;
  }
}

.wiper-products .why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .wiper-products .why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .wiper-products .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (max-width: 460px) {
  .wiper-products .why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.wiper-products .why-card {
  display: flex;
  flex-direction: column;
}
.wiper-products .why-card .why-num {
  font-family: "din-condensed", sans-serif;
  font-size: 60px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #9B9185;
  margin-bottom: 16px;
}
.wiper-products .why-card .why-rule {
  width: 36px;
  height: 1px;
  background: #9B9185;
  margin-bottom: 20px;
}
.wiper-products .why-card h3 {
  font-family: "din-condensed", sans-serif;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: left;
  color: #F2F1ED;
  margin: 0 0 12px;
}
.wiper-products .why-card p {
  font-family: "courier-std", monospace;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: -0.015em;
  color: rgba(242, 241, 237, 0.85);
  margin: 0;
}

/* --------------------------------------------------------------------------
   09 — BOTTOM CTA
   -------------------------------------------------------------------------- */
.wiper-products .wp-cta {
  background: #F2F1ED;
  color: #000;
}

.wiper-products .wp-cta .cta-frame {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 56px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  text-align: center;
}
@media (max-width: 540px) {
  .wiper-products .wp-cta .cta-frame {
    padding: 48px 24px;
  }
}

/* corner ticks on the cta frame — small "L" shapes overlapping the border */
.wiper-products .wp-cta .cta-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: #364A39;
  border-style: solid;
  border-width: 0;
  background: transparent;
}
.wiper-products .wp-cta .cta-corner-tl {
  top: -1px;
  left: -1px;
  border-top-width: 2px;
  border-left-width: 2px;
}
.wiper-products .wp-cta .cta-corner-tr {
  top: -1px;
  right: -1px;
  border-top-width: 2px;
  border-right-width: 2px;
}
.wiper-products .wp-cta .cta-corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.wiper-products .wp-cta .cta-corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.wiper-products .wp-cta .cta-tag {
  display: inline-block;
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: #9B9185;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.wiper-products .wp-cta h2 {
  font-family: "din-condensed", sans-serif;
  font-size: 52px;
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 18px;
  color: #000;
}
@media (max-width: 540px) {
  .wiper-products .wp-cta h2 {
    font-size: 36px;
    line-height: 42px;
  }
}
.wiper-products .wp-cta p {
  font-family: "courier-std", monospace;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: -0.015em;
  color: #000;
  max-width: 480px;
  margin: 0 auto 32px;
  text-align: center;
}
.wiper-products .wp-cta .btns-wrapper {
  margin: 0 auto;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   10 — RELATED SERVICES (footer-adjacent strip)
   -------------------------------------------------------------------------- */
.wiper-products .wp-related {
  background: #ffffff;
  padding: 56px 0 64px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.wiper-products .wp-related .related-label {
  display: block;
  font-family: "courier-std", monospace;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #9B9185;
  margin-bottom: 22px;
}
.wiper-products .related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
@media (max-width: 540px) {
  .wiper-products .related-links {
    gap: 22px;
  }
}
.wiper-products .related-links a {
  font-family: "din-condensed", sans-serif;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.wiper-products .related-links a:hover {
  color: #364A39;
  border-bottom-color: #364A39;
}
