/* Nativ Insurance Funnel — light theme, finansave-style layout: logo (on navy pill) + secure + progress + light card. */

@keyframes nif-fade-up   { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes nif-shake     { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }
@keyframes nif-pop       { 0% { transform: scale(0.4); opacity: 0; } 60% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); } }
@keyframes nif-pulse     { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.6); opacity: 0; } }
@keyframes nif-shimmer   { 0% { transform: translateX(100%); } 100% { transform: translateX(-100%); } }

html.nativ-ic-html { height: 100%; background: #061831; overscroll-behavior: none; }
body.nativ-ic-page {
  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overflow: hidden;
  overscroll-behavior: none;
  position: fixed;
  inset: 0;
  font-family: "Heebo", "Assistant", system-ui, -apple-system, sans-serif;
  color: #0f1c3a;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(77, 138, 240, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(30, 95, 217, 0.20) 0%, transparent 60%),
    linear-gradient(180deg, #0a1f3d 0%, #061831 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  direction: rtl;
}
.nativ-ic-shell {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.nativ-ic-shell {
  --nif-blue:        #1e5fd9;
  --nif-blue-deep:   #1849b1;
  --nif-blue-light:  #eaf1ff;
  --nif-navy:        #0a1f3d;
  --nif-navy-2:      #102a4f;
  --nif-ink:         #0f1c3a;
  --nif-ink-2:       #4d5a73;
  --nif-muted:       #93a0b8;
  --nif-line:        #e2e8f2;
  --nif-line-2:      #cfd8e6;
  --nif-paper:       #ffffff;
  --nif-warn:        #d24343;

  max-width: 540px;
  margin: 0 auto;
  padding: 28px 16px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

/* === Header (logo + secure on dark navy bg) === */
.nativ-ic-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: nif-fade-up 0.5s ease-out;
}
.nativ-ic-logoBox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nativ-ic-logo {
  width: min(44vw, 170px);
  height: auto;
  display: block;
}
.nativ-ic-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nativ-ic-secure svg { width: 13px; height: 13px; }

/* === Progress (on dark navy bg, outside card) === */
.nativ-ic-progress { animation: nif-fade-up 0.5s ease-out 0.05s both; }
.nativ-ic-progress__info {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.80);
}
.nativ-ic-progress__info [data-role="step-percent"] { display: none; }
.nativ-ic-progress__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.nativ-ic-progress__fill {
  height: 100%;
  background: var(--nif-blue);
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.nativ-ic-progress__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  animation: nif-shimmer 2.4s infinite;
}

/* === Card === */
.nativ-ic-card {
  background: var(--nif-paper);
  border-radius: 24px;
  box-shadow:
    0 24px 60px -20px rgba(15, 28, 58, 0.18),
    0 4px 12px -4px rgba(15, 28, 58, 0.06);
  overflow: hidden;
  animation: nif-fade-up 0.55s ease-out 0.1s both;
}
.nativ-ic-step { display: none; }
.nativ-ic-step.is-active {
  display: block;
  background: var(--nif-paper);
  border-radius: 14px;
  box-shadow:
    0 24px 60px -20px rgba(0, 0, 0, 0.45),
    0 8px 24px -10px rgba(15, 28, 58, 0.35);
  overflow: hidden;
  animation: nif-fade-up 0.45s ease-out;
}
/* If the template wraps steps in .nativ-ic-card, drop the per-step card visual. */
.nativ-ic-card .nativ-ic-step.is-active {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  animation: nif-fade-up 0.4s ease-out;
}
.nativ-ic-pad { padding: 32px 24px 28px; position: relative; }
.nativ-ic-pad--noback { padding-top: 32px; }
.nativ-ic-pad--center { text-align: center; }

.nativ-ic-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--nif-blue-light);
  border: none;
  color: var(--nif-blue);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.nativ-ic-back:hover { background: #dee9ff; transform: translateY(-1px); }
.nativ-ic-back svg { width: 12px; height: 12px; }

/* === Avatar + bubble (step 1) === */
.nativ-ic-avatar-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.nativ-ic-avatar-persist {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 18px 0 4px;
}
.nativ-ic-avatar-persist > .nativ-ic-avatar {
  margin: 0 auto;
  flex: 0 0 auto;
}
/* Tight vertical rhythm: avatar sits just above the active step's content on every step */
.nativ-ic-card .nativ-ic-step.is-active .nativ-ic-pad {
  padding-top: 12px;
}
.nativ-ic-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--nif-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px -8px rgba(30, 95, 217, 0.45);
  border: 0;
}
.nativ-ic-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}
.nativ-ic-avatar {
  -webkit-touch-callout: none;
}
.nativ-ic-avatar__initials { color: #fff; font-size: 30px; font-weight: 800; line-height: 1; }
.nativ-ic-avatar__pulse {
  display: none;
}
.nativ-ic-avatar__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: #2bbf67;
  opacity: 0.5;
  animation: nif-pulse 2s infinite;
}
.nativ-ic-bubble {
  background: var(--nif-blue-light);
  color: var(--nif-ink);
  font-size: 14.5px;
  line-height: 1.7;
  padding: 14px 18px;
  border-radius: 18px;
  border-top-right-radius: 4px;
  text-align: center;
}
.nativ-ic-bubble strong { color: var(--nif-blue); font-weight: 800; }

.nativ-ic-trust {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.nativ-ic-trust__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--nif-ink-2);
  background: #fff;
  border: 1px solid var(--nif-line);
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.nativ-ic-trust__emo { font-size: 13px; line-height: 1; }

/* === Question === */
.nativ-ic-q {
  margin: 8px 0 20px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--nif-ink);
  text-align: center;
}
.nativ-ic-q--center { text-align: center; }
.nativ-ic-q__lede {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--nif-ink-2);
  margin: -10px 0 22px;
  text-align: center;
}

/* === Options (yes/no) === */
.nativ-ic-options { display: flex; flex-direction: column; gap: 10px; }
.nativ-ic-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: #fff;
  border: 2px solid var(--nif-line);
  border-radius: 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--nif-ink);
  cursor: pointer;
  text-align: right;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nativ-ic-option__emo {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}
.nativ-ic-option__main { flex: 1; }
.nativ-ic-option:hover {
  border-color: var(--nif-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(30, 95, 217, 0.3);
}
.nativ-ic-option.is-selected {
  border-color: var(--nif-blue);
  background: var(--nif-blue-light);
}

/* === Insurance type === */
.nativ-ic-types {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.nativ-ic-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 8px;
  background: #fff;
  border: 2px solid var(--nif-line);
  border-radius: 16px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  min-height: 116px;
  -webkit-tap-highlight-color: transparent;
}
.nativ-ic-type__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--nif-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nif-blue);
  transition: background 0.2s, color 0.2s;
}
.nativ-ic-type__icon svg { width: 24px; height: 24px; }
.nativ-ic-type__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--nif-ink);
  text-align: center;
}
.nativ-ic-type:hover {
  border-color: var(--nif-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(30, 95, 217, 0.3);
}
.nativ-ic-type.is-selected {
  border-color: var(--nif-blue);
  background: var(--nif-blue-light);
}
.nativ-ic-type.is-selected .nativ-ic-type__icon { background: var(--nif-blue); color: #fff; }

/* === Payment === */
.nativ-ic-pay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.nativ-ic-pay__btn {
  padding: 16px 12px;
  background: #fff;
  border: 2px solid var(--nif-line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--nif-ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  font-variant-numeric: tabular-nums;
  -webkit-tap-highlight-color: transparent;
}
.nativ-ic-pay__btn:hover {
  border-color: var(--nif-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(30, 95, 217, 0.3);
}
.nativ-ic-pay__btn.is-selected {
  border-color: var(--nif-blue);
  background: var(--nif-blue-light);
  color: var(--nif-blue);
}
.nativ-ic-pay__btn--wide { grid-column: 1 / -1; }

/* === Age === */
.nativ-ic-ages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.nativ-ic-age {
  padding: 16px 6px;
  background: #fff;
  border: 2px solid var(--nif-line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  color: var(--nif-ink);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s, box-shadow 0.2s;
  direction: ltr;
  font-variant-numeric: tabular-nums;
  -webkit-tap-highlight-color: transparent;
}
.nativ-ic-age:hover {
  border-color: var(--nif-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -10px rgba(30, 95, 217, 0.3);
}
.nativ-ic-age.is-selected {
  border-color: var(--nif-blue);
  background: var(--nif-blue-light);
  color: var(--nif-blue);
}

/* === Form === */
.nativ-ic-field { margin-bottom: 16px; }
.nativ-ic-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--nif-ink);
  margin-bottom: 6px;
}
.nativ-ic-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--nif-line);
  border-radius: 14px;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--nif-ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: right;
  direction: rtl;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.nativ-ic-input--ltr { direction: ltr; text-align: left; letter-spacing: 0.04em; }
.nativ-ic-input::placeholder { color: var(--nif-muted); font-weight: 400; }
.nativ-ic-input:focus { border-color: var(--nif-blue); box-shadow: 0 0 0 4px rgba(30, 95, 217, 0.10); }
.nativ-ic-input.is-error { border-color: var(--nif-warn); }
.nativ-ic-error {
  font-size: 12px;
  color: var(--nif-warn);
  margin-top: 6px;
  font-weight: 600;
  display: none;
}
.nativ-ic-error.is-shown { display: block; }

.nativ-ic-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--nif-ink-2);
  line-height: 1.5;
  margin: 12px 0 18px;
}
.nativ-ic-consent input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--nif-blue);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin: 1px 0 0;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nativ-ic-consent input[type="checkbox"]:checked { background: var(--nif-blue); }
.nativ-ic-consent input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

/* === CTA === */
.nativ-ic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 22px;
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
.nativ-ic-btn--primary {
  background: linear-gradient(135deg, var(--nif-blue), var(--nif-blue-deep));
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(30, 95, 217, 0.55);
}
.nativ-ic-btn--primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(30, 95, 217, 0.65);
}
.nativ-ic-btn--primary:disabled {
  background: var(--nif-line);
  color: var(--nif-muted);
  cursor: not-allowed;
  box-shadow: none;
}

/* === OTP === */
.nativ-ic-otp__hero {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  color: var(--nif-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nif-blue-light);
  border-radius: 50%;
  animation: nif-pop 0.55s cubic-bezier(0.2,0.6,0.2,1.2);
}
.nativ-ic-otp__hero svg { width: 30px; height: 30px; }
.nativ-ic-otp__phone {
  font-family: "Heebo", monospace, sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--nif-blue);
  direction: ltr;
  display: inline-block;
  background: var(--nif-blue-light);
  padding: 2px 10px;
  border-radius: 8px;
}
.nativ-ic-edit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--nif-blue);
  cursor: pointer;
  margin: 6px auto 18px;
  transition: opacity 0.2s;
}
.nativ-ic-edit svg { width: 13px; height: 13px; }
.nativ-ic-edit:hover { opacity: 0.7; }

.nativ-ic-otp__inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px auto 14px;
  max-width: 320px;
  direction: ltr;
  width: 100%;
  box-sizing: border-box;
}
.nativ-ic-otp__inputs.is-shaking { animation: nif-shake 0.5s ease-in-out; }
.nativ-ic-otp__digit {
  width: 100%;
  min-width: 0;
  height: 64px;
  padding: 0;
  border: 2px solid var(--nif-line);
  background: #fff;
  border-radius: 14px;
  text-align: center;
  font-family: inherit;
  font-size: 26px;
  font-weight: 800;
  color: var(--nif-ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.nativ-ic-otp__digit:focus {
  border-color: var(--nif-blue);
  background: var(--nif-blue-light);
  box-shadow: 0 0 0 4px rgba(30, 95, 217, 0.10);
}
.nativ-ic-otp__err {
  font-size: 12.5px;
  color: var(--nif-warn);
  background: #fff0f0;
  border-radius: 12px;
  padding: 10px 14px;
  margin: 0 0 14px;
  font-weight: 600;
  text-align: center;
}
.nativ-ic-resend {
  font-size: 12.5px;
  color: var(--nif-ink-2);
  margin: 14px 0 0;
  text-align: center;
}
.nativ-ic-resend a {
  color: var(--nif-blue);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}
.nativ-ic-resend a.is-disabled { color: var(--nif-muted); pointer-events: none; text-decoration: none; }

/* === Thanks === */
.nativ-ic-done { padding: 40px 28px; text-align: center; }
.nativ-ic-done__seal {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  color: var(--nif-blue);
  animation: nif-pop 0.6s cubic-bezier(0.2,0.6,0.2,1.4);
}
.nativ-ic-done__seal svg { width: 100%; height: 100%; }
.nativ-ic-done h2 { font-size: 22px; font-weight: 800; margin: 0 0 12px; color: var(--nif-ink); }
.nativ-ic-done p  { font-size: 14px; color: var(--nif-ink-2); line-height: 1.7; margin: 0; }

/* === Not eligible === */
.nativ-ic-empty { padding: 24px 0; text-align: center; }
.nativ-ic-empty h3 { font-size: 18px; font-weight: 800; margin: 0 0 10px; color: var(--nif-ink); }
.nativ-ic-empty p  { font-size: 13.5px; color: var(--nif-ink-2); line-height: 1.7; margin: 0; }

/* === Focus accessibility === */
.nativ-ic-option:focus-visible,
.nativ-ic-type:focus-visible,
.nativ-ic-pay__btn:focus-visible,
.nativ-ic-age:focus-visible,
.nativ-ic-btn:focus-visible,
.nativ-ic-otp__digit:focus-visible,
.nativ-ic-input:focus-visible,
.nativ-ic-back:focus-visible {
  outline: 3px solid var(--nif-blue);
  outline-offset: 2px;
}

/* === Small screens === */

/* Mobile / short-viewport compression: keep each step inside one viewport. */
@media (max-width: 480px), (max-height: 740px) {
  .nativ-ic-shell        { padding: 12px 14px 16px; gap: 10px; }
  .nativ-ic-logo         { width: min(38vw, 140px); }
  .nativ-ic-header       { gap: 8px; }
  .nativ-ic-secure       { font-size: 11.5px; padding: 5px 12px; }
  .nativ-ic-progress__bar{ height: 6px; }
  .nativ-ic-progress__info { font-size: 12px; margin-bottom: 6px; }
  .nativ-ic-step.is-active { border-radius: 12px; }
  .nativ-ic-pad          { padding: 20px 18px 18px; }
  .nativ-ic-pad--noback  { padding-top: 18px; }
  .nativ-ic-avatar       { width: 92px; height: 92px; border: 0; }
  .nativ-ic-avatar-row   { gap: 8px; margin-bottom: 10px; }
  .nativ-ic-bubble       { font-size: 13px; line-height: 1.5; padding: 10px 13px; border-radius: 14px; }
  .nativ-ic-trust        { margin-bottom: 12px; gap: 5px; }
  .nativ-ic-trust__badge { font-size: 10.5px; padding: 4px 9px; }
  .nativ-ic-q            { font-size: 18px; margin: 2px 0 14px; line-height: 1.3; }
  .nativ-ic-q__lede      { font-size: 12.5px; margin: -8px 0 14px; }
  .nativ-ic-options      { gap: 8px; }
  .nativ-ic-option       { padding: 13px 16px; font-size: 14.5px; border-radius: 10px; }
  .nativ-ic-option__emo  { font-size: 20px; }
  .nativ-ic-types        { gap: 8px; }
  .nativ-ic-type         { padding: 14px 6px; min-height: 92px; border-radius: 10px; }
  .nativ-ic-type__icon   { width: 36px; height: 36px; border-radius: 10px; }
  .nativ-ic-type__icon svg { width: 20px; height: 20px; }
  .nativ-ic-type__label  { font-size: 12.5px; }
  .nativ-ic-pay          { gap: 8px; }
  .nativ-ic-pay__btn     { padding: 12px 8px; font-size: 13.5px; border-radius: 10px; }
  .nativ-ic-ages         { gap: 8px; }
  .nativ-ic-age          { padding: 12px 6px; font-size: 15px; border-radius: 10px; }
  .nativ-ic-field        { margin-bottom: 12px; }
  .nativ-ic-input        { padding: 11px 14px; font-size: 16px; border-radius: 10px; }
  .nativ-ic-btn          { padding: 14px 18px; font-size: 15px; border-radius: 10px; margin-top: 6px; }
  .nativ-ic-otp__digit   { height: 52px; font-size: 22px; border-radius: 10px; }
  .nativ-ic-otp__inputs  { gap: 8px; margin: 8px auto 10px; }
  .nativ-ic-otp__hero    { width: 52px; height: 52px; margin-bottom: 10px; }
  .nativ-ic-otp__hero svg{ width: 26px; height: 26px; }
  .nativ-ic-consent      { font-size: 11.5px; margin: 8px 0 12px; }
  .nativ-ic-back         { margin-bottom: 10px; }
  .nativ-ic-done         { padding: 28px 22px; }
}
