body:has(#iontmax-hp-app) article.pageArticleDetail > header[itemprop="headline"],
body:has(#iontmax-hp-app) article.pageArticleDetail > header[itemprop="headline"] h1 {
  display: none !important;
}

#iontmax-hp-app,
#iontmax-hp-app * {
  box-sizing: border-box;
}

#iontmax-hp-app {
  width: 100%;
  max-width: 100%;
  min-height: 80vh;
}

.iontmax-hp {
  width: 100%;
  max-width: 100%;
  min-height: 80vh;
  margin: 0;
  padding: 24px 0 40px 0;
  font-family: inherit;
  color: #111;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.iontmax-hp__shell {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0;
}

.iontmax-hp__intro {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 28px;
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  background: #fff;
}

.iontmax-hp__eyebrow {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8007f;
}

.iontmax-hp__intro h1 {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 900;
  color: #000;
}

.iontmax-hp__intro p {
  max-width: 760px;
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

.iontmax-hp__loading,
.iontmax-hp__error,
.iontmax-hp__form {
  width: 100%;
  padding: 28px;
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  background: #fff;
}

.iontmax-hp__loading {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 140px;
  color: #111;
  font-size: 16px;
}

.iontmax-hp__loading-text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 900;
  color: #000;
}

.iontmax-hp__loading-text span {
  display: block;
  color: #666;
  font-size: 15px;
  line-height: 1.4;
}

.iontmax-hp__loader {
  width: 38px;
  height: 38px;
  border: 4px solid #f0f0f0;
  border-top-color: #d8007f;
  border-radius: 999px;
  flex: 0 0 auto;
  animation: iontmaxHpSpin 0.8s linear infinite;
}

@keyframes iontmaxHpSpin {
  to {
    transform: rotate(360deg);
  }
}

.iontmax-hp__fade-in {
  animation: iontmaxHpFadeIn 0.45s ease both;
}

@keyframes iontmaxHpFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.iontmax-hp__error {
  border-color: #ffc7c7;
  background: #fff4f4;
  color: #9a0000;
  font-weight: 700;
  line-height: 1.55;
}

.iontmax-hp__progress {
  margin-bottom: 26px;
}

.iontmax-hp__progress-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 800;
  color: #333;
}

.iontmax-hp__progress-bar {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
  background: #f0f0f0;
}

.iontmax-hp__progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: #d8007f;
  transition: width 0.25s ease;
}

.iontmax-hp__step {
  display: none;
}

.iontmax-hp__step.is-active {
  display: block;
}

.iontmax-hp__question {
  margin: 0 0 12px 0;
  font-size: clamp(21px, 2.4vw, 32px);
  line-height: 1.18;
  font-weight: 900;
  color: #000;
}

.iontmax-hp__hint {
  margin: 0 0 22px 0;
  font-size: 15px;
  line-height: 1.55;
  color: #666;
}

.iontmax-hp__answers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}

.iontmax-hp__answer {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.iontmax-hp__answer input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.iontmax-hp__answer-box {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 60px;
  padding: 16px 18px;
  border: 2px solid #e6e6e6;
  border-radius: 17px;
  background: #fff;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.iontmax-hp__answer:hover .iontmax-hp__answer-box {
  border-color: #d8007f;
  transform: translateY(-1px);
}

.iontmax-hp__answer input:checked + .iontmax-hp__answer-box {
  border-color: #d8007f;
  background: #fff3fa;
}

.iontmax-hp__answer-dot {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  border: 2px solid #cfcfcf;
  border-radius: 999px;
  background: #fff;
}

.iontmax-hp__answer input:checked + .iontmax-hp__answer-box .iontmax-hp__answer-dot {
  border-color: #d8007f;
  box-shadow: inset 0 0 0 5px #fff;
  background: #d8007f;
}

.iontmax-hp__answer-text {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.iontmax-hp__email-box {
  display: grid;
  gap: 14px;
}

.iontmax-hp__field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #111;
}

.iontmax-hp__field input[type="email"] {
  width: 100%;
  height: 56px;
  padding: 0 16px;
  border: 2px solid #e6e6e6;
  border-radius: 15px;
  font-size: 16px;
  background: #fff;
  color: #111;
}

.iontmax-hp__field input[type="email"]:focus {
  outline: none;
  border-color: #d8007f;
}

.iontmax-hp__consent {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
}

.iontmax-hp__consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.iontmax-hp__consent-box {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  width: 100%;
  min-height: 56px;
  padding: 15px 17px;
  border: 2px solid #e6e6e6;
  border-radius: 16px;
  background: #fff;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.iontmax-hp__consent:hover .iontmax-hp__consent-box {
  border-color: #d8007f;
  transform: translateY(-1px);
}

.iontmax-hp__consent input:checked + .iontmax-hp__consent-box {
  border-color: #d8007f;
  background: #fff3fa;
}

.iontmax-hp__consent-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  border: 2px solid #cfcfcf;
  border-radius: 7px;
  background: #fff;
  color: transparent;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.iontmax-hp__consent input:checked + .iontmax-hp__consent-box .iontmax-hp__consent-check {
  border-color: #d8007f;
  background: #d8007f;
  color: #fff;
}

.iontmax-hp__consent-text {
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  color: #333;
}

.iontmax-hp__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.iontmax-hp__btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.iontmax-hp__btn:hover {
  transform: translateY(-1px);
}

.iontmax-hp__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.iontmax-hp__btn--primary {
  background: #000;
  color: #fff;
}

.iontmax-hp__btn--secondary {
  background: #f1f1f1;
  color: #111;
}

.iontmax-hp__validation {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff4f4;
  color: #9a0000;
  font-size: 14px;
  font-weight: 700;
}

/* Result design */

.iontmax-hp__result {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.iontmax-hp__result-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 26px;
  align-items: start;
  width: 100%;
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e8e8e8;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.iontmax-hp__result-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--iontmax-hp-result-color, #d8007f);
}

.iontmax-hp__result-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: var(--iontmax-hp-result-soft, rgba(216, 0, 127, 0.10));
  pointer-events: none;
}

.iontmax-hp__result-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-left: 8px;
}

.iontmax-hp__result-side {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  min-width: 0;
  padding-top: 18px;
}

.iontmax-hp__result-thumb {
  width: 132px;
  height: 132px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.iontmax-hp__result-thumb img {
  width: 100%;
  height: 100%;
  max-width: 108px;
  max-height: 108px;
  object-fit: contain;
  display: block;
}

.iontmax-hp__result-no-image {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  background: var(--iontmax-hp-result-soft, rgba(216, 0, 127, 0.10));
  border: 12px solid #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.iontmax-hp__result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--iontmax-hp-result-soft, rgba(216, 0, 127, 0.10));
  color: var(--iontmax-hp-result-color, #d8007f);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.iontmax-hp__result-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--iontmax-hp-result-color, #d8007f);
}

.iontmax-hp__result-title {
  margin: 0 0 12px 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 950;
  color: #000;
  overflow-wrap: anywhere;
}

.iontmax-hp__result-text {
  max-width: 620px;
  margin: 0 0 16px 0;
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  overflow-wrap: anywhere;
}

.iontmax-hp__result-email {
  margin: 0 0 18px 0;
  font-size: 15px;
  line-height: 1.5;
  color: #111;
  font-weight: 800;
}

.iontmax-hp__score {
  display: inline-flex;
  margin: 0 0 18px 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--iontmax-hp-result-soft, rgba(216, 0, 127, 0.10));
  color: var(--iontmax-hp-result-color, #d8007f);
  font-size: 14px;
  font-weight: 900;
}

.iontmax-hp__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 14px 22px;
  border-radius: 999px;
  background: #000 !important;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none !important;
}

.iontmax-hp__cta:hover {
  background: #222 !important;
  color: #fff !important;
}

.iontmax-hp__result-card--hd500 {
  --iontmax-hp-result-color: #65b32e;
  --iontmax-hp-result-soft: rgba(101, 179, 46, 0.13);
}

.iontmax-hp__result-card--hd1000 {
  --iontmax-hp-result-color: #f3c400;
  --iontmax-hp-result-soft: rgba(243, 196, 0, 0.18);
}

.iontmax-hp__result-card--hd1500 {
  --iontmax-hp-result-color: #f28c00;
  --iontmax-hp-result-soft: rgba(242, 140, 0, 0.15);
}

.iontmax-hp__result-card--hd2000 {
  --iontmax-hp-result-color: #e30613;
  --iontmax-hp-result-soft: rgba(227, 6, 19, 0.12);
}

.iontmax-hp__hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 768px) {
  .iontmax-hp__result-card {
    grid-template-columns: minmax(0, 1fr) 112px;
    gap: 16px;
    padding: 24px;
  }

  .iontmax-hp__result-side {
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 16px;
  }

  .iontmax-hp__result-thumb {
    width: 104px;
    height: 104px;
    border-radius: 18px;
    padding: 10px;
  }

  .iontmax-hp__result-thumb img {
    max-width: 84px;
    max-height: 84px;
  }

  .iontmax-hp__result-title {
    font-size: clamp(25px, 7vw, 34px);
  }

  .iontmax-hp__result-text {
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 600px) {
  .iontmax-hp {
    min-height: 80vh;
    padding: 14px 0 28px 0;
  }

  .iontmax-hp__intro,
  .iontmax-hp__form,
  .iontmax-hp__loading,
  .iontmax-hp__error {
    padding: 18px;
    border-radius: 17px;
  }

  .iontmax-hp__intro h1 {
    font-size: 30px;
  }

  .iontmax-hp__question {
    font-size: 21px;
    line-height: 1.2;
  }

  .iontmax-hp__nav {
    flex-direction: column;
  }

  .iontmax-hp__btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .iontmax-hp__result-card {
    grid-template-columns: minmax(0, 1fr) 82px;
    gap: 12px;
    padding: 22px 18px;
  }

  .iontmax-hp__result-content {
    padding-left: 4px;
  }

  .iontmax-hp__result-side {
    padding-top: 18px;
  }

  .iontmax-hp__result-thumb {
    width: 78px;
    height: 78px;
    border-radius: 15px;
    padding: 8px;
  }

  .iontmax-hp__result-thumb img {
    max-width: 62px;
    max-height: 62px;
  }

  .iontmax-hp__result-badge {
    font-size: 11px;
    padding: 7px 10px;
  }

  .iontmax-hp__result-title {
    font-size: 25px;
  }

  .iontmax-hp__cta {
    width: 100%;
    max-width: 260px;
    padding: 14px 18px;
  }
}