
/* =====================================================
   GLOBAL
===================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "CoFo Sans VF", sans-serif;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =====================================================
   CUSTOM HEADERS (Override-Proof)
===================================================== */
.custom-header-1 {
  all: unset;
  display: block;
  font-family: "CoFo Sans VF", sans-serif;
  font-weight: 300;
  font-size: 4rem;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}

.custom-header-2 {
  all: unset;
  display: block;
  font-family: "CoFo Sans VF", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  color: #222;
}

.custom-header-3 {
  all: unset;
  display: block;
  font-family: "CoFo Sans VF", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #000;
}

.custom-header-4 {
  all: unset;
  display: block;
  font-family: "CoFo Sans VF", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #000;
}

/* =====================================================
   FOOTER LINKS
===================================================== */
.footer-column ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  padding-top: 1rem;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #222;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  text-decoration: underline;
  color: #000;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("https://marketing.lifewave.com/wp-content/uploads/2025/10/Hero.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 12rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 20%, rgba(0, 0, 0, 0.35) 100%);
  z-index: -1;
}
.hero-top-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6rem; /* adjust height if needed */
  background: rgba(255, 255, 255, 0.5); /* 50% white overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3; /* keeps it above video + text */
  backdrop-filter: blur(4px); /* subtle glassy blur effect */
}
.hero-subtext {
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  font-weight: 300;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 12rem;
}

.hero-subtext {
  max-width: 800px;
  margin: 2rem auto 0;
  font-size: 1.25rem;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  font-weight: 300;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.8),
    0 4px 12px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 0, 0, 0.4);
}


.hero-logo {
  width: 10vw;
  opacity: 0.9;
}
/* =====================================================
   VIDEO SECTION
===================================================== */
.video-section {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Keeps aspect ratio stable (16:9) */
.video-wrapper {
  position: relative;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  z-index: 2;
}

/* Match cover with video player */
.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 3;
}

.video-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Play button styling */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 72px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  padding: 24px 32px;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 4;
}

.play-button:hover {
  background: rgba(0, 0, 0, 0.65);
  transform: translate(-50%, -50%) scale(1.05);
}
/* =====================================================
   LIGHT-CENTERED SECTION
===================================================== */
.light-centered {
  background: #fff;
  padding: 6rem 12%;
}

.light-centered-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem;
}

.text-side {
  flex: 1;
}

.image-side {
  flex: 1;
}

.text-side p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #333;
  max-width: 32.5rem;
  margin-top: 0.5rem;
}

.image-side img {
  border-radius: 0.625rem;
}

/* =====================================================
   PRODUCT TRIO
===================================================== */
.product-trio {
  position: relative;
  overflow: hidden;
}

.pt-bg {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.pt-cards {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  max-width: 45rem;
}

.pt-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 0.625rem 1.75rem rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(2px);
}

.pt-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: #333;
}

/* =====================================================
   PROVEN SCIENCE
===================================================== */
.proven-science {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("https://marketing.lifewave.com/wp-content/uploads/2025/10/David-BG-scaled.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000;
}

.ps-overlay {
  background: rgba(255, 255, 255, 0.75);
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 16rem;
  padding-right: 8rem;
}

.ps-text {
  max-width: 48rem;
}

.ps-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

/* =====================================================
   OUR TECHNOLOGY
===================================================== */
.our-technology {
  position: relative;
  width: 100%;
  height: 40vh;
  background: url("https://marketing.lifewave.com/wp-content/uploads/2025/10/Our-technology-Bg.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tech-content {
  text-align: center;
}

.tech-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
}

.stat p {
  font-size: 1.125rem;
  line-height: 1.5;
}

/* =====================================================
   BRILLIANT TOGETHER
===================================================== */
.brilliant-together {
  background: #fff;
  padding: 6rem 12%;
}

.bt-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.75rem;
}

.bt-text {
  flex: 1;
}

.bt-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: #333;
  max-width: 32.5rem;
}

.bt-image {
  flex: 1;
}

.bt-image img {
  border-radius: 0.625rem;
}

/* =====================================================
   X39 SECTION
===================================================== */
.x39-section {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("https://marketing.lifewave.com/wp-content/uploads/2025/10/X39_Shadows.jpg") center left no-repeat;
  background-size: auto 140%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  padding-right: 10vw;
  overflow: hidden;
}

.x39-text {
  max-width: 38rem;
  text-align: left;
  margin-right: 4rem;
}

.x39-block p {
  font-size: 1rem;
  line-height: 1.75;
  color: #eaeaea;
  margin-bottom: 1.75rem;
}

/* =====================================================
   DIGIOH FORM SECTION
===================================================== */
.digioh-form-section {
  position: relative;
  width: 100%;
  background: url("https://marketing.lifewave.com/wp-content/uploads/2025/10/form-bg.png") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 8rem 5%;
  color: #fff;
}

.digioh-form-container {
  width: 100%;
  max-width: 50rem;
  text-align: center;
  padding: 3rem;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: #f9f9f9;
  color: #222;
  padding: 4rem 10% 2rem;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  padding-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: flex-end;
}

.footer-social a img {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #ddd;
  padding-top: 1.25rem;
  margin-top: 1rem;
}

/* =====================================================
   SUBSCRIPT FIX FOR ®
===================================================== */
sub {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 0;
}

/* =====================================================
   RESTORE RESPONSIVE (≤1024px)
===================================================== */
@media (max-width: 1024px) {
  /* -------------------------------
     HERO SECTION
  ------------------------------- */
  .hero-logo {
    width: 26vw;
  }


  .hero-subtext {
    font-size: 24px;
    line-height: 26px;
    padding: 0 24px;
    text-shadow:
      0 2px 4px rgba(0, 0, 0, 0.9),
      0 0 12px rgba(0, 0, 0, 0.5);
  }

.video-section{
  padding:0;
}
  .custom-header-1 {
    font-size: 60px;
  }

  /* -------------------------------
     LIGHT-CENTERED SECTION
  ------------------------------- */
  .light-centered,
  .brilliant-together {
    padding: 60px 5%;
  }

  
  .bt-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 32px;
  }

  .light-centered-container{
   flex-direction: column;
    align-items: center;   /* centers items horizontally */
    text-align: center;    /* centers text inside */
    gap: 32px;
    margin: 0 auto;
     padding:0 15px;
  }

  .image-side {
    order: -1;
  }

  .custom-header-4 {
    font-size: 16px;
  }

  .custom-header-2 {
    font-size: 30px;
  }

  .custom-header-3 {
    font-size: 20px;
  }

  
  .bt-text p {
    font-size: 16px !important;
    line-height: 20px;
    max-width: none;
  }

   .text-side p{
    font-size: 16px !important;
    line-height: 20px;
    max-width: none;
   }

  .image-side img {
    width: 100%;
    height: auto;
    margin-bottom: 24px;
  }

  /* -------------------------------
     PRODUCT TRIO
  ------------------------------- */
  .product-trio {
    position: relative;
  }

  .pt-bg {
    position: relative;
    z-index: 0;
    height: 90vh;
    object-fit: cover;
  }

  .pt-cards {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 90%;
    max-width: 600px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .pt-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    padding: 20px;
    margin: 0 28px 16px 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
  }

  .pt-card p {
    font-size: 16px;
    line-height: 20px;
  }

  /* -------------------------------
     PROVEN SCIENCE
  ------------------------------- */
  .proven-science {
    height: auto;
    flex-direction: column;
    justify-content: center;
  }

  .ps-overlay {
    width: 100%;
    padding: 40px 5%;
    justify-content: center;
  }

  .ps-text {
    text-align: center;
  }

  .ps-text p {
    font-size: 16px;
    line-height: 20px;
  }

  /* -------------------------------
     OUR TECHNOLOGY
  ------------------------------- */
/* -------------------------------
   OUR TECHNOLOGY (Landscape Fix)
------------------------------- */
.our-technology {
  position: relative;
  width: 100%;
  min-height: 80vh; /* allow it to expand with content */
  background: url("https://marketing.lifewave.com/wp-content/uploads/2025/10/Our-technology-Bg.png")
    center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 60px 5%;
}

.tech-content {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.tech-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat p {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}

  /* -------------------------------
     X39 SECTION
  ------------------------------- */
  .x39-section {
    justify-content: center;
    text-align: center;
    padding: 80px 5%;
    background-size: auto 120%;
    background-position: 35%;
  }

  .x39-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
  }

  .x39-text {
    margin: 0;
    text-align: center;
    z-index: 2;
  }

  .x39-block p {
    font-size: 16px;
    line-height: 20px;
    color: #fff;
  }

  /* -------------------------------
     DIGIOH FORM
  ------------------------------- */
  .digioh-form-section {
    padding: 80px 32px;
    background-position: center top;
  }

  .digioh-form-container{
    padding:0rem;
  }

  /* -------------------------------
     FOOTER
  ------------------------------- */
  .footer {
    padding: 60px 5% 40px;
      padding-left: 0;
  padding-right: 0;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
      display: flex;
  flex-direction: column;
  align-items: center;     /* <-- centers the columns */
  justify-content: center; /* <-- centers vertically */
  gap: 32px;
  width: 100%;
  }

  .footer-social {
    justify-content: center;
    margin-top: 24px;
  }

  .footer-column a {
    font-size: 20px;
  }

  .footer-bottom {
    font-size: 18px;
  }

 .video-wrapper {
    width: 100%;
    max-width: none;
    aspect-ratio: 16 / 9; /* keeps full height automatically */
  }

  .video-cover,
  .video-wrapper iframe {
    height: 100%;
  }

  .play-button {
    font-size: 48px;
    padding: 18px 24px;
  }
}
/* =====================================================
   FIX: MOBILE LANDSCAPE VIEW (HORIZONTAL MODE)
===================================================== */
@media (max-width: 1024px) and (orientation: landscape) {
  /* -------------------------------
     HERO SECTION
  ------------------------------- */
  /* -------------------------------
   HERO SECTION (Landscape Fix)
------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100svh; /* dynamic viewport height – replaces 100vh */
  background: url("https://marketing.lifewave.com/wp-content/uploads/2025/10/Hero.jpg") center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-top-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 6rem;
  background: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.hero-logo {
  width: 20vw;
  opacity: 0.9;
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 8rem;
  padding: 0 24px;
}

.custom-header-1 {
  font-size: 52px;
  line-height: 1.1;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.7),
    0 0 8px rgba(0, 0, 0, 0.5);
}

.hero-subtext {
  font-size: 18px;
  line-height: 24px;
  padding: 0 28px;
  margin-top: 12px;
  color: #fff;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.9),
    0 0 10px rgba(0, 0, 0, 0.7);
}

  /* -------------------------------
     VIDEO SECTION
  ------------------------------- */
  .video-section {
    padding: 0;
  }

  /* -------------------------------
   PRODUCT TRIO (Landscape Fix)
------------------------------- */
.product-trio {
  position: relative;
  overflow: hidden;
  height: 120vh; /* ensures BG fills the view */
}

.pt-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.pt-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  max-width: 600px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pt-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 20px;
  margin: 12px 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.pt-card p {
  font-size: 15px;
  line-height: 20px;
  color: #333;
}

  /* -------------------------------
     SECTION SPACING TWEAKS
  ------------------------------- */
  .light-centered,
  .brilliant-together,
  .proven-science,
  .our-technology,
  .x39-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* -------------------------------
     FOOTER
  ------------------------------- */
  .footer {
    padding: 40px 0 30px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    width: 100%;
  }

  .footer-column a {
    font-size: 18px;
  }

  .footer-bottom {
    font-size: 16px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 16px;
  }
}