:root {
  color-scheme: light;
  --flow-gradient: linear-gradient(
    288.43deg,
    #1c2c84 -5.15%,
    #853b9e 26.91%,
    #df1729 61.18%,
    #f8770e 86.16%
  );
}

html,
body {
  margin: 0px;
  padding: 0px;
  max-width: 100%;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 54px;
  font-weight: 700;
  margin: 0px 0px;
}

h2 {
  font-size: 54px;
  font-weight: 500;
  margin: 0px;
  text-align: center;
}

h3 {
  font-size: 40px;
  font-weight: 400;
}

h4 {
  font-size: 32px;
  font-weight: 600;
}

h5 {
  font-size: 32px;
  font-weight: 500;
  margin: 0px;
}

p {
  font-size: 18px;
  margin: 0px;
}
.spinner-wrapper-right {
  position: absolute;
  top: 1650px;
  right: -150px;
  height: 361px;
  width: 361px;
  overflow: hidden;
  pointer-events: none;
}
.spinner-right {
  width: 100%;
  height: 100%;
  animation: spin-right 30s linear infinite;
  transform-origin: center;
}

@keyframes spin-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.spinner-wrapper-left {
  position: absolute;
  top: 1800px;
  left: -220px;
  height: 530px;
  width: 530px;
  overflow: hidden;
  pointer-events: none;
}
.spinner-left {
  width: 100%;
  height: 100%;
  animation: spin-left 30s linear infinite;
  transform-origin: center;
}

@keyframes spin-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.sqm-container-flex-col {
  max-width: 1180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sqm-gradient-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-top: -1196px;
  padding-top: 1208px;
}

.sqm-gradient-header-curve {
  margin-top: -150px;
  margin-bottom: -60px;
}

.sqm-gradient-header-curve-prices {
  margin-top: -50px;
  margin-bottom: -60px;
}

.sqm-gradient-header-wrapper {
  display: flex;
  flex-direction: row;
  margin-top: 64px;
  max-width: 1180px;
}

.sqm-gradient-header::before {
  content: '';
  position: absolute;
  width: 1500%;
  height: 1500%;
  left: -675%;
  top: -675%;
  background: linear-gradient(
    90deg,
    #1c2c84 0%,
    #1c2c84 40%,
    #853b9e 48.33%,
    #df1729 51.33%,
    #f8770e 60%,
    #f8770e 100%
  );
  z-index: -1;
  animation: spin-gradient 60s linear infinite;
  transform-origin: center;
}

@keyframes spin-gradient {
  to {
    transform: rotate(360deg);
  }
}

.sqm-gradient-header-image {
  margin-left: 84px;
  flex: 0 0 624px;
  width: 100%;
  max-width: 624px;
}

.sqm-gradient-header-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sqm-gradient-header p {
  font-weight: 500;
  font-size: 18px;
}

.sqm-gradient-header span {
  font-weight: 500;
  font-size: 24px;
}

.sqm-gradient-header-signup-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 1150px;
  width: 100%;
  gap: 32px;
}

.sqm-gradient-header-form {
  max-width: 834px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin-top: 24px;
}

.sqm-gradient-header-form div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.sqm-gradient-header-form div p {
  font-size: 20px;
  font-weight: 700;
}

.sqm-gradient-header-form div input {
  padding: 0px 16px;
  font-size: 20px;
  border-radius: 8px;
  height: 40px;
  color: white;
  background: #ffffff24;
  border: 1px solid #ffffff33;
}
.sqm-gradient-header-form .sqm-button--primary {
  padding: 0;
  width: 100%;
}

.sqm-gradient-header-form div input::placeholder {
  color: white;
  opacity: 1;
}

.sqm-gradient-header-form div input::-webkit-input-placeholder {
  color: lightgray;
}
.sqm-gradient-header-form div input::-moz-placeholder {
  color: lightgray;
  opacity: 1;
}
.sqm-gradient-header-form div input:-ms-input-placeholder {
  color: lightgray;
}
.sqm-gradient-header-form div input:-moz-placeholder {
  color: lightgray;
  opacity: 1;
}

.sqm-gradient-header-form div span {
  font-size: 20px;
  font-weight: 400;
}

.sqm-gradient-header-signup-text p {
  font-weight: 500;
  font-size: 18px;
}

.sqm-gradient-header-signup-text span {
  font-weight: 500;
  font-size: 24px;
}

.sqm-divider {
  width: 100%;
  height: 1px;
  background-color: #dcdddf;
}

.sqm-button__dropdown {
  border-style: solid;
  border-width: 2px;
  border-radius: 24px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  height: 48px;
  font-size: 16px;
  color: white;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  vertical-align: middle;
}

.sqm-button__dropdown img {
  margin-left: 6px;
  font-size: 21px;
}

.sqm-button__dropdown:hover {
  cursor: pointer;
}

.sqm-button--primary {
  border-style: solid;
  border-width: 2px;
  border-radius: 24px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  height: 44px;
  font-size: 16px;
  padding: 0px 30px;
  color: black;
  background: white;
  border-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sqm-button--primary:hover {
  border-color: white;
  background: transparent;
  color: white;
  cursor: pointer;
}

.sqm-button--secondary {
  border-style: solid;
  border-width: 2px;
  border-radius: 24px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  height: 44px;
  font-size: 16px;
  padding: 0px 30px;
  color: white;
  border-color: white;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sqm-button--secondary:hover {
  border-color: white;
  background: white;
  color: black;
  cursor: pointer;
}

.sqm-button--tertiary {
  border-style: solid;
  border-width: 2px;
  border-radius: 24px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  height: 44px;
  font-size: 16px;
  padding: 0px 30px;
  color: white;
  background: #592f83;
  border-color: #592f83;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sqm-button--tertiary:hover {
  color: #592f83;
  background: transparent;
  border-color: #592f83;
  cursor: pointer;
}

.sqm-button--quaternary {
  border-style: solid;
  border-width: 2px;
  font-family: inherit;
  font-weight: 500;
  height: 44px;
  font-size: 16px;
  color: white;
  background: transparent;
  border-radius: 0;
  border: none;
  border-radius: 50%;
  text-decoration: underline;
  padding: 10px 0px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sqm-button--quaternary:hover {
  color: #05022d;
  cursor: pointer;
}

.sqm-button--quintary {
  border-style: solid;
  border-width: 2px;
  border-radius: 24px;
  font-family: inherit;
  font-weight: 500;
  text-decoration: none;
  height: 44px;
  font-size: 16px;
  padding: 0px 30px;
  color: #592f83;
  border-color: #592f83;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sqm-button--quintary:hover {
  border-color: #592f83;
  background: #592f83;
  color: white;
  cursor: pointer;
}

.text-cycle {
  position: relative;
  height: 74px;
  width: 800px;
  overflow: hidden;
  padding: 10px 0;
}

.text-item {
  position: absolute;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.text-item.animate-in {
  animation: fadeInUp 0.6s forwards;
}

.text-item.animate-out {
  animation: fadeOutUp 0.6s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes cycleText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
    transform: translateY(0);
  }
  40% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.sqm-logo-section {
  padding: 50px 0;
  margin-top: 48px;
  text-align: center;
  background: transparent;
}

.sqm-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  -webkit-mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;

  mask-image: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
}

.sqm-carousel-track {
  display: flex;
  align-items: center;
  animation: carousel-scroll 60s linear infinite;
}

.sqm-carousel-track .sqm-logo {
  flex: 0 0 auto;
  width: 140px;
  margin: 0 20px;
}

.sqm-carousel-track .sqm-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@keyframes carousel-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.sqm-button-group {
  display: flex;
  gap: 10px;
  margin-bottom: 34px;
}

.sqm-header-image {
  width: 80%;
  max-width: 1175px;
  max-height: 631px;
  display: block;
  margin-top: 30px;
}

.sqm-header-subtitle {
  margin-top: 64px;
  max-width: 1136px;
  text-align: center;
}

.sqm-header-button {
  margin-top: 46px;
}

.sqm-container {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sqm-subtitle {
  text-align: center;
}

.sqm-gradient-text {
  background: linear-gradient(
    288.43deg,
    #1c2c84 -5.15%,
    #853b9e 26.91%,
    #df1729 61.18%,
    #f8770e 86.16%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sqm-flow-cards {
  margin-top: 80px;
  display: flex;
  gap: 16px;
}

.sqm-flow-card {
  border-radius: 8px;
  border: solid 2px #eaeef3;
  width: 266px;
  height: 458px;
  display: flex;
  flex-direction: column;
  background-color: white;
  align-items: center;
  padding: 14px 14px 0px 14px;
  z-index: 10;
}

.sqm-flow-card-img {
  height: 329px;
  width: 222px;
}

.sqm-flow-card__button {
  width: 100%;
  margin-bottom: 38px;
  color: #592f83;
  border-color: #592f83;
  background: transparent;
  padding-left: 0px;
  padding-right: 0px;
}

.sqm-flow-card__button:hover {
  color: white;
  border-color: #592f83;
  background: #592f83;
}

.sqm-analytics {
  display: flex;
  border-radius: 8px;
  border: solid 2px #eaeef3;
  justify-content: space-between;
  width: 1240px;
}

.sqm-analytics-text {
  display: flex;
  flex-direction: column;
  max-width: 270px;
  padding: 14px;
  gap: 14px;
}

.sqm-gradient-wave-section {
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.sqm-gradient-wave-section::before {
  content: '';
  position: absolute;
  width: 5000%;
  height: 5000%;
  left: -2450%;
  top: -2450%;
  background: linear-gradient(
    90deg,
    #1c2c84 0%,
    #1c2c84 49%,
    #853b9e 49.66%,
    #df1729 50.33%,
    #f8770e 51%,
    #f8770e 100%
  );
  z-index: -1;
  animation: spin-gradient 60s linear infinite;
  transform-origin: center;
}

.sqm-gradient-wave-section h4 {
  font-weight: 500;
  text-align: center;
}

.sqm-industry-cards {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 64px;
  padding: 16px;
}

.sqm-industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sqm-industry-card-img {
  width: 556px;
  height: 416px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.sqm-contacts-container {
  margin-top: 128px;
  margin-bottom: 128px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
}

.sqm-contact {
  display: flex;
  width: 465px;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.sqm-contact span {
  font-size: 28px;
  font-weight: 500;
  color: #05022d;
}

.sqm-contact-white {
  display: flex;
  width: 465px;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

.sqm-contact-white span {
  font-size: 28px;
  font-weight: 500;
  color: white;
}

.sqm-gradient-circle {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: linear-gradient(
    288.43deg,
    #1c2c84 -5.15%,
    #853b9e 26.91%,
    #df1729 61.18%,
    #f8770e 86.16%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.sqm-gradient-circle-small {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: linear-gradient(
    288.43deg,
    #1c2c84 -5.15%,
    #853b9e 26.91%,
    #df1729 61.18%,
    #f8770e 86.16%
  );
  display: flex;
  justify-content: center;
  align-items: center;
}

.sqm-gradient-circle-small img {
  height: 30px;
  width: 30px;
}

.sqm-white-circle {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sqm-marketing-feature-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  max-width: 1251px;
  margin: 0px auto;
}

.sqm-marketing-feature {
  max-width: 394px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sqm-marketing-feature span {
  text-decoration: underline;
  font-size: 18px;
  font-weight: 700;
}

.sqm-gradient-section {
  width: 100%;
  padding: 48px 0px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.sqm-gradient-section::before {
  content: '';
  position: absolute;
  width: 5000%;
  height: 5000%;
  left: -2450%;
  top: -2450%;
  background: linear-gradient(
    90deg,
    #1c2c84 0%,
    #1c2c84 49%,
    #853b9e 49.66%,
    #df1729 50.33%,
    #f8770e 51%,
    #f8770e 100%
  );
  z-index: -1;
  animation: spin-gradient 60s linear infinite;
  transform-origin: center;
}

.sqm-faq {
  max-width: 1240px;
  width: 100%;
}

.sqm-faq-title {
  font-size: 52px;
  font-weight: 700;
  margin-top: 86px;
  width: 100%;
}

.sqm-faq-question-container {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sqm-faq-question {
  font-size: 32px;
  font-weight: 600;
  width: 100%;
}

.sqm-faq-answer {
  font-size: 18px;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.sqm-faq-answer.visible {
  max-height: 500px;
  opacity: 1;
}

.sqm-faq-question-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}

.sqm-faq-toggle-btn {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  align-items: center;
  display: flex;
}

.sqm-faq-divider {
  width: 100%;
  height: 1px;
  background-color: #dcdddf;
  margin-top: 20px;
  margin-bottom: 40px;
}

.sqm-faq-expanded {
  margin-bottom: 20px;
}

.sqm-hidden {
  display: none;
}

.sqm-automated-flow-circles-container {
  margin: 48px 0px 120px 0px;
  width: 90%;
  max-width: 1710px;
  padding: 18px 0px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-items: center;
}

.sqm-automated-flow-circles-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  height: 100%;
  gap: 24px;
}

.sqm-automated-flow-circles {
  width: 275px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sqm-automated-flow-circles p {
  margin-top: 24px;
  font-size: 26px;
  font-weight: 600;
  color: #05022d;
}

.sqm-automated-flow-circles span {
  font-size: 18px;
  font-weight: 500;
  color: #05022d;
}

.sqm-integrations-circles-container {
  margin: 48px 0px 120px 0px;
  width: 90%;
  max-width: 1710px;
  padding: 18px 0px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-items: center;
}

.sqm-integrations-circles-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
}

.sqm-integrations-circles {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.sqm-integrations-circles p {
  margin-top: 24px;
  font-size: 26px;
  font-weight: 600;
  color: #05022d;
}

.sqm-integrations-circles span {
  font-size: 18px;
  font-weight: 500;
  color: #05022d;
}

.sqm-flows-title {
  width: 100%;
  max-width: 1060px;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
}

.sqm-flows-table {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}

.sqm-flows-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sqm-flows-row-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 120px;
}

.sqm-flows-row.header {
  margin-bottom: 32px;
  text-align: left;
}

.sqm-flows-row.header .cell.flow {
  font-weight: 700;
  font-size: 32px;
  display: block;
  text-align: left;
  gap: 0;
}

.sqm-flows-row.header .cell.action {
  font-weight: 700;
  font-size: 32px;
  display: block;
  text-align: left;
  width: 280px;
  gap: 0;
}

.cell.action {
  font-size: 28px;
  font-weight: 500;
  height: 68px;
  width: 248px;
  text-align: left;
  align-content: center;
}

.cell.flow {
  font-size: 28px;
  font-weight: 500;
  height: 68px;
  display: flex;
  align-items: center;
  text-align: left;
  width: 328px;
  gap: 16px;
}

.connector {
  display: flex;
  align-items: center;
  max-width: 459px;
  width: 100%;
  margin: 0 8px;
}

.dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flow-gradient);
}

.line {
  flex-grow: 1;
  height: 2px;
  background: var(--flow-gradient);
  mask-image: repeating-linear-gradient(
    to right,
    black 0,
    black 6px,
    transparent 6px,
    transparent 12px
  );
  mask-size: auto 100%;
  mask-repeat: repeat-x;
  -webkit-mask-image: repeating-linear-gradient(
    to right,
    black 0,
    black 6px,
    transparent 6px,
    transparent 12px
  );
  -webkit-mask-size: auto 100%;
  -webkit-mask-repeat: repeat-x;
}

.triangle {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--flow-gradient);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.flow-icon {
  width: 34px;
  height: 34px;
}

.sqm-automaution-flow-cards {
  display: grid;
  grid-template-columns: repeat(2, 558px);
  gap: 48px;
}

.sqm-automaution-flow-cards h4 {
  margin: 0 0 16px 0;
}

.sqm-automaution-flow-cards span {
  font-size: 20px;
  font-weight: 400;
}

.sqm-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 128px;
  padding: 64px 0px;
}

.sqm-card {
  width: 100%;
  max-width: 1240px;
  display: flex;
}

.sqm-card p {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sqm-card span {
  display: flex;
  font-size: 20px;
  font-weight: 400;
}

.sqm-card ul {
  font-size: 20px;
  font-weight: 400;
  padding-left: 30px;
  margin: 0px;
}

.sqm-card-img-gradient {
  width: 580px;
  height: 424px;
  background: linear-gradient(
    288.43deg,
    #1c2c84 -5.15%,
    #853b9e 26.91%,
    #df1729 61.18%,
    #f8770e 86.16%
  );
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform-origin: center center;
}

.sqm-card-img-gradient-small {
  width: 596px;
  height: 344px;
  background: linear-gradient(
    288.43deg,
    #1c2c84 -5.15%,
    #853b9e 26.91%,
    #df1729 61.18%,
    #f8770e 86.16%
  );
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transform-origin: center center;
}

.sqm-card-img-gradient img {
  width: auto;
  height: auto;
  transform-origin: center center;
}

.sqm-card-img-gradient-woocommer-integration {
  position: absolute;
  margin-bottom: 135px;
}

.sqm-card-img-gradient-shopify-integration {
  position: absolute;
  margin-bottom: 117px;
  margin-right: 60px;
}

.sqm-card-img-gradient-prestashop-integration {
  position: absolute;
  margin-bottom: 120px;
  margin-left: 55px;
}

.sqm-card-img-gradient-magento-integration {
  position: absolute;
  margin-bottom: 38px;
  margin-right: 55px;
}

.sqm-card-text {
  margin-top: 20px;
  margin-left: 40px;
  max-width: 599px;
}

.sqm-card--reverse {
  flex-direction: row-reverse;
}

.sqm-card--reverse .sqm-card-text {
  margin-left: 0px;
  margin-right: 40px;
}

.sqm-integrations-wrapper {
  position: relative;
  width: 800px;
  height: 800px;
  margin: 0 auto;
}

.outer-wrapper,
.inner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}

.outer-wrapper {
  animation: spin-ccw 60s linear infinite;
}
.inner-wrapper {
  animation: spin-cw 40s linear infinite;
}

.sqm-integration-circle {
  --angle: 0deg;
  --radius: 330px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: calc(-1 * 100px / 2) 0 0 calc(-1 * 100px / 2);
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--angle)) translate(var(--radius))
    rotate(calc(-1 * var(--angle)));
}

.sqm-integration-circle.inner {
  --radius: 180px;
}

.sqm-integration-circle.center {
  width: 140px;
  height: 100px;
  background: none;
  transform: translate(-15%, -15%);
}

.sqm-integration-circle.center img {
  width: 100%;
  height: auto;
}

.sqm-integration-circle img {
  height: 50px;
  display: block;
  transform-origin: center center;
}

.sqm-integration-circle.a {
  --angle: 0deg;
}
.sqm-integration-circle.b {
  --angle: 30deg;
}
.sqm-integration-circle.c {
  --angle: 60deg;
}
.sqm-integration-circle.d {
  --angle: 90deg;
}
.sqm-integration-circle.e {
  --angle: 120deg;
}
.sqm-integration-circle.f {
  --angle: 150deg;
}
.sqm-integration-circle.g {
  --angle: 180deg;
}
.sqm-integration-circle.h {
  --angle: 210deg;
}
.sqm-integration-circle.i {
  --angle: 240deg;
}
.sqm-integration-circle.j {
  --angle: 270deg;
}
.sqm-integration-circle.k {
  --angle: 300deg;
}
.sqm-integration-circle.l {
  --angle: 330deg;
}

.sqm-integration-circle.inner.m {
  --angle: 90deg;
}
.sqm-integration-circle.inner.n {
  --angle: 150deg;
}
.sqm-integration-circle.inner.o {
  --angle: 30deg;
}
.sqm-integration-circle.inner.p {
  --angle: 210deg;
}
.sqm-integration-circle.inner.r {
  --angle: 330deg;
}
.sqm-integration-circle.inner.s {
  --angle: 270deg;
}

@keyframes spin-ccw {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
@keyframes spin-cw {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes icon-spin-cw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes icon-spin-ccw {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.outer-wrapper .sqm-integration-circle img {
  animation: icon-spin-cw 60s linear infinite;
}
.inner-wrapper .sqm-integration-circle img {
  animation: icon-spin-ccw 40s linear infinite;
}

.sqm-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sqm-diagram-logo {
  background: transparent;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 8px white solid;
}

.sqm-diagram-line {
  width: 8px;
  height: 164px;
  background-color: white;
  margin-top: -4px;
  z-index: 1;
}

.sqm-diagram-half-rounded-div {
  width: 681px;
  height: 116px;
  border-top: 8px solid white;
  border-left: 8px solid white;
  border-right: 8px solid white;
  border-bottom: none;
  border-top-left-radius: 54px;
  border-top-right-radius: 54px;
  background-color: transparent;
  margin-bottom: 20px;
}

.sqm-diagram-title {
  font-size: 54px;
  font-weight: 500;
  padding-bottom: 28px;
}

.sqm-diagram-step {
  display: flex;
  flex-direction: row;
  text-align: left;
  max-width: 550px;
  width: 100%;
  margin-bottom: 28px;
}

.sqm-diagram-icon {
  padding-top: 10px;
}

.sqm-diagram-text {
  margin-left: 16px;
}

.sqm-diagram-text strong {
  font-size: 32px;
  font-weight: 600;
}

.sqm-diagram-text small {
  display: block;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 400;
}

.sqm-diagram-columns-container {
  width: 681px;
  position: relative;
  height: 850px;
}

.sqm-diagram-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: absolute;
  top: 0;
}

.sqm-diagram-left-column {
  left: 0;
  transform: translateX(-50%);
}

.sqm-diagram-right-column {
  right: 0;
  transform: translateX(50%);
}

.sqm-diagram-arrow-down {
  width: 0;
  height: 0;
  margin: 8px auto 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid #333;
}

.sqm-integrations-text-wrapper {
  margin: 160px 0 80px 0px;
  text-align: center;
}

@media screen and (max-width: 1439px) {
  .sqm-flow-cards {
    display: grid;
    grid-template-columns: repeat(2, 298px);
    justify-content: center;
    gap: 54px;
    z-index: 10;
  }
  .sqm-analytics {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
  }

  .sqm-analytics img {
    width: 610px;
    height: auto;
    margin-top: 16px;
  }
}

@media screen and (max-width: 1480px) {
  .sqm-contacts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sqm-contacts-container > div:nth-child(4) {
    display: none;
  }

  .sqm-contacts-container > .sqm-contact:nth-child(1),
  .sqm-contacts-container > .sqm-contact:nth-child(3) {
    display: flex;
    justify-content: center;
  }

  .sqm-contacts-container > .sqm-contact:nth-child(5) {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }

  .sqm-contacts-container > .sqm-contact-white:nth-child(1),
  .sqm-contacts-container > .sqm-contact-white:nth-child(3) {
    display: flex;
    justify-content: center;
  }

  .sqm-contacts-container > .sqm-contact-white:nth-child(5) {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
}
@media screen and (max-width: 1300px) {
  .sqm-container {
    max-width: 90%;
  }

  .sqm-industry-cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(6, auto);
  }

  .sqm-integrations-circles-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .sqm-integrations-circles-wrapper > div:nth-child(4) {
    display: none;
  }

  .sqm-integrations-circles-wrapper > .sqm-integrations-circles:nth-child(1),
  .sqm-integrations-circles-wrapper > .sqm-integrations-circles:nth-child(3) {
    display: flex;
    justify-content: center;
  }

  .sqm-integrations-circles-wrapper > .sqm-integrations-circles:nth-child(5) {
    width: 400px;
    margin: 40px auto 0;
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
  }

  .sqm-marketing-feature-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 812px;
  }
}

.sqm-checkmarks {
  display: flex;
  justify-content: center;
  gap: 240px;
  width: 100%;
  margin-bottom: 60px;
}

.sqm-checkmarks-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.sqm-checkmarks-column {
  width: 460px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sqm-checkmarks-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  font-size: 40px;
  font-weight: 500;
  align-items: center;
}

.sqm-vertical-stepper {
  position: relative;
  max-width: 1200px;
  margin: 160px auto 0 auto;
  padding-top: 40px;
  text-align: center;
  margin-bottom: 152px;
}

.sqm-top-circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  margin: 0 auto 164px auto;
}

.sqm-top-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sqm-initial-text {
  margin: 160px auto 80px;
  max-width: 600px;
  position: relative;
}

.sqm-initial-text::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  width: 8px;
  height: 160px;
  background: #dcdddf;
  transform: translateX(-50%);
}

.sqm-initial-text::after {
  content: '';
  position: absolute;
  top: 70px;
  left: 50%;
  width: 8px;
  height: 160px;
  background: #dcdddf;
  transform: translateX(-50%);
}

.sqm-stepper-container {
  position: relative;
  padding: 0 20px;
}

.sqm-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 8px;
  background: #dcdddf;
  transform: translateX(-50%);
  z-index: 1;
}

.sqm-vertical-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 1926px);
  background: linear-gradient(
    to bottom,
    white 0%,
    white 50%,
    transparent 50%,
    transparent 100%
  );
  background-size: 8px 20px;
  background-repeat: repeat-y;
}

.sqm-stepper-item {
  display: flex;
  position: relative;
  z-index: 2;
}

.sqm-step-left {
  justify-content: flex-start;
  text-align: left;
}

.sqm-step-right {
  text-align: left;
}

.sqm-step-number {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f2e8fc;
  color: #592f82;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 54px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.sqm-step-content {
  width: calc(50% - 72px);
}
.sqm-step-content span {
  font-size: 32px;
  font-weight: 600;
}

.sqm-step-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 48px;
}

.sqm-step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.step-image {
  display: block;
  margin-left: auto;
  margin-right: 0;
}

.sqm-step-left .sqm-step-content {
  margin-right: auto;
  padding-right: 58px;
  padding-top: 36px;
}

.sqm-step-right .sqm-step-content {
  margin-left: auto;
  padding-left: 58px;
  padding-top: 36px;
}

.flow-curves {
  display: flex;
  height: 300px;
  width: 1240px;
  position: relative;
}

.flow-curves-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  background: linear-gradient(
    318.54deg,
    #1c2c84 6.04%,
    #853b9e 39.06%,
    #df1729 62.51%,
    #f8770e 84.32%
  );
  z-index: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-curves-circle img {
  max-width: 60%;
  height: auto;
  display: block;
}

.flow-curve-outer-left {
  position: absolute;
  left: 150px;
}

.flow-curve-inner-left {
  position: absolute;
  left: 450px;
}

.flow-curve-outer-right {
  position: absolute;
  left: 650px;
}

.flow-curve-inner-right {
  position: absolute;
  left: 650px;
}

.flow-curve-outer-left-md {
  display: none;
  position: absolute;
  overflow: visible;
  left: 400px;
}

.flow-curve-outer-right-md {
  display: none;
  position: absolute;
  overflow: visible;
  left: 400px;
}

.flow-curve-outer-left-sm {
  display: none;
  position: absolute;
  overflow: visible;
  left: 10px;
}

.flow-curve-inner-left-sm {
  display: none;
  position: absolute;
  overflow: visible;
  left: 50px;
}

.flow-curve-outer-right-sm {
  display: none;
  position: absolute;
  overflow: visible;
  left: -170px;
}

.flow-curve-inner-right-sm {
  display: none;
  position: absolute;
  overflow: visible;
  left: 90px;
}

@media screen and (max-width: 1500px) {
  .sqm-gradient-header-curve {
    margin-top: -100px;
    margin-bottom: -60px;
  }

  .sqm-contacts-container {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 1440px) {
  .flow-curve-outer-left {
    display: none;
  }
  .flow-curve-outer-right {
    display: none;
  }

  .flow-curve-outer-left-md {
    display: block;
  }

  .flow-curve-outer-right-md {
    display: block;
  }
}

@media (max-width: 1255px) {
  .sqm-carousel {
    max-width: 800px;
  }
}

@media (max-width: 1250px) {
  .sqm-gradient-header-curve {
    margin-top: -150px;
    margin-bottom: -60px;
  }
  .sqm-gradient-header-wrapper {
    flex-direction: column;
    gap: 84px;
    align-items: center;
    max-width: 80%;
  }

  .sqm-gradient-header-image {
    margin: 0;
  }

  .sqm-gradient-header-image img {
    width: 90%;
  }
  .sqm-automaution-flow-cards {
    grid-template-columns: repeat(1, 558px);
    gap: 48px;
  }

  .sqm-automated-flow-circles-wrapper > div[style]:nth-child(4) {
    display: none;
  }

  .sqm-automated-flow-circles-wrapper {
    display: grid;
    grid-template-columns: 275px 2px 275px;
    grid-auto-rows: min-content;
    gap: 100px;
    height: auto;
    justify-items: center;
  }

  .sqm-automated-flow-circles {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sqm-checkmarks {
    gap: 140px;
  }

  .sqm-diagram-half-rounded-div {
    width: 600px;
  }
  .sqm-diagram-left-column {
    left: 0;
    transform: translateX(-43%);
  }

  .sqm-diagram-right-column {
    right: 0;
    transform: translateX(43%);
  }
}

@media (max-width: 1199px) {
  .sqm-carousel {
    max-width: 600px;
  }

  .sqm-card,
  .sqm-card--reverse {
    flex-direction: column;
    align-items: center;
  }

  .sqm-card-img-gradient,
  .sqm-card-text {
    width: 90%;
    margin: 0;
  }

  .sqm-card-text {
    margin-top: 20px;
    text-align: center;
    max-width: 598px;
  }

  .sqm-diagram-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: left;
    max-width: 500px;
  }
  .sqm-diagram-text {
    margin-left: 0;
  }

  .sqm-diagram-columns-container {
    height: 1000px;
  }
}

@media screen and (max-width: 1115px) {
  .sqm-vertical-line::after {
    height: calc(100% - 2050px);
  }
  .sqm-diagram-step {
    max-width: 450px;
  }
}

@media screen and (max-width: 1100px) {
  .sqm-container-flex-col {
    width: 90%;
  }
  .sqm-contacts-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 40px;
  }
  .sqm-contacts-container > .sqm-contact:nth-child(5) {
    margin-top: 0px;
  }
  .sqm-contacts-container > div:not(.sqm-contact) {
    display: none;
  }

  .sqm-contacts-container > .sqm-contact-white:nth-child(5) {
    margin-top: 0px;
  }
  .sqm-contacts-container > div:not(.sqm-contact-white) {
    display: none;
  }

  .sqm-integrations-circles-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 60px;
  }
  .sqm-integrations-circles-wrapper > .sqm-integrations-circles:nth-child(5) {
    margin-top: 0px;
  }
  .sqm-integrations-circles-wrapper > div:not(.sqm-integrations-circles) {
    display: none;
  }

  .sqm-gradient-header-curve-prices {
    margin-top: 0px;
    margin-bottom: -60px;
  }

  .sqm-checkmarks {
    gap: 80px;
  }

  .sqm-diagram-half-rounded-div {
    width: 500px;
  }
  .sqm-diagram-left-column {
    left: 0;
    transform: translateX(-30%);
  }

  .sqm-diagram-right-column {
    right: 0;
    transform: translateX(30%);
  }
}

@media screen and (max-width: 982px) {
  .sqm-carousel {
    max-width: 700px;
  }

  .sqm-vertical-line::after {
    height: calc(100% - 2150px);
  }

  .sqm-checkmarks {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
}

@media screen and (max-width: 860px) {
  .sqm-gradient-header-curve {
    margin-top: -250px;
    margin-bottom: -40px;
  }

  .sqm-gradient-header-curve-prices {
    margin-bottom: 0px;
  }

  .sqm-marketing-feature-container {
    grid-template-columns: repeat(1, 1fr);
    max-width: 394px;
  }

  .sqm-integrations-wrapper {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
  }

  .outer-wrapper,
  .inner-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
  }

  .outer-wrapper {
    animation: spin-ccw 60s linear infinite;
  }
  .inner-wrapper {
    animation: spin-cw 40s linear infinite;
  }

  .sqm-integration-circle {
    --radius: 180px;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: calc(-1 * 60px / 2) 0 0 calc(-1 * 60px / 2);
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(var(--angle)) translate(var(--radius))
      rotate(calc(-1 * var(--angle)));
  }

  .sqm-integration-circle.inner {
    --radius: 100px;
  }

  .sqm-integration-circle img {
    height: 35px;
    width: auto;
    display: block;
  }

  .sqm-integration-circle.center {
    width: 105px;
    height: 75px;
    background: none;
    transform: translate(-20%, -20%);
  }

  .sqm-integration-circle.center img {
    width: 100%;
    height: auto;
  }

  .outer-wrapper .sqm-integration-circle img {
    animation: icon-spin-cw 60s linear infinite;
  }
  .inner-wrapper .sqm-integration-circle img {
    animation: icon-spin-ccw 40s linear infinite;
  }

  .sqm-top-circle {
    margin-left: 6px;
    margin-right: auto;
    text-align: left;
  }

  .sqm-initial-text {
    margin-left: 57px;
    margin-right: auto;
    text-align: left;
    max-width: calc(100% - 60px);
  }

  .sqm-initial-text h2 {
    text-align: left;
  }

  .sqm-initial-text::before,
  .sqm-initial-text::after {
    left: 10px;
    transform: translateX(0);
  }

  .sqm-stepper-item {
    justify-content: flex-end;
    text-align: right;
  }

  .sqm-step-left .sqm-step-content,
  .sqm-step-right .sqm-step-content {
    width: calc(100% - 120px);
    margin-left: auto;
    margin-right: 0;
    padding-left: 48px;
    padding-right: 0;
    text-align: right;
  }

  .sqm-vertical-line {
    left: 67px;
    transform: translateX(0);
  }

  .sqm-step-number {
    left: 0px;
    transform: translateX(0);
  }

  .sqm-step-image {
    margin-left: auto;
  }

  .sqm-vertical-line::after {
    height: calc(100% - 1950px);
  }
}

@media screen and (max-width: 700px) {
  .sqm-card-img-gradient {
    width: 464px;
    height: 340px;
    overflow: visible;
    transform: scale(0.8);
  }
  .sqm-card-img-gradient-small {
    transform: scale(0.8);
  }

  .sqm-card-img-gradient-woocommer-integration {
    position: absolute;
    margin-bottom: 40px;
  }

  .sqm-card-img-gradient-shopify-integration {
    position: absolute;
    margin-bottom: 26px;
    margin-right: 60px;
  }

  .sqm-card-img-gradient-prestashop-integration {
    position: absolute;
    margin-bottom: 28px;
    margin-left: 55px;
  }

  .sqm-card-img-gradient-magento-integration {
    position: absolute;
    margin-bottom: -38px;
    margin-right: 55px;
  }
  .sqm-card {
    width: 630px;
  }

  .sqm-card img {
    transform: scale(0.8);
  }

  .sqm-integrations-text-wrapper {
    margin: 100px 0 0px 0px;
  }

  .sqm-integrations-text-wrapper h4 {
    margin-bottom: 0px;
  }
}

@media screen and (max-width: 680px) {
  .sqm-flow-cards {
    display: grid;
    grid-template-columns: repeat(1, 298px);
    justify-content: center;
    gap: 48px;
  }

  .flow-curves {
    width: 300px;
  }

  .flow-curve-inner-left {
    display: none;
  }
  .flow-curve-inner-right {
    display: none;
  }

  .flow-curve-outer-left-md {
    display: none;
  }

  .flow-curve-outer-right-md {
    display: none;
  }

  .flow-curve-outer-left-sm {
    display: block;
  }

  .flow-curve-inner-left-sm {
    display: block;
  }

  .flow-curve-outer-right-sm {
    display: block;
  }

  .flow-curve-inner-right-sm {
    display: block;
  }
}

@media screen and (max-width: 653px) {
  .sqm-vertical-line::after {
    height: calc(100% - 2050px);
  }
}

@media screen and (max-width: 640px) {
  .sqm-card {
    width: 464px;
  }

  .sqm-analytics img {
    width: 300px;
    height: auto;
    margin-top: 16px;
  }

  .sqm-industry-card-img {
    width: 90%;
  }

  .sqm-automated-flow-circles-wrapper > div[style] {
    display: none;
  }

  .sqm-automated-flow-circles-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: min-content;
    gap: 2rem;
    height: auto;
    justify-items: center;
  }

  .sqm-automated-flow-circles {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sqm-gradient-header-signup-text,
  .sqm-gradient-header-form {
    width: 90%;
  }

  .sqm-automaution-flow-cards {
    grid-template-columns: repeat(1, 480px);
    gap: 48px;
  }

  .sqm-automaution-flow-cards img {
    width: 480px;
  }
}

@media screen and (max-width: 653px) {
  .sqm-vertical-line::after {
    height: calc(100% - 2100px);
  }
}

@media screen and (max-width: 535px) {
  .sqm-initial-text::after {
    top: 140px;
  }
}

@media screen and (max-width: 500px) {
  .sqm-carousel {
    max-width: 400px;
  }
  .sqm-gradient-header-curve {
    margin-top: -350px;
    margin-bottom: 0px;
  }

  .sqm-vertical-line::after {
    height: calc(100% - 2150px);
  }

  .sqm-contact{
    width: 100%;
  }
}

@media screen and (max-width: 425px) {
  .sqm-automaution-flow-cards {
    grid-template-columns: repeat(1, 400px);
    gap: 48px;
  }
  .sqm-automaution-flow-cards img {
    width: 400px;
  }
}

@media screen and (max-width: 982px) {
  .sqm-diagram {
    padding: 16px;
  }

  .sqm-diagram-columns-container {
    flex-direction: column;
    height: auto;
    width: 100%;
    position: static;
  }

  .sqm-diagram-column {
    position: static;
    transform: none;
    width: 100%;
    margin-bottom: 40px;
  }

  .sqm-diagram-left-column,
  .sqm-diagram-right-column {
    transform: none;
  }

  .sqm-diagram-step {
    flex-direction: row;
    justify-content: center;
    max-width: 80%;
    margin-bottom: 20px;
  }

  .sqm-diagram-icon {
    height: 50px !important;
  }

  .sqm-diagram-half-rounded-div {
    display: none;
  }
}
