.tab-active {
  border-bottom: 3px solid #00488d;
  color: #00488d;
}

.tab-inactive {
  color: #5f5f5f;
  border-bottom: 3px solid transparent;
}

/* Full viewport minus sticky header (h-16 = 4rem) */
.hero {
  box-sizing: border-box;
  min-height: calc(100vh - 4rem);
  min-height: calc(100dvh - 4rem);
  display: flex;
  align-items: center;
  padding-block: 48px;
}

.hero__inner {
  width: 100%;
}

/* Hero CTA: +30% vs previous px-8 / py-4 / text-lg */
.hero__cta {
  width: 100%;
  padding: 1.3rem 2.6rem; /* 16px→20.8px, 32px→41.6px */
  font-size: 1.4625rem; /* 18px → 23.4px */
  line-height: 1.3;
}

.hero__cta .material-symbols-outlined {
  font-size: 1.625rem; /* ~26px */
}

/* Hero product preview: nested gray → white frame */
.hero-preview {
  aspect-ratio: 1 / 1;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  border-radius: 1.5rem;
}

.hero-preview__frame {
  width: 100%;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem 1.25rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.08);
}

.hero-preview__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0.25rem;
}

/* Tool tabs: rectangular nested frame (outer border → gray mat → white card) */
.tool-preview {
  width: 100%;
  box-sizing: border-box;
  padding: 0.625rem;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 0.75rem;
}

.tool-preview__mat {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: #f3f3f3;
  border-radius: 0.5rem;
}

.tool-preview__frame {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 10px 24px rgba(0, 0, 0, 0.08);
}

.tool-preview__img {
  display: block;
  width: 100%;
  height: auto;
}

/* Consent checkbox */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 4px;
}

.consent-check__input {
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 14.5px;
  height: 14.5px;
  margin: 2.5px 0 0;
  border: 1.5px solid rgb(95 95 95 / var(--tw-text-opacity, 1));
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: background 0.15s ease, border-color 0.15s ease;
}
[type='checkbox']:checked,
[type='radio']:checked {
  background-color: white !important;
  border-color: rgb(95 95 95 / var(--tw-text-opacity, 1)) !important;
}
.consent-check__input:checked {
  background: white;
  border-color: rgb(95 95 95 / var(--tw-text-opacity, 1));
}

.consent-check__input:not(:checked) {
  border-color: rgb(0 72 141 / var(--tw-text-opacity, 1));
}

.consent-check__input:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 5px;
  height: 7px;
  border: solid rgb(95 95 95 / var(--tw-text-opacity, 1));
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.consent-check__input:focus,
.consent-check__input:focus-visible,
.consent-check__input:checked:focus,
.consent-check__input:checked:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  --tw-ring-color: transparent !important;
  --tw-ring-offset-width: 0px !important;
}

.consent-check__input:checked:focus,
.consent-check__input:checked:focus-visible {
  border-color: rgb(95 95 95 / var(--tw-text-opacity, 1)) !important;
}

.consent-check__input:not(:checked):focus,
.consent-check__input:not(:checked):focus-visible {
  border-color: rgb(0 72 141 / var(--tw-text-opacity, 1)) !important;
}

.consent-check__text {
  font-size: 12px;
  line-height: 20px;
  color: rgb(95 95 95 / var(--tw-text-opacity, 1));
  user-select: none;
  pointer-events: none;
}

.ijjz-icujemsm.is-cta-disabled,
.ijjz-icujemsm:disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}


