/* [project]/app/page.module.css [app-client] (css) */
.page-module__E0kJGG__container {
  color: #171389;
  background: #fff;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.page-module__E0kJGG__nav {
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #d9e9f5;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 8px rgba(23, 19, 137, .08);
}

.page-module__E0kJGG__navContent {
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
}

.page-module__E0kJGG__logoContainer {
  align-items: center;
  display: flex;
}

.page-module__E0kJGG__logo {
  object-fit: cover;
  object-position: center;
  width: auto;
  height: 50px;
}

.page-module__E0kJGG__navLink {
  color: #171389;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
}

.page-module__E0kJGG__navLink:hover {
  color: #171389;
  background: #d9e9f5;
}

.page-module__E0kJGG__hero {
  background: linear-gradient(135deg, #d9e9f5 0%, #e8f1fb 100%);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.page-module__E0kJGG__heroContainer {
  grid-template-columns: 1.2fr 1.3fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
}

.page-module__E0kJGG__heroText {
  z-index: 1;
  flex-direction: column;
  gap: 1.5rem;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__badge {
  color: #fff;
  background: #55cc1b;
  border-radius: 9999px;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: .5rem;
  padding: .75rem 2rem;
  font-size: .875rem;
  font-weight: 700;
  display: inline-block;
}

.page-module__E0kJGG__heroTitle {
  color: #171389;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.page-module__E0kJGG__heroSubtitle {
  color: #171389;
  opacity: .85;
  font-size: 1rem;
  line-height: 1.6;
}

.page-module__E0kJGG__heroImageContainer {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.page-module__E0kJGG__heroImage {
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  width: 100%;
  max-width: 600px;
  height: 600px;
  transition: all .3s;
  box-shadow: 0 10px 40px rgba(23, 19, 137, .15);
}

.page-module__E0kJGG__heroImage:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 50px rgba(85, 204, 27, .2);
}

.page-module__E0kJGG__heroCtas {
  flex-wrap: wrap;
  gap: 1rem;
  display: flex;
}

.page-module__E0kJGG__ctaPrimary {
  color: #fff;
  cursor: pointer;
  background: #55cc1b;
  border: none;
  border-radius: .5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(85, 204, 27, .3);
}

.page-module__E0kJGG__ctaPrimary:hover {
  background: #4ab815;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(85, 204, 27, .4);
}

.page-module__E0kJGG__ctaSecondary {
  color: #171389;
  background: #fff;
  border: 2px solid #171389;
  border-radius: .5rem;
  padding: .875rem 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
}

.page-module__E0kJGG__ctaSecondary:hover {
  color: #171389;
  background: #d9e9f5;
  border-color: #171389;
  transform: translateY(-2px);
}

.page-module__E0kJGG__section {
  background: #fff;
  padding: 4rem 2rem;
}

.page-module__E0kJGG__sectionContent {
  max-width: 1200px;
  margin: 0 auto;
}

.page-module__E0kJGG__sectionTitle {
  color: #171389;
  text-align: center;
  margin-bottom: .5rem;
  font-size: 2.25rem;
  font-weight: 800;
}

.page-module__E0kJGG__sectionSubtitle {
  color: #171389;
  text-align: center;
  opacity: .75;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

.page-module__E0kJGG__cardsGrid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  display: grid;
}

.page-module__E0kJGG__card {
  text-align: center;
  background: #fff;
  border: 2px solid #d9e9f5;
  border-radius: .75rem;
  padding: 2rem;
  transition: all .3s;
}

.page-module__E0kJGG__card:hover {
  border-color: #55cc1b;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(85, 204, 27, .15);
}

.page-module__E0kJGG__cardIcon {
  margin-bottom: 1rem;
  font-size: 3rem;
}

.page-module__E0kJGG__card h3 {
  color: #171389;
  margin-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-module__E0kJGG__card p {
  color: #171389;
  opacity: .8;
  line-height: 1.6;
}

.page-module__E0kJGG__imagesGallery {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  display: grid;
}

.page-module__E0kJGG__imageCard {
  background: #fff;
  border: 2px solid #d9e9f5;
  border-radius: .75rem;
  transition: all .3s;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(23, 19, 137, .1);
}

.page-module__E0kJGG__imageCard:hover {
  border-color: #55cc1b;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(85, 204, 27, .2);
}

.page-module__E0kJGG__galleryImage {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 300px;
  display: block;
}

.page-module__E0kJGG__imageCaption {
  text-align: center;
  color: #171389;
  background: #d9e9f5;
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 700;
}

.page-module__E0kJGG__benefitsGrid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  display: grid;
}

.page-module__E0kJGG__benefit {
  background: #d9e9f5;
  border-left: 4px solid #55cc1b;
  border-radius: .5rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  display: flex;
}

.page-module__E0kJGG__checkmark {
  color: #55cc1b;
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.page-module__E0kJGG__benefit span:last-child {
  color: #171389;
  font-weight: 600;
}

.page-module__E0kJGG__tagsContainer {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.page-module__E0kJGG__tag {
  color: #171389;
  background: #d9e9f5;
  border: 2px solid #55cc1b;
  border-radius: 9999px;
  padding: .75rem 1.25rem;
  font-size: .95rem;
  font-weight: 600;
}

.page-module__E0kJGG__tagGreen {
  color: #fff;
  background: #55cc1b;
  border: 2px solid #55cc1b;
  border-radius: 9999px;
  padding: .75rem 1.25rem;
  font-size: .95rem;
  font-weight: 700;
  display: inline-block;
}

.page-module__E0kJGG__treatmentGrid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  display: grid;
}

.page-module__E0kJGG__treatmentCard {
  text-align: center;
  background: #d9e9f5;
  border: 2px solid #d9e9f5;
  border-radius: .75rem;
  padding: 2rem;
  transition: all .3s;
}

.page-module__E0kJGG__treatmentCard:hover {
  border-color: #55cc1b;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(85, 204, 27, .15);
}

.page-module__E0kJGG__treatmentCard h3 {
  color: #171389;
  margin-bottom: .75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-module__E0kJGG__treatmentValue {
  color: #55cc1b;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.page-module__E0kJGG__treatmentCard p {
  color: #171389;
  opacity: .85;
  line-height: 1.6;
}

.page-module__E0kJGG__waitlistSection {
  background: linear-gradient(135deg, #d9e9f5 0%, #e8f1fb 100%);
  padding: 4rem 2rem;
}

.page-module__E0kJGG__form {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  display: flex;
}

.page-module__E0kJGG__formInput {
  color: #171389;
  background: #fff;
  border: 2px solid #171389;
  border-radius: .5rem;
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
}

.page-module__E0kJGG__formInput::placeholder {
  color: #171389;
  opacity: .6;
}

.page-module__E0kJGG__formInput:focus {
  border-color: #55cc1b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(85, 204, 27, .1);
}

.page-module__E0kJGG__formButton {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  background: #55cc1b;
  border: none;
  border-radius: .5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(85, 204, 27, .3);
}

.page-module__E0kJGG__formButton:hover {
  background: #4ab815;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(85, 204, 27, .4);
}

.page-module__E0kJGG__successMessage {
  text-align: center;
  color: #55cc1b;
  background: #fff;
  border: 2px solid #55cc1b;
  border-radius: .5rem;
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
  font-weight: 700;
}

.page-module__E0kJGG__contactGrid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  display: grid;
}

.page-module__E0kJGG__contactCard {
  text-align: center;
  background: #d9e9f5;
  border: 2px solid #d9e9f5;
  border-radius: .75rem;
  padding: 2rem;
  transition: all .3s;
}

.page-module__E0kJGG__contactCard:hover {
  border-color: #55cc1b;
  box-shadow: 0 10px 25px rgba(85, 204, 27, .15);
}

.page-module__E0kJGG__contactCard h3 {
  color: #171389;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.page-module__E0kJGG__contactLink {
  color: #171389;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}

.page-module__E0kJGG__contactLink:hover {
  color: #55cc1b;
  text-decoration: underline;
}

.page-module__E0kJGG__footer {
  color: #fff;
  text-align: center;
  background: #171389;
  padding: 3rem 2rem;
}

.page-module__E0kJGG__footerContent {
  max-width: 1200px;
  margin: 0 auto;
}

.page-module__E0kJGG__footer p {
  margin: .5rem 0;
  line-height: 1.6;
}

.page-module__E0kJGG__disclaimer {
  color: #d9e9f5;
  margin-top: 1rem;
  font-size: .875rem;
}

@media (max-width: 768px) {
  .page-module__E0kJGG__heroContainer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-module__E0kJGG__heroText {
    text-align: center;
    align-items: center;
  }

  .page-module__E0kJGG__badge {
    margin: 0 auto .5rem;
    display: inline-block;
  }

  .page-module__E0kJGG__heroTitle {
    font-size: 2rem;
  }

  .page-module__E0kJGG__heroSubtitle {
    font-size: 1.1rem;
    line-height: 1.7;
  }

  .page-module__E0kJGG__heroCtas {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .page-module__E0kJGG__ctaPrimary, .page-module__E0kJGG__ctaSecondary {
    width: 100%;
    max-width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }

  .page-module__E0kJGG__sectionTitle {
    font-size: 1.9rem;
  }

  .page-module__E0kJGG__sectionSubtitle {
    font-size: 1.05rem;
  }

  .page-module__E0kJGG__cardsGrid, .page-module__E0kJGG__imagesGallery {
    grid-template-columns: 1fr;
  }

  .page-module__E0kJGG__galleryImage {
    height: 250px;
  }

  .page-module__E0kJGG__benefitsGrid {
    grid-template-columns: 1fr;
  }

  .page-module__E0kJGG__benefit {
    padding: 1.2rem;
    font-size: 1.05rem;
  }

  .page-module__E0kJGG__treatmentGrid {
    grid-template-columns: 1fr;
  }

  .page-module__E0kJGG__treatmentCard {
    padding: 1.5rem;
  }

  .page-module__E0kJGG__treatmentCard h3 {
    font-size: 1.3rem;
  }

  .page-module__E0kJGG__treatmentValue {
    font-size: 1.7rem;
  }

  .page-module__E0kJGG__treatmentCard p {
    font-size: 1rem;
  }

  .page-module__E0kJGG__form {
    flex-direction: column;
    gap: 1rem;
  }

  .page-module__E0kJGG__formInput {
    min-width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  .page-module__E0kJGG__formButton {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }

  .page-module__E0kJGG__contactGrid {
    grid-template-columns: 1fr;
  }

  .page-module__E0kJGG__contactCard {
    text-align: center;
    padding: 1.5rem;
  }

  .page-module__E0kJGG__contactCard h3 {
    font-size: 1.3rem;
  }

  .page-module__E0kJGG__contactLink {
    margin-top: .5rem;
    font-size: 1.1rem;
    display: block;
  }

  .page-module__E0kJGG__navContent {
    flex-direction: column;
    gap: 1rem;
  }

  .page-module__E0kJGG__logo {
    height: 40px;
  }

  .page-module__E0kJGG__tagsContainer {
    gap: .75rem;
  }

  .page-module__E0kJGG__tagGreen {
    padding: .7rem 1.1rem;
    font-size: .95rem;
  }

  .page-module__E0kJGG__heroImageContainer, .page-module__E0kJGG__heroImage {
    max-width: 100%;
  }

  .page-module__E0kJGG__badge {
    padding: .6rem 1.2rem;
    font-size: .95rem;
  }

  .page-module__E0kJGG__card h3 {
    font-size: 1.3rem;
  }

  .page-module__E0kJGG__card p {
    font-size: 1rem;
  }

  .page-module__E0kJGG__cardIcon {
    font-size: 3.5rem;
  }

  .page-module__E0kJGG__imageCaption {
    padding: 1.2rem;
    font-size: 1.1rem;
  }

  .page-module__E0kJGG__checkmark {
    font-size: 1.8rem;
  }

  .page-module__E0kJGG__benefit span:last-child {
    font-size: 1.05rem;
  }

  .page-module__E0kJGG__section, .page-module__E0kJGG__waitlistSection {
    padding: 3rem 1.5rem;
  }

  .page-module__E0kJGG__footer {
    padding: 2rem 1.5rem;
  }

  .page-module__E0kJGG__footer p {
    font-size: 1rem;
  }

  .page-module__E0kJGG__disclaimer {
    font-size: .95rem;
  }
}

@media (max-width: 480px) {
  .page-module__E0kJGG__heroTitle {
    font-size: 1.7rem;
  }

  .page-module__E0kJGG__heroSubtitle {
    font-size: 1rem;
  }

  .page-module__E0kJGG__sectionTitle {
    font-size: 1.6rem;
  }

  .page-module__E0kJGG__sectionSubtitle {
    font-size: .95rem;
  }

  .page-module__E0kJGG__ctaPrimary, .page-module__E0kJGG__ctaSecondary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .page-module__E0kJGG__formInput, .page-module__E0kJGG__formButton {
    padding: 1rem;
    font-size: 1rem;
  }

  .page-module__E0kJGG__contactLink {
    font-size: 1rem;
  }

  .page-module__E0kJGG__treatmentValue {
    font-size: 1.5rem;
  }

  .page-module__E0kJGG__badge {
    font-size: .85rem;
  }
}

.page-module__E0kJGG__heroForm {
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  display: flex;
}

.page-module__E0kJGG__heroFormInput {
  color: #171389;
  background: #fff;
  border: 2px solid #171389;
  border-radius: .5rem;
  padding: 1rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all .3s;
}

.page-module__E0kJGG__heroFormInput::placeholder {
  color: #171389;
  opacity: .6;
}

.page-module__E0kJGG__heroFormInput:focus {
  border-color: #55cc1b;
  outline: none;
  box-shadow: 0 0 0 3px rgba(85, 204, 27, .1);
}

.page-module__E0kJGG__heroFormInput:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.page-module__E0kJGG__heroSuccessMessage {
  text-align: center;
  color: #55cc1b;
  background: #fff;
  border: 2px solid #55cc1b;
  border-radius: .5rem;
  margin-top: 1rem;
  padding: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .page-module__E0kJGG__heroForm {
    gap: .8rem;
    margin-top: 1.5rem;
  }

  .page-module__E0kJGG__heroFormInput {
    padding: 1.1rem;
    font-size: 1.05rem;
  }

  .page-module__E0kJGG__heroSuccessMessage {
    padding: 1.2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-module__E0kJGG__heroFormInput {
    padding: 1rem;
    font-size: 1rem;
  }
}

.page-module__E0kJGG__heroErrorMessage {
  text-align: center;
  color: #d32f2f;
  background: #ffebee;
  border: 2px solid #d32f2f;
  border-radius: .5rem;
  margin-top: 1rem;
  padding: 1rem;
  font-weight: 700;
}

.page-module__E0kJGG__errorMessage {
  text-align: center;
  color: #d32f2f;
  background: #ffebee;
  border: 2px solid #d32f2f;
  border-radius: .5rem;
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
  font-weight: 700;
}

.page-module__E0kJGG__waitlistCtaContainer {
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.page-module__E0kJGG__waitlistCtaContainer button {
  min-width: 300px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .page-module__E0kJGG__waitlistCtaContainer button {
    min-width: 100%;
    max-width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
  }
}

/*# sourceMappingURL=app_page_module_2b22cb52.css.map*/