.zix-sq {
  --primary: #1677ff;
  --navy: #10253f;
  --bg: #f4f8fc;
  --header-start: #10253f;
  --header-end: #174d78;
  --title-color: #fff;
  --subtitle-color: #dce8f4;
  direction: rtl;
  display: block !important;
  width: calc(100% - 40px) !important;
  max-width: 760px !important;
  margin: 32px auto !important;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 18px 60px rgba(16, 37, 63, 0.13);
  overflow: hidden;
  color: var(--navy);
  font-family: Arial, "Heebo", sans-serif;
}
.zix-sq * {
  box-sizing: border-box;
}
.zix-sq__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(20px, 4vw, 32px);
  background: linear-gradient(135deg, var(--header-start), var(--header-end));
}
.zix-sq__header h2 {
  color: var(--title-color);
  font-size: clamp(22px, 4vw, 29px);
  line-height: 1.2;
  margin: 0 0 7px;
}
.zix-sq__header p {
  color: var(--subtitle-color);
  font-size: clamp(14px, 2vw, 17px);
  line-height: 1.5;
  margin: 0;
}
.zix-sq__icon {
  color: var(--title-color);
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 31px;
  font-weight: 700;
}
.zix-sq__form {
  padding: 24px clamp(18px, 4vw, 32px) 26px;
}
.zix-sq__stage {
  min-height: 260px;
}
.zix-sq h3 {
  font-size: clamp(21px, 4vw, 26px);
  line-height: 1.35;
  margin: 15px 0 28px;
  text-align: center;
}
.zix-sq output {
  display: block;
  margin: auto auto 24px;
  text-align: center;
  color: var(--primary);
  font-size: clamp(29px, 6vw, 35px);
  font-weight: 800;
}
.zix-sq input[type="range"] {
  width: 100%;
  accent-color: var(--primary);
}
.zix-sq__range-labels {
  display: flex;
  justify-content: space-between;
  color: #718096;
  margin-top: 8px;
}
.zix-sq__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.zix-sq__option {
  min-height: 54px;
  border: 2px solid #dce7f2;
  background: #fff;
  border-radius: 14px;
  padding: 14px 10px;
  color: var(--navy);
  font-size: 16px;
  cursor: pointer;
  transition: 0.16s;
}
.zix-sq__option:hover,
.zix-sq__option.is-selected {
  border-color: var(--primary);
  background: #eef6ff;
  color: var(--primary);
  transform: translateY(-1px);
}
.zix-sq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.zix-sq__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
  font-weight: 700;
  min-width: 0;
}
.zix-sq input:not([type="range"]):not([type="checkbox"]),
.zix-sq select,
.zix-sq textarea {
  width: 100%;
  max-width: 100%;
  min-height: 52px;
  border: 1.5px solid #cfdae6;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--navy);
  outline: none;
}
.zix-sq textarea {
  min-height: 130px;
  resize: vertical;
}
.zix-sq input:focus,
.zix-sq select:focus,
.zix-sq textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.12);
}
.zix-sq__question {
  margin-bottom: 24px;
}
.zix-sq__question p {
  font-weight: 700;
}
.zix-sq__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 25px;
}
.zix-sq__nav button {
  min-height: 50px;
  border: 0;
  border-radius: 13px;
  padding: 13px 28px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}
.zix-sq__next {
  background: var(--primary);
  color: #fff;
  margin-right: auto;
}
.zix-sq__back {
  background: #e9f0f7;
  color: var(--navy);
}
.zix-sq__nav button:disabled {
  opacity: 0.55;
}
.zix-sq__error {
  min-height: 22px;
  color: #c62828;
  font-weight: 700;
  margin-top: 10px;
}
.zix-sq__trust {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px clamp(18px, 4vw, 28px);
  background: var(--bg);
  font-size: 14px;
}
.zix-sq__trust strong {
  width: 100%;
  text-align: center;
}
.zix-sq__review {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}
.zix-sq__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
  background: var(--bg);
  padding: 16px;
  border-radius: 12px;
}
.zix-sq__consent input {
  flex: 0 0 auto;
  margin-top: 5px;
}
.zix-sq__consent strong {
  color: #b42318;
  font-size: 13px;
}
.zix-sq__consent--marketing {
  margin-top: 12px;
  background: #f8fafc;
  border: 1px solid #dce7f2;
}
.zix-sq__consent small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 13px;
}
.zix-sq__success {
  text-align: center;
  padding: 30px;
}
.zix-sq__success span {
  display: grid;
  place-items: center;
  margin: auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  font-size: 40px;
}
.zix-sq__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none !important;
}
.zix-sq__hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
@media (max-width: 600px) {
  .zix-sq {
    width: calc(100% - 16px) !important;
    max-width: none !important;
    margin: 8px auto !important;
    border-radius: 18px;
  }
  .zix-sq__header {
    gap: 12px;
  }
  .zix-sq__icon {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 26px;
  }
  .zix-sq__grid,
  .zix-sq__options {
    grid-template-columns: 1fr;
  }
  .zix-sq__stage {
    min-height: 300px;
  }
  .zix-sq__trust {
    flex-direction: column;
    gap: 10px;
  }
  .zix-sq__trust strong {
    text-align: right;
  }
  .zix-sq__nav button {
    flex: 1;
    padding: 12px;
  }
  .zix-sq__next {
    margin-right: 0;
  }
}
@media (max-width: 380px) {
  .zix-sq__icon {
    display: none;
  }
  .zix-sq__nav {
    flex-direction: column-reverse;
  }
  .zix-sq__nav button {
    width: 100%;
  }
}
