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

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* HERO */
.hero {
  padding: 60px 20px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  }

h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

h2 {
  font-size: 22px;
  font-weight: normal;
  margin-bottom: 20px;
}

.hero-subtext {
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.85;
}

button {
  background: #00ff99;
  color: #000;
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  opacity: 0.9;
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 420px;
  margin: 30px auto;
  }

.fine-print {
  font-size: 12px;
  margin-top: 15px;
  opacity: 0.7;
}

/* TESTIMONIALS */
.testimonials {
  padding: 60px 20px;
  text-align: center;
}

.slider {
  max-width: 600px;
  margin: 30px auto 0;
  overflow: hidden;
}

.slide {
  animation: slide 5s infinite;
  opacity: 0.5;
}

@keyframes slide {
  0% {opacity: 0;}
  10% {opacity: 1;}
  40% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 0;}
}

/* WHY SYSTEM */
.why-system {
  padding: 60px 20px;
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.card {
  background: #0b0b0b;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,255,153,0.15);
}

.card h4 {
  margin-bottom: 15px;
}

/* CONTACT */
.contact a {
  color:#00ff99;
  text-decoration: none;
  font-weight: 600;
  padding: 60px 20px;
  text-align: center;
}

.contact a:hover {
  text-decoration: underline;
}

.section-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  }

/* DISCLAIMER */
footer {
  padding: 30px 20px;
}

.disclaimer {
  font-size: 10px;
  opacity: 0.6;
  text-align: center;
}

#unmuteOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 12px;
  z-index: 5;
  text-align: center;
  animation: pulse 1.6s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.9;
    }
    50% {
      transform: scale(1.05);
      opacity: 1;
    }
    100% {
      transform: scale(1);
      opacity: 0.9;
    }
  }

  /* Floating contact Icons */
  .floating-icons {
    position: fixed;
    bottom:20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 9999;
    }

  .floating-icons .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    }

      .contact-icon:hover {
        transform: scale(1.08);
        opacity: 0.9;
        }

        .contact-icon.telegram {
          background: #229ED9;
          }

          .contact-icon.instagram {
            background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
            }

/* HOW IT WORKS LIST*/
.how-it-works-list {
  list-style: disc;
  padding-left: 20px;
  margin: 20px auto 30px;
  max-width: 420px;
  text-align: left;
  }

  .how-it-works-list li {
    margin-bottom: 12px;
    line-height: 1.5;
    }

.how-it-works h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
  }

/* Legal short text */
.legal-short {
  font-size: 13px;
  opacity: 0.75;
  text-align: center;
  margin-top: 25px;
  }

    .terms-btn {
      background: none;
      border: none;
      padding: 0;
      color: #00ff99;
      text-decoration: underline;
      cursor: pointer;
      font-size: 13px;
      }

    /* Modal */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.85);
      display: flex;
      justify-content: center;
      z-index: 9999;
      }

      .modal-content {
        background: #0f0f0f;
        color: #fff;
        max-width: 600px;
        width: 90%;
        padding: 25px;
        border-radius: 12px;
        max-height: 80vh;
        overflow-y: auto;
        }

        .modal-content h2,
        .modal-content h3 {
          margin-top: 15px;
          }

         .modal-content p {
          font-size: 14px;
          line-height: 1.6;
          opacity: 0.85;
          }

/*===================================
CLIENT DETAILS FORM
===================================*/

.client-form {
  max-width: 420px;
  margin: 30px auto 20px;
  display: flex;
  flex-direction: colum;
  gap: 12px;
  }

.client-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  background: #ffffff;
  color: #000;
}

.client-form input::placeholder {
  opacity: 0.7;
}

.client-form .checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.85;
  margin-top: 6px;
  }

.client-form .checkbox input {
  width: auto;
  margin-top: 3px;
  }

.legal-text {
  font-size: 12px;
  opacity: 0.7;
  line-height: 1.5;
  margin-top: 6px;
  text-align: center;
}

.legal-short a {
  position: relative;
  z-index: 5;
  pointer-events: auto;
  }

/* FORCE FORM FIELDS TO STACK VERTICALLY */
.client-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  }

  .client-form input {
    width: 100%;
    box-sizing: border-box;
    }

    .client-form .checkbox {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 13px;
      opacity: 0.85;
      margin-top: 12px;
      }

      .client-form .checkbox input {
        margin-top: 4px;
        }

/* RESULTS CARD */
.results-card {
  margin-top: 40px;
  padding: 24px;
  background: #0b0b0b;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(0, 255, 170, 0.12);
  text-align: center;
  }

  .results-card h4 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: #ffffff;
    }

    /* RESULTS SLIDER */
    .results-slider {
      position: relative;
      width: 100%;
      max-width: 360px;
      height: 520px;
      margin: 20px auto;
      overflow: hidden;
      }

      .results-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        border-radius: 10px;
        opacity: 0;
        z-index: 0;
        pointer-events: none;
        transition: opacity 0.6s ease-in-out;
        }

        .results-slide.active {
          opacity: 1;
          z-index: 1;
          pointer-events: auto;
        }

          .results-note {
            margin-top: 14px;
            font-size: 0.85rem;
            color: #bdbdbd;
            }