#vue-app .lp-header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 20;
  border-bottom: 1px solid #eee;
}

#vue-app .lp-header__inner {
  width: 100%;
  max-width: 1200px;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

#vue-app .lp-header__logo img {
  height: 26px;
  display: block;
}

#vue-app .lp-header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#vue-app .lp-header__menu {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.2rem;
  font-weight: 700;
}

#vue-app .lp-header__menu-item a {
  color: #333;
  text-decoration: none;
}

#vue-app .lp-header__menu-item a:hover {
  opacity: 0.85;
}

#vue-app .lp-header__cta {
  background-color: #d81b60;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  margin-left: 3rem;
}

#vue-app .lp-header__cta:hover {
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  #vue-app .lp-header__cta {
    display: none;
  }
}

.admin-bar #vue-app .lp-header {
  top: 32px;
}

@media screen and (max-width: 767px) {
  .admin-bar #vue-app .lp-header {
    top: 46px;
  }
}

#vue-app .mv2 {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 10px 0 0;
}

#vue-app .mv.mv--sp {
  display: none;
}

@media screen and (max-width: 767px) {
  #vue-app .mv.mv--sp {
    display: block;
  }

  #vue-app .mv2 {
    display: none;
  }
}

#vue-app .mv2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--mv2-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

#vue-app .mv2__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: clamp(0px, 51.6667vw, 600px);
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  gap: 0;
  padding: 0 clamp(12px, 3.3333vw, 40px);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#vue-app .mv2__left {
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}

#vue-app .mv2__actor {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  transform: translateY(clamp(0px, 2.5vw, 30px));
}

#vue-app .mv2__right {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(8px, 1.6667vw, 20px);
  padding-top: clamp(0px, 5vw, 60px);
  box-sizing: border-box;
}

#vue-app .mv2__top {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(0px, 15.8333vw, 190px);
  gap: clamp(8px, 1.6667vw, 20px);
  align-items: start;
}

#vue-app .mv2__price {
  width: 100%;
  height: auto;
  display: block;
}

#vue-app .mv2__feature-list {
  width: 100%;
  height: auto;
  display: block;
}

#vue-app .mv2__bottom {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(0px, 15vw, 180px) minmax(0, 1fr);
  gap: clamp(8px, 1.6667vw, 20px);
  align-items: end;
  margin-bottom: clamp(0px, 2vw, 24px);
}

#vue-app .mv2__badge {
  width: 100%;
  height: auto;
  display: block;
}

#vue-app .mv2__badge--google {
  max-width: clamp(0px, 15vw, 180px);
}

#vue-app .mv2__badge--urgent {
  max-width: clamp(0px, 32.5vw, 390px);
  justify-self: end;
}

#vue-app .mv2__cta-area {
  width: 100%;
  margin: 0;
  padding: clamp(10px, 1.6667vw, 20px) clamp(12px, 3.3333vw, 40px);
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  background-color: #fff;
}

#vue-app .mv2__cta-area a {
  text-decoration: none;
  display: block;
}

#vue-app .mv2__cta-area .btn {
  margin: 0;
}

#vue-app .mv2__cta {
  width: 520px;
  max-width: 90%;
  height: 90px;
  background-color: #d81b60;
  border: 0;
  border-radius: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 3.6rem;
  font-weight: 700;
  box-shadow: 0 8px 0 #b0164f;
}

#vue-app .mv2__cta:hover {
  opacity: 0.9;
}
