@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap");

body,
button,
input,
textarea {
  font-family: "Outfit", sans-serif;
}

body {
  margin: 0;
  background: #f6f8f9;
  color: #0f172a;
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

.nomitrepr-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  box-shadow: 0 1px 0 #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
}

.nomitrepr-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  font-weight: 600;
}

.nomitrepr-header__brand-mark {
  width: 32px;
  height: 32px;
}

.nomitrepr-header__brand-text {
  font-size: 18px;
}

.nomitrepr-header__nav-list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nomitrepr-header__nav-link {
  color: #475569;
  padding: 8px 10px;
  border-radius: 10px;
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.nomitrepr-header__nav-link:hover {
  color: #0f172a;
  background: #eef6f4;
}

.nomitrepr-main > section,
.nomitrepr-legal > section {
  padding: 64px 20px;
}

.nomitrepr-hero,
.nomitrepr-onboarding,
.nomitrepr-levels,
.nomitrepr-split,
.nomitrepr-description,
.nomitrepr-features,
.nomitrepr-gallery,
.nomitrepr-faq,
.nomitrepr-testimonials,
.nomitrepr-finalcta {
  max-width: 1200px;
  margin: 0 auto;
}

.nomitrepr-hero {
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8f9 100%);
  border-bottom: 1px solid #e5e7eb;
  padding-top: 80px;
  padding-bottom: 80px;
}

.nomitrepr-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.nomitrepr-hero__tag {
  display: inline-block;
  padding: 6px 10px;
  background: #e6faf5;
  color: #15b79e;
  border-radius: 10px;
  font-size: 13px;
}

.nomitrepr-hero__heading {
  font-size: 44px;
  line-height: 1.15;
  margin: 8px 0 12px;
}

.nomitrepr-hero__lead {
  max-width: 800px;
  margin: 0 auto 22px;
  color: #475569;
  font-size: 18px;
}

.nomitrepr-hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.nomitrepr-hero__cta-main,
.nomitrepr-hero__cta-secondary,
.nomitrepr-finalcta__cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    opacity 0.18s ease;
  font-weight: 600;
}

.nomitrepr-hero__cta-main,
.nomitrepr-finalcta__cta {
  background: #15b79e;
  color: #ffffff;
}

.nomitrepr-hero__cta-main:hover,
.nomitrepr-finalcta__cta:hover {
  background: #0e937f;
  transform: translateY(-1px);
}

.nomitrepr-hero__cta-secondary {
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #dbe2e8;
}

.nomitrepr-hero__cta-secondary:hover {
  background: #f1f5f9;
}

.nomitrepr-onboarding__heading,
.nomitrepr-levels__heading,
.nomitrepr-split__heading,
.nomitrepr-description__heading,
.nomitrepr-features__heading,
.nomitrepr-gallery__heading,
.nomitrepr-faq__heading,
.nomitrepr-testimonials__heading,
.nomitrepr-finalcta__heading {
  font-size: 32px;
  line-height: 1.2;
  margin: 0 0 18px;
}

.nomitrepr-onboarding__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: step;
  padding: 0;
  margin: 0;
}

.nomitrepr-onboarding__step {
  list-style: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 12px;
}

.nomitrepr-onboarding__step-num {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  background: #e6faf5;
  color: #0e937f;
  border-radius: 10px;
  font-weight: 600;
}

.nomitrepr-onboarding__step-main {
  color: #0f172a;
}

.nomitrepr-levels__intro {
  color: #475569;
  margin-bottom: 12px;
}

.nomitrepr-levels__list {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 8px;
}

.nomitrepr-levels__item {
  color: #0f172a;
}

.nomitrepr-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 22px;
  align-items: center;
}

.nomitrepr-split__media {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.nomitrepr-split__bullets {
  padding-left: 18px;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #0f172a;
}

.nomitrepr-description__para {
  max-width: 900px;
  margin: 0 auto 12px;
  color: #0f172a;
}

.nomitrepr-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.nomitrepr-features__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.nomitrepr-features__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.08);
}

.nomitrepr-features__title {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.nomitrepr-features__desc {
  color: #475569;
}

.nomitrepr-gallery__intro {
  color: #475569;
  margin-bottom: 14px;
}

.nomitrepr-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.nomitrepr-gallery__item {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.nomitrepr-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 6, 23, 0.1);
}

.nomitrepr-gallery__img {
  display: block;
  width: 100%;
  height: auto;
}

.nomitrepr-gallery__caption {
  display: block;
  padding: 10px 12px;
  color: #475569;
  font-size: 14px;
}

.nomitrepr-faq__accordion {
  display: grid;
  gap: 10px;
}

.nomitrepr-faq__item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.nomitrepr-faq__question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  color: #0f172a;
  border: 0;
  padding: 14px 16px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.nomitrepr-faq__question:hover {
  background: #f1f5f9;
}

.nomitrepr-faq__answer {
  display: none;
  padding: 0 16px 16px;
  color: #475569;
}

.nomitrepr-faq__item--open .nomitrepr-faq__answer {
  display: block;
}

.nomitrepr-testimonials__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.nomitrepr-testimonials__card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(2, 6, 23, 0.06);
}

.nomitrepr-testimonials__quote {
  display: block;
  color: #0f172a;
  margin-bottom: 8px;
}

.nomitrepr-testimonials__persona {
  color: #15b79e;
  font-weight: 600;
  font-size: 14px;
}

.nomitrepr-finalcta {
  text-align: center;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 36px 20px;
}

.nomitrepr-finalcta__support {
  color: #475569;
  margin-top: 10px;
}

.nomitrepr-footer {
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 -1px 0 #e5e7eb inset;
}

.nomitrepr-footer__nav-list {
  list-style: none;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0 0 8px;
}

.nomitrepr-footer__nav-link {
  color: #64748b;
  padding: 6px 8px;
  border-radius: 8px;
  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.nomitrepr-footer__nav-link:hover {
  color: #0f172a;
  background: #eef6f4;
}

.nomitrepr-footer__copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
}

.nomitrepr-legal {
  padding: 64px 20px;
}

.nomitrepr-legal__inner {
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
}

.nomitrepr-legal__section {
  margin-bottom: 18px;
}

.nomitrepr-legal__title {
  font-size: 28px;
  margin: 0 0 8px;
}

.nomitrepr-legal__subtitle {
  font-size: 20px;
  margin: 0 0 6px;
}

.nomitrepr-legal__text {
  color: #0f172a;
  margin: 0 0 10px;
}

.nomitrepr-legal__list {
  padding-left: 18px;
  margin: 0 0 10px;
  display: grid;
  gap: 6px;
}

.nomitrepr-legal__item {
  color: #0f172a;
}

.nomitrepr-legal__link {
  color: #15b79e;
  text-decoration: underline;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.nomitrepr-legal__link:hover {
  color: #0e937f;
  opacity: 0.9;
}

.nomitrepr-reach {
  padding: 64px 20px;
}

.nomitrepr-reach__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.nomitrepr-reach__heading {
  font-size: 36px;
  margin: 0 0 10px;
}

.nomitrepr-reach__lead {
  color: #475569;
  margin: 0 0 18px;
  max-width: 800px;
}

.nomitrepr-reach__group {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 14px;
}

.nomitrepr-reach__group-heading {
  font-size: 22px;
  margin: 0 0 6px;
}

.nomitrepr-reach__group-desc {
  color: #64748b;
  margin: 0 0 10px;
}

.nomitrepr-reach__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.nomitrepr-reach__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  align-items: center;
}

.nomitrepr-reach__label {
  color: #64748b;
  font-size: 14px;
}

.nomitrepr-reach__value {
  color: #15b79e;
  font-weight: 600;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.nomitrepr-reach__value:hover {
  color: #0e937f;
  opacity: 0.9;
}

.consent-box {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 100;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(2, 6, 23, 0.16);
  padding: 14px;
  max-width: 960px;
  margin: 0 auto;
}

.consent-box__header {
  margin-bottom: 8px;
}

.consent-box__badge {
  display: inline-block;
  background: #e6faf5;
  color: #0e937f;
  border-radius: 10px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.consent-box__title {
  margin: 0 0 6px;
  font-size: 20px;
}

.consent-box__body {
  display: grid;
  gap: 10px;
}

.consent-box__categories {
  display: grid;
  gap: 10px;
}

.consent-box__category {
  background: #fafbfc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
}

.consent-box__switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
}

.consent-box__privacy-link {
  color: #15b79e;
  text-decoration: underline;
  transition: color 0.18s ease;
}

.consent-box__privacy-link:hover {
  color: #0e937f;
}

.consent-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  padding-top: 8px;
}

.consent-box__btn {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #dbe2e8;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.consent-box__btn:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.consent-box__btn--accept {
  background: #15b79e;
  border-color: #15b79e;
  color: #ffffff;
}

.consent-box__btn--accept:hover {
  background: #0e937f;
}

.consent-box__btn--save {
  background: #ffffff;
  border-color: #cfd8e1;
}

.consent-box__btn--reject {
  background: #f8fafc;
  color: #475569;
}

.consent-box--hidden {
  display: none !important;
}

@media (max-width: 1199px) {
  .nomitrepr-onboarding__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .nomitrepr-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .nomitrepr-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nomitrepr-testimonials__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .nomitrepr-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .nomitrepr-header {
    flex-wrap: wrap;
    gap: 10px;
  }
  .nomitrepr-header__nav-list {
    justify-content: center;
  }
  .nomitrepr-main > section,
  .nomitrepr-legal > section {
    padding: 44px 16px;
  }
  .nomitrepr-hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .nomitrepr-hero__heading {
    font-size: 34px;
  }
  .nomitrepr-hero__lead {
    font-size: 16px;
  }
  .nomitrepr-hero__ctas a,
  .nomitrepr-finalcta__cta {
    width: 100%;
    text-align: center;
  }
  .nomitrepr-onboarding__steps {
    grid-template-columns: 1fr;
  }
  .nomitrepr-features__grid {
    grid-template-columns: 1fr 1fr;
  }
  .nomitrepr-gallery__grid {
    grid-template-columns: 1fr;
  }
  .nomitrepr-testimonials__cards {
    grid-template-columns: 1fr;
  }
  .nomitrepr-reach__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .consent-box {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
  }
  .consent-box__actions {
    justify-content: stretch;
  }
  .consent-box__btn {
    flex: 1;
    text-align: center;
  }
}
