.mock-wrapper {
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
  padding: 0.75rem;
  border-radius: 16px;
}

.mock {
  display: flex;
  justify-content: center;
  align-items: center;
}

.spacer-100 {
  height: 60px;
}

.logo-img {
  width: 170px;
}

.logo-img-m {
  width: 120px;
}

.hero-img-m {
  display: none;
}

/* =========================
   MODAL BACKDROP
========================= */

.waitlist-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

/* ACTIVE STATE */
.waitlist-modal.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   MODAL BOX
========================= */

.waitlist-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  /* background: #111111; */
  background: #0d1c34;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 35px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.03);
  transform: translateY(20px) scale(0.96);
  transition: 0.3s ease;
}

/* ANIMATION */
.waitlist-modal.active .waitlist-modal-content {
  transform: translateY(0) scale(1);
}

/* =========================
   OPEN BUTTON
========================= */

.open-modal-btn {
  margin-bottom: 0 !important;
}

.row.hero-section-top-padding .open-modal-btn {
  margin-bottom: 4.5rem !important;
}

/* =========================
   CLOSE BUTTON
========================= */

.close-modal-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  transition: 0.25s ease;
}

.close-modal-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}

/* =========================
   HEADER
========================= */

.modal-header {
  text-align: center;
  margin-bottom: 30px;
  flex-direction: column;
}

.modal-header h2 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.6;
}

/* =========================
   FORM
========================= */

.form-group {
  margin-bottom: 18px;
}

.waitlist-modal input,
.waitlist-modal select {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #ffffff;
  font-size: 15px;
  outline: none;
  transition: 0.25s ease;
}

.waitlist-modal input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.waitlist-modal input:focus,
.waitlist-modal select:focus {
  border-color: #4da3ff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(77, 163, 255, 0.12);
}

/* SELECT OPTION */
.waitlist-modal select option {
  /* background: #111111; */
  /* color: #ffffff; */
  color: #111111;
}

/* =========================
   SUBMIT BUTTON
========================= */

.submit-btn {
  width: 100%;
  height: 58px;
  border: none;
  border-radius: 14px;
  /* background: linear-gradient(135deg, #007bff, #00bfff); */
  background: #0052cc;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.35);
}

/* =========================
   MESSAGE
========================= */

#message {
  margin-top: 18px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

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

@media (max-width: 600px) {
  .waitlist-modal-content {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .modal-header h2 {
    font-size: 26px;
  }

  .hero-img-d {
    display: none;
  }

  .hero-img-m {
    display: block;
  }
}
