/* ======================================
   MLM Lead Pro — Landing Page 1 Styles
   ====================================== */

/* -------- GLOBAL RESET -------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  scroll-behavior: smooth;
  background: url('../images/lp1-background0.png') no-repeat center center fixed;
  background-size: cover;
  position: relative;
}

/* Background overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* -------- ATTENTION BAR -------- */
.attention-bar {
  position: fixed;
  top: -50px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg,#ffb400,#ff7e00);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 12px 10px;
  z-index: 9999;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
  animation: slideDown 1.2s ease forwards;
}
@keyframes slideDown {
  0% { top: -50px; opacity: 0; }
  100% { top: 0; opacity: 1; }
}

/* -------- GENERAL SECTIONS -------- */
section {
  position: relative;
  z-index: 1;
  padding: 55px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 35px;
  width: 100%;
  max-width: 1350px;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.18), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,215,128,0.35);
  border-radius: 18px;
  box-shadow:
    inset 0 0 12px rgba(255,215,128,0.1),
    0 0 35px rgba(255,215,128,0.3);
  padding: 45px;
  transition: box-shadow .3s ease;
}
.section .content:hover {
  box-shadow:
    inset 0 0 18px rgba(255,215,128,0.2),
    0 0 40px rgba(255,215,128,0.4);
}
.section.alt .content { flex-direction: row-reverse; }

/* -------- TEXT & IMAGES -------- */
.section .text, .section .image {
  flex: 1 1 45%;
  min-width: 300px;
}
.section .text h2 {
  font-family: 'Anton', sans-serif;
  font-size: 2.6em;
  background: linear-gradient(90deg, #ffe08f, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.section .text p {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2em;
  color: #e5e5e5;
  line-height: 1.6;
}
.section .image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 0 40px rgba(255,215,128,0.35);
  transition: transform .4s ease;
}
.section .image img:hover { transform: scale(1.03); }

/* -------- HERO SECTION -------- */
.hero-section {
  text-align: center;
  padding: 75px 6%;
}
.hero-content {
  width: 100%;
  max-width: 1350px;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.18), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,215,128,0.35);
  border-radius: 25px;
  padding: 70px;
  box-shadow:
    inset 0 0 12px rgba(255,215,128,0.1),
    0 0 65px rgba(255,215,128,0.35);
  backdrop-filter: blur(5px);
  transition: box-shadow .3s ease;
}
.hero-content:hover {
  box-shadow:
    inset 0 0 18px rgba(255,215,128,0.2),
    0 0 85px rgba(255,215,128,0.45);
}
.hero-section h1 {
  font-family: 'Anton', sans-serif;
  font-size: 3.6em;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 10px;
  background: linear-gradient(90deg,#ffe08f,#ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
  color: #eee;
  margin-bottom: 35px;
}
.hero-section .highlight {
  background: linear-gradient(90deg,#ffe08f,#ffb400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: textShimmer 3s linear infinite;
}
@keyframes textShimmer {
  0% { background-position: -200px 0; }
  100% { background-position: 200px 0; }
}
.hero-image {
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(255,215,128,0.4);
}


/* -------- HERO VIDEO FRAME -------- */
.video-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 215, 128, 0.5);
  box-shadow:
    inset 0 0 15px rgba(255, 215, 128, 0.2),
    0 0 45px rgba(255, 215, 128, 0.4),
    0 15px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 60px rgba(255, 215, 128, 0.6),
    0 20px 30px rgba(0,0,0,0.6);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 22px;
}

/* Make sure video looks good on mobile */
@media (max-width: 600px) {
  .video-wrapper {
    max-width: 95vw;
    border-radius: 16px;
    border: 1.5px solid rgba(255, 215, 128, 0.4);
  }
}

/* -------- CTA BUTTONS -------- */
.cta-btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding: 24px 75px;
  border-radius: 18px;
  font-size: 1.25em;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);

  /* Golden glow gradient with shimmer */
  background-image: linear-gradient(90deg,#ffcc33,#ff9900,#ffcc33);
  background-size: 300% auto;
  animation: btnShimmer 3s linear infinite;

  box-shadow:
    0 0 25px rgba(255,190,60,0.6),
    inset 0 0 10px rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 0 45px rgba(255,200,80,0.9),
    inset 0 0 12px rgba(255,255,255,0.25);
  background-position: right center;
}

/* Large version for hero & final sections */
.cta-btn.large {
  font-size: 1.35em;
  padding: 26px 85px;
  border-radius: 22px;
  margin-top: 35px;
}

/* Gold shimmer animation */
@keyframes btnShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}


@keyframes btnShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.cta-btn:hover {
  transform: translateY(-5px) scale(1.08);
  box-shadow: 0 0 50px rgba(255,184,0,1);
}
.cta-btn.large {
  font-size: 1.4em;
  padding: 25px 80px;
  margin-top: 35px;
}

/* -------- FINAL CTA -------- */
.final-cta {
  text-align: center;
  padding: 65px 6%;
}
.final-cta .cta-content {
  width: 100%;
  max-width: 1350px;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.18), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,215,128,0.35);
  border-radius: 25px;
  padding: 60px;
  box-shadow:
    inset 0 0 12px rgba(255,215,128,0.1),
    0 0 65px rgba(255,215,128,0.35);
}
.final-cta img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 50px rgba(255,215,128,0.35);
  margin-bottom: 25px;
}
.final-cta h2 {
  font-family: 'Anton', sans-serif;
  font-size: 3em;
  margin-bottom: 25px;
  background: linear-gradient(90deg,#ffe08f,#ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* -------- DIVIDERS -------- */
.section::after, .hero-section::after, .final-cta::after {
  content: "";
  display: block;
  width: 70%;
  height: 3px;
  margin: 35px auto 0;
  background: linear-gradient(90deg,rgba(255,204,0,0) 0%,rgba(255,230,150,1) 50%,rgba(255,204,0,0) 100%);
  box-shadow: 0 0 15px rgba(255,215,128,0.7);
  border-radius: 2px;
}

/* -------- FIXED FOOTER -------- */
.footer {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 45px 20px;
  font-size: 0.95em;
  color: #eaeaea;
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(255,215,128,0.4);
  backdrop-filter: blur(2px);
  box-shadow:
    inset 0 2px 20px rgba(255,215,128,0.15),
    0 -3px 15px rgba(0,0,0,0.6);
}
.footer p, .footer span {
  color: #f0f0f0;
  opacity: 0.95;
  text-shadow: 0 0 5px rgba(0,0,0,0.6);
}
.footer {
  animation: fadeInFooter 0.8s ease-in 0.1s both;
}

@keyframes fadeInFooter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------- MOBILE RESPONSIVE -------- */
@media (max-width: 992px) {
  .section .content, .final-cta .cta-content {
    flex-direction: column !important;
    text-align: center;
  }
  section { padding: 55px 5%; }
}



/* Prevent horizontal overflow from animations */
html, body {
  overflow-x: hidden;
}



body {
  animation: fadeInPage 0.4s ease-out;
}

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------- FINAL MOBILE FIX -------- */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden;
  }

  section, .hero-section, .final-cta {
    padding: 30px 2.5%;
  }

  .section .content,
  .final-cta .cta-content {
    flex-direction: column !important;
    text-align: center;
    padding: 25px 3%;
    margin: 0 auto;
    width: 100%;
    max-width: 95vw;
    border-radius: 18px;
  }

/* ---- HERO SECTION MOBILE FIX ---- */
.hero-section {
  padding: 40px 2.5% 50px;
}

.hero-content {
  width: 100%;
  max-width: 100%;
  padding: 35px 4%;
  border-radius: 20px;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  margin: 10px 0 25px;
  border-radius: 15px;
  box-shadow: 0 0 35px rgba(255,215,128,0.45);
}

.hero-section h1 {
  font-size: 2.5em;
  line-height: 1.15em;
  margin-bottom: 12px;
}

.hero-section h2 {
  font-size: 1.15em;
  margin-bottom: 28px;
}

/* Hero CTA wider & fuller */
.hero-section .cta-btn.large {
  width: 94%;
  padding: 24px 0;
  font-size: 1.35em;
  border-radius: 20px;
  box-shadow:
    0 0 30px rgba(255,200,80,0.75),
    inset 0 0 12px rgba(255,255,255,0.25);
}


  /* Wider, better-proportioned CTA buttons */
.cta-btn, .cta-btn.large {
  display: block;
  width: 92%;
  margin: 20px auto 0 auto;
  padding: 20px 0;
  font-size: 1.25em;
  border-radius: 16px;
  line-height: 1.4;
  text-align: center;
  box-shadow: 0 0 25px rgba(255,190,60,0.65);
}


  /* Stop animation transforms on mobile to avoid wobble */
  [data-animate], .fade-in, .slide-in {
    transform: none !important;
    opacity: 1 !important;
    transition: none !important;
  }

  /* Make top attention bar thinner */
  .attention-bar {
    font-size: 0.9em;
    padding: 10px 5px;
  }
}

/* -------- ERROR BOX -------- */
.error-box {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 600px;
  margin: 180px auto;
  padding: 50px 25px;
  background: rgba(255, 60, 60, 0.12);
  border: 1px solid rgba(255, 120, 120, 0.4);
  border-radius: 18px;
  color: #fff;
  font-size: 1.3em;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow:
    0 0 30px rgba(255, 80, 80, 0.35),
    inset 0 0 15px rgba(255, 255, 255, 0.08);
  animation: fadeInError 0.8s ease forwards;
}

.error-box i {
  color: #ffb0b0;
  font-size: 2.8em;
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 0 8px rgba(255, 80, 80, 0.7);
}

@keyframes fadeInError {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  #bonuses .sub-content {
    flex-direction: column !important;
    text-align: center;
  }
  #bonuses .sub-content .text {
    text-align: center;
  }
}

/* Fix feature list bullets and alignment */
.feature-list {
  list-style: none;
  margin: 25px 0;
  padding: 0;
  text-align: left;
}

.feature-list li {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1em;
  color: #e5e5e5;
  margin-bottom: 14px;
  line-height: 1.5em;
  position: relative;
  padding-left: 32px;
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #ffd970;
  font-size: 1.2em;
}

/* -------- TESTIMONIALS -------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1300px;
}

.testimonial-card {
  background: linear-gradient(to bottom right, rgba(255,255,255,0.15), rgba(255,255,255,0.10));
  border: 1px solid rgba(255,215,128,0.3);
  border-radius: 20px;
  padding: 35px 30px 25px 30px;
  text-align: center;
  box-shadow: inset 0 0 15px rgba(255,215,128,0.1), 0 0 35px rgba(255,215,128,0.25);
  transition: transform .3s ease, box-shadow .3s ease;
  backdrop-filter: blur(6px);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: inset 0 0 25px rgba(255,215,128,0.2), 0 0 45px rgba(255,215,128,0.35);
}

.testimonial-avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,215,128,0.5);
  margin-bottom: 18px;
}

.testimonial-card p {
  font-family: 'Oswald', sans-serif;
  color: #e5e5e5;
  font-size: 1.05em;
  line-height: 1.55;
  margin-bottom: 15px;
}

.testimonial-card .author {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95em;
  color: #ffd970;
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 25px 20px;
  }
}

/* -------- MOBILE BULLET ALIGNMENT FIX -------- */
@media (max-width: 768px) {
  .feature-list,
  #bonuses .sub-content ul {
    text-align: left !important;
    padding-left: 10px !important;
  }

  .feature-list li,
  #bonuses .sub-content li {
    text-align: left !important;
    padding-left: 32px !important;
    margin-left: 0 !important;
  }

  .feature-list li i,
  #bonuses .sub-content li i {
    left: 0 !important;
  }

  /* Ensure the paragraph text follows left alignment too */
  #features .text p,
  #bonuses .text p {
    text-align: left !important;
  }
}

#why .feature-list {
  list-style: none;
  margin: 25px 0;
  padding: 0;
  text-align: left;
}
#why .feature-list li {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05em;
  color: #e5e5e5;
  margin-bottom: 12px;
  line-height: 1.5em;
  padding-left: 32px;
  position: relative;
}
#why .feature-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: #ffd970;
  font-size: 1.2em;
}


/* =============================== */
/* DEMO PREVIEW WATERMARK OVERLAY  */
/* =============================== */
.demo-watermark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Anton', sans-serif;
  font-size: 7vw;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  text-align: center;
  transform: rotate(-20deg);
  white-space: nowrap;
  user-select: none;
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.05) 0,
    rgba(0,0,0,0.05) 2px,
    transparent 2px,
    transparent 4px
  );
  backdrop-filter: blur(3px);
}
.demo-watermark small {
  display: block;
  font-size: 2vw;
  color: rgba(255,255,255,0.25);
}
