/* =====================================================
   SECTION: ROOT VARIABLES & BASE
===================================================== */
:root {
  --wcu-ink: #101214;
  --wcu-red: #D91C1C;
  --wcu-red-dk: #8f0f0f;
  --wcu-gray: #5b6470;
  --wcu-line: #E3E6E9;
  --wcu-off: #F3F5F7;
  --wcu-black: #0A0B0D;
  --wcu-surface: #15181C;
  --wcu-surface-2: #1D2126;
  --wcu-hair: #2C3238;
  --wcu-steel: #9AA6AE;
  --ff: 'Barlow', sans-serif;
}

body.wcu-page {
  line-height: 1.6;
  background: #fff;
  overflow-x: hidden;
}


.desktop{
    display: block;
}
.phone{
    display: none;
}

@media (max-width: 576px) {


    .phone {
        display: block;
    }

    .desktop {
        display: none;
    }
}

.wcu-page h1,
.wcu-page h2,
.wcu-page h3,
.wcu-page h4 {
  font-weight: 700 !important;
  margin: 0;
}

.wcu-page section {
  position: relative;
  padding: 40px 0px;
}

/* -- responsive: ROOT / BASE -- */
@media(max-width:768px) {
  .wcu-page section {
    padding: 3.6rem 0;
  }
}
/* END SECTION: ROOT VARIABLES & BASE */


/* =====================================================
   SECTION: SCROLL PROGRESS BAR
===================================================== */
.wcu-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--wcu-red);
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}
/* END SECTION: SCROLL PROGRESS BAR */


/* =====================================================
   SECTION: ANIMATION PRIMITIVES (reveal, tilt, magnetic, ripple)
===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.in {
  opacity: 1;
  transform: none;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1);
}

.reveal-zoom.in {
  opacity: 1;
  transform: none;
}

.reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transition: opacity .7s ease, filter .7s ease;
}

.reveal-blur.in {
  opacity: 1;
  filter: blur(0);
}

.wcu-tilt {
  transition: transform .25s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.wcu-magnetic {
  transition: transform .18s ease;
}

.wcu-ripple {
  position: relative;
  overflow: hidden;
}

.wcu-ripple__wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: wcu-ripple-anim .6s ease-out;
  pointer-events: none;
}

@keyframes wcu-ripple-anim {
  to {
    transform: scale(3);
    opacity: 0;
  }
}
/* END SECTION: ANIMATION PRIMITIVES */


/* =====================================================
   SECTION: EYEBROW LABEL
===================================================== */
.wcu-eyebrow {
  font-size: 17px;
  text-transform: uppercase;
  color: var(--wcu-red) !important;
  -webkit-text-fill-color: var(--wcu-red) !important;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
}

.wcu-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--wcu-red);
  display: inline-block;
}

.wcu-eyebrow--light {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.wcu-eyebrow--light::before {
  background: #fff;
}
/* END SECTION: EYEBROW LABEL */


/* =====================================================
   SECTION 1: PREMIUM HERO
===================================================== */
.wcu-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 4rem;
  overflow: hidden;
  background: var(--wcu-black);
}

.wcu-hero__media {
  position: absolute;
  inset: -6% -2%;
  width: 104%;
  height: 112%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}

.wcu-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(10, 11, 13, .96) 0%, rgba(10, 11, 13, .78) 40%, rgba(10, 11, 13, .35) 100%);
}

.wcu-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 11, 13, .2) 0%, transparent 30%, transparent 70%, rgba(10, 11, 13, .9) 100%);
}

.wcu-hero__content {
  position: relative;
  z-index: 2;
}

.wcu-crumb {
  display: flex;
  gap: .4rem;
  font-size: 15px;
  color: var(--wcu-steel) !important;
  margin-bottom: 1.4rem;
}

.wcu-crumb a {
  color: var(--wcu-steel) !important;
  -webkit-text-fill-color: var(--wcu-steel) !important;
  text-decoration: none;
}

.wcu-crumb a:hover {
  color: var(--wcu-red) !important;
  -webkit-text-fill-color: var(--wcu-red) !important;
}

.wcu-crumb .cur {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-weight: 600;
}

/* ---- H1 (.wcu-hero h1): 40px desktop / 32px tablet / 25px phone ---- */
.wcu-hero h1 {
  font-size: 40px !important;
  line-height: 1.02;
  text-transform: uppercase;
  max-width: 20ch;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.wcu-hero h1 em {
  font-style: normal;
  color: var(--wcu-red) !important;
  -webkit-text-fill-color: var(--wcu-red) !important;
}

.wcu-hero p.lead {
  max-width: 56ch;
  color: rgba(255, 255, 255, .72) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .72) !important;
  font-size: 17.28px;
  margin-top: 1.4rem;
}

.wcu-hero-tags {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.wcu-hero-tags span {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  padding: .32rem .9rem;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .85) !important;
}

.wcu-btn-red {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--wcu-red);
  border: 1.5px solid var(--wcu-red);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: .9rem 1.8rem;
  border-radius: 4px;
  transition: .2s;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}

.wcu-btn-red:hover {
  background: var(--wcu-red-dk);
  border-color: var(--wcu-red-dk);
}

.wcu-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .9) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .9) !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: .9rem 1.8rem;
  border-radius: 4px;
  transition: .2s;
  text-decoration: none;
  position: relative;
}

.wcu-btn-ghost:hover {
  border-color: #fff;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.wcu-hero-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

/* -- responsive: PREMIUM HERO -- */
@media(max-width:768px) {
  .wcu-hero {
    min-height: auto;
    padding: 6.5rem 0 2.6rem;
  }

  .wcu-hero h1 {
    max-width: 100%;
    font-size: 32px !important;
  }

  .wcu-hero-tags span {
    font-size: 15px;
    padding: .28rem .75rem;
  }

  .wcu-hero-actions {
    flex-direction: column;
  }

  .wcu-hero-actions .wcu-btn-red,
  .wcu-hero-actions .wcu-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}

@media(max-width:576px) {
  .wcu-hero h1 {
    font-size: 25px !important;
  }
}
/* END SECTION 1: PREMIUM HERO */


/* =====================================================
   SECTION: SHARED WHITE / DARK BLOCKS + SPLIT LAYOUT
===================================================== */
.wcu-white {
  background: #fff;
}

.wcu-white h2 {
  color: var(--wcu-ink) !important;
  -webkit-text-fill-color: var(--wcu-ink) !important;
  text-transform: uppercase;
  line-height: 1.08;
  margin: .7rem 0 1.1rem;
}

.wcu-white p {
  color: var(--wcu-gray) !important;
  -webkit-text-fill-color: var(--wcu-gray) !important;
  line-height: 1.8;
}

.wcu-dark {
  background: var(--wcu-black);
}

.wcu-dark h2 {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-transform: uppercase;
  line-height: 1.08;
  margin: .7rem 0 1.1rem;
}

.wcu-dark p {
  color: var(--wcu-steel) !important;
  -webkit-text-fill-color: var(--wcu-steel) !important;
  line-height: 1.8;
}

.wcu-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.wcu-split-media {
  border-radius: 8px;
  overflow: hidden;
}

.wcu-split-media img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.wcu-white .wcu-split-media {
  border: 1px solid var(--wcu-line);
}

.wcu-dark .wcu-split-media {
  border: 1px solid var(--wcu-hair);
}

/* -- responsive: SHARED WHITE / DARK + SPLIT LAYOUT -- */
@media(max-width:992px) {
  .wcu-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
/* END SECTION: SHARED WHITE / DARK BLOCKS + SPLIT LAYOUT */


/* =====================================================
   SECTION 2: ANIMATED STATISTICS
===================================================== */
.wcu-stats-band {
  background: var(--wcu-ink);
}

.wcu-stat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  overflow: hidden;
}

.wcu-stat-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

.wcu-stat-cell {
  padding: 1.8rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.wcu-stat-cell strong {
  display: block;
  font-size: clamp(25.6px, 3vw, 36.8px);
  font-weight: 900;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  line-height: 1;
}

.wcu-stat-cell strong span {
  color: var(--wcu-red) !important;
  -webkit-text-fill-color: var(--wcu-red) !important;
}

.wcu-stat-cell small {
  display: block;
  margin-top: .5rem;
  font-size: 15px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}

/* -- responsive: ANIMATED STATISTICS -- */
@media(max-width:992px) {
  .wcu-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:768px) {
  .wcu-stats-band {
    padding: 2rem 0 !important;
  }

  .wcu-stat-cell {
    padding: 1.2rem .6rem;
  }
}

@media(max-width:560px) {
  .wcu-stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-stat-grid--3 {
    grid-template-columns: 1fr;
  }
}
/* END SECTION 2: ANIMATED STATISTICS */


/* =====================================================
   SECTION 3: FEATURE CARDS (8) — dark, light, icon variants
===================================================== */
.wcu-card-dark {
  background: var(--wcu-surface);
  border: 1px solid var(--wcu-hair);
  border-radius: 8px;
  padding: 1.9rem 1.7rem;
  height: 100%;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.wcu-card-dark:hover {
  border-color: rgba(217, 28, 28, .35);
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .5);
}

.wcu-card-dark__icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(217, 28, 28, .12);
  border: 1px solid rgba(217, 28, 28, .28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wcu-red) !important;
  font-size: 20.8px;
  margin-bottom: 1.1rem;
  transition: transform .3s;
      padding: 7px;

}

.wcu-card-dark:hover .wcu-card-dark__icon {
  transform: scale(1.12) rotate(-4deg);
}

.wcu-card-dark h3 {
  font-size: 16.32px !important;
  text-transform: uppercase;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.wcu-card-dark p {
  margin: .55rem 0 0;
  color: var(--wcu-steel) !important;
  -webkit-text-fill-color: var(--wcu-steel) !important;
}

.wcu-card-light {
  background: #fff;
  border: 1px solid var(--wcu-line);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.wcu-card-light:hover {
  border-color: rgba(217, 28, 28, .35);
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(16, 18, 20, .14);
}

.wcu-card-light__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.wcu-card-light__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.wcu-card-light:hover .wcu-card-light__media img {
  transform: scale(1.07);
}

.wcu-card-light h3 {
  font-size: 15.04px !important;
  text-transform: uppercase;
  color: var(--wcu-ink) !important;
  -webkit-text-fill-color: var(--wcu-ink) !important;
  margin: 1.1rem 1.3rem 0;
}

.wcu-card-light p {
  margin: .5rem 1.3rem 1.3rem;
  color: var(--wcu-gray) !important;
  -webkit-text-fill-color: var(--wcu-gray) !important;
}

.wcu-card-icon {
  background: #fff;
  border: 1px solid var(--wcu-line);
  border-radius: 8px;
  padding: 1.9rem 1.7rem;
  height: 100%;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
}

.wcu-card-icon:hover {
  border-color: rgba(217, 28, 28, .35);
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(16, 18, 20, .1);
}

.wcu-card-icon__icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(217, 28, 28, .08);
  border: 1px solid rgba(217, 28, 28, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wcu-red) !important;
  font-size: 20.8px;
  margin-bottom: 1.1rem;
  transition: transform .3s;
      padding: 9px;
}

.wcu-card-icon:hover .wcu-card-icon__icon {
  transform: scale(1.12) rotate(-4deg);
}

.wcu-card-icon h3 {
  font-size: 16.32px !important;
  text-transform: uppercase;
  color: var(--wcu-ink) !important;
  -webkit-text-fill-color: var(--wcu-ink) !important;
}

.wcu-card-icon p {
  margin: .55rem 0 0;
  color: var(--wcu-gray) !important;
  -webkit-text-fill-color: var(--wcu-gray) !important;
}

/* -- responsive: FEATURE CARDS -- */
@media(max-width:768px) {
  /* 2-column card grids on mobile (feature / icon / dark cards) */
  .row.g-4>.col-lg-3.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row.g-4>.col-lg-4.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .wcu-card-icon,
  .wcu-card-dark {
    padding: 1.4rem 1.1rem;
  }

  .wcu-card-icon__icon,
  .wcu-card-dark__icon {
    width: 40px;
    height: 40px;
    font-size: 17.6px;
    margin-bottom: .8rem;
  }

  .wcu-card-icon h3,
  .wcu-card-dark h3 {
    font-size: 15px !important;
  }

  .wcu-card-icon,
  .wcu-card-dark,
  .wcu-card-light {
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease;
  }

  .wcu-card-icon:active,
  .wcu-card-dark:active,
  .wcu-card-light:active {
    transform: scale(.96);
  }
}

@media(max-width:480px) {
  .row.g-4>.col-lg-3.col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
/* END SECTION 3: FEATURE CARDS (8) */


/* =====================================================
   SECTION 4: INTERACTIVE FILM LAYERS (accordion-style list)
===================================================== */
.wcu-layers {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-width: 760px;
  margin: 0 auto;
}

.wcu-layer {
  background: var(--wcu-surface);
  border: 1px solid var(--wcu-hair);
  border-radius: 8px;
  padding: 1.1rem 1.5rem;
  cursor: pointer;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.wcu-layer:hover,
.wcu-layer.active {
  border-color: var(--wcu-red);
  background: var(--wcu-surface-2);
}

.wcu-layer__num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(217, 28, 28, .14);
  border: 1px solid rgba(217, 28, 28, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wcu-red);
  font-weight: 700;
  font-size: 15px;
}

.wcu-layer__body {
  flex: 1;
}

.wcu-layer__body strong {
  display: block;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 19px;
  text-transform: uppercase;
}

.wcu-layer__desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .35s ease, opacity .35s ease, margin-top .35s ease;
  font-size: 17px;
  color: var(--wcu-steel);
}

.wcu-layer.active .wcu-layer__desc {
  max-height: 80px;
  opacity: 1;
  margin-top: .4rem;
}

.wcu-layer i.bi-chevron-down {
  transition: transform .3s;
  color: var(--wcu-steel);
}

.wcu-layer.active i.bi-chevron-down {
  transform: rotate(180deg);
  color: var(--wcu-red);
}

/* -- responsive: INTERACTIVE FILM LAYERS -- */
@media(max-width:768px) {
  .wcu-layers {
    gap: .5rem;
  }

  .wcu-layer {
    padding: .9rem 1.1rem;
    gap: .9rem;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease;
  }

  .wcu-layer__num {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }

  .wcu-layer__body strong {
    font-size: 15px;
  }
}
/* END SECTION 4: INTERACTIVE FILM LAYERS */


/* =====================================================
   SECTION 5: MANUFACTURING EXCELLENCE (feature boxes)
===================================================== */
.wcu-feat-box {
  background: var(--wcu-off);
  border: 1px solid var(--wcu-line);
  border-radius: 8px;
  padding: 1.6rem 1.5rem;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.wcu-feat-box img{
        width: 14%;
    margin-bottom: 5px;
}

.wcu-feat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(16, 18, 20, .08);
}

.wcu-feat-box i {
  color: var(--wcu-red) !important;
  font-size: 22.4px;
  margin-bottom: .7rem;
  display: block;
}

.wcu-feat-box strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wcu-ink) !important;
  -webkit-text-fill-color: var(--wcu-ink) !important;
  margin-bottom: .4rem;
}

.wcu-feat-box p {
  margin: 0;
  color: var(--wcu-gray) !important;
  -webkit-text-fill-color: var(--wcu-gray) !important;
}
/* No section-specific responsive overrides needed — inherits global section padding */
/* END SECTION 5: MANUFACTURING EXCELLENCE */


/* =====================================================
   SECTION 7: COMPARISON TABLE
===================================================== */
.wcu-compare {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--wcu-line);
  border-radius: 10px;
  overflow: hidden;
}

.wcu-compare th,
.wcu-compare td {
  padding: 1rem 1.2rem;
  font-size: 15px;
  border-bottom: 1px solid var(--wcu-line);
  text-align: center;
}

.wcu-compare th:first-child,
.wcu-compare td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--wcu-ink);
}

.wcu-compare thead th {
  background: var(--wcu-ink);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-transform: uppercase;
  font-size: 15px;
}

.wcu-compare thead th.wcu-hl {
  background: var(--wcu-red);
}

.wcu-compare tbody tr:last-child td {
  border-bottom: none;
}

.wcu-compare tbody tr:hover {
  background: var(--wcu-off);
}

.wcu-compare .yes {
  color: #1a9c4a;
  font-size: 17.6px;
}

.wcu-compare .no {
  color: #c23434;
  font-size: 17.6px;
}

.wcu-compare-wrap {
  overflow-x: auto;
}

/* -- responsive: COMPARISON TABLE -- */
@media(max-width:768px) {
  .wcu-compare th,
  .wcu-compare td {
    padding: .7rem .75rem;
    font-size: 15px;
  }
}
/* END SECTION 7: COMPARISON TABLE */


/* =====================================================
   SECTION 8: TESTING LAB CARDS
===================================================== */
.wcu-test-card {
  background: var(--wcu-surface);
  border: 1px solid var(--wcu-hair);
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  height: 100%;
  transition: transform .3s, border-color .3s;
}
.wcu-test-card img{
  width: 25%;
    margin-bottom: 9px;
}

.wcu-test-card:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 28, 28, .35);
}

.wcu-test-card i {
  color: var(--wcu-red) !important;
  font-size: 27.2px;
  margin-bottom: .9rem;
  display: block;
  transition: transform .4s;
}

.wcu-test-card:hover i {
  transform: scale(1.15) rotate(6deg);
}

.wcu-test-card h3 {
  font-size: 15px !important;
  text-transform: uppercase;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  margin-bottom: .4rem;
}

.wcu-test-card p {
  margin: 0;
  color: var(--wcu-steel) !important;
  -webkit-text-fill-color: var(--wcu-steel) !important;
}

/* -- responsive: TESTING LAB CARDS -- */
@media(max-width:768px) {
  .wcu-test-card {
    padding: 1.4rem 1.1rem;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease;
  }

  .wcu-test-card h3 {
    font-size: 15px !important;
  }

  .wcu-test-card:active {
    transform: scale(.96);
  }
}
/* END SECTION 8: TESTING LAB CARDS */


/* =====================================================
   SECTION 9: PRODUCT ECOSYSTEM CARDS
===================================================== */
.wcu-prod-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--wcu-line);
  border-radius: 10px;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.wcu-prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16, 18, 20, .12);
}

.wcu-prod-card__media {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35.2px;
  color: #fff;
  overflow: hidden;
}

.wcu-prod-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.wcu-prod-card:hover .wcu-prod-card__media img {
  transform: scale(1.08);
}

.wcu-prod-card__body {
  padding: 1.1rem 1.2rem;
}

.wcu-prod-card__body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wcu-ink) !important;
  -webkit-text-fill-color: var(--wcu-ink) !important;
}

.wcu-prod-card__body span {
  font-size: 15px;
  color: var(--wcu-red) !important;
  -webkit-text-fill-color: var(--wcu-red) !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .5rem;
}

/* -- responsive: PRODUCT ECOSYSTEM CARDS -- */
@media(max-width:768px) {
  .wcu-prod-card {
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease;
  }

  .wcu-prod-card__media {
    height: 100px;
  }

  .wcu-prod-card:active {
    transform: scale(.96);
  }
}
/* END SECTION 9: PRODUCT ECOSYSTEM CARDS */


/* =====================================================
   SECTION 10: INSTALLATION JOURNEY (horizontal steps)
===================================================== */
.wcu-journey {
  position: relative;
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 2.6rem 0 1rem;
  scrollbar-width: thin;
}

.wcu-journey::before {
  content: '';
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wcu-line);
}

.wcu-j-step {
  flex: 0 0 210px;
  position: relative;
  padding: 0 1.2rem;
  text-align: center;
}

.wcu-j-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--wcu-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--wcu-red);
  z-index: 2;
  font-size: 16px;
  margin: 0 auto 1.2rem;
  position: relative;
}

.wcu-j-body strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wcu-ink) !important;
  -webkit-text-fill-color: var(--wcu-ink) !important;
  margin-bottom: .35rem;
}

.wcu-j-body p {
  margin: 0;
}

/* -- responsive: INSTALLATION JOURNEY -- */
@media(max-width:768px) {
  .wcu-journey {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .wcu-journey::-webkit-scrollbar {
    display: none;
  }

  .wcu-j-step {
    flex: 0 0 170px;
  }
}
/* END SECTION 10: INSTALLATION JOURNEY */

/* =====================================================
   SECTION 11 & 12: WARRANTY / CERTIFICATION BADGES
===================================================== */
.wcu-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.wcu-cert-badge {
  width: 100%;
  min-height: 96px;
  padding: 10px;
  border: 1px solid var(--wcu-line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #fff;
  transition: transform .25s, box-shadow .25s;
}
.wcu-cert-badge img{
      margin-bottom: -20px;
    margin-top: -8px;
}

.wcu-cert-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(16, 18, 20, .1);
  border-color: var(--wcu-red);
}

.wcu-cert-badge i {
  font-size: 24px;
  color: var(--wcu-red);
}

.wcu-cert-badge span {
  font-size: 15px;
  font-weight: 700;
  color: var(--wcu-ink);
  text-transform: uppercase;
  text-align: center;
}

.wcu-cert-badge p {
  text-align: center;
}

/* -- responsive: WARRANTY / CERTIFICATION BADGES -- */
@media (max-width: 992px) {
  .wcu-cert-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; }
}

@media (max-width: 768px) {
  .wcu-cert-grid { grid-template-columns: repeat(3, 1fr); }

  .wcu-cert-badge {
    min-height: 84px;
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease;
  }

  .wcu-cert-badge i { font-size: 20px; }
  .wcu-cert-badge:active { transform: scale(.96); }
}

@media (max-width: 600px) {
  .wcu-cert-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .wcu-cert-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: .8rem;
  }

  .wcu-cert-badge { min-height: auto; padding: 14px; }
}
/* END SECTION 11 & 12: WARRANTY / CERTIFICATION BADGES */


/* =====================================================
   SECTION 13: GLOBAL PRESENCE
===================================================== */
.wcu-globe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wcu-globe-cell {
  background: var(--wcu-surface);
  border: 1px solid var(--wcu-hair);
  border-radius: 8px;
  padding: 1.2rem 1rem;
  text-align: center;
  transition: all .3s;
  cursor: default;
}

.wcu-globe-cell:hover {
  background: var(--wcu-red);
  border-color: var(--wcu-red);
  transform: translateY(-4px);
}

.wcu-globe-cell i {
  font-size: 20.8px;
  color: var(--wcu-red);
  display: block;
  margin-bottom: .5rem;
  transition: color .3s;
}

.wcu-globe-cell:hover i {
  color: #fff;
}

.wcu-flag {
  width: 44px;
  height: 30px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  margin: 0 auto .6rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
}

.wcu-globe-cell span {
  font-size: 15px;
  font-weight: 700;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

/* -- responsive: GLOBAL PRESENCE -- */
@media(max-width:768px) {
  .wcu-globe-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wcu-globe-cell {
    -webkit-tap-highlight-color: transparent;
    transition: transform .12s ease;
  }

  .wcu-globe-cell:active {
    transform: scale(.96);
  }
}
/* END SECTION 13: GLOBAL PRESENCE */


/* =====================================================
   SECTION 14: TESTIMONIALS (video cards + review cards)
===================================================== */
.wcu-video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--wcu-surface), var(--wcu-surface-2));
  border: 1px solid var(--wcu-hair);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.wcu-video-card__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wcu-red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20.8px;
  transition: transform .3s;
}

.wcu-video-card:hover .wcu-video-card__play {
  transform: scale(1.15);
}

.wcu-video-card span {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 15px;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  padding: .3rem .7rem;
  border-radius: 4px;
}

.wcu-review-card {
  background: var(--wcu-surface);
  border: 1px solid var(--wcu-hair);
  border-radius: 10px;
  padding: 1.6rem;
  height: 100%;
}

.wcu-review-card .stars {
  color: #f5b400;
  font-size: 15px;
  margin-bottom: .7rem;
}

.wcu-review-card p {
  font-style: italic;
}

.wcu-review-card strong {
  display: block;
  margin-top: .8rem;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 15px;
  text-transform: uppercase;
}
/* No section-specific responsive overrides needed — inherits global section padding */
/* END SECTION 14: TESTIMONIALS */


/* =====================================================
   FAQ SECTION (.faq-*)
   Uses existing tokens: --obsidian, --surface, --hairline, --steel, --red
===================================================== */
.faq-sec {
    background: #f7f8f9;
        padding: 50px 0px 80px 0px;
}

.faq-header {
    margin: 0 auto 3rem;
    text-align: start;
}
.faq-header .eyebrow{
    color:red !important;
}

.faq-desc {
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.5rem;
    align-items: start;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color .2s ease;
    border:1px solid rgba(0, 0, 0, 0.386);
}
.faq-item span{
    color:black !important;
    font-size: 17px;
}
.faq-header .faq-heading{
    text-transform: uppercase;
    margin: .7rem 0 .9rem;
      color: black !important;
          font-weight: 700;
}
.faq-header  p{
    color: black !important;
}

.faq-item.active {
    border-color: rgba(217, 28, 28, .4);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    text-align: left;
    padding: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    font-family: inherit;
    
}

.faq-item.active .faq-question {
    color: var(--red);
}

/* Plus/minus icon built from two bars */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(217, 28, 28, .1);
}

.faq-icon span {
    position: absolute;
    background: var(--red);
    border-radius: 1px;
    top: 50%;
    left: 50%;
    transition: transform .25s ease;
}

.faq-icon span:first-child {
    width: 10px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-icon span:last-child {
    width: 2px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Answer panel */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer-inner {
    padding: 0 1.3rem 1.2rem;
    line-height: 1.6;
    color: #464747;
}

/* Responsive: tablet — reduce gap */
@media (max-width: 992px) {
    .faq-grid {
        gap: 0 1.5rem;
    }
}

/* Responsive: mobile — single column, all 10 stacked */
@media (max-width: 768px) {
    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: .8rem;
    }

    .faq-col {
        gap: .8rem;
    }

    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 15px;
    }

    .faq-answer-inner {
        padding: 0 1.1rem 1rem;
    }
    .faq-item span {
        font-size: 17px;
    }
}
/* No section-specific responsive overrides needed — inherits global section padding */
/* END SECTION 15: FAQ */


/* =====================================================
   SECTION 16: FINAL CTA
===================================================== */
.wcu-cta-box {
  background: linear-gradient(135deg, var(--wcu-red) 0%, var(--wcu-red-dk) 100%);
  border-radius: 10px;
  padding: 3.8rem 3rem;
  text-align: center;
}

.wcu-cta-box h2 {
  font-size: clamp(25.6px, 3.4vw, 38.4px) !important;
  text-transform: uppercase;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.wcu-cta-box p {
  color: rgba(255, 255, 255, .85) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .85) !important;
  max-width: 58ch;
  margin: .8rem auto 2rem;
}

.wcu-cta-box .btn-white {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1.5px solid #fff;
  color: var(--wcu-red) !important;
  -webkit-text-fill-color: var(--wcu-red) !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: .9rem 1.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: .2s;
}

.wcu-cta-box .btn-white:hover {
  background: transparent;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.wcu-cta-box .wcu-btn-ghost {
  border-color: rgba(255, 255, 255, .55);
}

/* -- responsive: FINAL CTA -- */
@media(max-width:768px) {
  .wcu-cta-box {
    padding: 2.4rem 1.6rem;
  }

  .wcu-cta-box .d-flex {
    flex-direction: column;
  }

  .wcu-cta-box .btn-white,
  .wcu-cta-box .wcu-btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
/* END SECTION 16: FINAL CTA */



/* =====================================================
   SECTION: PG-STAT-BAR (4-cell and 5-cell variants)
===================================================== */
.pg-stat-bar {
  background: #1A1D22;
  border-top: 1px solid #2C3238;
  border-bottom: 1px solid #2C3238;
}

.pg-stat-bar .pg-stat-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pg-stat-bar .pg-stat-cell {
  padding: 1.4rem 1.5rem;
  text-align: center;
  border-right: 1px solid #2C3238;
}

.pg-stat-bar .pg-stat-cell:last-child {
  border-right: none;
}

.pg-stat-bar .pg-stat-num {
  font-size: 28.8px;
  font-weight: 900;
  line-height: 1;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.pg-stat-bar .pg-stat-num span {
  color: #D91C1C !important;
  -webkit-text-fill-color: #D91C1C !important;
  font-size: 17.6px;
}

.pg-stat-bar .pg-stat-label {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: .3rem;
  color: rgba(255, 255, 255, .42) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .42) !important;
}

/* 5-cell variant (color series pages: colours/thickness/finish/install/warranty) */
.pg-stat-bar.pg-stat-bar--5 .pg-stat-bar-inner {
  grid-template-columns: repeat(5, 1fr);
}

/* -- responsive: PG-STAT-BAR -- */
@media(max-width:900px) {
  .pg-stat-bar.pg-stat-bar--5 .pg-stat-bar-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(3n) {
    border-right: none;
  }

  .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(-n+3) {
    border-bottom: 1px solid #2C3238;
  }
}

@media(max-width:768px) {
  .pg-stat-bar .pg-stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-stat-bar .pg-stat-cell:nth-child(2n) {
    border-right: none;
  }

  .pg-stat-bar .pg-stat-cell:nth-child(-n+2) {
    border-bottom: 1px solid #2C3238;
  }
}

@media(max-width:560px) {
  .pg-stat-bar.pg-stat-bar--5 .pg-stat-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(3n) {
    border-right: 1px solid #2C3238;
  }

  .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(2n) {
    border-right: none;
  }

  .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(-n+3) {
    border-bottom: 1px solid #2C3238;
  }

  .pg-stat-bar.pg-stat-bar--5 .pg-stat-cell:nth-child(n+4) {
    border-bottom: none;
  }
}
/* END SECTION: PG-STAT-BAR */


/* =====================================================
   SECTION: GLOBAL TYPOGRAPHY OVERRIDE (matched with PPF page css)
   H2 (inside .wcu-white / .wcu-dark): 35px desktop / 30px tablet / 23px phone
   Paragraphs (inside .wcu-white / .wcu-dark): 17px desktop / 15px phone
   letter-spacing normalized (removed) on these paragraphs
   (placed last so it overrides the clamp() sizing above)
===================================================== */
.wcu-page .wcu-white h2,
.wcu-page .wcu-dark h2 {
  font-size: 35px !important;
}

.wcu-page .wcu-white p,
.wcu-page .wcu-dark p {
  font-size: 17px !important;
}

/* -- responsive: GLOBAL TYPOGRAPHY OVERRIDE -- */
@media (max-width: 992px) {
  .wcu-page .wcu-white h2,
  .wcu-page .wcu-dark h2 {
    font-size: 30px !important;
  }
}

@media (max-width: 768px) {
  .wcu-page .wcu-white h2,
  .wcu-page .wcu-dark h2 {
    font-size: 23px !important;
  }

  .wcu-page .wcu-white p,
  .wcu-page .wcu-dark p {
    font-size: 15px !important;
  }
}
/* END SECTION: GLOBAL TYPOGRAPHY OVERRIDE */


/* =====================================================W
   SECTION: GLOBAL P TAG OVERRIDE (catch-all)
   Covers paragraphs outside .wcu-white/.wcu-dark
   (hero description, FAQ intro, lead text, etc.)
   17px desktop, 15px phone, letter-spacing normalized
===================================================== */
.wcu-page p {
  font-size: 17px !important;
}

@media (max-width: 768px) {
  .wcu-page p {
    font-size: 15px !important;
  }
}
/* END SECTION: GLOBAL P TAG OVERRIDE */



/* =====================================================
   SECTION 1 — HERO (.pg-hero)
===================================================== */
.pg-hero {
    position: relative;
    width: 100%;
    min-height: 550px;
    background: var(--obsidian);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .22);
}

.hero-breadcrumb .current {
    color: rgba(255, 255, 255, .78);
    font-weight: 600;
    font-size: 15px;
}

/* ---- H1 (.pg-hero .hero-title): 40px desktop / 32px tablet / 25px phone, letter-spacing removed ---- */
.pg-hero .hero-title {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.pg-hero .hero-desc {
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    max-width: 58ch;
    margin: 0 0 1.8rem;
}

/* Hero — tablet & mobile */
@media (max-width: 768px) {

    .pg-hero,
    .pg-hero .hero-body {
        min-height: auto;
    }

    .pg-hero .hero-body {
        padding: 2rem 0 3rem;
    }

    .pg-hero .hero-title {
        font-size: 32px;
    }

    .pg-hero .hero-tagline {
        font-size: 15px;
    }

    .pg-hero .hero-desc {
        line-height: 1.6;
    }

    .pg-hero .hero-badges {
        gap: .45rem;
        margin-bottom: 1.5rem;
    }

    .pg-hero .badge-pill {
        font-size: 15px;
        padding: .26rem .7rem;
    }

    .pg-hero .hero-actions {
        gap: .55rem;
    }

    .pg-hero .hero-actions a {
        padding: .72rem 1.15rem;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .pg-hero .hero-title {
        font-size: 25px;
    }
}