.spntf {
  --spntf-font: var(
    --sptm-font,
    "yekanbakh",
    "YekanBakh",
    "Yekan Bakh",
    "IRANYekanX",
    "Vazirmatn",
    Tahoma,
    Arial,
    sans-serif
  );
  --spntf-navy: #000f59;
  --spntf-orange: #ff7614;
  --spntf-bg: #f8f8f8;
  --spntf-white: #fff;
  --spntf-text: #111827;
  --spntf-muted: #64748b;
  --spntf-border: #e5e7eb;
  --spntf-soft: #f5f6f8;
  width: 100%;
  max-width: 100%;
  padding: clamp(34px, 5vw, 62px) 20px;
  color: var(--spntf-text);
  background: transparent;
  font-family: var(--spntf-font) !important;
  font-weight: var(--sptm-w-regular, 400);
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  isolation: isolate;
}

.spntf,
.spntf *,
.spntf *::before,
.spntf *::after {
  box-sizing: border-box;
}

.spntf [hidden] {
  display: none !important;
}

.spntf *,
.spntf button,
.spntf input,
.spntf textarea,
.spntf select {
  font-family: var(--spntf-font) !important;
}

.spntf-shell {
  width: min(1040px, 100%);
  margin-inline: auto;
}

.spntf-heading {
  width: min(720px, 100%);
  margin: 0 auto clamp(24px, 3vw, 38px);
  text-align: center;
}

.spntf-eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--spntf-navy);
  font-size: 12px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf-eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--spntf-orange);
  box-shadow: 0 0 0 5px rgba(255, 118, 20, 0.1);
}

.spntf-heading h2 {
  margin: 0;
  color: var(--spntf-text);
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: var(--sptm-w-heading, 800);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.spntf-heading h1 {
  margin: 0;
  color: var(--spntf-text);
  font-size: clamp(34px, 4.8vw, 56px);
  font-weight: var(--sptm-w-heading, 800);
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.spntf-heading p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--spntf-muted);
  font-size: 14px;
  line-height: 2;
}

.spntf-form {
  position: relative;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(0, 15, 89, 0.075);
  border-radius: 32px;
  background: var(--spntf-white);
  box-shadow:
    0 26px 80px rgba(15, 23, 42, 0.055),
    0 2px 8px rgba(15, 23, 42, 0.025);
}

.spntf-section {
  display: block;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.spntf-section + .spntf-section {
  margin-top: clamp(32px, 5vw, 52px);
  padding-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid color-mix(in srgb, var(--spntf-navy) 7%, transparent);
}

.spntf-direct-phone {
  display: block;
  width: fit-content;
  margin: 0 auto 8px;
  color: var(--spntf-navy);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

.spntf-progress {
  --spntf-step-progress: 0%;
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--spntf-step-count, 4), minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}

.spntf-progress::before,
.spntf-progress::after {
  content: "";
  position: absolute;
  top: 17px;
  right: 7%;
  left: 7%;
  height: 2px;
  background: #e7e9ef;
  z-index: 0;
}

.spntf-progress::after {
  width: calc(var(--spntf-step-progress) * .86);
  left: auto;
  background: var(--spntf-orange);
  transition: width 320ms ease;
}

.spntf-progress__item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #8b94a5;
  text-align: center;
}

.spntf-progress__item i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #7c8799;
  background: #fff;
  border: 1px solid #dfe3eb;
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.spntf-progress__item b { font-size: 11px; font-weight: 600; }
.spntf-progress__item.is-active,
.spntf-progress__item.is-complete { color: var(--spntf-navy); }
.spntf-progress__item.is-active i,
.spntf-progress__item.is-complete i { color: #fff; background: var(--spntf-navy); border-color: var(--spntf-navy); }

.spntf-form.is-multistep .spntf-section + .spntf-section {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.spntf-form.is-multistep .spntf-section[hidden],
.spntf-form.is-multistep:not(.is-last-step) > .spntf-footer { display: none !important; }

.spntf-section.is-active { animation: spntf-step-in 300ms ease both; }

.spntf-step-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #eef0f4;
}

.spntf-step-button {
  width: fit-content;
  min-height: 44px;
  padding: 0 20px;
  color: var(--spntf-navy) !important;
  background: #f5f6f8 !important;
  border: 1px solid #e3e6ed !important;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.spntf-step-button--next { justify-self: end; color: #fff !important; background: var(--spntf-navy) !important; border-color: var(--spntf-navy) !important; }
.spntf-step-button--previous { justify-self: start; }
.spntf .spntf-step-button--next:hover,
.spntf .spntf-step-button--next:focus-visible {
  color: #fff !important;
  background: #001b78 !important;
  border-color: #001b78 !important;
  box-shadow: 0 9px 22px rgba(0, 15, 89, 0.16) !important;
  transform: translateY(-1px);
}
.spntf .spntf-step-button--previous:hover,
.spntf .spntf-step-button--previous:focus-visible {
  color: var(--spntf-navy) !important;
  background: #fff !important;
  border-color: rgba(0, 15, 89, 0.28) !important;
  box-shadow: 0 7px 18px rgba(0, 15, 89, 0.08) !important;
}
.spntf-step-count { color: var(--spntf-muted); font-size: 11px; white-space: nowrap; }
.spntf-step-nav.is-final {
  grid-template-columns: 1fr auto;
  margin-top: 20px;
  padding-top: 16px;
}
.spntf-step-nav.is-final .spntf-step-button--previous { grid-column: 1; }
.spntf-step-nav.is-final .spntf-step-count { grid-column: 2; }
.spntf-step-nav.is-final .spntf-step-button--next,
.spntf-step-button[hidden] { display: none !important; }
.spntf-form.is-last-step > .spntf-footer {
  margin-top: 16px;
  padding-top: 20px;
}
.spntf-has-full-form .sps-call-fab { display: none !important; }

@keyframes spntf-step-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 620px) {
  .spntf { padding: 24px 12px 34px; }
  .spntf-heading h2 { font-size: 31px; }
  .spntf-heading p { font-size: 12px; line-height: 1.85; }
  .spntf-form { padding: 18px 14px; border-radius: 22px; }
  .spntf-grid { grid-template-columns: 1fr; gap: 15px; }
  .spntf-control input, .spntf-captcha > input { height: 48px !important; }
  .spntf-progress__item b { display: none; }
  .spntf-progress { margin-bottom: 22px; }
  .spntf-step-nav { grid-template-columns: 1fr auto 1fr; }
  .spntf-step-button { min-height: 42px; padding-inline: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .spntf-section.is-active { animation: none; }
  .spntf-progress::after { transition: none; }
}

/* v1.5.0 — customer voice survey */
.spntf--customer-voice .spntf-shell { width: min(980px, 100%); }
.spntf--customer-voice .spntf-form { overflow: visible; }
.spntf--customer-voice .spntf-field--publication {
  padding: 16px 18px;
  border: 1px solid rgba(0, 15, 89, .09);
  border-radius: 18px;
  background: rgba(0, 15, 89, .025);
}
.spntf--customer-voice .spntf-consent--publication { margin: 0; }
.spntf-rating {
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(0, 15, 89, .09);
  border-radius: 20px;
  background: #fff;
}
.spntf-rating legend {
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  color: var(--spntf-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.9;
}
.spntf-rating__scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.spntf-rating__scale label { min-width: 0; cursor: pointer; }
.spntf-rating__scale input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}
.spntf-rating__scale span {
  display: grid;
  place-items: center;
  min-height: 46px;
  border: 1px solid rgba(0, 15, 89, .12);
  border-radius: 14px;
  color: var(--spntf-navy);
  background: #f8f9fb;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.spntf-rating__scale label:hover span {
  border-color: rgba(255, 118, 20, .42);
  background: rgba(255, 118, 20, .055);
}
.spntf-rating__scale input:checked + span {
  color: #fff;
  border-color: var(--spntf-navy);
  background: var(--spntf-navy);
  box-shadow: 0 8px 22px rgba(0, 15, 89, .16);
}
.spntf-rating__scale input:focus-visible + span {
  outline: 3px solid rgba(255, 118, 20, .25);
  outline-offset: 2px;
}
.spntf-rating__hints {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--spntf-muted);
  font-size: 11px;
}
.spntf-rating.is-invalid { border-color: #dc2626; }

@media (max-width: 620px) {
  .spntf--customer-voice .spntf-heading h1 { font-size: 32px; }
  .spntf-rating { padding: 14px; border-radius: 17px; }
  .spntf-rating__scale { gap: 6px; }
  .spntf-rating__scale span { min-height: 42px; border-radius: 12px; }
}

.spntf-section__head {
  width: 100%;
  margin: 0 0 16px;
  padding: 0;
}

.spntf-section__head h3 {
  margin: 0;
  color: var(--spntf-navy);
  font-size: 20px;
  font-weight: var(--sptm-w-heading, 700);
  line-height: 1.55;
}

.spntf-section__head p {
  margin-top: 4px;
  margin-bottom: 0;
  color: var(--spntf-muted);
  font-size: 12px;
  font-weight: var(--sptm-w-regular, 400);
  line-height: 1.8;
}

.spntf-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 21px 18px;
}

.spntf-field {
  position: relative;
  min-width: 0;
}

.spntf-field--wide {
  grid-column: 1 / -1;
}

.spntf-field > label,
.spntf-label {
  min-height: 26px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 2px 7px;
  color: #263248;
  font-size: 12px;
  font-weight: var(--sptm-w-semibold, 600);
  line-height: 1.8;
}

.spntf-required,
.spntf-captcha label b {
  color: var(--spntf-orange);
  font-size: 13px;
}

.spntf-control {
  position: relative;
}

.spntf-control input,
.spntf-control textarea,
.spntf-captcha > input {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 1px solid var(--spntf-border) !important;
  border-radius: 14px !important;
  outline: 0 !important;
  color: var(--spntf-text) !important;
  background: #fbfbfc !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: var(--sptm-w-regular, 400) !important;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease,
    transform 200ms ease;
}

.spntf-control input,
.spntf-captcha > input {
  height: 52px !important;
  padding: 0 15px !important;
}

/* Latin content is easier to scan and edit in its natural direction. */
.spntf input[type="email"],
.spntf input[type="url"],
.spntf input[type="tel"],
.spntf input[type="number"],
.spntf input[inputmode="numeric"],
.spntf input[inputmode="decimal"] {
  direction: ltr !important;
  text-align: left !important;
  unicode-bidi: plaintext;
}

.spntf-captcha > input {
  height: 56px !important;
}

.spntf-control textarea {
  min-height: 118px;
  resize: vertical;
  padding: 13px 15px !important;
  line-height: 1.9;
}

.spntf-control input:hover,
.spntf-control textarea:hover,
.spntf-captcha > input:hover {
  border-color: color-mix(in srgb, var(--spntf-navy) 17%, var(--spntf-border)) !important;
  background: #fff !important;
}

.spntf-control input:focus,
.spntf-control textarea:focus,
.spntf-captcha > input:focus {
  border-color: color-mix(in srgb, var(--spntf-navy) 54%, transparent) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(0, 15, 89, 0.055) !important;
}

.spntf-control--suffix input {
  padding-left: 64px !important;
}

.spntf-control--suffix > span {
  position: absolute;
  top: 50%;
  left: 15px;
  color: var(--spntf-muted);
  font-size: 11px;
  transform: translateY(-50%);
  pointer-events: none;
}

.spntf-number {
  height: 52px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  border: 1px solid var(--spntf-border);
  border-radius: 14px;
  background: #fbfbfc;
  transition: border-color 200ms ease, box-shadow 220ms ease, background-color 200ms ease;
}

.spntf-number:focus-within {
  border-color: color-mix(in srgb, var(--spntf-navy) 54%, transparent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 15, 89, 0.055);
}

.spntf .spntf-number > input {
  height: 50px !important;
  padding: 0 8px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
  direction: ltr !important;
}

.spntf .spntf-number__button {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 15, 89, 0.13) !important;
  border-radius: 10px !important;
  color: var(--spntf-navy) !important;
  background: #fff !important;
  box-shadow: none !important;
  font: 600 18px/1 var(--spntf-font) !important;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.spntf .spntf-number__button:hover,
.spntf .spntf-number__button:focus-visible {
  color: #fff !important;
  background: var(--spntf-navy) !important;
  border-color: var(--spntf-navy) !important;
  transform: translateY(-1px);
}

.spntf .spntf-number__button:disabled {
  color: #a7afbf !important;
  background: #f3f4f6 !important;
  border-color: transparent !important;
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.spntf-control--suffix.spntf-number > span {
  display: none;
}

.spntf-error {
  min-height: 0;
  display: block;
  margin: 5px 3px 0;
  color: #bd3c2e;
  font-size: 10px;
  line-height: 1.7;
}

.spntf-field.is-invalid .spntf-control input,
.spntf-field.is-invalid .spntf-control textarea,
.spntf-field.is-invalid .spntf-select__trigger,
.spntf-field.is-invalid .spntf-date__trigger,
.spntf-field.is-invalid .spntf-upload {
  border-color: rgba(196, 54, 37, 0.55) !important;
  box-shadow: 0 0 0 4px rgba(196, 54, 37, 0.045) !important;
}

/* Custom selects */

.spntf-select,
.spntf-date {
  position: relative;
}

.spntf-field.is-select-open {
  position: relative;
  z-index: 120;
}

.spntf-select__trigger,
.spntf-date__trigger {
  width: 100% !important;
  min-width: 0 !important;
  height: 52px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 !important;
  padding: 0 15px !important;
  border: 1px solid var(--spntf-border) !important;
  border-radius: 14px !important;
  color: var(--spntf-muted) !important;
  background: #fbfbfc !important;
  box-shadow: none !important;
  font-size: 13px !important;
  font-weight: var(--sptm-w-regular, 400) !important;
  text-align: right;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease;
}

.spntf-select.has-value .spntf-select__trigger,
.spntf-date.has-value .spntf-date__trigger {
  color: var(--spntf-text) !important;
}

.spntf-select__trigger:hover,
.spntf-date__trigger:hover,
.spntf-select.is-open .spntf-select__trigger,
.spntf-date.is-open .spntf-date__trigger {
  border-color: color-mix(in srgb, var(--spntf-navy) 34%, transparent) !important;
  background: #fff !important;
}

.spntf-select.is-open .spntf-select__trigger,
.spntf-date.is-open .spntf-date__trigger {
  box-shadow: 0 0 0 4px rgba(0, 15, 89, 0.05) !important;
}

.spntf-select__trigger svg,
.spntf-date__trigger svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: var(--spntf-navy);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-select.is-open .spntf-select__trigger svg {
  transform: rotate(180deg);
}

.spntf-select__menu {
  position: absolute;
  z-index: 500;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  width: 100%;
  margin: 0;
  max-height: var(--spntf-menu-height, 260px);
  overflow-y: auto;
  padding: 6px;
  border: 1px solid rgba(0, 15, 89, 0.1);
  border-radius: 16px;
  background: #fff;
	box-shadow: 0 22px 54px rgba(15, 23, 42, 0.16), 0 2px 8px rgba(15, 23, 42, 0.06);
  opacity: 0;
  transform: translateY(-7px) scale(0.985);
  transform-origin: top;
  transition:
    opacity 180ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 15, 89, 0.2) transparent;
}

/* Popover moves the menu to the browser top layer so no form panel can intercept its options. */
.spntf-select__menu.is-top-layer {
  position: fixed !important;
  z-index: 2147483647 !important;
  top: var(--spntf-menu-top) !important;
  right: auto !important;
  bottom: auto !important;
  left: var(--spntf-menu-left) !important;
  width: var(--spntf-menu-width) !important;
  max-width: calc(100vw - 24px) !important;
  max-height: var(--spntf-menu-height, 260px) !important;
  margin: 0 !important;
}

.spntf-select.is-up .spntf-select__menu {
  transform-origin: bottom;
}

.spntf-select__menu[hidden] {
  display: none;
}

.spntf-select__menu.is-visible {
  opacity: 1;
  transform: none;
}

.spntf .spntf-select__menu button {
  width: 100% !important;
  min-height: 42px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 !important;
  padding: 8px 11px !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #263248 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 12px !important;
  text-align: right;
  cursor: pointer;
  appearance: none;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease;
}

.spntf .spntf-select__menu button:hover,
.spntf .spntf-select__menu button:focus-visible {
  color: var(--spntf-navy) !important;
  background: rgba(255, 118, 20, 0.10) !important;
  outline: 0;
}

.spntf .spntf-select__menu button[aria-selected="true"] {
  color: var(--spntf-navy) !important;
  background: rgba(0, 15, 89, 0.07) !important;
  font-weight: var(--sptm-w-semibold, 600) !important;
}

.spntf-select__menu button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 160ms ease, transform 180ms ease;
}

.spntf-select__menu button[aria-selected="true"] svg {
  opacity: 1;
  transform: none;
}

/* Choices */

.spntf-choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.spntf-choice {
  position: relative;
  margin: 0;
  cursor: pointer;
}

.spntf-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.001;
}

.spntf-choice > span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--spntf-border);
  border-radius: 14px;
  color: #354158;
  background: #fbfbfc;
  font-size: 13px;
  font-weight: var(--sptm-w-medium, 500);
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-choice > span i {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 1.5px solid #b7bfcc;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 4px #fff;
  transition:
    border-color 200ms ease,
    background-color 240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-choice:hover > span {
  border-color: rgba(0, 15, 89, 0.18);
  background: #fff;
  transform: translateY(-1px);
}

.spntf-choice input:checked + span {
  border-color: rgba(0, 15, 89, 0.32);
  color: var(--spntf-navy);
  background: rgba(0, 15, 89, 0.045);
  box-shadow: 0 8px 20px rgba(0, 15, 89, 0.055);
}

.spntf-choice input:checked + span i {
  border-color: var(--spntf-navy);
  background: var(--spntf-navy);
  transform: scale(1.06);
}

.spntf-choice input:focus-visible + span {
  outline: 3px solid rgba(0, 15, 89, 0.13);
  outline-offset: 2px;
}

/* Conditional military field */

.spntf-conditional {
  min-width: 0;
  opacity: 1;
  transform: none;
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-conditional.is-leaving {
  opacity: 0;
  transform: translateY(-7px) scale(0.985);
}

.spntf-conditional[hidden] {
  display: none;
}

/* Jalali calendar */

.spntf-calendar {
  position: absolute;
  z-index: 90;
  top: calc(100% + 8px);
  right: 0;
  width: min(330px, calc(100vw - 48px));
  padding: 13px;
  border: 1px solid rgba(0, 15, 89, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  transform-origin: top right;
  transition:
    opacity 190ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-calendar[hidden] {
  display: none;
}

.spntf-calendar.is-visible {
  opacity: 1;
  transform: none;
}

.spntf-date.is-up .spntf-calendar {
  top: auto;
  bottom: calc(100% + 8px);
  transform: translateY(8px) scale(0.98);
  transform-origin: bottom right;
}

.spntf-date.is-up .spntf-calendar.is-visible {
  transform: none;
}

.spntf-calendar__head {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.spntf-calendar__head > div {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 6px;
}

.spntf-calendar__head select {
  height: 34px;
  padding: 0 8px;
  border: 1px solid var(--spntf-border);
  border-radius: 9px;
  outline: 0;
  color: var(--spntf-navy);
  background: var(--spntf-soft);
  font-size: 11px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf .spntf-calendar__head > button,
.spntf .spntf-calendar__today {
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--spntf-navy) !important;
  background: var(--spntf-soft) !important;
  box-shadow: none !important;
  cursor: pointer;
}

.spntf .spntf-calendar__head > button {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  border-radius: 10px !important;
}

.spntf-calendar__head button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spntf-calendar__week,
.spntf-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 3px;
}

.spntf-calendar__week {
  margin-bottom: 4px;
  color: #8992a2;
  font-size: 10px;
  text-align: center;
}

.spntf-calendar__week span {
  padding: 5px 0;
}

.spntf-calendar__days::before {
  content: "";
  grid-column: span var(--spntf-calendar-offset, 0);
}

.spntf .spntf-calendar__days button {
  width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #354158 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 11px !important;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 180ms ease;
}

.spntf .spntf-calendar__days button:hover {
  color: var(--spntf-navy) !important;
  background: rgba(0, 15, 89, 0.065) !important;
  transform: scale(1.04);
}

.spntf .spntf-calendar__days button:disabled {
  color: #b7beca !important;
  background: transparent !important;
  cursor: not-allowed;
  opacity: .46;
  transform: none !important;
}

.spntf .spntf-calendar__days button.is-selected {
  color: #fff !important;
  background: var(--spntf-navy) !important;
  box-shadow: 0 6px 14px rgba(0, 15, 89, 0.16) !important;
}

.spntf .spntf-calendar__days button.is-today:not(.is-selected) {
  color: var(--spntf-orange) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 118, 20, 0.28) !important;
}

.spntf .spntf-calendar__today {
  width: 100% !important;
  height: 34px !important;
  margin-top: 9px !important;
  border-radius: 10px !important;
  font-size: 11px !important;
  transition: background-color 180ms ease;
}

.spntf .spntf-calendar__today:hover {
  background: rgba(0, 15, 89, 0.08) !important;
}

/* Lightweight Jalali wheel picker */

.spntf .spntf-date__storage {
  display: none !important;
}

.spntf .spntf-security__storage {
  display: none !important;
}

.spntf-field.is-date-open {
  z-index: 420;
}

.spntf-calendar {
  z-index: 700;
  width: min(390px, calc(100vw - 32px));
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18), 0 4px 14px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.spntf-wheel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.spntf-wheel__head > div {
  display: grid;
  gap: 2px;
}

.spntf-wheel__head strong {
  color: var(--spntf-navy);
  font-size: 14px;
}

.spntf-wheel__head small {
  color: var(--spntf-muted);
  font-size: 10px;
}

.spntf .spntf-wheel__head > button {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 15, 89, 0.09) !important;
  border-radius: 11px !important;
  color: var(--spntf-navy) !important;
  background: var(--spntf-soft) !important;
  box-shadow: none !important;
  font-size: 21px !important;
  line-height: 1 !important;
  cursor: pointer;
}

.spntf-wheel__labels {
  display: grid;
  grid-template-columns: .85fr 1.3fr 1fr;
  gap: 8px;
  margin: 0 5px 5px;
  color: #8a94a5;
  font-size: 9px;
  text-align: center;
}

.spntf-wheel {
  position: relative;
  height: 220px;
  display: grid;
  grid-template-columns: .85fr 1.3fr 1fr;
  gap: 8px;
  padding: 0 5px;
  border: 1px solid rgba(0, 15, 89, 0.07);
  border-radius: 18px;
  background: linear-gradient(180deg, #fafbfc, #fff 48%, #fafbfc);
  overflow: hidden;
  isolation: isolate;
}

.spntf-wheel::before,
.spntf-wheel::after {
  content: "";
  position: absolute;
  z-index: 4;
  right: 0;
  left: 0;
  height: 72px;
  pointer-events: none;
}

.spntf-wheel::before {
  top: 0;
  background: linear-gradient(#fafbfc 8%, rgba(250, 251, 252, 0));
}

.spntf-wheel::after {
  bottom: 0;
  background: linear-gradient(rgba(250, 251, 252, 0), #fafbfc 92%);
}

.spntf-wheel__highlight {
  position: absolute;
  z-index: 0;
  top: 88px;
  right: 8px;
  left: 8px;
  height: 44px;
  border: 1px solid rgba(0, 15, 89, 0.12);
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(0, 15, 89, 0.065), rgba(255, 118, 20, 0.055));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.spntf-wheel__column {
  position: relative;
  z-index: 2;
  height: 220px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  outline: none;
  -webkit-overflow-scrolling: touch;
}

.spntf-wheel__column::-webkit-scrollbar {
  display: none;
}

.spntf-wheel__column > div {
  padding: 88px 0;
}

.spntf .spntf-wheel__column button {
  width: 100% !important;
  height: 44px !important;
  min-width: 0 !important;
  min-height: 44px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 4px !important;
  border: 0 !important;
  border-radius: 10px !important;
  color: #8992a2 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 12px !important;
  font-weight: var(--sptm-w-regular, 400) !important;
  line-height: 1 !important;
  white-space: nowrap;
  scroll-snap-align: center;
  cursor: pointer;
  opacity: .58;
  transform: scale(.9);
  transition: color 180ms ease, opacity 180ms ease, transform 240ms cubic-bezier(.22, 1, .36, 1);
}

.spntf .spntf-wheel__column button.is-active {
  color: var(--spntf-navy) !important;
  font-size: 13px !important;
  font-weight: var(--sptm-w-bold, 700) !important;
  opacity: 1;
  transform: none;
}

.spntf-wheel__preview {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: var(--spntf-navy);
  font-size: 12px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf-wheel__actions {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 9px;
}

.spntf .spntf-wheel__actions button {
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 1px solid rgba(0, 15, 89, 0.1) !important;
  border-radius: 12px !important;
  color: var(--spntf-navy) !important;
  background: #f6f7f9 !important;
  box-shadow: none !important;
  font-size: 11px !important;
  font-weight: var(--sptm-w-semibold, 600) !important;
  cursor: pointer;
}

.spntf .spntf-wheel__actions [data-spntf-calendar-confirm] {
  color: #fff !important;
  background: var(--spntf-navy) !important;
  border-color: var(--spntf-navy) !important;
}

.spntf .spntf-wheel__actions [data-spntf-calendar-confirm]:hover {
  background: #001b78 !important;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .spntf-calendar {
    position: fixed;
    z-index: 100000;
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-height: calc(100dvh - 24px);
    transform: translateY(24px) scale(.985);
    transform-origin: bottom center;
  }

  .spntf-calendar.is-visible {
    transform: none;
  }
}

/* File upload */

.spntf-upload {
  position: relative;
  min-height: 112px !important;
  display: grid !important;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 18px !important;
  border: 1px dashed rgba(0, 15, 89, 0.2) !important;
  border-radius: 17px !important;
  color: var(--spntf-text) !important;
  background: rgba(0, 15, 89, 0.022) !important;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-upload:hover,
.spntf-upload.is-dragging {
  border-color: rgba(0, 15, 89, 0.42) !important;
  background: rgba(0, 15, 89, 0.04) !important;
  box-shadow: 0 12px 28px rgba(0, 15, 89, 0.05) !important;
  transform: translateY(-1px);
}

.spntf-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.001;
}

.spntf-upload__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--spntf-navy);
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.spntf-upload__icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spntf-upload > span:nth-child(3) {
  min-width: 0;
}

.spntf-upload b,
.spntf-upload small {
  display: block;
}

.spntf-upload b {
  overflow: hidden;
  color: #263248;
  font-size: 13px;
  font-weight: var(--sptm-w-semibold, 600);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spntf-upload small {
  margin-top: 4px;
  color: var(--spntf-muted);
  font-size: 10px;
  font-weight: var(--sptm-w-regular, 400);
  line-height: 1.8;
}

.spntf-upload em {
  padding: 8px 12px;
  border: 1px solid var(--spntf-border);
  border-radius: 10px;
  color: var(--spntf-navy);
  background: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: var(--sptm-w-semibold, 600);
  white-space: nowrap;
}

/* Footer, captcha, consent */

.spntf-footer {
  margin-top: clamp(34px, 5vw, 52px);
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid color-mix(in srgb, var(--spntf-navy) 7%, transparent);
}

.spntf-captcha {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
}

.spntf-captcha > div {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px 7px 14px;
  border: 1px solid var(--spntf-border);
  border-radius: 14px;
  background: var(--spntf-soft);
}

.spntf-captcha > .spntf-error {
  grid-column: 1 / -1;
  margin-top: -4px;
}

.spntf-captcha label {
  margin-left: auto;
  color: #354158;
  font-size: 11px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf-captcha__code {
	min-width: 116px;
	width: 170px;
	height: 48px;
	object-fit: contain;
	padding: 7px 14px;
  border: 1px solid rgba(0, 15, 89, 0.06);
  border-radius: 10px;
  color: var(--spntf-navy);
  background:
    repeating-linear-gradient(135deg, transparent 0 6px, rgba(0, 15, 89, 0.04) 6px 7px),
    #fff;
  font-family: Tahoma, Arial, sans-serif !important;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.13em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
  user-select: none;
}

.spntf-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.spntf .spntf-captcha button {
  width: 34px !important;
  min-width: 34px !important;
  height: 34px !important;
  min-height: 34px !important;
  display: grid;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 9px !important;
  color: var(--spntf-navy) !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
}

.spntf-captcha button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spntf-captcha button.is-loading svg {
  animation: spntfRotate 700ms linear infinite;
}

.spntf-consent {
  display: block;
  margin: 18px 0 0;
  cursor: pointer;
}

.spntf-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0.001;
}

.spntf-consent > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--spntf-muted);
  font-size: 11px;
  line-height: 1.9;
}

.spntf-consent i {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border: 1px solid #c8ced8;
  border-radius: 6px;
  color: #fff;
  background: #fff;
  transition:
    border-color 180ms ease,
    background-color 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf-consent i svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 180ms ease, transform 220ms ease;
}

.spntf-consent input:checked + span i {
  border-color: var(--spntf-navy);
  background: var(--spntf-navy);
  transform: scale(1.04);
}

.spntf-consent input:checked + span i svg {
  opacity: 1;
  transform: none;
}

.spntf-consent input:focus-visible + span i {
  outline: 3px solid rgba(0, 15, 89, 0.12);
  outline-offset: 2px;
}

.spntf-submit-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.spntf-status {
  margin: 0;
  color: var(--spntf-muted);
  font-size: 12px;
  line-height: 1.9;
}

.spntf-status.is-error,
.spntf-consent.is-invalid > span {
  color: #b43b2d;
}

.spntf-status.is-success {
  color: #18794e;
}

.spntf .spntf-submit {
  min-width: 190px !important;
  min-height: 54px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 !important;
  padding: 0 22px !important;
  border: 1px solid var(--spntf-navy) !important;
  border-radius: 15px !important;
  color: #fff !important;
  background: var(--spntf-navy) !important;
  box-shadow: 0 13px 30px rgba(0, 15, 89, 0.16) !important;
  font-size: 13px !important;
  font-weight: var(--sptm-w-bold, 700) !important;
  cursor: pointer;
  appearance: none;
  transition:
    background-color 200ms ease,
    box-shadow 240ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.spntf .spntf-submit:hover {
  background: #000b43 !important;
  box-shadow: 0 18px 38px rgba(0, 15, 89, 0.22) !important;
  transform: translateY(-2px);
}

.spntf .spntf-submit:disabled {
  cursor: wait;
  opacity: 0.75;
  transform: none;
}

.spntf-submit__arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 200ms ease;
}

.spntf-submit:hover .spntf-submit__arrow {
  transform: translateX(-3px);
}

.spntf-spinner {
  width: 18px;
  height: 18px;
  display: none;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spntfRotate 700ms linear infinite;
}

.spntf-form.is-submitting .spntf-submit__arrow {
  display: none;
}

.spntf-form.is-submitting .spntf-spinner {
  display: block;
}

.spntf-form.is-complete .spntf-section,
.spntf-form.is-complete .spntf-footer > :not(.spntf-submit-row) {
  opacity: 0.54;
}

.spntf-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

@media (max-width: 780px) {
  .spntf {
    padding: 48px 12px 64px;
  }

  .spntf-form {
    padding: 23px 17px 27px;
    border-radius: 24px;
  }

  .spntf-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .spntf-field--wide {
    grid-column: auto;
  }

  .spntf-section__head {
    margin-bottom: 14px;
  }

  .spntf-section__head h3 {
    font-size: 18px;
  }

  .spntf-captcha {
    grid-template-columns: 1fr;
  }

  .spntf-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .spntf .spntf-submit {
    width: 100% !important;
  }

  .spntf-upload {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .spntf-upload em {
    display: none;
  }

  .spntf-calendar {
    right: 0;
    left: auto;
  }
}

@media (max-width: 430px) {
  .spntf-heading h2 {
    font-size: 32px;
  }

  .spntf-heading p {
    font-size: 13px;
  }

  .spntf-form {
    padding-inline: 13px;
    border-radius: 21px;
  }

  .spntf-choices {
    gap: 6px;
  }

  .spntf-choice > span {
    padding-inline: 9px;
    font-size: 12px;
  }

  .spntf-captcha > div {
    gap: 7px;
    padding-inline: 8px;
  }

  .spntf-captcha__code {
    min-width: 100px;
    padding-inline: 10px;
    font-size: 20px;
  }
}

/* Final action alignment, top-layer dropdowns and compact captcha */

.spntf-section.is-popover-open {
  position: relative;
  z-index: 5000 !important;
}

.spntf-form.is-popover-active > .spntf-footer,
.spntf-form.is-popover-active > .spntf-step-nav,
.spntf-form.is-popover-active > .spntf-progress {
  position: relative;
  z-index: 0;
}

.spntf-field.is-select-open,
.spntf-field.is-select-open .spntf-select__menu {
  z-index: 10000 !important;
}

.spntf-captcha {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  align-items: stretch;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 15, 89, 0.08);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 15, 89, 0.025), rgba(255, 118, 20, 0.025));
}

.spntf-captcha > .spntf-captcha__visual {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 15, 89, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
}

.spntf-captcha__copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.spntf-captcha__copy strong {
  color: var(--spntf-navy);
  font-size: 12px;
  font-weight: var(--sptm-w-bold, 700);
}

.spntf-captcha__copy small {
  color: var(--spntf-muted);
  font-size: 9px;
  line-height: 1.7;
}

.spntf-captcha__media {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.spntf-captcha__code {
  width: 142px;
  min-width: 112px;
  height: 48px;
  padding: 5px 8px;
  border-radius: 11px;
}

.spntf-captcha__answer {
  position: relative;
  min-width: 0;
  min-height: 74px;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  align-items: center;
  gap: 2px 8px;
  margin: 0 !important;
  padding: 9px 13px !important;
  border: 1px solid var(--spntf-border);
  border-radius: 14px;
  background: #fff;
  cursor: text;
  transition: border-color 180ms ease, box-shadow 200ms ease;
}

.spntf-captcha__answer:focus-within {
  border-color: rgba(0, 15, 89, .42);
  box-shadow: 0 0 0 4px rgba(0, 15, 89, .055);
}

.spntf-captcha__answer > span {
  color: #354158;
  font-size: 10px;
  font-weight: var(--sptm-w-semibold, 600);
}

.spntf-captcha__answer > input {
  width: 100% !important;
  min-width: 0 !important;
  height: 34px !important;
  grid-column: 1;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  color: var(--spntf-navy) !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: 18px !important;
  font-weight: var(--sptm-w-bold, 700) !important;
  letter-spacing: .12em;
  direction: ltr;
  text-align: right;
}

.spntf-captcha__answer > em {
  grid-column: 2;
  grid-row: 1 / span 2;
  padding: 5px 7px;
  border-radius: 8px;
  color: var(--spntf-muted);
  background: var(--spntf-soft);
  font-size: 9px;
  font-style: normal;
  white-space: nowrap;
}

.spntf-captcha > .spntf-error {
  padding-inline: 4px;
}

.spntf-form.is-last-step .spntf-step-nav {
  min-height: 0;
  margin: 14px 0 0;
  padding: 0;
  border: 0;
}

.spntf-form.is-last-step .spntf-step-nav .spntf-step-count {
  display: none;
}

.spntf-form.is-last-step .spntf-submit-row {
  display: grid;
  grid-template-columns: minmax(120px, .72fr) minmax(190px, 1fr);
  align-items: center;
  justify-content: end;
  gap: 12px;
}

.spntf-form.is-last-step .spntf-submit-row .spntf-status {
  grid-column: 1 / -1;
}

.spntf-form.is-last-step .spntf-submit-row .spntf-step-button--previous,
.spntf-form.is-last-step .spntf-submit-row .spntf-submit {
  width: 100% !important;
  min-height: 54px !important;
}

@media (max-width: 780px) {
  .spntf-captcha {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .spntf-captcha > .spntf-captcha__visual {
    flex-wrap: wrap;
  }

  .spntf-captcha__copy {
    flex: 1 1 130px;
  }

  .spntf-captcha__media {
    flex: 1 1 160px;
    justify-content: flex-end;
  }

  .spntf-form.is-last-step .spntf-submit-row {
    grid-template-columns: minmax(105px, .7fr) minmax(160px, 1fr);
  }
}

@media (max-width: 430px) {
  .spntf-captcha__code {
    width: 132px;
  }

  .spntf-form.is-last-step .spntf-submit-row {
    gap: 8px;
  }

  .spntf-form.is-last-step .spntf-submit-row .spntf-step-button--previous,
  .spntf-form.is-last-step .spntf-submit-row .spntf-submit {
    min-width: 0 !important;
    padding-inline: 10px !important;
    font-size: 11px !important;
  }
}

/* v1.4.0 final cascade — compact, step-based forms on every breakpoint. */
body .spntf { padding-block: clamp(34px, 5vw, 62px) !important; }
body .spntf .spntf-heading { margin-bottom: clamp(24px, 3vw, 38px) !important; }
body .spntf .spntf-form { padding: clamp(20px, 3vw, 34px) !important; }
body .spntf .spntf-form.is-multistep .spntf-section[hidden],
body .spntf .spntf-form.is-multistep:not(.is-last-step) > .spntf-footer { display: none !important; }
body.spntf-has-full-form .sps-call-fab { display: none !important; }

@media (max-width: 620px) {
  body .spntf { padding: 24px 12px 34px !important; }
  body .spntf .spntf-form { padding: 18px 14px !important; border-radius: 22px !important; }
  body .spntf .spntf-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
  body .spntf .spntf-progress__item b { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .spntf *,
  .spntf *::before,
  .spntf *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   spntf-overflow-guard (v1.1.1)
   Nothing inside the form may ever be wider than the screen.
   ========================================================================== */

.spntf {
  overflow-x: clip;
  overflow-y: visible;
}

.spntf,
.spntf-shell,
.spntf-heading,
.spntf-form,
.spntf-section,
.spntf-grid,
.spntf-field,
.spntf-footer,
.spntf-submit-row {
  min-width: 0;
  max-width: 100%;
}

.spntf-grid > *,
.spntf-field > *,
.spntf-choices,
.spntf-choice,
.spntf-captcha,
.spntf-captcha > div,
.spntf-upload,
.spntf-upload > * {
  min-width: 0;
  max-width: 100%;
}

.spntf input,
.spntf select,
.spntf textarea,
.spntf .spntf-select,
.spntf .spntf-select__trigger {
  max-width: 100% !important;
  min-width: 0 !important;
}

/* Native date and time inputs refuse to shrink on several mobile browsers. */
.spntf input[type="date"],
.spntf input[type="time"],
.spntf input[type="datetime-local"],
.spntf input[type="month"],
.spntf input[type="number"],
.spntf input[type="tel"],
.spntf input[type="email"],
.spntf input[type="url"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

/* Long file names, e-mail addresses and links must wrap, not stretch. */
.spntf p,
.spntf label,
.spntf small,
.spntf em,
.spntf h2,
.spntf h3,
.spntf .spntf-select__value,
.spntf .spntf-select__option {
  overflow-wrap: anywhere;
}

/* Popovers stay inside the viewport. */
.spntf-select__menu,
.spntf-calendar {
  max-width: calc(100vw - 32px);
}

@media (max-width: 430px) {
  .spntf-captcha__code {
    min-width: 0;
    flex: 1 1 auto;
    text-align: center;
  }

  .spntf .spntf-submit {
    min-width: 0 !important;
  }
}
