/* Video Background Module */
* {
  box-sizing: border-box;
}

.video-bg-wrapper {
  box-sizing: border-box;
}

.video-bg-container {
  box-sizing: border-box;
}

/* Ensure video covers entire background */
@supports (object-fit: cover) {
  .video-bg-video,
  .video-bg-fallback {
    object-fit: cover;
  }
}

/* Prevent video from being clickable */
.video-bg-video,
.video-bg-fallback {
  pointer-events: none;
}

/* Ensure content is clickable */
.video-bg-content {
  pointer-events: auto;
}

/* Force full width on mobile */
@media screen and (max-width: 767px) {
  .video-bg-wrapper {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
  }
}

/* HubSpot Form Styles - Reset font-weight */
.video-bg-form-container .hs-form,
.video-bg-form-container .hs-form * {
  font-weight: 400;
}

.video-bg-form-container .hs-form h1,
.video-bg-form-container .hs-form h2,
.video-bg-form-container .hs-form h3,
.video-bg-form-container .hs-form h4,
.video-bg-form-container .hs-form .hs-form-title,
.video-bg-form-container .hs-form .form-title {
  font-weight: 700;
}

.video-bg-form-container .hs-form label {
  font-weight: 400;
}

.video-bg-form-container .hs-form .hs-input {
  font-weight: 400;
}

.video-bg-form-container .hs-form .hs-button {
  font-weight: 500;
}

.video-bg-form-container .hs-form p,
.video-bg-form-container .hs-form span,
.video-bg-form-container .hs-form .hs-richtext,
.video-bg-form-container .hs-form .hs-field-desc {
  font-weight: 400;
}
