/* =========================================================
   PU FLOORING PAGE
========================================================= */

:root {
  --pu-yellow: #f5c400;
  --pu-yellow-light: #ffd83d;
  --pu-black: #080808;
  --pu-dark: #101010;
  --pu-card: #151515;
  --pu-border: rgba(255,255,255,.10);
  --pu-gray: #a5a5a5;
}


/* =========================================================
   NAV
========================================================= */

.nav-action {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-btn {
  padding: 13px 20px !important;
  font-size: .72rem !important;
}

.menu-toggle {
  display: none;
}


/* =========================================================
   HERO
========================================================= */

.pu-hero {
  min-height: 790px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #080808;
}


/* RIGHT SIDE PU IMAGE */

.pu-hero-bg {
  position: absolute;
  inset: 0 0 0 42%;

  background-image:
    linear-gradient(
      90deg,
      #080808 0%,
      rgba(8,8,8,.92) 7%,
      rgba(8,8,8,.65) 25%,
      rgba(8,8,8,.20) 55%,
      rgba(8,8,8,.05) 100%
    ),
    url("../assets/puflooring.png");

  background-size: cover;
  background-position: center;
}


/* Yellow glow */

.pu-hero::after {
  content: "";
  position: absolute;

  width: 600px;
  height: 600px;

  right: -120px;
  bottom: -330px;

  background: var(--pu-yellow);

  opacity: .10;

  filter: blur(110px);

  border-radius: 50%;

  pointer-events: none;
}


/* subtle right border */

.pu-hero::before {
  content: "";

  position: absolute;

  right: 0;
  top: 0;

  width: 4px;
  height: 100%;

  background: var(--pu-yellow);

  opacity: .8;

  z-index: 3;
}


.pu-hero .container {
  position: relative;
  z-index: 4;
  width: 100%;
}


.pu-hero-content {
  width: min(720px, 58%);
  padding: 100px 0;
}


.pu-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--pu-yellow);

  font-family: "Montserrat", sans-serif;

  font-size: .72rem;
  font-weight: 800;

  letter-spacing: .18em;

  margin-bottom: 28px;
}


.pu-eyebrow span {
  width: 38px;
  height: 2px;

  display: block;

  background: var(--pu-yellow);
}


.pu-hero h1 {
  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(3.5rem, 6.3vw, 6.8rem);

  line-height: .91;

  letter-spacing: -.055em;

  font-weight: 900;
}


.pu-hero h1 strong {
  color: var(--pu-yellow);
}


.pu-hero p {
  max-width: 610px;

  margin: 34px 0 0;

  color: #bdbdbd;

  font-family: "Space Grotesk", sans-serif;

  font-size: 1.04rem;

  line-height: 1.75;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: 35px;
}


.hero-buttons .btn {
  display: inline-flex;

  align-items: center;

  gap: 10px;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats {
  display: flex;

  margin-top: 70px;
}


.hero-stats > div {
  min-width: 155px;

  padding-right: 30px;

  margin-right: 30px;

  border-right: 1px solid rgba(255,255,255,.16);
}


.hero-stats > div:last-child {
  border-right: 0;
}


.hero-stats strong {
  display: block;

  color: var(--pu-yellow);

  font-family: "Space Grotesk", sans-serif;

  font-size: 1.7rem;

  margin-bottom: 5px;
}


.hero-stats span {
  color: #858585;

  font-family: "Montserrat", sans-serif;

  font-size: .63rem;

  font-weight: 800;

  line-height: 1.4;

  letter-spacing: .1em;
}


.hero-scroll {
  position: absolute;

  z-index: 5;

  right: 42px;
  bottom: 35px;

  display: flex;

  align-items: center;

  gap: 12px;

  color: #888;

  font-size: .58rem;

  font-weight: 800;

  letter-spacing: .15em;

  transform: rotate(90deg);

  transform-origin: right center;
}


/* =========================================================
   INTRO
========================================================= */

.pu-intro {
  padding: 130px 0;

  background: #101010;

  border-bottom: 1px solid var(--pu-border);
}


.intro-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 100px;

  align-items: start;
}


.intro-heading h2 {
  margin: 18px 0 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(3rem, 5vw, 5.4rem);

  line-height: .95;

  letter-spacing: -.05em;

  font-weight: 900;
}


.intro-heading h2 span {
  color: var(--pu-yellow);
}


.intro-content {
  padding-top: 25px;
}


.intro-content p {
  color: var(--pu-gray);

  font-size: 1rem;

  line-height: 1.8;

  max-width: 600px;
}


.intro-content .intro-large {
  color: #eee;

  font-size: 1.3rem;

  line-height: 1.65;

  margin-bottom: 30px;
}


/* =========================================================
   SYSTEMS
========================================================= */

.pu-systems {
  padding: 130px 0;

  background: #0b0b0b;
}


.systems-heading {
  display: grid;

  grid-template-columns: 1.1fr .9fr;

  gap: 100px;

  align-items: end;

  margin-bottom: 65px;
}


.systems-heading > p {
  color: var(--pu-gray);

  font-size: .98rem;

  line-height: 1.8;

  max-width: 510px;
}


.pu-cards {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}


.pu-card {
  position: relative;

  overflow: hidden;

  background: var(--pu-card);

  border: 1px solid var(--pu-border);

  transition: .4s ease;
}


.pu-card:hover {
  transform: translateY(-7px);

  border-color: rgba(245,196,0,.55);

  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}


/* IMAGE */

.pu-card-image {
  height: 340px;

  position: relative;

  overflow: hidden;
}


.pu-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform .7s ease;
}


.pu-card:hover .pu-card-image img {
  transform: scale(1.08);
}


.image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.05),
      rgba(0,0,0,.75)
    );
}


.card-number {
  position: absolute;

  top: 22px;
  right: 24px;

  color: var(--pu-yellow);

  font-family: "Space Grotesk", sans-serif;

  font-size: .8rem;

  font-weight: 700;
}


/* CARD BODY */

.pu-card-body {
  padding: 32px;
}


.card-icon {
  width: 46px;
  height: 46px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(245,196,0,.35);

  color: var(--pu-yellow);

  margin-bottom: 22px;

  transition: .3s ease;
}


.pu-card:hover .card-icon {
  background: var(--pu-yellow);

  color: #090909;
}


.pu-card h3 {
  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: 1.7rem;

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -.035em;
}


.pu-card p {
  color: #929292;

  font-size: .92rem;

  line-height: 1.7;

  margin: 18px 0 28px;

  max-width: 500px;
}


.pu-card a {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: var(--pu-yellow);

  text-decoration: none;

  font-size: .67rem;

  font-weight: 800;

  letter-spacing: .08em;
}


.pu-card a svg {
  width: 16px;
}


/* =========================================================
   BENEFITS
========================================================= */

.pu-benefits {
  padding: 140px 0;

  background: #141414;
}


.benefits-grid {
  display: grid;

  grid-template-columns: .9fr 1.1fr;

  gap: 120px;
}


.benefits-left h2 {
  margin: 20px 0 30px;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(2.8rem, 4.5vw, 5rem);

  line-height: .97;

  letter-spacing: -.05em;

  font-weight: 900;
}


.benefits-left h2 span {
  color: var(--pu-yellow);
}


.benefits-left p {
  max-width: 520px;

  color: #969696;

  line-height: 1.8;
}


.benefits-list {
  border-top: 1px solid var(--pu-border);
}


.benefit-item {
  display: grid;

  grid-template-columns: 55px 1fr;

  gap: 20px;

  padding: 28px 0;

  border-bottom: 1px solid var(--pu-border);
}


.benefit-item > span {
  color: var(--pu-yellow);

  font-size: .75rem;

  font-weight: 800;
}


.benefit-item h3 {
  color: #fff;

  margin: 0 0 8px;

  font-size: 1.15rem;
}


.benefit-item p {
  color: #858585;

  margin: 0;

  line-height: 1.6;

  font-size: .88rem;
}


/* =========================================================
   APPLICATIONS
========================================================= */

.pu-applications {
  padding: 130px 0;

  background: #0a0a0a;
}


.applications-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 16px;

  margin-top: 60px;
}


.application-card {
  height: 390px;

  position: relative;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.06);
}


.application-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform .6s ease;
}


.application-card:hover img {
  transform: scale(1.08);
}


.application-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 40%,
      rgba(0,0,0,.9)
    );
}


.application-card h3 {
  position: absolute;

  left: 25px;
  bottom: 25px;

  margin: 0;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: 1.15rem;

  font-weight: 800;
}


/* =========================================================
   PROCESS
========================================================= */

.pu-process {
  padding: 140px 0;

  background: #151515;
}


.process-heading h2 {
  margin: 18px 0 70px;

  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(3rem, 5vw, 5.2rem);

  line-height: .95;

  letter-spacing: -.05em;

  font-weight: 900;
}


.process-heading h2 span {
  color: var(--pu-yellow);
}


.process-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--pu-border);

  border-bottom: 1px solid var(--pu-border);
}


.process-item {
  position: relative;

  padding: 38px 28px 45px;

  border-right: 1px solid var(--pu-border);
}


.process-item:last-child {
  border-right: 0;
}


.process-number {
  color: var(--pu-yellow);

  font-size: .72rem;

  font-weight: 800;

  margin-bottom: 35px;
}


.process-item > svg {
  width: 30px;
  height: 30px;

  color: var(--pu-yellow);

  margin-bottom: 24px;
}


.process-item h3 {
  color: #fff;

  margin: 0 0 12px;

  font-size: 1.2rem;
}


.process-item p {
  color: #858585;

  font-size: .86rem;

  line-height: 1.7;

  margin: 0;
}


/* =========================================================
   CTA
========================================================= */

.pu-cta {
  padding: 100px 0;

  background: var(--pu-yellow);
}


.cta-inner {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 50px;
}


.pu-cta .section-subtitle {
  color: #111;
}


.pu-cta h2 {
  color: #090909;

  margin: 18px 0 0;

  font-family: "Montserrat", sans-serif;

  font-size: clamp(2.5rem, 4.5vw, 5rem);

  line-height: .95;

  letter-spacing: -.05em;

  font-weight: 900;
}


.pu-cta h2 span {
  color: #fff;
}


.pu-cta .btn-primary {
  background: #090909;

  color: #fff;

  border-color: #090909;

  white-space: nowrap;
}


.pu-cta .btn-primary:hover {
  background: #222;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

  .pu-hero {
    min-height: 720px;
  }

  .pu-hero-bg {
    inset: 0;
    opacity: .42;
  }

  .pu-hero-content {
    width: 80%;
  }

  .systems-heading,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-item:nth-child(2) {
    border-right: 0;
  }

  .process-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--pu-border);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

}


@media (max-width: 768px) {

  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;

    align-items: center;
    justify-content: center;

    background: none;

    border: 0;

    color: #fff;

    cursor: pointer;
  }

  .nav-links {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    padding: 25px;

    background: #0b0b0b;

    border-top: 1px solid rgba(255,255,255,.1);
  }

  .nav-links.active {
    display: flex;
  }


  .pu-hero {
    min-height: 760px;
  }


  .pu-hero-bg {
    inset: 0;

    opacity: .32;

    background-position: center;
  }


  .pu-hero::before {
    width: 3px;
  }


  .pu-hero-content {
    width: 100%;

    padding: 90px 0;
  }


  .pu-hero h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }


  .pu-hero p {
    font-size: .95rem;
  }


  .hero-buttons {
    flex-direction: column;

    align-items: flex-start;
  }


  .hero-stats {
    margin-top: 50px;

    flex-wrap: wrap;

    gap: 25px;
  }


  .hero-stats > div {
    min-width: 110px;

    padding-right: 18px;

    margin-right: 0;
  }


  .hero-scroll {
    display: none;
  }


  .intro-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .pu-intro,
  .pu-systems,
  .pu-benefits,
  .pu-applications,
  .pu-process {
    padding: 85px 0;
  }


  .pu-cards {
    grid-template-columns: 1fr;
  }


  .pu-card-image {
    height: 280px;
  }


  .applications-grid {
    grid-template-columns: 1fr;
  }


  .application-card {
    height: 300px;
  }


  .process-grid {
    grid-template-columns: 1fr;
  }


  .process-item {
    border-right: 0;

    border-bottom: 1px solid var(--pu-border);
  }


  .process-item:last-child {
    border-bottom: 0;
  }


  .cta-inner {
    gap: 35px;
  }

}


@media (max-width: 480px) {

  .pu-hero-content {
    padding: 70px 0;
  }

  .pu-hero h1 {
    font-size: 3.15rem;
  }

  .pu-card-body {
    padding: 25px;
  }

  .hero-stats {
    gap: 18px;
  }

  .hero-stats > div {
    min-width: 90px;

    padding-right: 12px;
  }

}